@orq-ai/node 3.5.22 → 3.5.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/bin/mcp-server.js +40 -40
  2. package/bin/mcp-server.js.map +21 -21
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/mcp-server/mcp-server.js +1 -1
  7. package/mcp-server/server.js +1 -1
  8. package/models/operations/bulkcreatedatapoints.js +2 -2
  9. package/models/operations/createcontact.js +2 -2
  10. package/models/operations/createdataset.js +2 -2
  11. package/models/operations/createdatasetitem.js +2 -2
  12. package/models/operations/createdatasource.js +2 -2
  13. package/models/operations/fileget.js +2 -2
  14. package/models/operations/filelist.js +2 -2
  15. package/models/operations/fileupload.js +2 -2
  16. package/models/operations/listdatasetdatapoints.js +2 -2
  17. package/models/operations/listdatasets.js +2 -2
  18. package/models/operations/listdatasources.js +2 -2
  19. package/models/operations/retrievedatapoint.js +2 -2
  20. package/models/operations/retrievedataset.js +2 -2
  21. package/models/operations/retrievedatasource.js +2 -2
  22. package/models/operations/updatedatapoint.js +2 -2
  23. package/models/operations/updatedataset.js +2 -2
  24. package/models/operations/updatedatasource.js +2 -2
  25. package/package.json +1 -1
  26. package/packages/orq-rc/jsr.json +1 -1
  27. package/packages/orq-rc/package-lock.json +6 -6
  28. package/packages/orq-rc/package.json +2 -2
  29. package/packages/orq-rc/src/lib/config.ts +3 -3
  30. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  31. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  32. package/packages/orq-rc/src/models/components/deployments.ts +1217 -1677
  33. package/packages/orq-rc/src/models/operations/bulkcreatedatapoints.ts +416 -12
  34. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  35. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  36. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +410 -13
  37. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  38. package/packages/orq-rc/src/models/operations/createprompt.ts +400 -12
  39. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +1413 -1729
  40. package/packages/orq-rc/src/models/operations/deployments.ts +211 -23
  41. package/packages/orq-rc/src/models/operations/deploymentstream.ts +1314 -1761
  42. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  43. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  44. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  45. package/packages/orq-rc/src/models/operations/getallprompts.ts +200 -6
  46. package/packages/orq-rc/src/models/operations/getoneprompt.ts +195 -6
  47. package/packages/orq-rc/src/models/operations/getpromptversion.ts +204 -6
  48. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +207 -8
  49. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  50. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  51. package/packages/orq-rc/src/models/operations/listpromptversions.ts +202 -6
  52. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +204 -8
  53. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  54. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  55. package/packages/orq-rc/src/models/operations/searchknowledge.ts +1334 -1750
  56. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +412 -14
  57. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  58. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  59. package/packages/orq-rc/src/models/operations/updateprompt.ts +400 -12
  60. package/src/lib/config.ts +3 -3
  61. package/src/mcp-server/mcp-server.ts +1 -1
  62. package/src/mcp-server/server.ts +1 -1
  63. package/src/models/operations/bulkcreatedatapoints.ts +2 -2
  64. package/src/models/operations/createcontact.ts +2 -2
  65. package/src/models/operations/createdataset.ts +2 -2
  66. package/src/models/operations/createdatasetitem.ts +2 -2
  67. package/src/models/operations/createdatasource.ts +2 -2
  68. package/src/models/operations/fileget.ts +2 -2
  69. package/src/models/operations/filelist.ts +2 -2
  70. package/src/models/operations/fileupload.ts +2 -2
  71. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  72. package/src/models/operations/listdatasets.ts +2 -2
  73. package/src/models/operations/listdatasources.ts +2 -2
  74. package/src/models/operations/retrievedatapoint.ts +2 -2
  75. package/src/models/operations/retrievedataset.ts +2 -2
  76. package/src/models/operations/retrievedatasource.ts +2 -2
  77. package/src/models/operations/updatedatapoint.ts +2 -2
  78. package/src/models/operations/updatedataset.ts +2 -2
  79. package/src/models/operations/updatedatasource.ts +2 -2
@@ -952,110 +952,98 @@ export type DeploymentStreamThread = {
952
952
  /**
953
953
  * Exists
954
954
  */
955
- export type DeploymentStreamDollarOrDollarExists = {
956
- dollarExists: boolean;
955
+ export type DeploymentStreamOrExists = {
956
+ exists: boolean;
957
957
  };
958
958
 
959
- export type DeploymentStreamDollarOrDeploymentsDollarNin =
960
- | string
961
- | number
962
- | boolean;
959
+ export type DeploymentStreamOrDeploymentsNin = string | number | boolean;
963
960
 
964
961
  /**
965
962
  * Not in
966
963
  */
967
- export type DeploymentStreamDollarOrDollarNin = {
968
- dollarNin: Array<string | number | boolean>;
964
+ export type DeploymentStreamOrNin = {
965
+ nin: Array<string | number | boolean>;
969
966
  };
970
967
 
971
- export type DeploymentStreamDollarOrDeploymentsDollarIn =
972
- | string
973
- | number
974
- | boolean;
968
+ export type DeploymentStreamOrDeploymentsIn = string | number | boolean;
975
969
 
976
970
  /**
977
971
  * In
978
972
  */
979
- export type DeploymentStreamDollarOrDollarIn = {
980
- dollarIn: Array<string | number | boolean>;
973
+ export type DeploymentStreamOrIn = {
974
+ in: Array<string | number | boolean>;
981
975
  };
982
976
 
983
977
  /**
984
978
  * Less than or equal to
985
979
  */
986
- export type DeploymentStreamDollarOrDollarLte = {
987
- dollarLte: number;
980
+ export type DeploymentStreamOrLte = {
981
+ lte: number;
988
982
  };
989
983
 
990
984
  /**
991
985
  * Less than
992
986
  */
993
- export type DeploymentStreamDollarOrDollarLt = {
994
- dollarLt: number;
987
+ export type DeploymentStreamOrLt = {
988
+ lt: number;
995
989
  };
996
990
 
997
991
  /**
998
992
  * Greater than or equal to
999
993
  */
1000
- export type DeploymentStreamDollarOrDollarGte = {
1001
- dollarGte: number;
994
+ export type DeploymentStreamOrGte = {
995
+ gte: number;
1002
996
  };
1003
997
 
1004
- export type DeploymentStreamDollarOr3 = {
1005
- dollarGt: number;
998
+ export type DeploymentStreamOr3 = {
999
+ gt: number;
1006
1000
  };
1007
1001
 
1008
- export type DeploymentStreamDollarOrDeploymentsDollarNe =
1009
- | string
1010
- | number
1011
- | boolean;
1002
+ export type DeploymentStreamOrDeploymentsNe = string | number | boolean;
1012
1003
 
1013
1004
  /**
1014
1005
  * Not equal to
1015
1006
  */
1016
- export type DeploymentStreamDollarOrDollarNe = {
1017
- dollarNe: string | number | boolean;
1007
+ export type DeploymentStreamOrNe = {
1008
+ ne: string | number | boolean;
1018
1009
  };
1019
1010
 
1020
- export type DeploymentStreamDollarOrDeploymentsDollarEq =
1021
- | string
1022
- | number
1023
- | boolean;
1011
+ export type DeploymentStreamOrDeploymentsEq = string | number | boolean;
1024
1012
 
1025
1013
  /**
1026
1014
  * Equal to
1027
1015
  */
1028
- export type DeploymentStreamDollarOrDollarEq = {
1029
- dollarEq: string | number | boolean;
1016
+ export type DeploymentStreamOrEq = {
1017
+ eq: string | number | boolean;
1030
1018
  };
1031
1019
 
1032
- export type DeploymentStreamKnowledgeFilterDeploymentsDollarOr =
1033
- | DeploymentStreamDollarOrDollarEq
1034
- | DeploymentStreamDollarOrDollarNe
1035
- | DeploymentStreamDollarOr3
1036
- | DeploymentStreamDollarOrDollarGte
1037
- | DeploymentStreamDollarOrDollarLt
1038
- | DeploymentStreamDollarOrDollarLte
1039
- | DeploymentStreamDollarOrDollarIn
1040
- | DeploymentStreamDollarOrDollarNin
1041
- | DeploymentStreamDollarOrDollarExists;
1020
+ export type DeploymentStreamKnowledgeFilterDeploymentsOr =
1021
+ | DeploymentStreamOrEq
1022
+ | DeploymentStreamOrNe
1023
+ | DeploymentStreamOr3
1024
+ | DeploymentStreamOrGte
1025
+ | DeploymentStreamOrLt
1026
+ | DeploymentStreamOrLte
1027
+ | DeploymentStreamOrIn
1028
+ | DeploymentStreamOrNin
1029
+ | DeploymentStreamOrExists;
1042
1030
 
1043
1031
  /**
1044
1032
  * Or
1045
1033
  */
1046
- export type DeploymentStreamKnowledgeFilterDollarOr = {
1047
- dollarOr: Array<
1034
+ export type DeploymentStreamKnowledgeFilterOr = {
1035
+ or: Array<
1048
1036
  {
1049
1037
  [k: string]:
1050
- | DeploymentStreamDollarOrDollarEq
1051
- | DeploymentStreamDollarOrDollarNe
1052
- | DeploymentStreamDollarOr3
1053
- | DeploymentStreamDollarOrDollarGte
1054
- | DeploymentStreamDollarOrDollarLt
1055
- | DeploymentStreamDollarOrDollarLte
1056
- | DeploymentStreamDollarOrDollarIn
1057
- | DeploymentStreamDollarOrDollarNin
1058
- | DeploymentStreamDollarOrDollarExists;
1038
+ | DeploymentStreamOrEq
1039
+ | DeploymentStreamOrNe
1040
+ | DeploymentStreamOr3
1041
+ | DeploymentStreamOrGte
1042
+ | DeploymentStreamOrLt
1043
+ | DeploymentStreamOrLte
1044
+ | DeploymentStreamOrIn
1045
+ | DeploymentStreamOrNin
1046
+ | DeploymentStreamOrExists;
1059
1047
  }
1060
1048
  >;
1061
1049
  };
@@ -1063,110 +1051,98 @@ export type DeploymentStreamKnowledgeFilterDollarOr = {
1063
1051
  /**
1064
1052
  * Exists
1065
1053
  */
1066
- export type DeploymentStreamDollarAndDollarExists = {
1067
- dollarExists: boolean;
1054
+ export type DeploymentStreamAndExists = {
1055
+ exists: boolean;
1068
1056
  };
1069
1057
 
1070
- export type DeploymentStreamDollarAndDeploymentsDollarNin =
1071
- | string
1072
- | number
1073
- | boolean;
1058
+ export type DeploymentStreamAndDeploymentsNin = string | number | boolean;
1074
1059
 
1075
1060
  /**
1076
1061
  * Not in
1077
1062
  */
1078
- export type DeploymentStreamDollarAndDollarNin = {
1079
- dollarNin: Array<string | number | boolean>;
1063
+ export type DeploymentStreamAndNin = {
1064
+ nin: Array<string | number | boolean>;
1080
1065
  };
1081
1066
 
1082
- export type DeploymentStreamDollarAndDeploymentsDollarIn =
1083
- | string
1084
- | number
1085
- | boolean;
1067
+ export type DeploymentStreamAndDeploymentsIn = string | number | boolean;
1086
1068
 
1087
1069
  /**
1088
1070
  * In
1089
1071
  */
1090
- export type DeploymentStreamDollarAndDollarIn = {
1091
- dollarIn: Array<string | number | boolean>;
1072
+ export type DeploymentStreamAndIn = {
1073
+ in: Array<string | number | boolean>;
1092
1074
  };
1093
1075
 
1094
1076
  /**
1095
1077
  * Less than or equal to
1096
1078
  */
1097
- export type DeploymentStreamDollarAndDollarLte = {
1098
- dollarLte: number;
1079
+ export type DeploymentStreamAndLte = {
1080
+ lte: number;
1099
1081
  };
1100
1082
 
1101
1083
  /**
1102
1084
  * Less than
1103
1085
  */
1104
- export type DeploymentStreamDollarAndDollarLt = {
1105
- dollarLt: number;
1086
+ export type DeploymentStreamAndLt = {
1087
+ lt: number;
1106
1088
  };
1107
1089
 
1108
1090
  /**
1109
1091
  * Greater than or equal to
1110
1092
  */
1111
- export type DeploymentStreamDollarAndDollarGte = {
1112
- dollarGte: number;
1093
+ export type DeploymentStreamAndGte = {
1094
+ gte: number;
1113
1095
  };
1114
1096
 
1115
- export type DeploymentStreamDollarAnd3 = {
1116
- dollarGt: number;
1097
+ export type DeploymentStreamAnd3 = {
1098
+ gt: number;
1117
1099
  };
1118
1100
 
1119
- export type DeploymentStreamDollarAndDeploymentsDollarNe =
1120
- | string
1121
- | number
1122
- | boolean;
1101
+ export type DeploymentStreamAndDeploymentsNe = string | number | boolean;
1123
1102
 
1124
1103
  /**
1125
1104
  * Not equal to
1126
1105
  */
1127
- export type DeploymentStreamDollarAndDollarNe = {
1128
- dollarNe: string | number | boolean;
1106
+ export type DeploymentStreamAndNe = {
1107
+ ne: string | number | boolean;
1129
1108
  };
1130
1109
 
1131
- export type DeploymentStreamDollarAndDeploymentsDollarEq =
1132
- | string
1133
- | number
1134
- | boolean;
1110
+ export type DeploymentStreamAndDeploymentsEq = string | number | boolean;
1135
1111
 
1136
1112
  /**
1137
1113
  * Equal to
1138
1114
  */
1139
- export type DeploymentStreamDollarAndDollarEq = {
1140
- dollarEq: string | number | boolean;
1115
+ export type DeploymentStreamAndEq = {
1116
+ eq: string | number | boolean;
1141
1117
  };
1142
1118
 
1143
- export type DeploymentStreamKnowledgeFilterDeploymentsDollarAnd =
1144
- | DeploymentStreamDollarAndDollarEq
1145
- | DeploymentStreamDollarAndDollarNe
1146
- | DeploymentStreamDollarAnd3
1147
- | DeploymentStreamDollarAndDollarGte
1148
- | DeploymentStreamDollarAndDollarLt
1149
- | DeploymentStreamDollarAndDollarLte
1150
- | DeploymentStreamDollarAndDollarIn
1151
- | DeploymentStreamDollarAndDollarNin
1152
- | DeploymentStreamDollarAndDollarExists;
1119
+ export type DeploymentStreamKnowledgeFilterDeploymentsAnd =
1120
+ | DeploymentStreamAndEq
1121
+ | DeploymentStreamAndNe
1122
+ | DeploymentStreamAnd3
1123
+ | DeploymentStreamAndGte
1124
+ | DeploymentStreamAndLt
1125
+ | DeploymentStreamAndLte
1126
+ | DeploymentStreamAndIn
1127
+ | DeploymentStreamAndNin
1128
+ | DeploymentStreamAndExists;
1153
1129
 
1154
1130
  /**
1155
1131
  * And
1156
1132
  */
1157
- export type DeploymentStreamKnowledgeFilterDollarAnd = {
1158
- dollarAnd: Array<
1133
+ export type DeploymentStreamKnowledgeFilterAnd = {
1134
+ and: Array<
1159
1135
  {
1160
1136
  [k: string]:
1161
- | DeploymentStreamDollarAndDollarEq
1162
- | DeploymentStreamDollarAndDollarNe
1163
- | DeploymentStreamDollarAnd3
1164
- | DeploymentStreamDollarAndDollarGte
1165
- | DeploymentStreamDollarAndDollarLt
1166
- | DeploymentStreamDollarAndDollarLte
1167
- | DeploymentStreamDollarAndDollarIn
1168
- | DeploymentStreamDollarAndDollarNin
1169
- | DeploymentStreamDollarAndDollarExists;
1137
+ | DeploymentStreamAndEq
1138
+ | DeploymentStreamAndNe
1139
+ | DeploymentStreamAnd3
1140
+ | DeploymentStreamAndGte
1141
+ | DeploymentStreamAndLt
1142
+ | DeploymentStreamAndLte
1143
+ | DeploymentStreamAndIn
1144
+ | DeploymentStreamAndNin
1145
+ | DeploymentStreamAndExists;
1170
1146
  }
1171
1147
  >;
1172
1148
  };
@@ -1174,99 +1150,99 @@ export type DeploymentStreamKnowledgeFilterDollarAnd = {
1174
1150
  /**
1175
1151
  * Exists
1176
1152
  */
1177
- export type OneDollarExists = {
1178
- dollarExists: boolean;
1153
+ export type OneExists = {
1154
+ exists: boolean;
1179
1155
  };
1180
1156
 
1181
- export type DeploymentStream1DeploymentsDollarNin = string | number | boolean;
1157
+ export type DeploymentStream1DeploymentsNin = string | number | boolean;
1182
1158
 
1183
1159
  /**
1184
1160
  * Not in
1185
1161
  */
1186
- export type DeploymentStream1DollarNin = {
1187
- dollarNin: Array<string | number | boolean>;
1162
+ export type DeploymentStream1Nin = {
1163
+ nin: Array<string | number | boolean>;
1188
1164
  };
1189
1165
 
1190
- export type DeploymentStream1DeploymentsDollarIn = string | number | boolean;
1166
+ export type DeploymentStream1DeploymentsIn = string | number | boolean;
1191
1167
 
1192
1168
  /**
1193
1169
  * In
1194
1170
  */
1195
- export type DeploymentStream1DollarIn = {
1196
- dollarIn: Array<string | number | boolean>;
1171
+ export type DeploymentStream1In = {
1172
+ in: Array<string | number | boolean>;
1197
1173
  };
1198
1174
 
1199
1175
  /**
1200
1176
  * Less than or equal to
1201
1177
  */
1202
- export type OneDollarLte = {
1203
- dollarLte: number;
1178
+ export type OneLte = {
1179
+ lte: number;
1204
1180
  };
1205
1181
 
1206
1182
  /**
1207
1183
  * Less than
1208
1184
  */
1209
- export type OneDollarLt = {
1210
- dollarLt: number;
1185
+ export type OneLt = {
1186
+ lt: number;
1211
1187
  };
1212
1188
 
1213
1189
  /**
1214
1190
  * Greater than or equal to
1215
1191
  */
1216
- export type OneDollarGte = {
1217
- dollarGte: number;
1192
+ export type OneGte = {
1193
+ gte: number;
1218
1194
  };
1219
1195
 
1220
1196
  export type DeploymentStream13 = {
1221
- dollarGt: number;
1197
+ gt: number;
1222
1198
  };
1223
1199
 
1224
- export type DeploymentStream1DeploymentsDollarNe = string | number | boolean;
1200
+ export type DeploymentStream1DeploymentsNe = string | number | boolean;
1225
1201
 
1226
1202
  /**
1227
1203
  * Not equal to
1228
1204
  */
1229
- export type DeploymentStream1DollarNe = {
1230
- dollarNe: string | number | boolean;
1205
+ export type DeploymentStream1Ne = {
1206
+ ne: string | number | boolean;
1231
1207
  };
1232
1208
 
1233
- export type DeploymentStream1DeploymentsDollarEq = string | number | boolean;
1209
+ export type DeploymentStream1DeploymentsEq = string | number | boolean;
1234
1210
 
1235
1211
  /**
1236
1212
  * Equal to
1237
1213
  */
1238
- export type DeploymentStream1DollarEq = {
1239
- dollarEq: string | number | boolean;
1214
+ export type DeploymentStream1Eq = {
1215
+ eq: string | number | boolean;
1240
1216
  };
1241
1217
 
1242
1218
  export type DeploymentStreamKnowledgeFilter1 =
1243
- | DeploymentStream1DollarEq
1244
- | DeploymentStream1DollarNe
1219
+ | DeploymentStream1Eq
1220
+ | DeploymentStream1Ne
1245
1221
  | DeploymentStream13
1246
- | OneDollarGte
1247
- | OneDollarLt
1248
- | OneDollarLte
1249
- | DeploymentStream1DollarIn
1250
- | DeploymentStream1DollarNin
1251
- | OneDollarExists;
1222
+ | OneGte
1223
+ | OneLt
1224
+ | OneLte
1225
+ | DeploymentStream1In
1226
+ | DeploymentStream1Nin
1227
+ | OneExists;
1252
1228
 
1253
1229
  /**
1254
1230
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
1255
1231
  */
1256
1232
  export type DeploymentStreamKnowledgeFilter =
1257
- | DeploymentStreamKnowledgeFilterDollarAnd
1258
- | DeploymentStreamKnowledgeFilterDollarOr
1233
+ | DeploymentStreamKnowledgeFilterAnd
1234
+ | DeploymentStreamKnowledgeFilterOr
1259
1235
  | {
1260
1236
  [k: string]:
1261
- | DeploymentStream1DollarEq
1262
- | DeploymentStream1DollarNe
1237
+ | DeploymentStream1Eq
1238
+ | DeploymentStream1Ne
1263
1239
  | DeploymentStream13
1264
- | OneDollarGte
1265
- | OneDollarLt
1266
- | OneDollarLte
1267
- | DeploymentStream1DollarIn
1268
- | DeploymentStream1DollarNin
1269
- | OneDollarExists;
1240
+ | OneGte
1241
+ | OneLt
1242
+ | OneLte
1243
+ | DeploymentStream1In
1244
+ | DeploymentStream1Nin
1245
+ | OneExists;
1270
1246
  };
1271
1247
 
1272
1248
  export type DeploymentStreamRequestBody = {
@@ -1328,19 +1304,19 @@ export type DeploymentStreamRequestBody = {
1328
1304
  * A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
1329
1305
  */
1330
1306
  knowledgeFilter?:
1331
- | DeploymentStreamKnowledgeFilterDollarAnd
1332
- | DeploymentStreamKnowledgeFilterDollarOr
1307
+ | DeploymentStreamKnowledgeFilterAnd
1308
+ | DeploymentStreamKnowledgeFilterOr
1333
1309
  | {
1334
1310
  [k: string]:
1335
- | DeploymentStream1DollarEq
1336
- | DeploymentStream1DollarNe
1311
+ | DeploymentStream1Eq
1312
+ | DeploymentStream1Ne
1337
1313
  | DeploymentStream13
1338
- | OneDollarGte
1339
- | OneDollarLt
1340
- | OneDollarLte
1341
- | DeploymentStream1DollarIn
1342
- | DeploymentStream1DollarNin
1343
- | OneDollarExists;
1314
+ | OneGte
1315
+ | OneLt
1316
+ | OneLte
1317
+ | DeploymentStream1In
1318
+ | DeploymentStream1Nin
1319
+ | OneExists;
1344
1320
  }
1345
1321
  | undefined;
1346
1322
  };
@@ -5813,2561 +5789,2178 @@ export function deploymentStreamThreadFromJSON(
5813
5789
  }
5814
5790
 
5815
5791
  /** @internal */
5816
- export const DeploymentStreamDollarOrDollarExists$inboundSchema: z.ZodType<
5817
- DeploymentStreamDollarOrDollarExists,
5792
+ export const DeploymentStreamOrExists$inboundSchema: z.ZodType<
5793
+ DeploymentStreamOrExists,
5818
5794
  z.ZodTypeDef,
5819
5795
  unknown
5820
5796
  > = z.object({
5821
- $exists: z.boolean(),
5822
- }).transform((v) => {
5823
- return remap$(v, {
5824
- "$exists": "dollarExists",
5825
- });
5797
+ exists: z.boolean(),
5826
5798
  });
5827
5799
 
5828
5800
  /** @internal */
5829
- export type DeploymentStreamDollarOrDollarExists$Outbound = {
5830
- $exists: boolean;
5801
+ export type DeploymentStreamOrExists$Outbound = {
5802
+ exists: boolean;
5831
5803
  };
5832
5804
 
5833
5805
  /** @internal */
5834
- export const DeploymentStreamDollarOrDollarExists$outboundSchema: z.ZodType<
5835
- DeploymentStreamDollarOrDollarExists$Outbound,
5806
+ export const DeploymentStreamOrExists$outboundSchema: z.ZodType<
5807
+ DeploymentStreamOrExists$Outbound,
5836
5808
  z.ZodTypeDef,
5837
- DeploymentStreamDollarOrDollarExists
5809
+ DeploymentStreamOrExists
5838
5810
  > = z.object({
5839
- dollarExists: z.boolean(),
5840
- }).transform((v) => {
5841
- return remap$(v, {
5842
- dollarExists: "$exists",
5843
- });
5811
+ exists: z.boolean(),
5844
5812
  });
5845
5813
 
5846
5814
  /**
5847
5815
  * @internal
5848
5816
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5849
5817
  */
5850
- export namespace DeploymentStreamDollarOrDollarExists$ {
5851
- /** @deprecated use `DeploymentStreamDollarOrDollarExists$inboundSchema` instead. */
5852
- export const inboundSchema =
5853
- DeploymentStreamDollarOrDollarExists$inboundSchema;
5854
- /** @deprecated use `DeploymentStreamDollarOrDollarExists$outboundSchema` instead. */
5855
- export const outboundSchema =
5856
- DeploymentStreamDollarOrDollarExists$outboundSchema;
5857
- /** @deprecated use `DeploymentStreamDollarOrDollarExists$Outbound` instead. */
5858
- export type Outbound = DeploymentStreamDollarOrDollarExists$Outbound;
5818
+ export namespace DeploymentStreamOrExists$ {
5819
+ /** @deprecated use `DeploymentStreamOrExists$inboundSchema` instead. */
5820
+ export const inboundSchema = DeploymentStreamOrExists$inboundSchema;
5821
+ /** @deprecated use `DeploymentStreamOrExists$outboundSchema` instead. */
5822
+ export const outboundSchema = DeploymentStreamOrExists$outboundSchema;
5823
+ /** @deprecated use `DeploymentStreamOrExists$Outbound` instead. */
5824
+ export type Outbound = DeploymentStreamOrExists$Outbound;
5859
5825
  }
5860
5826
 
5861
- export function deploymentStreamDollarOrDollarExistsToJSON(
5862
- deploymentStreamDollarOrDollarExists: DeploymentStreamDollarOrDollarExists,
5827
+ export function deploymentStreamOrExistsToJSON(
5828
+ deploymentStreamOrExists: DeploymentStreamOrExists,
5863
5829
  ): string {
5864
5830
  return JSON.stringify(
5865
- DeploymentStreamDollarOrDollarExists$outboundSchema.parse(
5866
- deploymentStreamDollarOrDollarExists,
5867
- ),
5831
+ DeploymentStreamOrExists$outboundSchema.parse(deploymentStreamOrExists),
5868
5832
  );
5869
5833
  }
5870
5834
 
5871
- export function deploymentStreamDollarOrDollarExistsFromJSON(
5835
+ export function deploymentStreamOrExistsFromJSON(
5872
5836
  jsonString: string,
5873
- ): SafeParseResult<DeploymentStreamDollarOrDollarExists, SDKValidationError> {
5837
+ ): SafeParseResult<DeploymentStreamOrExists, SDKValidationError> {
5874
5838
  return safeParse(
5875
5839
  jsonString,
5876
- (x) =>
5877
- DeploymentStreamDollarOrDollarExists$inboundSchema.parse(JSON.parse(x)),
5878
- `Failed to parse 'DeploymentStreamDollarOrDollarExists' from JSON`,
5840
+ (x) => DeploymentStreamOrExists$inboundSchema.parse(JSON.parse(x)),
5841
+ `Failed to parse 'DeploymentStreamOrExists' from JSON`,
5879
5842
  );
5880
5843
  }
5881
5844
 
5882
5845
  /** @internal */
5883
- export const DeploymentStreamDollarOrDeploymentsDollarNin$inboundSchema:
5884
- z.ZodType<
5885
- DeploymentStreamDollarOrDeploymentsDollarNin,
5886
- z.ZodTypeDef,
5887
- unknown
5888
- > = z.union([z.string(), z.number(), z.boolean()]);
5846
+ export const DeploymentStreamOrDeploymentsNin$inboundSchema: z.ZodType<
5847
+ DeploymentStreamOrDeploymentsNin,
5848
+ z.ZodTypeDef,
5849
+ unknown
5850
+ > = z.union([z.string(), z.number(), z.boolean()]);
5889
5851
 
5890
5852
  /** @internal */
5891
- export type DeploymentStreamDollarOrDeploymentsDollarNin$Outbound =
5853
+ export type DeploymentStreamOrDeploymentsNin$Outbound =
5892
5854
  | string
5893
5855
  | number
5894
5856
  | boolean;
5895
5857
 
5896
5858
  /** @internal */
5897
- export const DeploymentStreamDollarOrDeploymentsDollarNin$outboundSchema:
5898
- z.ZodType<
5899
- DeploymentStreamDollarOrDeploymentsDollarNin$Outbound,
5900
- z.ZodTypeDef,
5901
- DeploymentStreamDollarOrDeploymentsDollarNin
5902
- > = z.union([z.string(), z.number(), z.boolean()]);
5859
+ export const DeploymentStreamOrDeploymentsNin$outboundSchema: z.ZodType<
5860
+ DeploymentStreamOrDeploymentsNin$Outbound,
5861
+ z.ZodTypeDef,
5862
+ DeploymentStreamOrDeploymentsNin
5863
+ > = z.union([z.string(), z.number(), z.boolean()]);
5903
5864
 
5904
5865
  /**
5905
5866
  * @internal
5906
5867
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5907
5868
  */
5908
- export namespace DeploymentStreamDollarOrDeploymentsDollarNin$ {
5909
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarNin$inboundSchema` instead. */
5910
- export const inboundSchema =
5911
- DeploymentStreamDollarOrDeploymentsDollarNin$inboundSchema;
5912
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarNin$outboundSchema` instead. */
5913
- export const outboundSchema =
5914
- DeploymentStreamDollarOrDeploymentsDollarNin$outboundSchema;
5915
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarNin$Outbound` instead. */
5916
- export type Outbound = DeploymentStreamDollarOrDeploymentsDollarNin$Outbound;
5869
+ export namespace DeploymentStreamOrDeploymentsNin$ {
5870
+ /** @deprecated use `DeploymentStreamOrDeploymentsNin$inboundSchema` instead. */
5871
+ export const inboundSchema = DeploymentStreamOrDeploymentsNin$inboundSchema;
5872
+ /** @deprecated use `DeploymentStreamOrDeploymentsNin$outboundSchema` instead. */
5873
+ export const outboundSchema = DeploymentStreamOrDeploymentsNin$outboundSchema;
5874
+ /** @deprecated use `DeploymentStreamOrDeploymentsNin$Outbound` instead. */
5875
+ export type Outbound = DeploymentStreamOrDeploymentsNin$Outbound;
5917
5876
  }
5918
5877
 
5919
- export function deploymentStreamDollarOrDeploymentsDollarNinToJSON(
5920
- deploymentStreamDollarOrDeploymentsDollarNin:
5921
- DeploymentStreamDollarOrDeploymentsDollarNin,
5878
+ export function deploymentStreamOrDeploymentsNinToJSON(
5879
+ deploymentStreamOrDeploymentsNin: DeploymentStreamOrDeploymentsNin,
5922
5880
  ): string {
5923
5881
  return JSON.stringify(
5924
- DeploymentStreamDollarOrDeploymentsDollarNin$outboundSchema.parse(
5925
- deploymentStreamDollarOrDeploymentsDollarNin,
5882
+ DeploymentStreamOrDeploymentsNin$outboundSchema.parse(
5883
+ deploymentStreamOrDeploymentsNin,
5926
5884
  ),
5927
5885
  );
5928
5886
  }
5929
5887
 
5930
- export function deploymentStreamDollarOrDeploymentsDollarNinFromJSON(
5888
+ export function deploymentStreamOrDeploymentsNinFromJSON(
5931
5889
  jsonString: string,
5932
- ): SafeParseResult<
5933
- DeploymentStreamDollarOrDeploymentsDollarNin,
5934
- SDKValidationError
5935
- > {
5890
+ ): SafeParseResult<DeploymentStreamOrDeploymentsNin, SDKValidationError> {
5936
5891
  return safeParse(
5937
5892
  jsonString,
5938
- (x) =>
5939
- DeploymentStreamDollarOrDeploymentsDollarNin$inboundSchema.parse(
5940
- JSON.parse(x),
5941
- ),
5942
- `Failed to parse 'DeploymentStreamDollarOrDeploymentsDollarNin' from JSON`,
5893
+ (x) => DeploymentStreamOrDeploymentsNin$inboundSchema.parse(JSON.parse(x)),
5894
+ `Failed to parse 'DeploymentStreamOrDeploymentsNin' from JSON`,
5943
5895
  );
5944
5896
  }
5945
5897
 
5946
5898
  /** @internal */
5947
- export const DeploymentStreamDollarOrDollarNin$inboundSchema: z.ZodType<
5948
- DeploymentStreamDollarOrDollarNin,
5899
+ export const DeploymentStreamOrNin$inboundSchema: z.ZodType<
5900
+ DeploymentStreamOrNin,
5949
5901
  z.ZodTypeDef,
5950
5902
  unknown
5951
5903
  > = z.object({
5952
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5953
- }).transform((v) => {
5954
- return remap$(v, {
5955
- "$nin": "dollarNin",
5956
- });
5904
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5957
5905
  });
5958
5906
 
5959
5907
  /** @internal */
5960
- export type DeploymentStreamDollarOrDollarNin$Outbound = {
5961
- $nin: Array<string | number | boolean>;
5908
+ export type DeploymentStreamOrNin$Outbound = {
5909
+ nin: Array<string | number | boolean>;
5962
5910
  };
5963
5911
 
5964
5912
  /** @internal */
5965
- export const DeploymentStreamDollarOrDollarNin$outboundSchema: z.ZodType<
5966
- DeploymentStreamDollarOrDollarNin$Outbound,
5913
+ export const DeploymentStreamOrNin$outboundSchema: z.ZodType<
5914
+ DeploymentStreamOrNin$Outbound,
5967
5915
  z.ZodTypeDef,
5968
- DeploymentStreamDollarOrDollarNin
5916
+ DeploymentStreamOrNin
5969
5917
  > = z.object({
5970
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5971
- }).transform((v) => {
5972
- return remap$(v, {
5973
- dollarNin: "$nin",
5974
- });
5918
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
5975
5919
  });
5976
5920
 
5977
5921
  /**
5978
5922
  * @internal
5979
5923
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5980
5924
  */
5981
- export namespace DeploymentStreamDollarOrDollarNin$ {
5982
- /** @deprecated use `DeploymentStreamDollarOrDollarNin$inboundSchema` instead. */
5983
- export const inboundSchema = DeploymentStreamDollarOrDollarNin$inboundSchema;
5984
- /** @deprecated use `DeploymentStreamDollarOrDollarNin$outboundSchema` instead. */
5985
- export const outboundSchema =
5986
- DeploymentStreamDollarOrDollarNin$outboundSchema;
5987
- /** @deprecated use `DeploymentStreamDollarOrDollarNin$Outbound` instead. */
5988
- export type Outbound = DeploymentStreamDollarOrDollarNin$Outbound;
5925
+ export namespace DeploymentStreamOrNin$ {
5926
+ /** @deprecated use `DeploymentStreamOrNin$inboundSchema` instead. */
5927
+ export const inboundSchema = DeploymentStreamOrNin$inboundSchema;
5928
+ /** @deprecated use `DeploymentStreamOrNin$outboundSchema` instead. */
5929
+ export const outboundSchema = DeploymentStreamOrNin$outboundSchema;
5930
+ /** @deprecated use `DeploymentStreamOrNin$Outbound` instead. */
5931
+ export type Outbound = DeploymentStreamOrNin$Outbound;
5989
5932
  }
5990
5933
 
5991
- export function deploymentStreamDollarOrDollarNinToJSON(
5992
- deploymentStreamDollarOrDollarNin: DeploymentStreamDollarOrDollarNin,
5934
+ export function deploymentStreamOrNinToJSON(
5935
+ deploymentStreamOrNin: DeploymentStreamOrNin,
5993
5936
  ): string {
5994
5937
  return JSON.stringify(
5995
- DeploymentStreamDollarOrDollarNin$outboundSchema.parse(
5996
- deploymentStreamDollarOrDollarNin,
5997
- ),
5938
+ DeploymentStreamOrNin$outboundSchema.parse(deploymentStreamOrNin),
5998
5939
  );
5999
5940
  }
6000
5941
 
6001
- export function deploymentStreamDollarOrDollarNinFromJSON(
5942
+ export function deploymentStreamOrNinFromJSON(
6002
5943
  jsonString: string,
6003
- ): SafeParseResult<DeploymentStreamDollarOrDollarNin, SDKValidationError> {
5944
+ ): SafeParseResult<DeploymentStreamOrNin, SDKValidationError> {
6004
5945
  return safeParse(
6005
5946
  jsonString,
6006
- (x) => DeploymentStreamDollarOrDollarNin$inboundSchema.parse(JSON.parse(x)),
6007
- `Failed to parse 'DeploymentStreamDollarOrDollarNin' from JSON`,
5947
+ (x) => DeploymentStreamOrNin$inboundSchema.parse(JSON.parse(x)),
5948
+ `Failed to parse 'DeploymentStreamOrNin' from JSON`,
6008
5949
  );
6009
5950
  }
6010
5951
 
6011
5952
  /** @internal */
6012
- export const DeploymentStreamDollarOrDeploymentsDollarIn$inboundSchema:
6013
- z.ZodType<
6014
- DeploymentStreamDollarOrDeploymentsDollarIn,
6015
- z.ZodTypeDef,
6016
- unknown
6017
- > = z.union([z.string(), z.number(), z.boolean()]);
5953
+ export const DeploymentStreamOrDeploymentsIn$inboundSchema: z.ZodType<
5954
+ DeploymentStreamOrDeploymentsIn,
5955
+ z.ZodTypeDef,
5956
+ unknown
5957
+ > = z.union([z.string(), z.number(), z.boolean()]);
6018
5958
 
6019
5959
  /** @internal */
6020
- export type DeploymentStreamDollarOrDeploymentsDollarIn$Outbound =
5960
+ export type DeploymentStreamOrDeploymentsIn$Outbound =
6021
5961
  | string
6022
5962
  | number
6023
5963
  | boolean;
6024
5964
 
6025
5965
  /** @internal */
6026
- export const DeploymentStreamDollarOrDeploymentsDollarIn$outboundSchema:
6027
- z.ZodType<
6028
- DeploymentStreamDollarOrDeploymentsDollarIn$Outbound,
6029
- z.ZodTypeDef,
6030
- DeploymentStreamDollarOrDeploymentsDollarIn
6031
- > = z.union([z.string(), z.number(), z.boolean()]);
5966
+ export const DeploymentStreamOrDeploymentsIn$outboundSchema: z.ZodType<
5967
+ DeploymentStreamOrDeploymentsIn$Outbound,
5968
+ z.ZodTypeDef,
5969
+ DeploymentStreamOrDeploymentsIn
5970
+ > = z.union([z.string(), z.number(), z.boolean()]);
6032
5971
 
6033
5972
  /**
6034
5973
  * @internal
6035
5974
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6036
5975
  */
6037
- export namespace DeploymentStreamDollarOrDeploymentsDollarIn$ {
6038
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarIn$inboundSchema` instead. */
6039
- export const inboundSchema =
6040
- DeploymentStreamDollarOrDeploymentsDollarIn$inboundSchema;
6041
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarIn$outboundSchema` instead. */
6042
- export const outboundSchema =
6043
- DeploymentStreamDollarOrDeploymentsDollarIn$outboundSchema;
6044
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarIn$Outbound` instead. */
6045
- export type Outbound = DeploymentStreamDollarOrDeploymentsDollarIn$Outbound;
5976
+ export namespace DeploymentStreamOrDeploymentsIn$ {
5977
+ /** @deprecated use `DeploymentStreamOrDeploymentsIn$inboundSchema` instead. */
5978
+ export const inboundSchema = DeploymentStreamOrDeploymentsIn$inboundSchema;
5979
+ /** @deprecated use `DeploymentStreamOrDeploymentsIn$outboundSchema` instead. */
5980
+ export const outboundSchema = DeploymentStreamOrDeploymentsIn$outboundSchema;
5981
+ /** @deprecated use `DeploymentStreamOrDeploymentsIn$Outbound` instead. */
5982
+ export type Outbound = DeploymentStreamOrDeploymentsIn$Outbound;
6046
5983
  }
6047
5984
 
6048
- export function deploymentStreamDollarOrDeploymentsDollarInToJSON(
6049
- deploymentStreamDollarOrDeploymentsDollarIn:
6050
- DeploymentStreamDollarOrDeploymentsDollarIn,
5985
+ export function deploymentStreamOrDeploymentsInToJSON(
5986
+ deploymentStreamOrDeploymentsIn: DeploymentStreamOrDeploymentsIn,
6051
5987
  ): string {
6052
5988
  return JSON.stringify(
6053
- DeploymentStreamDollarOrDeploymentsDollarIn$outboundSchema.parse(
6054
- deploymentStreamDollarOrDeploymentsDollarIn,
5989
+ DeploymentStreamOrDeploymentsIn$outboundSchema.parse(
5990
+ deploymentStreamOrDeploymentsIn,
6055
5991
  ),
6056
5992
  );
6057
5993
  }
6058
5994
 
6059
- export function deploymentStreamDollarOrDeploymentsDollarInFromJSON(
5995
+ export function deploymentStreamOrDeploymentsInFromJSON(
6060
5996
  jsonString: string,
6061
- ): SafeParseResult<
6062
- DeploymentStreamDollarOrDeploymentsDollarIn,
6063
- SDKValidationError
6064
- > {
5997
+ ): SafeParseResult<DeploymentStreamOrDeploymentsIn, SDKValidationError> {
6065
5998
  return safeParse(
6066
5999
  jsonString,
6067
- (x) =>
6068
- DeploymentStreamDollarOrDeploymentsDollarIn$inboundSchema.parse(
6069
- JSON.parse(x),
6070
- ),
6071
- `Failed to parse 'DeploymentStreamDollarOrDeploymentsDollarIn' from JSON`,
6000
+ (x) => DeploymentStreamOrDeploymentsIn$inboundSchema.parse(JSON.parse(x)),
6001
+ `Failed to parse 'DeploymentStreamOrDeploymentsIn' from JSON`,
6072
6002
  );
6073
6003
  }
6074
6004
 
6075
6005
  /** @internal */
6076
- export const DeploymentStreamDollarOrDollarIn$inboundSchema: z.ZodType<
6077
- DeploymentStreamDollarOrDollarIn,
6006
+ export const DeploymentStreamOrIn$inboundSchema: z.ZodType<
6007
+ DeploymentStreamOrIn,
6078
6008
  z.ZodTypeDef,
6079
6009
  unknown
6080
6010
  > = z.object({
6081
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6082
- }).transform((v) => {
6083
- return remap$(v, {
6084
- "$in": "dollarIn",
6085
- });
6011
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6086
6012
  });
6087
6013
 
6088
6014
  /** @internal */
6089
- export type DeploymentStreamDollarOrDollarIn$Outbound = {
6090
- $in: Array<string | number | boolean>;
6015
+ export type DeploymentStreamOrIn$Outbound = {
6016
+ in: Array<string | number | boolean>;
6091
6017
  };
6092
6018
 
6093
6019
  /** @internal */
6094
- export const DeploymentStreamDollarOrDollarIn$outboundSchema: z.ZodType<
6095
- DeploymentStreamDollarOrDollarIn$Outbound,
6020
+ export const DeploymentStreamOrIn$outboundSchema: z.ZodType<
6021
+ DeploymentStreamOrIn$Outbound,
6096
6022
  z.ZodTypeDef,
6097
- DeploymentStreamDollarOrDollarIn
6023
+ DeploymentStreamOrIn
6098
6024
  > = z.object({
6099
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
6100
- }).transform((v) => {
6101
- return remap$(v, {
6102
- dollarIn: "$in",
6103
- });
6025
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
6104
6026
  });
6105
6027
 
6106
6028
  /**
6107
6029
  * @internal
6108
6030
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6109
6031
  */
6110
- export namespace DeploymentStreamDollarOrDollarIn$ {
6111
- /** @deprecated use `DeploymentStreamDollarOrDollarIn$inboundSchema` instead. */
6112
- export const inboundSchema = DeploymentStreamDollarOrDollarIn$inboundSchema;
6113
- /** @deprecated use `DeploymentStreamDollarOrDollarIn$outboundSchema` instead. */
6114
- export const outboundSchema = DeploymentStreamDollarOrDollarIn$outboundSchema;
6115
- /** @deprecated use `DeploymentStreamDollarOrDollarIn$Outbound` instead. */
6116
- export type Outbound = DeploymentStreamDollarOrDollarIn$Outbound;
6032
+ export namespace DeploymentStreamOrIn$ {
6033
+ /** @deprecated use `DeploymentStreamOrIn$inboundSchema` instead. */
6034
+ export const inboundSchema = DeploymentStreamOrIn$inboundSchema;
6035
+ /** @deprecated use `DeploymentStreamOrIn$outboundSchema` instead. */
6036
+ export const outboundSchema = DeploymentStreamOrIn$outboundSchema;
6037
+ /** @deprecated use `DeploymentStreamOrIn$Outbound` instead. */
6038
+ export type Outbound = DeploymentStreamOrIn$Outbound;
6117
6039
  }
6118
6040
 
6119
- export function deploymentStreamDollarOrDollarInToJSON(
6120
- deploymentStreamDollarOrDollarIn: DeploymentStreamDollarOrDollarIn,
6041
+ export function deploymentStreamOrInToJSON(
6042
+ deploymentStreamOrIn: DeploymentStreamOrIn,
6121
6043
  ): string {
6122
6044
  return JSON.stringify(
6123
- DeploymentStreamDollarOrDollarIn$outboundSchema.parse(
6124
- deploymentStreamDollarOrDollarIn,
6125
- ),
6045
+ DeploymentStreamOrIn$outboundSchema.parse(deploymentStreamOrIn),
6126
6046
  );
6127
6047
  }
6128
6048
 
6129
- export function deploymentStreamDollarOrDollarInFromJSON(
6049
+ export function deploymentStreamOrInFromJSON(
6130
6050
  jsonString: string,
6131
- ): SafeParseResult<DeploymentStreamDollarOrDollarIn, SDKValidationError> {
6051
+ ): SafeParseResult<DeploymentStreamOrIn, SDKValidationError> {
6132
6052
  return safeParse(
6133
6053
  jsonString,
6134
- (x) => DeploymentStreamDollarOrDollarIn$inboundSchema.parse(JSON.parse(x)),
6135
- `Failed to parse 'DeploymentStreamDollarOrDollarIn' from JSON`,
6054
+ (x) => DeploymentStreamOrIn$inboundSchema.parse(JSON.parse(x)),
6055
+ `Failed to parse 'DeploymentStreamOrIn' from JSON`,
6136
6056
  );
6137
6057
  }
6138
6058
 
6139
6059
  /** @internal */
6140
- export const DeploymentStreamDollarOrDollarLte$inboundSchema: z.ZodType<
6141
- DeploymentStreamDollarOrDollarLte,
6060
+ export const DeploymentStreamOrLte$inboundSchema: z.ZodType<
6061
+ DeploymentStreamOrLte,
6142
6062
  z.ZodTypeDef,
6143
6063
  unknown
6144
6064
  > = z.object({
6145
- $lte: z.number(),
6146
- }).transform((v) => {
6147
- return remap$(v, {
6148
- "$lte": "dollarLte",
6149
- });
6065
+ lte: z.number(),
6150
6066
  });
6151
6067
 
6152
6068
  /** @internal */
6153
- export type DeploymentStreamDollarOrDollarLte$Outbound = {
6154
- $lte: number;
6069
+ export type DeploymentStreamOrLte$Outbound = {
6070
+ lte: number;
6155
6071
  };
6156
6072
 
6157
6073
  /** @internal */
6158
- export const DeploymentStreamDollarOrDollarLte$outboundSchema: z.ZodType<
6159
- DeploymentStreamDollarOrDollarLte$Outbound,
6074
+ export const DeploymentStreamOrLte$outboundSchema: z.ZodType<
6075
+ DeploymentStreamOrLte$Outbound,
6160
6076
  z.ZodTypeDef,
6161
- DeploymentStreamDollarOrDollarLte
6077
+ DeploymentStreamOrLte
6162
6078
  > = z.object({
6163
- dollarLte: z.number(),
6164
- }).transform((v) => {
6165
- return remap$(v, {
6166
- dollarLte: "$lte",
6167
- });
6079
+ lte: z.number(),
6168
6080
  });
6169
6081
 
6170
6082
  /**
6171
6083
  * @internal
6172
6084
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6173
6085
  */
6174
- export namespace DeploymentStreamDollarOrDollarLte$ {
6175
- /** @deprecated use `DeploymentStreamDollarOrDollarLte$inboundSchema` instead. */
6176
- export const inboundSchema = DeploymentStreamDollarOrDollarLte$inboundSchema;
6177
- /** @deprecated use `DeploymentStreamDollarOrDollarLte$outboundSchema` instead. */
6178
- export const outboundSchema =
6179
- DeploymentStreamDollarOrDollarLte$outboundSchema;
6180
- /** @deprecated use `DeploymentStreamDollarOrDollarLte$Outbound` instead. */
6181
- export type Outbound = DeploymentStreamDollarOrDollarLte$Outbound;
6086
+ export namespace DeploymentStreamOrLte$ {
6087
+ /** @deprecated use `DeploymentStreamOrLte$inboundSchema` instead. */
6088
+ export const inboundSchema = DeploymentStreamOrLte$inboundSchema;
6089
+ /** @deprecated use `DeploymentStreamOrLte$outboundSchema` instead. */
6090
+ export const outboundSchema = DeploymentStreamOrLte$outboundSchema;
6091
+ /** @deprecated use `DeploymentStreamOrLte$Outbound` instead. */
6092
+ export type Outbound = DeploymentStreamOrLte$Outbound;
6182
6093
  }
6183
6094
 
6184
- export function deploymentStreamDollarOrDollarLteToJSON(
6185
- deploymentStreamDollarOrDollarLte: DeploymentStreamDollarOrDollarLte,
6095
+ export function deploymentStreamOrLteToJSON(
6096
+ deploymentStreamOrLte: DeploymentStreamOrLte,
6186
6097
  ): string {
6187
6098
  return JSON.stringify(
6188
- DeploymentStreamDollarOrDollarLte$outboundSchema.parse(
6189
- deploymentStreamDollarOrDollarLte,
6190
- ),
6099
+ DeploymentStreamOrLte$outboundSchema.parse(deploymentStreamOrLte),
6191
6100
  );
6192
6101
  }
6193
6102
 
6194
- export function deploymentStreamDollarOrDollarLteFromJSON(
6103
+ export function deploymentStreamOrLteFromJSON(
6195
6104
  jsonString: string,
6196
- ): SafeParseResult<DeploymentStreamDollarOrDollarLte, SDKValidationError> {
6105
+ ): SafeParseResult<DeploymentStreamOrLte, SDKValidationError> {
6197
6106
  return safeParse(
6198
6107
  jsonString,
6199
- (x) => DeploymentStreamDollarOrDollarLte$inboundSchema.parse(JSON.parse(x)),
6200
- `Failed to parse 'DeploymentStreamDollarOrDollarLte' from JSON`,
6108
+ (x) => DeploymentStreamOrLte$inboundSchema.parse(JSON.parse(x)),
6109
+ `Failed to parse 'DeploymentStreamOrLte' from JSON`,
6201
6110
  );
6202
6111
  }
6203
6112
 
6204
6113
  /** @internal */
6205
- export const DeploymentStreamDollarOrDollarLt$inboundSchema: z.ZodType<
6206
- DeploymentStreamDollarOrDollarLt,
6114
+ export const DeploymentStreamOrLt$inboundSchema: z.ZodType<
6115
+ DeploymentStreamOrLt,
6207
6116
  z.ZodTypeDef,
6208
6117
  unknown
6209
6118
  > = z.object({
6210
- $lt: z.number(),
6211
- }).transform((v) => {
6212
- return remap$(v, {
6213
- "$lt": "dollarLt",
6214
- });
6119
+ lt: z.number(),
6215
6120
  });
6216
6121
 
6217
6122
  /** @internal */
6218
- export type DeploymentStreamDollarOrDollarLt$Outbound = {
6219
- $lt: number;
6123
+ export type DeploymentStreamOrLt$Outbound = {
6124
+ lt: number;
6220
6125
  };
6221
6126
 
6222
6127
  /** @internal */
6223
- export const DeploymentStreamDollarOrDollarLt$outboundSchema: z.ZodType<
6224
- DeploymentStreamDollarOrDollarLt$Outbound,
6128
+ export const DeploymentStreamOrLt$outboundSchema: z.ZodType<
6129
+ DeploymentStreamOrLt$Outbound,
6225
6130
  z.ZodTypeDef,
6226
- DeploymentStreamDollarOrDollarLt
6131
+ DeploymentStreamOrLt
6227
6132
  > = z.object({
6228
- dollarLt: z.number(),
6229
- }).transform((v) => {
6230
- return remap$(v, {
6231
- dollarLt: "$lt",
6232
- });
6133
+ lt: z.number(),
6233
6134
  });
6234
6135
 
6235
6136
  /**
6236
6137
  * @internal
6237
6138
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6238
6139
  */
6239
- export namespace DeploymentStreamDollarOrDollarLt$ {
6240
- /** @deprecated use `DeploymentStreamDollarOrDollarLt$inboundSchema` instead. */
6241
- export const inboundSchema = DeploymentStreamDollarOrDollarLt$inboundSchema;
6242
- /** @deprecated use `DeploymentStreamDollarOrDollarLt$outboundSchema` instead. */
6243
- export const outboundSchema = DeploymentStreamDollarOrDollarLt$outboundSchema;
6244
- /** @deprecated use `DeploymentStreamDollarOrDollarLt$Outbound` instead. */
6245
- export type Outbound = DeploymentStreamDollarOrDollarLt$Outbound;
6140
+ export namespace DeploymentStreamOrLt$ {
6141
+ /** @deprecated use `DeploymentStreamOrLt$inboundSchema` instead. */
6142
+ export const inboundSchema = DeploymentStreamOrLt$inboundSchema;
6143
+ /** @deprecated use `DeploymentStreamOrLt$outboundSchema` instead. */
6144
+ export const outboundSchema = DeploymentStreamOrLt$outboundSchema;
6145
+ /** @deprecated use `DeploymentStreamOrLt$Outbound` instead. */
6146
+ export type Outbound = DeploymentStreamOrLt$Outbound;
6246
6147
  }
6247
6148
 
6248
- export function deploymentStreamDollarOrDollarLtToJSON(
6249
- deploymentStreamDollarOrDollarLt: DeploymentStreamDollarOrDollarLt,
6149
+ export function deploymentStreamOrLtToJSON(
6150
+ deploymentStreamOrLt: DeploymentStreamOrLt,
6250
6151
  ): string {
6251
6152
  return JSON.stringify(
6252
- DeploymentStreamDollarOrDollarLt$outboundSchema.parse(
6253
- deploymentStreamDollarOrDollarLt,
6254
- ),
6153
+ DeploymentStreamOrLt$outboundSchema.parse(deploymentStreamOrLt),
6255
6154
  );
6256
6155
  }
6257
6156
 
6258
- export function deploymentStreamDollarOrDollarLtFromJSON(
6157
+ export function deploymentStreamOrLtFromJSON(
6259
6158
  jsonString: string,
6260
- ): SafeParseResult<DeploymentStreamDollarOrDollarLt, SDKValidationError> {
6159
+ ): SafeParseResult<DeploymentStreamOrLt, SDKValidationError> {
6261
6160
  return safeParse(
6262
6161
  jsonString,
6263
- (x) => DeploymentStreamDollarOrDollarLt$inboundSchema.parse(JSON.parse(x)),
6264
- `Failed to parse 'DeploymentStreamDollarOrDollarLt' from JSON`,
6162
+ (x) => DeploymentStreamOrLt$inboundSchema.parse(JSON.parse(x)),
6163
+ `Failed to parse 'DeploymentStreamOrLt' from JSON`,
6265
6164
  );
6266
6165
  }
6267
6166
 
6268
6167
  /** @internal */
6269
- export const DeploymentStreamDollarOrDollarGte$inboundSchema: z.ZodType<
6270
- DeploymentStreamDollarOrDollarGte,
6168
+ export const DeploymentStreamOrGte$inboundSchema: z.ZodType<
6169
+ DeploymentStreamOrGte,
6271
6170
  z.ZodTypeDef,
6272
6171
  unknown
6273
6172
  > = z.object({
6274
- $gte: z.number(),
6275
- }).transform((v) => {
6276
- return remap$(v, {
6277
- "$gte": "dollarGte",
6278
- });
6173
+ gte: z.number(),
6279
6174
  });
6280
6175
 
6281
6176
  /** @internal */
6282
- export type DeploymentStreamDollarOrDollarGte$Outbound = {
6283
- $gte: number;
6177
+ export type DeploymentStreamOrGte$Outbound = {
6178
+ gte: number;
6284
6179
  };
6285
6180
 
6286
6181
  /** @internal */
6287
- export const DeploymentStreamDollarOrDollarGte$outboundSchema: z.ZodType<
6288
- DeploymentStreamDollarOrDollarGte$Outbound,
6182
+ export const DeploymentStreamOrGte$outboundSchema: z.ZodType<
6183
+ DeploymentStreamOrGte$Outbound,
6289
6184
  z.ZodTypeDef,
6290
- DeploymentStreamDollarOrDollarGte
6185
+ DeploymentStreamOrGte
6291
6186
  > = z.object({
6292
- dollarGte: z.number(),
6293
- }).transform((v) => {
6294
- return remap$(v, {
6295
- dollarGte: "$gte",
6296
- });
6187
+ gte: z.number(),
6297
6188
  });
6298
6189
 
6299
6190
  /**
6300
6191
  * @internal
6301
6192
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6302
6193
  */
6303
- export namespace DeploymentStreamDollarOrDollarGte$ {
6304
- /** @deprecated use `DeploymentStreamDollarOrDollarGte$inboundSchema` instead. */
6305
- export const inboundSchema = DeploymentStreamDollarOrDollarGte$inboundSchema;
6306
- /** @deprecated use `DeploymentStreamDollarOrDollarGte$outboundSchema` instead. */
6307
- export const outboundSchema =
6308
- DeploymentStreamDollarOrDollarGte$outboundSchema;
6309
- /** @deprecated use `DeploymentStreamDollarOrDollarGte$Outbound` instead. */
6310
- export type Outbound = DeploymentStreamDollarOrDollarGte$Outbound;
6194
+ export namespace DeploymentStreamOrGte$ {
6195
+ /** @deprecated use `DeploymentStreamOrGte$inboundSchema` instead. */
6196
+ export const inboundSchema = DeploymentStreamOrGte$inboundSchema;
6197
+ /** @deprecated use `DeploymentStreamOrGte$outboundSchema` instead. */
6198
+ export const outboundSchema = DeploymentStreamOrGte$outboundSchema;
6199
+ /** @deprecated use `DeploymentStreamOrGte$Outbound` instead. */
6200
+ export type Outbound = DeploymentStreamOrGte$Outbound;
6311
6201
  }
6312
6202
 
6313
- export function deploymentStreamDollarOrDollarGteToJSON(
6314
- deploymentStreamDollarOrDollarGte: DeploymentStreamDollarOrDollarGte,
6203
+ export function deploymentStreamOrGteToJSON(
6204
+ deploymentStreamOrGte: DeploymentStreamOrGte,
6315
6205
  ): string {
6316
6206
  return JSON.stringify(
6317
- DeploymentStreamDollarOrDollarGte$outboundSchema.parse(
6318
- deploymentStreamDollarOrDollarGte,
6319
- ),
6207
+ DeploymentStreamOrGte$outboundSchema.parse(deploymentStreamOrGte),
6320
6208
  );
6321
6209
  }
6322
6210
 
6323
- export function deploymentStreamDollarOrDollarGteFromJSON(
6211
+ export function deploymentStreamOrGteFromJSON(
6324
6212
  jsonString: string,
6325
- ): SafeParseResult<DeploymentStreamDollarOrDollarGte, SDKValidationError> {
6213
+ ): SafeParseResult<DeploymentStreamOrGte, SDKValidationError> {
6326
6214
  return safeParse(
6327
6215
  jsonString,
6328
- (x) => DeploymentStreamDollarOrDollarGte$inboundSchema.parse(JSON.parse(x)),
6329
- `Failed to parse 'DeploymentStreamDollarOrDollarGte' from JSON`,
6216
+ (x) => DeploymentStreamOrGte$inboundSchema.parse(JSON.parse(x)),
6217
+ `Failed to parse 'DeploymentStreamOrGte' from JSON`,
6330
6218
  );
6331
6219
  }
6332
6220
 
6333
6221
  /** @internal */
6334
- export const DeploymentStreamDollarOr3$inboundSchema: z.ZodType<
6335
- DeploymentStreamDollarOr3,
6222
+ export const DeploymentStreamOr3$inboundSchema: z.ZodType<
6223
+ DeploymentStreamOr3,
6336
6224
  z.ZodTypeDef,
6337
6225
  unknown
6338
6226
  > = z.object({
6339
- $gt: z.number(),
6340
- }).transform((v) => {
6341
- return remap$(v, {
6342
- "$gt": "dollarGt",
6343
- });
6227
+ gt: z.number(),
6344
6228
  });
6345
6229
 
6346
6230
  /** @internal */
6347
- export type DeploymentStreamDollarOr3$Outbound = {
6348
- $gt: number;
6231
+ export type DeploymentStreamOr3$Outbound = {
6232
+ gt: number;
6349
6233
  };
6350
6234
 
6351
6235
  /** @internal */
6352
- export const DeploymentStreamDollarOr3$outboundSchema: z.ZodType<
6353
- DeploymentStreamDollarOr3$Outbound,
6236
+ export const DeploymentStreamOr3$outboundSchema: z.ZodType<
6237
+ DeploymentStreamOr3$Outbound,
6354
6238
  z.ZodTypeDef,
6355
- DeploymentStreamDollarOr3
6239
+ DeploymentStreamOr3
6356
6240
  > = z.object({
6357
- dollarGt: z.number(),
6358
- }).transform((v) => {
6359
- return remap$(v, {
6360
- dollarGt: "$gt",
6361
- });
6241
+ gt: z.number(),
6362
6242
  });
6363
6243
 
6364
6244
  /**
6365
6245
  * @internal
6366
6246
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6367
6247
  */
6368
- export namespace DeploymentStreamDollarOr3$ {
6369
- /** @deprecated use `DeploymentStreamDollarOr3$inboundSchema` instead. */
6370
- export const inboundSchema = DeploymentStreamDollarOr3$inboundSchema;
6371
- /** @deprecated use `DeploymentStreamDollarOr3$outboundSchema` instead. */
6372
- export const outboundSchema = DeploymentStreamDollarOr3$outboundSchema;
6373
- /** @deprecated use `DeploymentStreamDollarOr3$Outbound` instead. */
6374
- export type Outbound = DeploymentStreamDollarOr3$Outbound;
6248
+ export namespace DeploymentStreamOr3$ {
6249
+ /** @deprecated use `DeploymentStreamOr3$inboundSchema` instead. */
6250
+ export const inboundSchema = DeploymentStreamOr3$inboundSchema;
6251
+ /** @deprecated use `DeploymentStreamOr3$outboundSchema` instead. */
6252
+ export const outboundSchema = DeploymentStreamOr3$outboundSchema;
6253
+ /** @deprecated use `DeploymentStreamOr3$Outbound` instead. */
6254
+ export type Outbound = DeploymentStreamOr3$Outbound;
6375
6255
  }
6376
6256
 
6377
- export function deploymentStreamDollarOr3ToJSON(
6378
- deploymentStreamDollarOr3: DeploymentStreamDollarOr3,
6257
+ export function deploymentStreamOr3ToJSON(
6258
+ deploymentStreamOr3: DeploymentStreamOr3,
6379
6259
  ): string {
6380
6260
  return JSON.stringify(
6381
- DeploymentStreamDollarOr3$outboundSchema.parse(deploymentStreamDollarOr3),
6261
+ DeploymentStreamOr3$outboundSchema.parse(deploymentStreamOr3),
6382
6262
  );
6383
6263
  }
6384
6264
 
6385
- export function deploymentStreamDollarOr3FromJSON(
6265
+ export function deploymentStreamOr3FromJSON(
6386
6266
  jsonString: string,
6387
- ): SafeParseResult<DeploymentStreamDollarOr3, SDKValidationError> {
6267
+ ): SafeParseResult<DeploymentStreamOr3, SDKValidationError> {
6388
6268
  return safeParse(
6389
6269
  jsonString,
6390
- (x) => DeploymentStreamDollarOr3$inboundSchema.parse(JSON.parse(x)),
6391
- `Failed to parse 'DeploymentStreamDollarOr3' from JSON`,
6270
+ (x) => DeploymentStreamOr3$inboundSchema.parse(JSON.parse(x)),
6271
+ `Failed to parse 'DeploymentStreamOr3' from JSON`,
6392
6272
  );
6393
6273
  }
6394
6274
 
6395
6275
  /** @internal */
6396
- export const DeploymentStreamDollarOrDeploymentsDollarNe$inboundSchema:
6397
- z.ZodType<
6398
- DeploymentStreamDollarOrDeploymentsDollarNe,
6399
- z.ZodTypeDef,
6400
- unknown
6401
- > = z.union([z.string(), z.number(), z.boolean()]);
6276
+ export const DeploymentStreamOrDeploymentsNe$inboundSchema: z.ZodType<
6277
+ DeploymentStreamOrDeploymentsNe,
6278
+ z.ZodTypeDef,
6279
+ unknown
6280
+ > = z.union([z.string(), z.number(), z.boolean()]);
6402
6281
 
6403
6282
  /** @internal */
6404
- export type DeploymentStreamDollarOrDeploymentsDollarNe$Outbound =
6283
+ export type DeploymentStreamOrDeploymentsNe$Outbound =
6405
6284
  | string
6406
6285
  | number
6407
6286
  | boolean;
6408
6287
 
6409
6288
  /** @internal */
6410
- export const DeploymentStreamDollarOrDeploymentsDollarNe$outboundSchema:
6411
- z.ZodType<
6412
- DeploymentStreamDollarOrDeploymentsDollarNe$Outbound,
6413
- z.ZodTypeDef,
6414
- DeploymentStreamDollarOrDeploymentsDollarNe
6415
- > = z.union([z.string(), z.number(), z.boolean()]);
6289
+ export const DeploymentStreamOrDeploymentsNe$outboundSchema: z.ZodType<
6290
+ DeploymentStreamOrDeploymentsNe$Outbound,
6291
+ z.ZodTypeDef,
6292
+ DeploymentStreamOrDeploymentsNe
6293
+ > = z.union([z.string(), z.number(), z.boolean()]);
6416
6294
 
6417
6295
  /**
6418
6296
  * @internal
6419
6297
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6420
6298
  */
6421
- export namespace DeploymentStreamDollarOrDeploymentsDollarNe$ {
6422
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarNe$inboundSchema` instead. */
6423
- export const inboundSchema =
6424
- DeploymentStreamDollarOrDeploymentsDollarNe$inboundSchema;
6425
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarNe$outboundSchema` instead. */
6426
- export const outboundSchema =
6427
- DeploymentStreamDollarOrDeploymentsDollarNe$outboundSchema;
6428
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarNe$Outbound` instead. */
6429
- export type Outbound = DeploymentStreamDollarOrDeploymentsDollarNe$Outbound;
6299
+ export namespace DeploymentStreamOrDeploymentsNe$ {
6300
+ /** @deprecated use `DeploymentStreamOrDeploymentsNe$inboundSchema` instead. */
6301
+ export const inboundSchema = DeploymentStreamOrDeploymentsNe$inboundSchema;
6302
+ /** @deprecated use `DeploymentStreamOrDeploymentsNe$outboundSchema` instead. */
6303
+ export const outboundSchema = DeploymentStreamOrDeploymentsNe$outboundSchema;
6304
+ /** @deprecated use `DeploymentStreamOrDeploymentsNe$Outbound` instead. */
6305
+ export type Outbound = DeploymentStreamOrDeploymentsNe$Outbound;
6430
6306
  }
6431
6307
 
6432
- export function deploymentStreamDollarOrDeploymentsDollarNeToJSON(
6433
- deploymentStreamDollarOrDeploymentsDollarNe:
6434
- DeploymentStreamDollarOrDeploymentsDollarNe,
6308
+ export function deploymentStreamOrDeploymentsNeToJSON(
6309
+ deploymentStreamOrDeploymentsNe: DeploymentStreamOrDeploymentsNe,
6435
6310
  ): string {
6436
6311
  return JSON.stringify(
6437
- DeploymentStreamDollarOrDeploymentsDollarNe$outboundSchema.parse(
6438
- deploymentStreamDollarOrDeploymentsDollarNe,
6312
+ DeploymentStreamOrDeploymentsNe$outboundSchema.parse(
6313
+ deploymentStreamOrDeploymentsNe,
6439
6314
  ),
6440
6315
  );
6441
6316
  }
6442
6317
 
6443
- export function deploymentStreamDollarOrDeploymentsDollarNeFromJSON(
6318
+ export function deploymentStreamOrDeploymentsNeFromJSON(
6444
6319
  jsonString: string,
6445
- ): SafeParseResult<
6446
- DeploymentStreamDollarOrDeploymentsDollarNe,
6447
- SDKValidationError
6448
- > {
6320
+ ): SafeParseResult<DeploymentStreamOrDeploymentsNe, SDKValidationError> {
6449
6321
  return safeParse(
6450
6322
  jsonString,
6451
- (x) =>
6452
- DeploymentStreamDollarOrDeploymentsDollarNe$inboundSchema.parse(
6453
- JSON.parse(x),
6454
- ),
6455
- `Failed to parse 'DeploymentStreamDollarOrDeploymentsDollarNe' from JSON`,
6323
+ (x) => DeploymentStreamOrDeploymentsNe$inboundSchema.parse(JSON.parse(x)),
6324
+ `Failed to parse 'DeploymentStreamOrDeploymentsNe' from JSON`,
6456
6325
  );
6457
6326
  }
6458
6327
 
6459
6328
  /** @internal */
6460
- export const DeploymentStreamDollarOrDollarNe$inboundSchema: z.ZodType<
6461
- DeploymentStreamDollarOrDollarNe,
6329
+ export const DeploymentStreamOrNe$inboundSchema: z.ZodType<
6330
+ DeploymentStreamOrNe,
6462
6331
  z.ZodTypeDef,
6463
6332
  unknown
6464
6333
  > = z.object({
6465
- $ne: z.union([z.string(), z.number(), z.boolean()]),
6466
- }).transform((v) => {
6467
- return remap$(v, {
6468
- "$ne": "dollarNe",
6469
- });
6334
+ ne: z.union([z.string(), z.number(), z.boolean()]),
6470
6335
  });
6471
6336
 
6472
6337
  /** @internal */
6473
- export type DeploymentStreamDollarOrDollarNe$Outbound = {
6474
- $ne: string | number | boolean;
6338
+ export type DeploymentStreamOrNe$Outbound = {
6339
+ ne: string | number | boolean;
6475
6340
  };
6476
6341
 
6477
6342
  /** @internal */
6478
- export const DeploymentStreamDollarOrDollarNe$outboundSchema: z.ZodType<
6479
- DeploymentStreamDollarOrDollarNe$Outbound,
6343
+ export const DeploymentStreamOrNe$outboundSchema: z.ZodType<
6344
+ DeploymentStreamOrNe$Outbound,
6480
6345
  z.ZodTypeDef,
6481
- DeploymentStreamDollarOrDollarNe
6346
+ DeploymentStreamOrNe
6482
6347
  > = z.object({
6483
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
6484
- }).transform((v) => {
6485
- return remap$(v, {
6486
- dollarNe: "$ne",
6487
- });
6348
+ ne: z.union([z.string(), z.number(), z.boolean()]),
6488
6349
  });
6489
6350
 
6490
6351
  /**
6491
6352
  * @internal
6492
6353
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6493
6354
  */
6494
- export namespace DeploymentStreamDollarOrDollarNe$ {
6495
- /** @deprecated use `DeploymentStreamDollarOrDollarNe$inboundSchema` instead. */
6496
- export const inboundSchema = DeploymentStreamDollarOrDollarNe$inboundSchema;
6497
- /** @deprecated use `DeploymentStreamDollarOrDollarNe$outboundSchema` instead. */
6498
- export const outboundSchema = DeploymentStreamDollarOrDollarNe$outboundSchema;
6499
- /** @deprecated use `DeploymentStreamDollarOrDollarNe$Outbound` instead. */
6500
- export type Outbound = DeploymentStreamDollarOrDollarNe$Outbound;
6355
+ export namespace DeploymentStreamOrNe$ {
6356
+ /** @deprecated use `DeploymentStreamOrNe$inboundSchema` instead. */
6357
+ export const inboundSchema = DeploymentStreamOrNe$inboundSchema;
6358
+ /** @deprecated use `DeploymentStreamOrNe$outboundSchema` instead. */
6359
+ export const outboundSchema = DeploymentStreamOrNe$outboundSchema;
6360
+ /** @deprecated use `DeploymentStreamOrNe$Outbound` instead. */
6361
+ export type Outbound = DeploymentStreamOrNe$Outbound;
6501
6362
  }
6502
6363
 
6503
- export function deploymentStreamDollarOrDollarNeToJSON(
6504
- deploymentStreamDollarOrDollarNe: DeploymentStreamDollarOrDollarNe,
6364
+ export function deploymentStreamOrNeToJSON(
6365
+ deploymentStreamOrNe: DeploymentStreamOrNe,
6505
6366
  ): string {
6506
6367
  return JSON.stringify(
6507
- DeploymentStreamDollarOrDollarNe$outboundSchema.parse(
6508
- deploymentStreamDollarOrDollarNe,
6509
- ),
6368
+ DeploymentStreamOrNe$outboundSchema.parse(deploymentStreamOrNe),
6510
6369
  );
6511
6370
  }
6512
6371
 
6513
- export function deploymentStreamDollarOrDollarNeFromJSON(
6372
+ export function deploymentStreamOrNeFromJSON(
6514
6373
  jsonString: string,
6515
- ): SafeParseResult<DeploymentStreamDollarOrDollarNe, SDKValidationError> {
6374
+ ): SafeParseResult<DeploymentStreamOrNe, SDKValidationError> {
6516
6375
  return safeParse(
6517
6376
  jsonString,
6518
- (x) => DeploymentStreamDollarOrDollarNe$inboundSchema.parse(JSON.parse(x)),
6519
- `Failed to parse 'DeploymentStreamDollarOrDollarNe' from JSON`,
6377
+ (x) => DeploymentStreamOrNe$inboundSchema.parse(JSON.parse(x)),
6378
+ `Failed to parse 'DeploymentStreamOrNe' from JSON`,
6520
6379
  );
6521
6380
  }
6522
6381
 
6523
6382
  /** @internal */
6524
- export const DeploymentStreamDollarOrDeploymentsDollarEq$inboundSchema:
6525
- z.ZodType<
6526
- DeploymentStreamDollarOrDeploymentsDollarEq,
6527
- z.ZodTypeDef,
6528
- unknown
6529
- > = z.union([z.string(), z.number(), z.boolean()]);
6383
+ export const DeploymentStreamOrDeploymentsEq$inboundSchema: z.ZodType<
6384
+ DeploymentStreamOrDeploymentsEq,
6385
+ z.ZodTypeDef,
6386
+ unknown
6387
+ > = z.union([z.string(), z.number(), z.boolean()]);
6530
6388
 
6531
6389
  /** @internal */
6532
- export type DeploymentStreamDollarOrDeploymentsDollarEq$Outbound =
6390
+ export type DeploymentStreamOrDeploymentsEq$Outbound =
6533
6391
  | string
6534
6392
  | number
6535
6393
  | boolean;
6536
6394
 
6537
6395
  /** @internal */
6538
- export const DeploymentStreamDollarOrDeploymentsDollarEq$outboundSchema:
6539
- z.ZodType<
6540
- DeploymentStreamDollarOrDeploymentsDollarEq$Outbound,
6541
- z.ZodTypeDef,
6542
- DeploymentStreamDollarOrDeploymentsDollarEq
6543
- > = z.union([z.string(), z.number(), z.boolean()]);
6396
+ export const DeploymentStreamOrDeploymentsEq$outboundSchema: z.ZodType<
6397
+ DeploymentStreamOrDeploymentsEq$Outbound,
6398
+ z.ZodTypeDef,
6399
+ DeploymentStreamOrDeploymentsEq
6400
+ > = z.union([z.string(), z.number(), z.boolean()]);
6544
6401
 
6545
6402
  /**
6546
6403
  * @internal
6547
6404
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6548
6405
  */
6549
- export namespace DeploymentStreamDollarOrDeploymentsDollarEq$ {
6550
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarEq$inboundSchema` instead. */
6551
- export const inboundSchema =
6552
- DeploymentStreamDollarOrDeploymentsDollarEq$inboundSchema;
6553
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarEq$outboundSchema` instead. */
6554
- export const outboundSchema =
6555
- DeploymentStreamDollarOrDeploymentsDollarEq$outboundSchema;
6556
- /** @deprecated use `DeploymentStreamDollarOrDeploymentsDollarEq$Outbound` instead. */
6557
- export type Outbound = DeploymentStreamDollarOrDeploymentsDollarEq$Outbound;
6406
+ export namespace DeploymentStreamOrDeploymentsEq$ {
6407
+ /** @deprecated use `DeploymentStreamOrDeploymentsEq$inboundSchema` instead. */
6408
+ export const inboundSchema = DeploymentStreamOrDeploymentsEq$inboundSchema;
6409
+ /** @deprecated use `DeploymentStreamOrDeploymentsEq$outboundSchema` instead. */
6410
+ export const outboundSchema = DeploymentStreamOrDeploymentsEq$outboundSchema;
6411
+ /** @deprecated use `DeploymentStreamOrDeploymentsEq$Outbound` instead. */
6412
+ export type Outbound = DeploymentStreamOrDeploymentsEq$Outbound;
6558
6413
  }
6559
6414
 
6560
- export function deploymentStreamDollarOrDeploymentsDollarEqToJSON(
6561
- deploymentStreamDollarOrDeploymentsDollarEq:
6562
- DeploymentStreamDollarOrDeploymentsDollarEq,
6415
+ export function deploymentStreamOrDeploymentsEqToJSON(
6416
+ deploymentStreamOrDeploymentsEq: DeploymentStreamOrDeploymentsEq,
6563
6417
  ): string {
6564
6418
  return JSON.stringify(
6565
- DeploymentStreamDollarOrDeploymentsDollarEq$outboundSchema.parse(
6566
- deploymentStreamDollarOrDeploymentsDollarEq,
6419
+ DeploymentStreamOrDeploymentsEq$outboundSchema.parse(
6420
+ deploymentStreamOrDeploymentsEq,
6567
6421
  ),
6568
6422
  );
6569
6423
  }
6570
6424
 
6571
- export function deploymentStreamDollarOrDeploymentsDollarEqFromJSON(
6425
+ export function deploymentStreamOrDeploymentsEqFromJSON(
6572
6426
  jsonString: string,
6573
- ): SafeParseResult<
6574
- DeploymentStreamDollarOrDeploymentsDollarEq,
6575
- SDKValidationError
6576
- > {
6427
+ ): SafeParseResult<DeploymentStreamOrDeploymentsEq, SDKValidationError> {
6577
6428
  return safeParse(
6578
6429
  jsonString,
6579
- (x) =>
6580
- DeploymentStreamDollarOrDeploymentsDollarEq$inboundSchema.parse(
6581
- JSON.parse(x),
6582
- ),
6583
- `Failed to parse 'DeploymentStreamDollarOrDeploymentsDollarEq' from JSON`,
6430
+ (x) => DeploymentStreamOrDeploymentsEq$inboundSchema.parse(JSON.parse(x)),
6431
+ `Failed to parse 'DeploymentStreamOrDeploymentsEq' from JSON`,
6584
6432
  );
6585
6433
  }
6586
6434
 
6587
6435
  /** @internal */
6588
- export const DeploymentStreamDollarOrDollarEq$inboundSchema: z.ZodType<
6589
- DeploymentStreamDollarOrDollarEq,
6436
+ export const DeploymentStreamOrEq$inboundSchema: z.ZodType<
6437
+ DeploymentStreamOrEq,
6590
6438
  z.ZodTypeDef,
6591
6439
  unknown
6592
6440
  > = z.object({
6593
- $eq: z.union([z.string(), z.number(), z.boolean()]),
6594
- }).transform((v) => {
6595
- return remap$(v, {
6596
- "$eq": "dollarEq",
6597
- });
6441
+ eq: z.union([z.string(), z.number(), z.boolean()]),
6598
6442
  });
6599
6443
 
6600
6444
  /** @internal */
6601
- export type DeploymentStreamDollarOrDollarEq$Outbound = {
6602
- $eq: string | number | boolean;
6445
+ export type DeploymentStreamOrEq$Outbound = {
6446
+ eq: string | number | boolean;
6603
6447
  };
6604
6448
 
6605
6449
  /** @internal */
6606
- export const DeploymentStreamDollarOrDollarEq$outboundSchema: z.ZodType<
6607
- DeploymentStreamDollarOrDollarEq$Outbound,
6450
+ export const DeploymentStreamOrEq$outboundSchema: z.ZodType<
6451
+ DeploymentStreamOrEq$Outbound,
6608
6452
  z.ZodTypeDef,
6609
- DeploymentStreamDollarOrDollarEq
6453
+ DeploymentStreamOrEq
6610
6454
  > = z.object({
6611
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
6612
- }).transform((v) => {
6613
- return remap$(v, {
6614
- dollarEq: "$eq",
6615
- });
6455
+ eq: z.union([z.string(), z.number(), z.boolean()]),
6616
6456
  });
6617
6457
 
6618
6458
  /**
6619
6459
  * @internal
6620
6460
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6621
6461
  */
6622
- export namespace DeploymentStreamDollarOrDollarEq$ {
6623
- /** @deprecated use `DeploymentStreamDollarOrDollarEq$inboundSchema` instead. */
6624
- export const inboundSchema = DeploymentStreamDollarOrDollarEq$inboundSchema;
6625
- /** @deprecated use `DeploymentStreamDollarOrDollarEq$outboundSchema` instead. */
6626
- export const outboundSchema = DeploymentStreamDollarOrDollarEq$outboundSchema;
6627
- /** @deprecated use `DeploymentStreamDollarOrDollarEq$Outbound` instead. */
6628
- export type Outbound = DeploymentStreamDollarOrDollarEq$Outbound;
6462
+ export namespace DeploymentStreamOrEq$ {
6463
+ /** @deprecated use `DeploymentStreamOrEq$inboundSchema` instead. */
6464
+ export const inboundSchema = DeploymentStreamOrEq$inboundSchema;
6465
+ /** @deprecated use `DeploymentStreamOrEq$outboundSchema` instead. */
6466
+ export const outboundSchema = DeploymentStreamOrEq$outboundSchema;
6467
+ /** @deprecated use `DeploymentStreamOrEq$Outbound` instead. */
6468
+ export type Outbound = DeploymentStreamOrEq$Outbound;
6629
6469
  }
6630
6470
 
6631
- export function deploymentStreamDollarOrDollarEqToJSON(
6632
- deploymentStreamDollarOrDollarEq: DeploymentStreamDollarOrDollarEq,
6471
+ export function deploymentStreamOrEqToJSON(
6472
+ deploymentStreamOrEq: DeploymentStreamOrEq,
6633
6473
  ): string {
6634
6474
  return JSON.stringify(
6635
- DeploymentStreamDollarOrDollarEq$outboundSchema.parse(
6636
- deploymentStreamDollarOrDollarEq,
6637
- ),
6475
+ DeploymentStreamOrEq$outboundSchema.parse(deploymentStreamOrEq),
6638
6476
  );
6639
6477
  }
6640
6478
 
6641
- export function deploymentStreamDollarOrDollarEqFromJSON(
6479
+ export function deploymentStreamOrEqFromJSON(
6642
6480
  jsonString: string,
6643
- ): SafeParseResult<DeploymentStreamDollarOrDollarEq, SDKValidationError> {
6481
+ ): SafeParseResult<DeploymentStreamOrEq, SDKValidationError> {
6644
6482
  return safeParse(
6645
6483
  jsonString,
6646
- (x) => DeploymentStreamDollarOrDollarEq$inboundSchema.parse(JSON.parse(x)),
6647
- `Failed to parse 'DeploymentStreamDollarOrDollarEq' from JSON`,
6484
+ (x) => DeploymentStreamOrEq$inboundSchema.parse(JSON.parse(x)),
6485
+ `Failed to parse 'DeploymentStreamOrEq' from JSON`,
6648
6486
  );
6649
6487
  }
6650
6488
 
6651
6489
  /** @internal */
6652
- export const DeploymentStreamKnowledgeFilterDeploymentsDollarOr$inboundSchema:
6490
+ export const DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema:
6653
6491
  z.ZodType<
6654
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr,
6492
+ DeploymentStreamKnowledgeFilterDeploymentsOr,
6655
6493
  z.ZodTypeDef,
6656
6494
  unknown
6657
6495
  > = z.union([
6658
- z.lazy(() => DeploymentStreamDollarOrDollarEq$inboundSchema),
6659
- z.lazy(() => DeploymentStreamDollarOrDollarNe$inboundSchema),
6660
- z.lazy(() => DeploymentStreamDollarOr3$inboundSchema),
6661
- z.lazy(() => DeploymentStreamDollarOrDollarGte$inboundSchema),
6662
- z.lazy(() => DeploymentStreamDollarOrDollarLt$inboundSchema),
6663
- z.lazy(() => DeploymentStreamDollarOrDollarLte$inboundSchema),
6664
- z.lazy(() => DeploymentStreamDollarOrDollarIn$inboundSchema),
6665
- z.lazy(() => DeploymentStreamDollarOrDollarNin$inboundSchema),
6666
- z.lazy(() => DeploymentStreamDollarOrDollarExists$inboundSchema),
6496
+ z.lazy(() => DeploymentStreamOrEq$inboundSchema),
6497
+ z.lazy(() => DeploymentStreamOrNe$inboundSchema),
6498
+ z.lazy(() => DeploymentStreamOr3$inboundSchema),
6499
+ z.lazy(() => DeploymentStreamOrGte$inboundSchema),
6500
+ z.lazy(() => DeploymentStreamOrLt$inboundSchema),
6501
+ z.lazy(() => DeploymentStreamOrLte$inboundSchema),
6502
+ z.lazy(() => DeploymentStreamOrIn$inboundSchema),
6503
+ z.lazy(() => DeploymentStreamOrNin$inboundSchema),
6504
+ z.lazy(() => DeploymentStreamOrExists$inboundSchema),
6667
6505
  ]);
6668
6506
 
6669
6507
  /** @internal */
6670
- export type DeploymentStreamKnowledgeFilterDeploymentsDollarOr$Outbound =
6671
- | DeploymentStreamDollarOrDollarEq$Outbound
6672
- | DeploymentStreamDollarOrDollarNe$Outbound
6673
- | DeploymentStreamDollarOr3$Outbound
6674
- | DeploymentStreamDollarOrDollarGte$Outbound
6675
- | DeploymentStreamDollarOrDollarLt$Outbound
6676
- | DeploymentStreamDollarOrDollarLte$Outbound
6677
- | DeploymentStreamDollarOrDollarIn$Outbound
6678
- | DeploymentStreamDollarOrDollarNin$Outbound
6679
- | DeploymentStreamDollarOrDollarExists$Outbound;
6508
+ export type DeploymentStreamKnowledgeFilterDeploymentsOr$Outbound =
6509
+ | DeploymentStreamOrEq$Outbound
6510
+ | DeploymentStreamOrNe$Outbound
6511
+ | DeploymentStreamOr3$Outbound
6512
+ | DeploymentStreamOrGte$Outbound
6513
+ | DeploymentStreamOrLt$Outbound
6514
+ | DeploymentStreamOrLte$Outbound
6515
+ | DeploymentStreamOrIn$Outbound
6516
+ | DeploymentStreamOrNin$Outbound
6517
+ | DeploymentStreamOrExists$Outbound;
6680
6518
 
6681
6519
  /** @internal */
6682
- export const DeploymentStreamKnowledgeFilterDeploymentsDollarOr$outboundSchema:
6520
+ export const DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema:
6683
6521
  z.ZodType<
6684
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr$Outbound,
6522
+ DeploymentStreamKnowledgeFilterDeploymentsOr$Outbound,
6685
6523
  z.ZodTypeDef,
6686
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr
6524
+ DeploymentStreamKnowledgeFilterDeploymentsOr
6687
6525
  > = z.union([
6688
- z.lazy(() => DeploymentStreamDollarOrDollarEq$outboundSchema),
6689
- z.lazy(() => DeploymentStreamDollarOrDollarNe$outboundSchema),
6690
- z.lazy(() => DeploymentStreamDollarOr3$outboundSchema),
6691
- z.lazy(() => DeploymentStreamDollarOrDollarGte$outboundSchema),
6692
- z.lazy(() => DeploymentStreamDollarOrDollarLt$outboundSchema),
6693
- z.lazy(() => DeploymentStreamDollarOrDollarLte$outboundSchema),
6694
- z.lazy(() => DeploymentStreamDollarOrDollarIn$outboundSchema),
6695
- z.lazy(() => DeploymentStreamDollarOrDollarNin$outboundSchema),
6696
- z.lazy(() => DeploymentStreamDollarOrDollarExists$outboundSchema),
6526
+ z.lazy(() => DeploymentStreamOrEq$outboundSchema),
6527
+ z.lazy(() => DeploymentStreamOrNe$outboundSchema),
6528
+ z.lazy(() => DeploymentStreamOr3$outboundSchema),
6529
+ z.lazy(() => DeploymentStreamOrGte$outboundSchema),
6530
+ z.lazy(() => DeploymentStreamOrLt$outboundSchema),
6531
+ z.lazy(() => DeploymentStreamOrLte$outboundSchema),
6532
+ z.lazy(() => DeploymentStreamOrIn$outboundSchema),
6533
+ z.lazy(() => DeploymentStreamOrNin$outboundSchema),
6534
+ z.lazy(() => DeploymentStreamOrExists$outboundSchema),
6697
6535
  ]);
6698
6536
 
6699
6537
  /**
6700
6538
  * @internal
6701
6539
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6702
6540
  */
6703
- export namespace DeploymentStreamKnowledgeFilterDeploymentsDollarOr$ {
6704
- /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsDollarOr$inboundSchema` instead. */
6541
+ export namespace DeploymentStreamKnowledgeFilterDeploymentsOr$ {
6542
+ /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema` instead. */
6705
6543
  export const inboundSchema =
6706
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr$inboundSchema;
6707
- /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsDollarOr$outboundSchema` instead. */
6544
+ DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema;
6545
+ /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema` instead. */
6708
6546
  export const outboundSchema =
6709
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr$outboundSchema;
6710
- /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsDollarOr$Outbound` instead. */
6711
- export type Outbound =
6712
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr$Outbound;
6547
+ DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema;
6548
+ /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsOr$Outbound` instead. */
6549
+ export type Outbound = DeploymentStreamKnowledgeFilterDeploymentsOr$Outbound;
6713
6550
  }
6714
6551
 
6715
- export function deploymentStreamKnowledgeFilterDeploymentsDollarOrToJSON(
6716
- deploymentStreamKnowledgeFilterDeploymentsDollarOr:
6717
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr,
6552
+ export function deploymentStreamKnowledgeFilterDeploymentsOrToJSON(
6553
+ deploymentStreamKnowledgeFilterDeploymentsOr:
6554
+ DeploymentStreamKnowledgeFilterDeploymentsOr,
6718
6555
  ): string {
6719
6556
  return JSON.stringify(
6720
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr$outboundSchema.parse(
6721
- deploymentStreamKnowledgeFilterDeploymentsDollarOr,
6557
+ DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema.parse(
6558
+ deploymentStreamKnowledgeFilterDeploymentsOr,
6722
6559
  ),
6723
6560
  );
6724
6561
  }
6725
6562
 
6726
- export function deploymentStreamKnowledgeFilterDeploymentsDollarOrFromJSON(
6563
+ export function deploymentStreamKnowledgeFilterDeploymentsOrFromJSON(
6727
6564
  jsonString: string,
6728
6565
  ): SafeParseResult<
6729
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr,
6566
+ DeploymentStreamKnowledgeFilterDeploymentsOr,
6730
6567
  SDKValidationError
6731
6568
  > {
6732
6569
  return safeParse(
6733
6570
  jsonString,
6734
6571
  (x) =>
6735
- DeploymentStreamKnowledgeFilterDeploymentsDollarOr$inboundSchema.parse(
6572
+ DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema.parse(
6736
6573
  JSON.parse(x),
6737
6574
  ),
6738
- `Failed to parse 'DeploymentStreamKnowledgeFilterDeploymentsDollarOr' from JSON`,
6575
+ `Failed to parse 'DeploymentStreamKnowledgeFilterDeploymentsOr' from JSON`,
6739
6576
  );
6740
6577
  }
6741
6578
 
6742
6579
  /** @internal */
6743
- export const DeploymentStreamKnowledgeFilterDollarOr$inboundSchema: z.ZodType<
6744
- DeploymentStreamKnowledgeFilterDollarOr,
6580
+ export const DeploymentStreamKnowledgeFilterOr$inboundSchema: z.ZodType<
6581
+ DeploymentStreamKnowledgeFilterOr,
6745
6582
  z.ZodTypeDef,
6746
6583
  unknown
6747
6584
  > = z.object({
6748
- $or: z.array(
6585
+ or: z.array(
6749
6586
  z.record(z.union([
6750
- z.lazy(() => DeploymentStreamDollarOrDollarEq$inboundSchema),
6587
+ z.lazy(() => DeploymentStreamOrEq$inboundSchema),
6751
6588
  z.lazy(() =>
6752
- DeploymentStreamDollarOrDollarNe$inboundSchema
6589
+ DeploymentStreamOrNe$inboundSchema
6753
6590
  ),
6754
- z.lazy(() => DeploymentStreamDollarOr3$inboundSchema),
6755
- z.lazy(() => DeploymentStreamDollarOrDollarGte$inboundSchema),
6756
- z.lazy(() => DeploymentStreamDollarOrDollarLt$inboundSchema),
6757
- z.lazy(() => DeploymentStreamDollarOrDollarLte$inboundSchema),
6758
- z.lazy(() => DeploymentStreamDollarOrDollarIn$inboundSchema),
6759
- z.lazy(() => DeploymentStreamDollarOrDollarNin$inboundSchema),
6760
- z.lazy(() => DeploymentStreamDollarOrDollarExists$inboundSchema),
6591
+ z.lazy(() => DeploymentStreamOr3$inboundSchema),
6592
+ z.lazy(() => DeploymentStreamOrGte$inboundSchema),
6593
+ z.lazy(() => DeploymentStreamOrLt$inboundSchema),
6594
+ z.lazy(() => DeploymentStreamOrLte$inboundSchema),
6595
+ z.lazy(() => DeploymentStreamOrIn$inboundSchema),
6596
+ z.lazy(() => DeploymentStreamOrNin$inboundSchema),
6597
+ z.lazy(() => DeploymentStreamOrExists$inboundSchema),
6761
6598
  ])),
6762
6599
  ),
6763
- }).transform((v) => {
6764
- return remap$(v, {
6765
- "$or": "dollarOr",
6766
- });
6767
6600
  });
6768
6601
 
6769
6602
  /** @internal */
6770
- export type DeploymentStreamKnowledgeFilterDollarOr$Outbound = {
6771
- $or: Array<
6603
+ export type DeploymentStreamKnowledgeFilterOr$Outbound = {
6604
+ or: Array<
6772
6605
  {
6773
6606
  [k: string]:
6774
- | DeploymentStreamDollarOrDollarEq$Outbound
6775
- | DeploymentStreamDollarOrDollarNe$Outbound
6776
- | DeploymentStreamDollarOr3$Outbound
6777
- | DeploymentStreamDollarOrDollarGte$Outbound
6778
- | DeploymentStreamDollarOrDollarLt$Outbound
6779
- | DeploymentStreamDollarOrDollarLte$Outbound
6780
- | DeploymentStreamDollarOrDollarIn$Outbound
6781
- | DeploymentStreamDollarOrDollarNin$Outbound
6782
- | DeploymentStreamDollarOrDollarExists$Outbound;
6607
+ | DeploymentStreamOrEq$Outbound
6608
+ | DeploymentStreamOrNe$Outbound
6609
+ | DeploymentStreamOr3$Outbound
6610
+ | DeploymentStreamOrGte$Outbound
6611
+ | DeploymentStreamOrLt$Outbound
6612
+ | DeploymentStreamOrLte$Outbound
6613
+ | DeploymentStreamOrIn$Outbound
6614
+ | DeploymentStreamOrNin$Outbound
6615
+ | DeploymentStreamOrExists$Outbound;
6783
6616
  }
6784
6617
  >;
6785
6618
  };
6786
6619
 
6787
6620
  /** @internal */
6788
- export const DeploymentStreamKnowledgeFilterDollarOr$outboundSchema: z.ZodType<
6789
- DeploymentStreamKnowledgeFilterDollarOr$Outbound,
6621
+ export const DeploymentStreamKnowledgeFilterOr$outboundSchema: z.ZodType<
6622
+ DeploymentStreamKnowledgeFilterOr$Outbound,
6790
6623
  z.ZodTypeDef,
6791
- DeploymentStreamKnowledgeFilterDollarOr
6624
+ DeploymentStreamKnowledgeFilterOr
6792
6625
  > = z.object({
6793
- dollarOr: z.array(
6626
+ or: z.array(
6794
6627
  z.record(z.union([
6795
- z.lazy(() => DeploymentStreamDollarOrDollarEq$outboundSchema),
6628
+ z.lazy(() => DeploymentStreamOrEq$outboundSchema),
6796
6629
  z.lazy(() =>
6797
- DeploymentStreamDollarOrDollarNe$outboundSchema
6630
+ DeploymentStreamOrNe$outboundSchema
6798
6631
  ),
6799
- z.lazy(() => DeploymentStreamDollarOr3$outboundSchema),
6800
- z.lazy(() => DeploymentStreamDollarOrDollarGte$outboundSchema),
6801
- z.lazy(() => DeploymentStreamDollarOrDollarLt$outboundSchema),
6802
- z.lazy(() => DeploymentStreamDollarOrDollarLte$outboundSchema),
6803
- z.lazy(() => DeploymentStreamDollarOrDollarIn$outboundSchema),
6804
- z.lazy(() => DeploymentStreamDollarOrDollarNin$outboundSchema),
6805
- z.lazy(() => DeploymentStreamDollarOrDollarExists$outboundSchema),
6632
+ z.lazy(() => DeploymentStreamOr3$outboundSchema),
6633
+ z.lazy(() => DeploymentStreamOrGte$outboundSchema),
6634
+ z.lazy(() => DeploymentStreamOrLt$outboundSchema),
6635
+ z.lazy(() => DeploymentStreamOrLte$outboundSchema),
6636
+ z.lazy(() => DeploymentStreamOrIn$outboundSchema),
6637
+ z.lazy(() => DeploymentStreamOrNin$outboundSchema),
6638
+ z.lazy(() => DeploymentStreamOrExists$outboundSchema),
6806
6639
  ])),
6807
6640
  ),
6808
- }).transform((v) => {
6809
- return remap$(v, {
6810
- dollarOr: "$or",
6811
- });
6812
6641
  });
6813
6642
 
6814
6643
  /**
6815
6644
  * @internal
6816
6645
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6817
6646
  */
6818
- export namespace DeploymentStreamKnowledgeFilterDollarOr$ {
6819
- /** @deprecated use `DeploymentStreamKnowledgeFilterDollarOr$inboundSchema` instead. */
6820
- export const inboundSchema =
6821
- DeploymentStreamKnowledgeFilterDollarOr$inboundSchema;
6822
- /** @deprecated use `DeploymentStreamKnowledgeFilterDollarOr$outboundSchema` instead. */
6647
+ export namespace DeploymentStreamKnowledgeFilterOr$ {
6648
+ /** @deprecated use `DeploymentStreamKnowledgeFilterOr$inboundSchema` instead. */
6649
+ export const inboundSchema = DeploymentStreamKnowledgeFilterOr$inboundSchema;
6650
+ /** @deprecated use `DeploymentStreamKnowledgeFilterOr$outboundSchema` instead. */
6823
6651
  export const outboundSchema =
6824
- DeploymentStreamKnowledgeFilterDollarOr$outboundSchema;
6825
- /** @deprecated use `DeploymentStreamKnowledgeFilterDollarOr$Outbound` instead. */
6826
- export type Outbound = DeploymentStreamKnowledgeFilterDollarOr$Outbound;
6652
+ DeploymentStreamKnowledgeFilterOr$outboundSchema;
6653
+ /** @deprecated use `DeploymentStreamKnowledgeFilterOr$Outbound` instead. */
6654
+ export type Outbound = DeploymentStreamKnowledgeFilterOr$Outbound;
6827
6655
  }
6828
6656
 
6829
- export function deploymentStreamKnowledgeFilterDollarOrToJSON(
6830
- deploymentStreamKnowledgeFilterDollarOr:
6831
- DeploymentStreamKnowledgeFilterDollarOr,
6657
+ export function deploymentStreamKnowledgeFilterOrToJSON(
6658
+ deploymentStreamKnowledgeFilterOr: DeploymentStreamKnowledgeFilterOr,
6832
6659
  ): string {
6833
6660
  return JSON.stringify(
6834
- DeploymentStreamKnowledgeFilterDollarOr$outboundSchema.parse(
6835
- deploymentStreamKnowledgeFilterDollarOr,
6661
+ DeploymentStreamKnowledgeFilterOr$outboundSchema.parse(
6662
+ deploymentStreamKnowledgeFilterOr,
6836
6663
  ),
6837
6664
  );
6838
6665
  }
6839
6666
 
6840
- export function deploymentStreamKnowledgeFilterDollarOrFromJSON(
6667
+ export function deploymentStreamKnowledgeFilterOrFromJSON(
6841
6668
  jsonString: string,
6842
- ): SafeParseResult<
6843
- DeploymentStreamKnowledgeFilterDollarOr,
6844
- SDKValidationError
6845
- > {
6669
+ ): SafeParseResult<DeploymentStreamKnowledgeFilterOr, SDKValidationError> {
6846
6670
  return safeParse(
6847
6671
  jsonString,
6848
- (x) =>
6849
- DeploymentStreamKnowledgeFilterDollarOr$inboundSchema.parse(
6850
- JSON.parse(x),
6851
- ),
6852
- `Failed to parse 'DeploymentStreamKnowledgeFilterDollarOr' from JSON`,
6672
+ (x) => DeploymentStreamKnowledgeFilterOr$inboundSchema.parse(JSON.parse(x)),
6673
+ `Failed to parse 'DeploymentStreamKnowledgeFilterOr' from JSON`,
6853
6674
  );
6854
6675
  }
6855
6676
 
6856
6677
  /** @internal */
6857
- export const DeploymentStreamDollarAndDollarExists$inboundSchema: z.ZodType<
6858
- DeploymentStreamDollarAndDollarExists,
6678
+ export const DeploymentStreamAndExists$inboundSchema: z.ZodType<
6679
+ DeploymentStreamAndExists,
6859
6680
  z.ZodTypeDef,
6860
6681
  unknown
6861
6682
  > = z.object({
6862
- $exists: z.boolean(),
6863
- }).transform((v) => {
6864
- return remap$(v, {
6865
- "$exists": "dollarExists",
6866
- });
6683
+ exists: z.boolean(),
6867
6684
  });
6868
6685
 
6869
6686
  /** @internal */
6870
- export type DeploymentStreamDollarAndDollarExists$Outbound = {
6871
- $exists: boolean;
6687
+ export type DeploymentStreamAndExists$Outbound = {
6688
+ exists: boolean;
6872
6689
  };
6873
6690
 
6874
6691
  /** @internal */
6875
- export const DeploymentStreamDollarAndDollarExists$outboundSchema: z.ZodType<
6876
- DeploymentStreamDollarAndDollarExists$Outbound,
6692
+ export const DeploymentStreamAndExists$outboundSchema: z.ZodType<
6693
+ DeploymentStreamAndExists$Outbound,
6877
6694
  z.ZodTypeDef,
6878
- DeploymentStreamDollarAndDollarExists
6695
+ DeploymentStreamAndExists
6879
6696
  > = z.object({
6880
- dollarExists: z.boolean(),
6881
- }).transform((v) => {
6882
- return remap$(v, {
6883
- dollarExists: "$exists",
6884
- });
6697
+ exists: z.boolean(),
6885
6698
  });
6886
6699
 
6887
6700
  /**
6888
6701
  * @internal
6889
6702
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6890
6703
  */
6891
- export namespace DeploymentStreamDollarAndDollarExists$ {
6892
- /** @deprecated use `DeploymentStreamDollarAndDollarExists$inboundSchema` instead. */
6893
- export const inboundSchema =
6894
- DeploymentStreamDollarAndDollarExists$inboundSchema;
6895
- /** @deprecated use `DeploymentStreamDollarAndDollarExists$outboundSchema` instead. */
6896
- export const outboundSchema =
6897
- DeploymentStreamDollarAndDollarExists$outboundSchema;
6898
- /** @deprecated use `DeploymentStreamDollarAndDollarExists$Outbound` instead. */
6899
- export type Outbound = DeploymentStreamDollarAndDollarExists$Outbound;
6704
+ export namespace DeploymentStreamAndExists$ {
6705
+ /** @deprecated use `DeploymentStreamAndExists$inboundSchema` instead. */
6706
+ export const inboundSchema = DeploymentStreamAndExists$inboundSchema;
6707
+ /** @deprecated use `DeploymentStreamAndExists$outboundSchema` instead. */
6708
+ export const outboundSchema = DeploymentStreamAndExists$outboundSchema;
6709
+ /** @deprecated use `DeploymentStreamAndExists$Outbound` instead. */
6710
+ export type Outbound = DeploymentStreamAndExists$Outbound;
6900
6711
  }
6901
6712
 
6902
- export function deploymentStreamDollarAndDollarExistsToJSON(
6903
- deploymentStreamDollarAndDollarExists: DeploymentStreamDollarAndDollarExists,
6713
+ export function deploymentStreamAndExistsToJSON(
6714
+ deploymentStreamAndExists: DeploymentStreamAndExists,
6904
6715
  ): string {
6905
6716
  return JSON.stringify(
6906
- DeploymentStreamDollarAndDollarExists$outboundSchema.parse(
6907
- deploymentStreamDollarAndDollarExists,
6908
- ),
6717
+ DeploymentStreamAndExists$outboundSchema.parse(deploymentStreamAndExists),
6909
6718
  );
6910
6719
  }
6911
6720
 
6912
- export function deploymentStreamDollarAndDollarExistsFromJSON(
6721
+ export function deploymentStreamAndExistsFromJSON(
6913
6722
  jsonString: string,
6914
- ): SafeParseResult<DeploymentStreamDollarAndDollarExists, SDKValidationError> {
6723
+ ): SafeParseResult<DeploymentStreamAndExists, SDKValidationError> {
6915
6724
  return safeParse(
6916
6725
  jsonString,
6917
- (x) =>
6918
- DeploymentStreamDollarAndDollarExists$inboundSchema.parse(JSON.parse(x)),
6919
- `Failed to parse 'DeploymentStreamDollarAndDollarExists' from JSON`,
6726
+ (x) => DeploymentStreamAndExists$inboundSchema.parse(JSON.parse(x)),
6727
+ `Failed to parse 'DeploymentStreamAndExists' from JSON`,
6920
6728
  );
6921
6729
  }
6922
6730
 
6923
6731
  /** @internal */
6924
- export const DeploymentStreamDollarAndDeploymentsDollarNin$inboundSchema:
6925
- z.ZodType<
6926
- DeploymentStreamDollarAndDeploymentsDollarNin,
6927
- z.ZodTypeDef,
6928
- unknown
6929
- > = z.union([z.string(), z.number(), z.boolean()]);
6732
+ export const DeploymentStreamAndDeploymentsNin$inboundSchema: z.ZodType<
6733
+ DeploymentStreamAndDeploymentsNin,
6734
+ z.ZodTypeDef,
6735
+ unknown
6736
+ > = z.union([z.string(), z.number(), z.boolean()]);
6930
6737
 
6931
6738
  /** @internal */
6932
- export type DeploymentStreamDollarAndDeploymentsDollarNin$Outbound =
6739
+ export type DeploymentStreamAndDeploymentsNin$Outbound =
6933
6740
  | string
6934
6741
  | number
6935
6742
  | boolean;
6936
6743
 
6937
6744
  /** @internal */
6938
- export const DeploymentStreamDollarAndDeploymentsDollarNin$outboundSchema:
6939
- z.ZodType<
6940
- DeploymentStreamDollarAndDeploymentsDollarNin$Outbound,
6941
- z.ZodTypeDef,
6942
- DeploymentStreamDollarAndDeploymentsDollarNin
6943
- > = z.union([z.string(), z.number(), z.boolean()]);
6745
+ export const DeploymentStreamAndDeploymentsNin$outboundSchema: z.ZodType<
6746
+ DeploymentStreamAndDeploymentsNin$Outbound,
6747
+ z.ZodTypeDef,
6748
+ DeploymentStreamAndDeploymentsNin
6749
+ > = z.union([z.string(), z.number(), z.boolean()]);
6944
6750
 
6945
6751
  /**
6946
6752
  * @internal
6947
6753
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6948
6754
  */
6949
- export namespace DeploymentStreamDollarAndDeploymentsDollarNin$ {
6950
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarNin$inboundSchema` instead. */
6951
- export const inboundSchema =
6952
- DeploymentStreamDollarAndDeploymentsDollarNin$inboundSchema;
6953
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarNin$outboundSchema` instead. */
6755
+ export namespace DeploymentStreamAndDeploymentsNin$ {
6756
+ /** @deprecated use `DeploymentStreamAndDeploymentsNin$inboundSchema` instead. */
6757
+ export const inboundSchema = DeploymentStreamAndDeploymentsNin$inboundSchema;
6758
+ /** @deprecated use `DeploymentStreamAndDeploymentsNin$outboundSchema` instead. */
6954
6759
  export const outboundSchema =
6955
- DeploymentStreamDollarAndDeploymentsDollarNin$outboundSchema;
6956
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarNin$Outbound` instead. */
6957
- export type Outbound = DeploymentStreamDollarAndDeploymentsDollarNin$Outbound;
6760
+ DeploymentStreamAndDeploymentsNin$outboundSchema;
6761
+ /** @deprecated use `DeploymentStreamAndDeploymentsNin$Outbound` instead. */
6762
+ export type Outbound = DeploymentStreamAndDeploymentsNin$Outbound;
6958
6763
  }
6959
6764
 
6960
- export function deploymentStreamDollarAndDeploymentsDollarNinToJSON(
6961
- deploymentStreamDollarAndDeploymentsDollarNin:
6962
- DeploymentStreamDollarAndDeploymentsDollarNin,
6765
+ export function deploymentStreamAndDeploymentsNinToJSON(
6766
+ deploymentStreamAndDeploymentsNin: DeploymentStreamAndDeploymentsNin,
6963
6767
  ): string {
6964
6768
  return JSON.stringify(
6965
- DeploymentStreamDollarAndDeploymentsDollarNin$outboundSchema.parse(
6966
- deploymentStreamDollarAndDeploymentsDollarNin,
6769
+ DeploymentStreamAndDeploymentsNin$outboundSchema.parse(
6770
+ deploymentStreamAndDeploymentsNin,
6967
6771
  ),
6968
6772
  );
6969
6773
  }
6970
6774
 
6971
- export function deploymentStreamDollarAndDeploymentsDollarNinFromJSON(
6775
+ export function deploymentStreamAndDeploymentsNinFromJSON(
6972
6776
  jsonString: string,
6973
- ): SafeParseResult<
6974
- DeploymentStreamDollarAndDeploymentsDollarNin,
6975
- SDKValidationError
6976
- > {
6777
+ ): SafeParseResult<DeploymentStreamAndDeploymentsNin, SDKValidationError> {
6977
6778
  return safeParse(
6978
6779
  jsonString,
6979
- (x) =>
6980
- DeploymentStreamDollarAndDeploymentsDollarNin$inboundSchema.parse(
6981
- JSON.parse(x),
6982
- ),
6983
- `Failed to parse 'DeploymentStreamDollarAndDeploymentsDollarNin' from JSON`,
6780
+ (x) => DeploymentStreamAndDeploymentsNin$inboundSchema.parse(JSON.parse(x)),
6781
+ `Failed to parse 'DeploymentStreamAndDeploymentsNin' from JSON`,
6984
6782
  );
6985
6783
  }
6986
6784
 
6987
6785
  /** @internal */
6988
- export const DeploymentStreamDollarAndDollarNin$inboundSchema: z.ZodType<
6989
- DeploymentStreamDollarAndDollarNin,
6786
+ export const DeploymentStreamAndNin$inboundSchema: z.ZodType<
6787
+ DeploymentStreamAndNin,
6990
6788
  z.ZodTypeDef,
6991
6789
  unknown
6992
6790
  > = z.object({
6993
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6994
- }).transform((v) => {
6995
- return remap$(v, {
6996
- "$nin": "dollarNin",
6997
- });
6791
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
6998
6792
  });
6999
6793
 
7000
6794
  /** @internal */
7001
- export type DeploymentStreamDollarAndDollarNin$Outbound = {
7002
- $nin: Array<string | number | boolean>;
6795
+ export type DeploymentStreamAndNin$Outbound = {
6796
+ nin: Array<string | number | boolean>;
7003
6797
  };
7004
6798
 
7005
6799
  /** @internal */
7006
- export const DeploymentStreamDollarAndDollarNin$outboundSchema: z.ZodType<
7007
- DeploymentStreamDollarAndDollarNin$Outbound,
6800
+ export const DeploymentStreamAndNin$outboundSchema: z.ZodType<
6801
+ DeploymentStreamAndNin$Outbound,
7008
6802
  z.ZodTypeDef,
7009
- DeploymentStreamDollarAndDollarNin
6803
+ DeploymentStreamAndNin
7010
6804
  > = z.object({
7011
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
7012
- }).transform((v) => {
7013
- return remap$(v, {
7014
- dollarNin: "$nin",
7015
- });
6805
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
7016
6806
  });
7017
6807
 
7018
6808
  /**
7019
6809
  * @internal
7020
6810
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7021
6811
  */
7022
- export namespace DeploymentStreamDollarAndDollarNin$ {
7023
- /** @deprecated use `DeploymentStreamDollarAndDollarNin$inboundSchema` instead. */
7024
- export const inboundSchema = DeploymentStreamDollarAndDollarNin$inboundSchema;
7025
- /** @deprecated use `DeploymentStreamDollarAndDollarNin$outboundSchema` instead. */
7026
- export const outboundSchema =
7027
- DeploymentStreamDollarAndDollarNin$outboundSchema;
7028
- /** @deprecated use `DeploymentStreamDollarAndDollarNin$Outbound` instead. */
7029
- export type Outbound = DeploymentStreamDollarAndDollarNin$Outbound;
6812
+ export namespace DeploymentStreamAndNin$ {
6813
+ /** @deprecated use `DeploymentStreamAndNin$inboundSchema` instead. */
6814
+ export const inboundSchema = DeploymentStreamAndNin$inboundSchema;
6815
+ /** @deprecated use `DeploymentStreamAndNin$outboundSchema` instead. */
6816
+ export const outboundSchema = DeploymentStreamAndNin$outboundSchema;
6817
+ /** @deprecated use `DeploymentStreamAndNin$Outbound` instead. */
6818
+ export type Outbound = DeploymentStreamAndNin$Outbound;
7030
6819
  }
7031
6820
 
7032
- export function deploymentStreamDollarAndDollarNinToJSON(
7033
- deploymentStreamDollarAndDollarNin: DeploymentStreamDollarAndDollarNin,
6821
+ export function deploymentStreamAndNinToJSON(
6822
+ deploymentStreamAndNin: DeploymentStreamAndNin,
7034
6823
  ): string {
7035
6824
  return JSON.stringify(
7036
- DeploymentStreamDollarAndDollarNin$outboundSchema.parse(
7037
- deploymentStreamDollarAndDollarNin,
7038
- ),
6825
+ DeploymentStreamAndNin$outboundSchema.parse(deploymentStreamAndNin),
7039
6826
  );
7040
6827
  }
7041
6828
 
7042
- export function deploymentStreamDollarAndDollarNinFromJSON(
6829
+ export function deploymentStreamAndNinFromJSON(
7043
6830
  jsonString: string,
7044
- ): SafeParseResult<DeploymentStreamDollarAndDollarNin, SDKValidationError> {
6831
+ ): SafeParseResult<DeploymentStreamAndNin, SDKValidationError> {
7045
6832
  return safeParse(
7046
6833
  jsonString,
7047
- (x) =>
7048
- DeploymentStreamDollarAndDollarNin$inboundSchema.parse(JSON.parse(x)),
7049
- `Failed to parse 'DeploymentStreamDollarAndDollarNin' from JSON`,
6834
+ (x) => DeploymentStreamAndNin$inboundSchema.parse(JSON.parse(x)),
6835
+ `Failed to parse 'DeploymentStreamAndNin' from JSON`,
7050
6836
  );
7051
6837
  }
7052
6838
 
7053
6839
  /** @internal */
7054
- export const DeploymentStreamDollarAndDeploymentsDollarIn$inboundSchema:
7055
- z.ZodType<
7056
- DeploymentStreamDollarAndDeploymentsDollarIn,
7057
- z.ZodTypeDef,
7058
- unknown
7059
- > = z.union([z.string(), z.number(), z.boolean()]);
6840
+ export const DeploymentStreamAndDeploymentsIn$inboundSchema: z.ZodType<
6841
+ DeploymentStreamAndDeploymentsIn,
6842
+ z.ZodTypeDef,
6843
+ unknown
6844
+ > = z.union([z.string(), z.number(), z.boolean()]);
7060
6845
 
7061
6846
  /** @internal */
7062
- export type DeploymentStreamDollarAndDeploymentsDollarIn$Outbound =
6847
+ export type DeploymentStreamAndDeploymentsIn$Outbound =
7063
6848
  | string
7064
6849
  | number
7065
6850
  | boolean;
7066
6851
 
7067
6852
  /** @internal */
7068
- export const DeploymentStreamDollarAndDeploymentsDollarIn$outboundSchema:
7069
- z.ZodType<
7070
- DeploymentStreamDollarAndDeploymentsDollarIn$Outbound,
7071
- z.ZodTypeDef,
7072
- DeploymentStreamDollarAndDeploymentsDollarIn
7073
- > = z.union([z.string(), z.number(), z.boolean()]);
6853
+ export const DeploymentStreamAndDeploymentsIn$outboundSchema: z.ZodType<
6854
+ DeploymentStreamAndDeploymentsIn$Outbound,
6855
+ z.ZodTypeDef,
6856
+ DeploymentStreamAndDeploymentsIn
6857
+ > = z.union([z.string(), z.number(), z.boolean()]);
7074
6858
 
7075
6859
  /**
7076
6860
  * @internal
7077
6861
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7078
6862
  */
7079
- export namespace DeploymentStreamDollarAndDeploymentsDollarIn$ {
7080
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarIn$inboundSchema` instead. */
7081
- export const inboundSchema =
7082
- DeploymentStreamDollarAndDeploymentsDollarIn$inboundSchema;
7083
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarIn$outboundSchema` instead. */
7084
- export const outboundSchema =
7085
- DeploymentStreamDollarAndDeploymentsDollarIn$outboundSchema;
7086
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarIn$Outbound` instead. */
7087
- export type Outbound = DeploymentStreamDollarAndDeploymentsDollarIn$Outbound;
6863
+ export namespace DeploymentStreamAndDeploymentsIn$ {
6864
+ /** @deprecated use `DeploymentStreamAndDeploymentsIn$inboundSchema` instead. */
6865
+ export const inboundSchema = DeploymentStreamAndDeploymentsIn$inboundSchema;
6866
+ /** @deprecated use `DeploymentStreamAndDeploymentsIn$outboundSchema` instead. */
6867
+ export const outboundSchema = DeploymentStreamAndDeploymentsIn$outboundSchema;
6868
+ /** @deprecated use `DeploymentStreamAndDeploymentsIn$Outbound` instead. */
6869
+ export type Outbound = DeploymentStreamAndDeploymentsIn$Outbound;
7088
6870
  }
7089
6871
 
7090
- export function deploymentStreamDollarAndDeploymentsDollarInToJSON(
7091
- deploymentStreamDollarAndDeploymentsDollarIn:
7092
- DeploymentStreamDollarAndDeploymentsDollarIn,
6872
+ export function deploymentStreamAndDeploymentsInToJSON(
6873
+ deploymentStreamAndDeploymentsIn: DeploymentStreamAndDeploymentsIn,
7093
6874
  ): string {
7094
6875
  return JSON.stringify(
7095
- DeploymentStreamDollarAndDeploymentsDollarIn$outboundSchema.parse(
7096
- deploymentStreamDollarAndDeploymentsDollarIn,
6876
+ DeploymentStreamAndDeploymentsIn$outboundSchema.parse(
6877
+ deploymentStreamAndDeploymentsIn,
7097
6878
  ),
7098
6879
  );
7099
6880
  }
7100
6881
 
7101
- export function deploymentStreamDollarAndDeploymentsDollarInFromJSON(
6882
+ export function deploymentStreamAndDeploymentsInFromJSON(
7102
6883
  jsonString: string,
7103
- ): SafeParseResult<
7104
- DeploymentStreamDollarAndDeploymentsDollarIn,
7105
- SDKValidationError
7106
- > {
6884
+ ): SafeParseResult<DeploymentStreamAndDeploymentsIn, SDKValidationError> {
7107
6885
  return safeParse(
7108
6886
  jsonString,
7109
- (x) =>
7110
- DeploymentStreamDollarAndDeploymentsDollarIn$inboundSchema.parse(
7111
- JSON.parse(x),
7112
- ),
7113
- `Failed to parse 'DeploymentStreamDollarAndDeploymentsDollarIn' from JSON`,
6887
+ (x) => DeploymentStreamAndDeploymentsIn$inboundSchema.parse(JSON.parse(x)),
6888
+ `Failed to parse 'DeploymentStreamAndDeploymentsIn' from JSON`,
7114
6889
  );
7115
6890
  }
7116
6891
 
7117
6892
  /** @internal */
7118
- export const DeploymentStreamDollarAndDollarIn$inboundSchema: z.ZodType<
7119
- DeploymentStreamDollarAndDollarIn,
6893
+ export const DeploymentStreamAndIn$inboundSchema: z.ZodType<
6894
+ DeploymentStreamAndIn,
7120
6895
  z.ZodTypeDef,
7121
6896
  unknown
7122
6897
  > = z.object({
7123
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
7124
- }).transform((v) => {
7125
- return remap$(v, {
7126
- "$in": "dollarIn",
7127
- });
6898
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
7128
6899
  });
7129
6900
 
7130
6901
  /** @internal */
7131
- export type DeploymentStreamDollarAndDollarIn$Outbound = {
7132
- $in: Array<string | number | boolean>;
6902
+ export type DeploymentStreamAndIn$Outbound = {
6903
+ in: Array<string | number | boolean>;
7133
6904
  };
7134
6905
 
7135
6906
  /** @internal */
7136
- export const DeploymentStreamDollarAndDollarIn$outboundSchema: z.ZodType<
7137
- DeploymentStreamDollarAndDollarIn$Outbound,
6907
+ export const DeploymentStreamAndIn$outboundSchema: z.ZodType<
6908
+ DeploymentStreamAndIn$Outbound,
7138
6909
  z.ZodTypeDef,
7139
- DeploymentStreamDollarAndDollarIn
6910
+ DeploymentStreamAndIn
7140
6911
  > = z.object({
7141
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
7142
- }).transform((v) => {
7143
- return remap$(v, {
7144
- dollarIn: "$in",
7145
- });
6912
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
7146
6913
  });
7147
6914
 
7148
6915
  /**
7149
6916
  * @internal
7150
6917
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7151
6918
  */
7152
- export namespace DeploymentStreamDollarAndDollarIn$ {
7153
- /** @deprecated use `DeploymentStreamDollarAndDollarIn$inboundSchema` instead. */
7154
- export const inboundSchema = DeploymentStreamDollarAndDollarIn$inboundSchema;
7155
- /** @deprecated use `DeploymentStreamDollarAndDollarIn$outboundSchema` instead. */
7156
- export const outboundSchema =
7157
- DeploymentStreamDollarAndDollarIn$outboundSchema;
7158
- /** @deprecated use `DeploymentStreamDollarAndDollarIn$Outbound` instead. */
7159
- export type Outbound = DeploymentStreamDollarAndDollarIn$Outbound;
6919
+ export namespace DeploymentStreamAndIn$ {
6920
+ /** @deprecated use `DeploymentStreamAndIn$inboundSchema` instead. */
6921
+ export const inboundSchema = DeploymentStreamAndIn$inboundSchema;
6922
+ /** @deprecated use `DeploymentStreamAndIn$outboundSchema` instead. */
6923
+ export const outboundSchema = DeploymentStreamAndIn$outboundSchema;
6924
+ /** @deprecated use `DeploymentStreamAndIn$Outbound` instead. */
6925
+ export type Outbound = DeploymentStreamAndIn$Outbound;
7160
6926
  }
7161
6927
 
7162
- export function deploymentStreamDollarAndDollarInToJSON(
7163
- deploymentStreamDollarAndDollarIn: DeploymentStreamDollarAndDollarIn,
6928
+ export function deploymentStreamAndInToJSON(
6929
+ deploymentStreamAndIn: DeploymentStreamAndIn,
7164
6930
  ): string {
7165
6931
  return JSON.stringify(
7166
- DeploymentStreamDollarAndDollarIn$outboundSchema.parse(
7167
- deploymentStreamDollarAndDollarIn,
7168
- ),
6932
+ DeploymentStreamAndIn$outboundSchema.parse(deploymentStreamAndIn),
7169
6933
  );
7170
6934
  }
7171
6935
 
7172
- export function deploymentStreamDollarAndDollarInFromJSON(
6936
+ export function deploymentStreamAndInFromJSON(
7173
6937
  jsonString: string,
7174
- ): SafeParseResult<DeploymentStreamDollarAndDollarIn, SDKValidationError> {
6938
+ ): SafeParseResult<DeploymentStreamAndIn, SDKValidationError> {
7175
6939
  return safeParse(
7176
6940
  jsonString,
7177
- (x) => DeploymentStreamDollarAndDollarIn$inboundSchema.parse(JSON.parse(x)),
7178
- `Failed to parse 'DeploymentStreamDollarAndDollarIn' from JSON`,
6941
+ (x) => DeploymentStreamAndIn$inboundSchema.parse(JSON.parse(x)),
6942
+ `Failed to parse 'DeploymentStreamAndIn' from JSON`,
7179
6943
  );
7180
6944
  }
7181
6945
 
7182
6946
  /** @internal */
7183
- export const DeploymentStreamDollarAndDollarLte$inboundSchema: z.ZodType<
7184
- DeploymentStreamDollarAndDollarLte,
6947
+ export const DeploymentStreamAndLte$inboundSchema: z.ZodType<
6948
+ DeploymentStreamAndLte,
7185
6949
  z.ZodTypeDef,
7186
6950
  unknown
7187
6951
  > = z.object({
7188
- $lte: z.number(),
7189
- }).transform((v) => {
7190
- return remap$(v, {
7191
- "$lte": "dollarLte",
7192
- });
6952
+ lte: z.number(),
7193
6953
  });
7194
6954
 
7195
6955
  /** @internal */
7196
- export type DeploymentStreamDollarAndDollarLte$Outbound = {
7197
- $lte: number;
6956
+ export type DeploymentStreamAndLte$Outbound = {
6957
+ lte: number;
7198
6958
  };
7199
6959
 
7200
6960
  /** @internal */
7201
- export const DeploymentStreamDollarAndDollarLte$outboundSchema: z.ZodType<
7202
- DeploymentStreamDollarAndDollarLte$Outbound,
6961
+ export const DeploymentStreamAndLte$outboundSchema: z.ZodType<
6962
+ DeploymentStreamAndLte$Outbound,
7203
6963
  z.ZodTypeDef,
7204
- DeploymentStreamDollarAndDollarLte
6964
+ DeploymentStreamAndLte
7205
6965
  > = z.object({
7206
- dollarLte: z.number(),
7207
- }).transform((v) => {
7208
- return remap$(v, {
7209
- dollarLte: "$lte",
7210
- });
6966
+ lte: z.number(),
7211
6967
  });
7212
6968
 
7213
6969
  /**
7214
6970
  * @internal
7215
6971
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7216
6972
  */
7217
- export namespace DeploymentStreamDollarAndDollarLte$ {
7218
- /** @deprecated use `DeploymentStreamDollarAndDollarLte$inboundSchema` instead. */
7219
- export const inboundSchema = DeploymentStreamDollarAndDollarLte$inboundSchema;
7220
- /** @deprecated use `DeploymentStreamDollarAndDollarLte$outboundSchema` instead. */
7221
- export const outboundSchema =
7222
- DeploymentStreamDollarAndDollarLte$outboundSchema;
7223
- /** @deprecated use `DeploymentStreamDollarAndDollarLte$Outbound` instead. */
7224
- export type Outbound = DeploymentStreamDollarAndDollarLte$Outbound;
6973
+ export namespace DeploymentStreamAndLte$ {
6974
+ /** @deprecated use `DeploymentStreamAndLte$inboundSchema` instead. */
6975
+ export const inboundSchema = DeploymentStreamAndLte$inboundSchema;
6976
+ /** @deprecated use `DeploymentStreamAndLte$outboundSchema` instead. */
6977
+ export const outboundSchema = DeploymentStreamAndLte$outboundSchema;
6978
+ /** @deprecated use `DeploymentStreamAndLte$Outbound` instead. */
6979
+ export type Outbound = DeploymentStreamAndLte$Outbound;
7225
6980
  }
7226
6981
 
7227
- export function deploymentStreamDollarAndDollarLteToJSON(
7228
- deploymentStreamDollarAndDollarLte: DeploymentStreamDollarAndDollarLte,
6982
+ export function deploymentStreamAndLteToJSON(
6983
+ deploymentStreamAndLte: DeploymentStreamAndLte,
7229
6984
  ): string {
7230
6985
  return JSON.stringify(
7231
- DeploymentStreamDollarAndDollarLte$outboundSchema.parse(
7232
- deploymentStreamDollarAndDollarLte,
7233
- ),
6986
+ DeploymentStreamAndLte$outboundSchema.parse(deploymentStreamAndLte),
7234
6987
  );
7235
6988
  }
7236
6989
 
7237
- export function deploymentStreamDollarAndDollarLteFromJSON(
6990
+ export function deploymentStreamAndLteFromJSON(
7238
6991
  jsonString: string,
7239
- ): SafeParseResult<DeploymentStreamDollarAndDollarLte, SDKValidationError> {
6992
+ ): SafeParseResult<DeploymentStreamAndLte, SDKValidationError> {
7240
6993
  return safeParse(
7241
6994
  jsonString,
7242
- (x) =>
7243
- DeploymentStreamDollarAndDollarLte$inboundSchema.parse(JSON.parse(x)),
7244
- `Failed to parse 'DeploymentStreamDollarAndDollarLte' from JSON`,
6995
+ (x) => DeploymentStreamAndLte$inboundSchema.parse(JSON.parse(x)),
6996
+ `Failed to parse 'DeploymentStreamAndLte' from JSON`,
7245
6997
  );
7246
6998
  }
7247
6999
 
7248
7000
  /** @internal */
7249
- export const DeploymentStreamDollarAndDollarLt$inboundSchema: z.ZodType<
7250
- DeploymentStreamDollarAndDollarLt,
7001
+ export const DeploymentStreamAndLt$inboundSchema: z.ZodType<
7002
+ DeploymentStreamAndLt,
7251
7003
  z.ZodTypeDef,
7252
7004
  unknown
7253
7005
  > = z.object({
7254
- $lt: z.number(),
7255
- }).transform((v) => {
7256
- return remap$(v, {
7257
- "$lt": "dollarLt",
7258
- });
7006
+ lt: z.number(),
7259
7007
  });
7260
7008
 
7261
7009
  /** @internal */
7262
- export type DeploymentStreamDollarAndDollarLt$Outbound = {
7263
- $lt: number;
7010
+ export type DeploymentStreamAndLt$Outbound = {
7011
+ lt: number;
7264
7012
  };
7265
7013
 
7266
7014
  /** @internal */
7267
- export const DeploymentStreamDollarAndDollarLt$outboundSchema: z.ZodType<
7268
- DeploymentStreamDollarAndDollarLt$Outbound,
7015
+ export const DeploymentStreamAndLt$outboundSchema: z.ZodType<
7016
+ DeploymentStreamAndLt$Outbound,
7269
7017
  z.ZodTypeDef,
7270
- DeploymentStreamDollarAndDollarLt
7018
+ DeploymentStreamAndLt
7271
7019
  > = z.object({
7272
- dollarLt: z.number(),
7273
- }).transform((v) => {
7274
- return remap$(v, {
7275
- dollarLt: "$lt",
7276
- });
7020
+ lt: z.number(),
7277
7021
  });
7278
7022
 
7279
7023
  /**
7280
7024
  * @internal
7281
7025
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7282
7026
  */
7283
- export namespace DeploymentStreamDollarAndDollarLt$ {
7284
- /** @deprecated use `DeploymentStreamDollarAndDollarLt$inboundSchema` instead. */
7285
- export const inboundSchema = DeploymentStreamDollarAndDollarLt$inboundSchema;
7286
- /** @deprecated use `DeploymentStreamDollarAndDollarLt$outboundSchema` instead. */
7287
- export const outboundSchema =
7288
- DeploymentStreamDollarAndDollarLt$outboundSchema;
7289
- /** @deprecated use `DeploymentStreamDollarAndDollarLt$Outbound` instead. */
7290
- export type Outbound = DeploymentStreamDollarAndDollarLt$Outbound;
7027
+ export namespace DeploymentStreamAndLt$ {
7028
+ /** @deprecated use `DeploymentStreamAndLt$inboundSchema` instead. */
7029
+ export const inboundSchema = DeploymentStreamAndLt$inboundSchema;
7030
+ /** @deprecated use `DeploymentStreamAndLt$outboundSchema` instead. */
7031
+ export const outboundSchema = DeploymentStreamAndLt$outboundSchema;
7032
+ /** @deprecated use `DeploymentStreamAndLt$Outbound` instead. */
7033
+ export type Outbound = DeploymentStreamAndLt$Outbound;
7291
7034
  }
7292
7035
 
7293
- export function deploymentStreamDollarAndDollarLtToJSON(
7294
- deploymentStreamDollarAndDollarLt: DeploymentStreamDollarAndDollarLt,
7036
+ export function deploymentStreamAndLtToJSON(
7037
+ deploymentStreamAndLt: DeploymentStreamAndLt,
7295
7038
  ): string {
7296
7039
  return JSON.stringify(
7297
- DeploymentStreamDollarAndDollarLt$outboundSchema.parse(
7298
- deploymentStreamDollarAndDollarLt,
7299
- ),
7040
+ DeploymentStreamAndLt$outboundSchema.parse(deploymentStreamAndLt),
7300
7041
  );
7301
7042
  }
7302
7043
 
7303
- export function deploymentStreamDollarAndDollarLtFromJSON(
7044
+ export function deploymentStreamAndLtFromJSON(
7304
7045
  jsonString: string,
7305
- ): SafeParseResult<DeploymentStreamDollarAndDollarLt, SDKValidationError> {
7046
+ ): SafeParseResult<DeploymentStreamAndLt, SDKValidationError> {
7306
7047
  return safeParse(
7307
7048
  jsonString,
7308
- (x) => DeploymentStreamDollarAndDollarLt$inboundSchema.parse(JSON.parse(x)),
7309
- `Failed to parse 'DeploymentStreamDollarAndDollarLt' from JSON`,
7049
+ (x) => DeploymentStreamAndLt$inboundSchema.parse(JSON.parse(x)),
7050
+ `Failed to parse 'DeploymentStreamAndLt' from JSON`,
7310
7051
  );
7311
7052
  }
7312
7053
 
7313
7054
  /** @internal */
7314
- export const DeploymentStreamDollarAndDollarGte$inboundSchema: z.ZodType<
7315
- DeploymentStreamDollarAndDollarGte,
7055
+ export const DeploymentStreamAndGte$inboundSchema: z.ZodType<
7056
+ DeploymentStreamAndGte,
7316
7057
  z.ZodTypeDef,
7317
7058
  unknown
7318
7059
  > = z.object({
7319
- $gte: z.number(),
7320
- }).transform((v) => {
7321
- return remap$(v, {
7322
- "$gte": "dollarGte",
7323
- });
7060
+ gte: z.number(),
7324
7061
  });
7325
7062
 
7326
7063
  /** @internal */
7327
- export type DeploymentStreamDollarAndDollarGte$Outbound = {
7328
- $gte: number;
7064
+ export type DeploymentStreamAndGte$Outbound = {
7065
+ gte: number;
7329
7066
  };
7330
7067
 
7331
7068
  /** @internal */
7332
- export const DeploymentStreamDollarAndDollarGte$outboundSchema: z.ZodType<
7333
- DeploymentStreamDollarAndDollarGte$Outbound,
7069
+ export const DeploymentStreamAndGte$outboundSchema: z.ZodType<
7070
+ DeploymentStreamAndGte$Outbound,
7334
7071
  z.ZodTypeDef,
7335
- DeploymentStreamDollarAndDollarGte
7072
+ DeploymentStreamAndGte
7336
7073
  > = z.object({
7337
- dollarGte: z.number(),
7338
- }).transform((v) => {
7339
- return remap$(v, {
7340
- dollarGte: "$gte",
7341
- });
7074
+ gte: z.number(),
7342
7075
  });
7343
7076
 
7344
7077
  /**
7345
7078
  * @internal
7346
7079
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7347
7080
  */
7348
- export namespace DeploymentStreamDollarAndDollarGte$ {
7349
- /** @deprecated use `DeploymentStreamDollarAndDollarGte$inboundSchema` instead. */
7350
- export const inboundSchema = DeploymentStreamDollarAndDollarGte$inboundSchema;
7351
- /** @deprecated use `DeploymentStreamDollarAndDollarGte$outboundSchema` instead. */
7352
- export const outboundSchema =
7353
- DeploymentStreamDollarAndDollarGte$outboundSchema;
7354
- /** @deprecated use `DeploymentStreamDollarAndDollarGte$Outbound` instead. */
7355
- export type Outbound = DeploymentStreamDollarAndDollarGte$Outbound;
7081
+ export namespace DeploymentStreamAndGte$ {
7082
+ /** @deprecated use `DeploymentStreamAndGte$inboundSchema` instead. */
7083
+ export const inboundSchema = DeploymentStreamAndGte$inboundSchema;
7084
+ /** @deprecated use `DeploymentStreamAndGte$outboundSchema` instead. */
7085
+ export const outboundSchema = DeploymentStreamAndGte$outboundSchema;
7086
+ /** @deprecated use `DeploymentStreamAndGte$Outbound` instead. */
7087
+ export type Outbound = DeploymentStreamAndGte$Outbound;
7356
7088
  }
7357
7089
 
7358
- export function deploymentStreamDollarAndDollarGteToJSON(
7359
- deploymentStreamDollarAndDollarGte: DeploymentStreamDollarAndDollarGte,
7090
+ export function deploymentStreamAndGteToJSON(
7091
+ deploymentStreamAndGte: DeploymentStreamAndGte,
7360
7092
  ): string {
7361
7093
  return JSON.stringify(
7362
- DeploymentStreamDollarAndDollarGte$outboundSchema.parse(
7363
- deploymentStreamDollarAndDollarGte,
7364
- ),
7094
+ DeploymentStreamAndGte$outboundSchema.parse(deploymentStreamAndGte),
7365
7095
  );
7366
7096
  }
7367
7097
 
7368
- export function deploymentStreamDollarAndDollarGteFromJSON(
7098
+ export function deploymentStreamAndGteFromJSON(
7369
7099
  jsonString: string,
7370
- ): SafeParseResult<DeploymentStreamDollarAndDollarGte, SDKValidationError> {
7100
+ ): SafeParseResult<DeploymentStreamAndGte, SDKValidationError> {
7371
7101
  return safeParse(
7372
7102
  jsonString,
7373
- (x) =>
7374
- DeploymentStreamDollarAndDollarGte$inboundSchema.parse(JSON.parse(x)),
7375
- `Failed to parse 'DeploymentStreamDollarAndDollarGte' from JSON`,
7103
+ (x) => DeploymentStreamAndGte$inboundSchema.parse(JSON.parse(x)),
7104
+ `Failed to parse 'DeploymentStreamAndGte' from JSON`,
7376
7105
  );
7377
7106
  }
7378
7107
 
7379
7108
  /** @internal */
7380
- export const DeploymentStreamDollarAnd3$inboundSchema: z.ZodType<
7381
- DeploymentStreamDollarAnd3,
7109
+ export const DeploymentStreamAnd3$inboundSchema: z.ZodType<
7110
+ DeploymentStreamAnd3,
7382
7111
  z.ZodTypeDef,
7383
7112
  unknown
7384
7113
  > = z.object({
7385
- $gt: z.number(),
7386
- }).transform((v) => {
7387
- return remap$(v, {
7388
- "$gt": "dollarGt",
7389
- });
7114
+ gt: z.number(),
7390
7115
  });
7391
7116
 
7392
7117
  /** @internal */
7393
- export type DeploymentStreamDollarAnd3$Outbound = {
7394
- $gt: number;
7118
+ export type DeploymentStreamAnd3$Outbound = {
7119
+ gt: number;
7395
7120
  };
7396
7121
 
7397
7122
  /** @internal */
7398
- export const DeploymentStreamDollarAnd3$outboundSchema: z.ZodType<
7399
- DeploymentStreamDollarAnd3$Outbound,
7123
+ export const DeploymentStreamAnd3$outboundSchema: z.ZodType<
7124
+ DeploymentStreamAnd3$Outbound,
7400
7125
  z.ZodTypeDef,
7401
- DeploymentStreamDollarAnd3
7126
+ DeploymentStreamAnd3
7402
7127
  > = z.object({
7403
- dollarGt: z.number(),
7404
- }).transform((v) => {
7405
- return remap$(v, {
7406
- dollarGt: "$gt",
7407
- });
7128
+ gt: z.number(),
7408
7129
  });
7409
7130
 
7410
7131
  /**
7411
7132
  * @internal
7412
7133
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7413
7134
  */
7414
- export namespace DeploymentStreamDollarAnd3$ {
7415
- /** @deprecated use `DeploymentStreamDollarAnd3$inboundSchema` instead. */
7416
- export const inboundSchema = DeploymentStreamDollarAnd3$inboundSchema;
7417
- /** @deprecated use `DeploymentStreamDollarAnd3$outboundSchema` instead. */
7418
- export const outboundSchema = DeploymentStreamDollarAnd3$outboundSchema;
7419
- /** @deprecated use `DeploymentStreamDollarAnd3$Outbound` instead. */
7420
- export type Outbound = DeploymentStreamDollarAnd3$Outbound;
7135
+ export namespace DeploymentStreamAnd3$ {
7136
+ /** @deprecated use `DeploymentStreamAnd3$inboundSchema` instead. */
7137
+ export const inboundSchema = DeploymentStreamAnd3$inboundSchema;
7138
+ /** @deprecated use `DeploymentStreamAnd3$outboundSchema` instead. */
7139
+ export const outboundSchema = DeploymentStreamAnd3$outboundSchema;
7140
+ /** @deprecated use `DeploymentStreamAnd3$Outbound` instead. */
7141
+ export type Outbound = DeploymentStreamAnd3$Outbound;
7421
7142
  }
7422
7143
 
7423
- export function deploymentStreamDollarAnd3ToJSON(
7424
- deploymentStreamDollarAnd3: DeploymentStreamDollarAnd3,
7144
+ export function deploymentStreamAnd3ToJSON(
7145
+ deploymentStreamAnd3: DeploymentStreamAnd3,
7425
7146
  ): string {
7426
7147
  return JSON.stringify(
7427
- DeploymentStreamDollarAnd3$outboundSchema.parse(deploymentStreamDollarAnd3),
7148
+ DeploymentStreamAnd3$outboundSchema.parse(deploymentStreamAnd3),
7428
7149
  );
7429
7150
  }
7430
7151
 
7431
- export function deploymentStreamDollarAnd3FromJSON(
7152
+ export function deploymentStreamAnd3FromJSON(
7432
7153
  jsonString: string,
7433
- ): SafeParseResult<DeploymentStreamDollarAnd3, SDKValidationError> {
7154
+ ): SafeParseResult<DeploymentStreamAnd3, SDKValidationError> {
7434
7155
  return safeParse(
7435
7156
  jsonString,
7436
- (x) => DeploymentStreamDollarAnd3$inboundSchema.parse(JSON.parse(x)),
7437
- `Failed to parse 'DeploymentStreamDollarAnd3' from JSON`,
7157
+ (x) => DeploymentStreamAnd3$inboundSchema.parse(JSON.parse(x)),
7158
+ `Failed to parse 'DeploymentStreamAnd3' from JSON`,
7438
7159
  );
7439
7160
  }
7440
7161
 
7441
7162
  /** @internal */
7442
- export const DeploymentStreamDollarAndDeploymentsDollarNe$inboundSchema:
7443
- z.ZodType<
7444
- DeploymentStreamDollarAndDeploymentsDollarNe,
7445
- z.ZodTypeDef,
7446
- unknown
7447
- > = z.union([z.string(), z.number(), z.boolean()]);
7163
+ export const DeploymentStreamAndDeploymentsNe$inboundSchema: z.ZodType<
7164
+ DeploymentStreamAndDeploymentsNe,
7165
+ z.ZodTypeDef,
7166
+ unknown
7167
+ > = z.union([z.string(), z.number(), z.boolean()]);
7448
7168
 
7449
7169
  /** @internal */
7450
- export type DeploymentStreamDollarAndDeploymentsDollarNe$Outbound =
7170
+ export type DeploymentStreamAndDeploymentsNe$Outbound =
7451
7171
  | string
7452
7172
  | number
7453
7173
  | boolean;
7454
7174
 
7455
7175
  /** @internal */
7456
- export const DeploymentStreamDollarAndDeploymentsDollarNe$outboundSchema:
7457
- z.ZodType<
7458
- DeploymentStreamDollarAndDeploymentsDollarNe$Outbound,
7459
- z.ZodTypeDef,
7460
- DeploymentStreamDollarAndDeploymentsDollarNe
7461
- > = z.union([z.string(), z.number(), z.boolean()]);
7176
+ export const DeploymentStreamAndDeploymentsNe$outboundSchema: z.ZodType<
7177
+ DeploymentStreamAndDeploymentsNe$Outbound,
7178
+ z.ZodTypeDef,
7179
+ DeploymentStreamAndDeploymentsNe
7180
+ > = z.union([z.string(), z.number(), z.boolean()]);
7462
7181
 
7463
7182
  /**
7464
7183
  * @internal
7465
7184
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7466
7185
  */
7467
- export namespace DeploymentStreamDollarAndDeploymentsDollarNe$ {
7468
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarNe$inboundSchema` instead. */
7469
- export const inboundSchema =
7470
- DeploymentStreamDollarAndDeploymentsDollarNe$inboundSchema;
7471
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarNe$outboundSchema` instead. */
7472
- export const outboundSchema =
7473
- DeploymentStreamDollarAndDeploymentsDollarNe$outboundSchema;
7474
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarNe$Outbound` instead. */
7475
- export type Outbound = DeploymentStreamDollarAndDeploymentsDollarNe$Outbound;
7186
+ export namespace DeploymentStreamAndDeploymentsNe$ {
7187
+ /** @deprecated use `DeploymentStreamAndDeploymentsNe$inboundSchema` instead. */
7188
+ export const inboundSchema = DeploymentStreamAndDeploymentsNe$inboundSchema;
7189
+ /** @deprecated use `DeploymentStreamAndDeploymentsNe$outboundSchema` instead. */
7190
+ export const outboundSchema = DeploymentStreamAndDeploymentsNe$outboundSchema;
7191
+ /** @deprecated use `DeploymentStreamAndDeploymentsNe$Outbound` instead. */
7192
+ export type Outbound = DeploymentStreamAndDeploymentsNe$Outbound;
7476
7193
  }
7477
7194
 
7478
- export function deploymentStreamDollarAndDeploymentsDollarNeToJSON(
7479
- deploymentStreamDollarAndDeploymentsDollarNe:
7480
- DeploymentStreamDollarAndDeploymentsDollarNe,
7195
+ export function deploymentStreamAndDeploymentsNeToJSON(
7196
+ deploymentStreamAndDeploymentsNe: DeploymentStreamAndDeploymentsNe,
7481
7197
  ): string {
7482
7198
  return JSON.stringify(
7483
- DeploymentStreamDollarAndDeploymentsDollarNe$outboundSchema.parse(
7484
- deploymentStreamDollarAndDeploymentsDollarNe,
7199
+ DeploymentStreamAndDeploymentsNe$outboundSchema.parse(
7200
+ deploymentStreamAndDeploymentsNe,
7485
7201
  ),
7486
7202
  );
7487
7203
  }
7488
7204
 
7489
- export function deploymentStreamDollarAndDeploymentsDollarNeFromJSON(
7205
+ export function deploymentStreamAndDeploymentsNeFromJSON(
7490
7206
  jsonString: string,
7491
- ): SafeParseResult<
7492
- DeploymentStreamDollarAndDeploymentsDollarNe,
7493
- SDKValidationError
7494
- > {
7207
+ ): SafeParseResult<DeploymentStreamAndDeploymentsNe, SDKValidationError> {
7495
7208
  return safeParse(
7496
7209
  jsonString,
7497
- (x) =>
7498
- DeploymentStreamDollarAndDeploymentsDollarNe$inboundSchema.parse(
7499
- JSON.parse(x),
7500
- ),
7501
- `Failed to parse 'DeploymentStreamDollarAndDeploymentsDollarNe' from JSON`,
7210
+ (x) => DeploymentStreamAndDeploymentsNe$inboundSchema.parse(JSON.parse(x)),
7211
+ `Failed to parse 'DeploymentStreamAndDeploymentsNe' from JSON`,
7502
7212
  );
7503
7213
  }
7504
7214
 
7505
7215
  /** @internal */
7506
- export const DeploymentStreamDollarAndDollarNe$inboundSchema: z.ZodType<
7507
- DeploymentStreamDollarAndDollarNe,
7216
+ export const DeploymentStreamAndNe$inboundSchema: z.ZodType<
7217
+ DeploymentStreamAndNe,
7508
7218
  z.ZodTypeDef,
7509
7219
  unknown
7510
7220
  > = z.object({
7511
- $ne: z.union([z.string(), z.number(), z.boolean()]),
7512
- }).transform((v) => {
7513
- return remap$(v, {
7514
- "$ne": "dollarNe",
7515
- });
7221
+ ne: z.union([z.string(), z.number(), z.boolean()]),
7516
7222
  });
7517
7223
 
7518
7224
  /** @internal */
7519
- export type DeploymentStreamDollarAndDollarNe$Outbound = {
7520
- $ne: string | number | boolean;
7225
+ export type DeploymentStreamAndNe$Outbound = {
7226
+ ne: string | number | boolean;
7521
7227
  };
7522
7228
 
7523
7229
  /** @internal */
7524
- export const DeploymentStreamDollarAndDollarNe$outboundSchema: z.ZodType<
7525
- DeploymentStreamDollarAndDollarNe$Outbound,
7230
+ export const DeploymentStreamAndNe$outboundSchema: z.ZodType<
7231
+ DeploymentStreamAndNe$Outbound,
7526
7232
  z.ZodTypeDef,
7527
- DeploymentStreamDollarAndDollarNe
7233
+ DeploymentStreamAndNe
7528
7234
  > = z.object({
7529
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
7530
- }).transform((v) => {
7531
- return remap$(v, {
7532
- dollarNe: "$ne",
7533
- });
7235
+ ne: z.union([z.string(), z.number(), z.boolean()]),
7534
7236
  });
7535
7237
 
7536
7238
  /**
7537
7239
  * @internal
7538
7240
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7539
7241
  */
7540
- export namespace DeploymentStreamDollarAndDollarNe$ {
7541
- /** @deprecated use `DeploymentStreamDollarAndDollarNe$inboundSchema` instead. */
7542
- export const inboundSchema = DeploymentStreamDollarAndDollarNe$inboundSchema;
7543
- /** @deprecated use `DeploymentStreamDollarAndDollarNe$outboundSchema` instead. */
7544
- export const outboundSchema =
7545
- DeploymentStreamDollarAndDollarNe$outboundSchema;
7546
- /** @deprecated use `DeploymentStreamDollarAndDollarNe$Outbound` instead. */
7547
- export type Outbound = DeploymentStreamDollarAndDollarNe$Outbound;
7242
+ export namespace DeploymentStreamAndNe$ {
7243
+ /** @deprecated use `DeploymentStreamAndNe$inboundSchema` instead. */
7244
+ export const inboundSchema = DeploymentStreamAndNe$inboundSchema;
7245
+ /** @deprecated use `DeploymentStreamAndNe$outboundSchema` instead. */
7246
+ export const outboundSchema = DeploymentStreamAndNe$outboundSchema;
7247
+ /** @deprecated use `DeploymentStreamAndNe$Outbound` instead. */
7248
+ export type Outbound = DeploymentStreamAndNe$Outbound;
7548
7249
  }
7549
7250
 
7550
- export function deploymentStreamDollarAndDollarNeToJSON(
7551
- deploymentStreamDollarAndDollarNe: DeploymentStreamDollarAndDollarNe,
7251
+ export function deploymentStreamAndNeToJSON(
7252
+ deploymentStreamAndNe: DeploymentStreamAndNe,
7552
7253
  ): string {
7553
7254
  return JSON.stringify(
7554
- DeploymentStreamDollarAndDollarNe$outboundSchema.parse(
7555
- deploymentStreamDollarAndDollarNe,
7556
- ),
7255
+ DeploymentStreamAndNe$outboundSchema.parse(deploymentStreamAndNe),
7557
7256
  );
7558
7257
  }
7559
7258
 
7560
- export function deploymentStreamDollarAndDollarNeFromJSON(
7259
+ export function deploymentStreamAndNeFromJSON(
7561
7260
  jsonString: string,
7562
- ): SafeParseResult<DeploymentStreamDollarAndDollarNe, SDKValidationError> {
7261
+ ): SafeParseResult<DeploymentStreamAndNe, SDKValidationError> {
7563
7262
  return safeParse(
7564
7263
  jsonString,
7565
- (x) => DeploymentStreamDollarAndDollarNe$inboundSchema.parse(JSON.parse(x)),
7566
- `Failed to parse 'DeploymentStreamDollarAndDollarNe' from JSON`,
7264
+ (x) => DeploymentStreamAndNe$inboundSchema.parse(JSON.parse(x)),
7265
+ `Failed to parse 'DeploymentStreamAndNe' from JSON`,
7567
7266
  );
7568
7267
  }
7569
7268
 
7570
7269
  /** @internal */
7571
- export const DeploymentStreamDollarAndDeploymentsDollarEq$inboundSchema:
7572
- z.ZodType<
7573
- DeploymentStreamDollarAndDeploymentsDollarEq,
7574
- z.ZodTypeDef,
7575
- unknown
7576
- > = z.union([z.string(), z.number(), z.boolean()]);
7270
+ export const DeploymentStreamAndDeploymentsEq$inboundSchema: z.ZodType<
7271
+ DeploymentStreamAndDeploymentsEq,
7272
+ z.ZodTypeDef,
7273
+ unknown
7274
+ > = z.union([z.string(), z.number(), z.boolean()]);
7577
7275
 
7578
7276
  /** @internal */
7579
- export type DeploymentStreamDollarAndDeploymentsDollarEq$Outbound =
7277
+ export type DeploymentStreamAndDeploymentsEq$Outbound =
7580
7278
  | string
7581
7279
  | number
7582
7280
  | boolean;
7583
7281
 
7584
7282
  /** @internal */
7585
- export const DeploymentStreamDollarAndDeploymentsDollarEq$outboundSchema:
7586
- z.ZodType<
7587
- DeploymentStreamDollarAndDeploymentsDollarEq$Outbound,
7588
- z.ZodTypeDef,
7589
- DeploymentStreamDollarAndDeploymentsDollarEq
7590
- > = z.union([z.string(), z.number(), z.boolean()]);
7283
+ export const DeploymentStreamAndDeploymentsEq$outboundSchema: z.ZodType<
7284
+ DeploymentStreamAndDeploymentsEq$Outbound,
7285
+ z.ZodTypeDef,
7286
+ DeploymentStreamAndDeploymentsEq
7287
+ > = z.union([z.string(), z.number(), z.boolean()]);
7591
7288
 
7592
7289
  /**
7593
7290
  * @internal
7594
7291
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7595
7292
  */
7596
- export namespace DeploymentStreamDollarAndDeploymentsDollarEq$ {
7597
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarEq$inboundSchema` instead. */
7598
- export const inboundSchema =
7599
- DeploymentStreamDollarAndDeploymentsDollarEq$inboundSchema;
7600
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarEq$outboundSchema` instead. */
7601
- export const outboundSchema =
7602
- DeploymentStreamDollarAndDeploymentsDollarEq$outboundSchema;
7603
- /** @deprecated use `DeploymentStreamDollarAndDeploymentsDollarEq$Outbound` instead. */
7604
- export type Outbound = DeploymentStreamDollarAndDeploymentsDollarEq$Outbound;
7293
+ export namespace DeploymentStreamAndDeploymentsEq$ {
7294
+ /** @deprecated use `DeploymentStreamAndDeploymentsEq$inboundSchema` instead. */
7295
+ export const inboundSchema = DeploymentStreamAndDeploymentsEq$inboundSchema;
7296
+ /** @deprecated use `DeploymentStreamAndDeploymentsEq$outboundSchema` instead. */
7297
+ export const outboundSchema = DeploymentStreamAndDeploymentsEq$outboundSchema;
7298
+ /** @deprecated use `DeploymentStreamAndDeploymentsEq$Outbound` instead. */
7299
+ export type Outbound = DeploymentStreamAndDeploymentsEq$Outbound;
7605
7300
  }
7606
7301
 
7607
- export function deploymentStreamDollarAndDeploymentsDollarEqToJSON(
7608
- deploymentStreamDollarAndDeploymentsDollarEq:
7609
- DeploymentStreamDollarAndDeploymentsDollarEq,
7302
+ export function deploymentStreamAndDeploymentsEqToJSON(
7303
+ deploymentStreamAndDeploymentsEq: DeploymentStreamAndDeploymentsEq,
7610
7304
  ): string {
7611
7305
  return JSON.stringify(
7612
- DeploymentStreamDollarAndDeploymentsDollarEq$outboundSchema.parse(
7613
- deploymentStreamDollarAndDeploymentsDollarEq,
7306
+ DeploymentStreamAndDeploymentsEq$outboundSchema.parse(
7307
+ deploymentStreamAndDeploymentsEq,
7614
7308
  ),
7615
7309
  );
7616
7310
  }
7617
7311
 
7618
- export function deploymentStreamDollarAndDeploymentsDollarEqFromJSON(
7312
+ export function deploymentStreamAndDeploymentsEqFromJSON(
7619
7313
  jsonString: string,
7620
- ): SafeParseResult<
7621
- DeploymentStreamDollarAndDeploymentsDollarEq,
7622
- SDKValidationError
7623
- > {
7314
+ ): SafeParseResult<DeploymentStreamAndDeploymentsEq, SDKValidationError> {
7624
7315
  return safeParse(
7625
7316
  jsonString,
7626
- (x) =>
7627
- DeploymentStreamDollarAndDeploymentsDollarEq$inboundSchema.parse(
7628
- JSON.parse(x),
7629
- ),
7630
- `Failed to parse 'DeploymentStreamDollarAndDeploymentsDollarEq' from JSON`,
7317
+ (x) => DeploymentStreamAndDeploymentsEq$inboundSchema.parse(JSON.parse(x)),
7318
+ `Failed to parse 'DeploymentStreamAndDeploymentsEq' from JSON`,
7631
7319
  );
7632
7320
  }
7633
7321
 
7634
7322
  /** @internal */
7635
- export const DeploymentStreamDollarAndDollarEq$inboundSchema: z.ZodType<
7636
- DeploymentStreamDollarAndDollarEq,
7323
+ export const DeploymentStreamAndEq$inboundSchema: z.ZodType<
7324
+ DeploymentStreamAndEq,
7637
7325
  z.ZodTypeDef,
7638
7326
  unknown
7639
7327
  > = z.object({
7640
- $eq: z.union([z.string(), z.number(), z.boolean()]),
7641
- }).transform((v) => {
7642
- return remap$(v, {
7643
- "$eq": "dollarEq",
7644
- });
7328
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7645
7329
  });
7646
7330
 
7647
7331
  /** @internal */
7648
- export type DeploymentStreamDollarAndDollarEq$Outbound = {
7649
- $eq: string | number | boolean;
7332
+ export type DeploymentStreamAndEq$Outbound = {
7333
+ eq: string | number | boolean;
7650
7334
  };
7651
7335
 
7652
7336
  /** @internal */
7653
- export const DeploymentStreamDollarAndDollarEq$outboundSchema: z.ZodType<
7654
- DeploymentStreamDollarAndDollarEq$Outbound,
7337
+ export const DeploymentStreamAndEq$outboundSchema: z.ZodType<
7338
+ DeploymentStreamAndEq$Outbound,
7655
7339
  z.ZodTypeDef,
7656
- DeploymentStreamDollarAndDollarEq
7340
+ DeploymentStreamAndEq
7657
7341
  > = z.object({
7658
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
7659
- }).transform((v) => {
7660
- return remap$(v, {
7661
- dollarEq: "$eq",
7662
- });
7342
+ eq: z.union([z.string(), z.number(), z.boolean()]),
7663
7343
  });
7664
7344
 
7665
7345
  /**
7666
7346
  * @internal
7667
7347
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7668
7348
  */
7669
- export namespace DeploymentStreamDollarAndDollarEq$ {
7670
- /** @deprecated use `DeploymentStreamDollarAndDollarEq$inboundSchema` instead. */
7671
- export const inboundSchema = DeploymentStreamDollarAndDollarEq$inboundSchema;
7672
- /** @deprecated use `DeploymentStreamDollarAndDollarEq$outboundSchema` instead. */
7673
- export const outboundSchema =
7674
- DeploymentStreamDollarAndDollarEq$outboundSchema;
7675
- /** @deprecated use `DeploymentStreamDollarAndDollarEq$Outbound` instead. */
7676
- export type Outbound = DeploymentStreamDollarAndDollarEq$Outbound;
7349
+ export namespace DeploymentStreamAndEq$ {
7350
+ /** @deprecated use `DeploymentStreamAndEq$inboundSchema` instead. */
7351
+ export const inboundSchema = DeploymentStreamAndEq$inboundSchema;
7352
+ /** @deprecated use `DeploymentStreamAndEq$outboundSchema` instead. */
7353
+ export const outboundSchema = DeploymentStreamAndEq$outboundSchema;
7354
+ /** @deprecated use `DeploymentStreamAndEq$Outbound` instead. */
7355
+ export type Outbound = DeploymentStreamAndEq$Outbound;
7677
7356
  }
7678
7357
 
7679
- export function deploymentStreamDollarAndDollarEqToJSON(
7680
- deploymentStreamDollarAndDollarEq: DeploymentStreamDollarAndDollarEq,
7358
+ export function deploymentStreamAndEqToJSON(
7359
+ deploymentStreamAndEq: DeploymentStreamAndEq,
7681
7360
  ): string {
7682
7361
  return JSON.stringify(
7683
- DeploymentStreamDollarAndDollarEq$outboundSchema.parse(
7684
- deploymentStreamDollarAndDollarEq,
7685
- ),
7362
+ DeploymentStreamAndEq$outboundSchema.parse(deploymentStreamAndEq),
7686
7363
  );
7687
7364
  }
7688
7365
 
7689
- export function deploymentStreamDollarAndDollarEqFromJSON(
7366
+ export function deploymentStreamAndEqFromJSON(
7690
7367
  jsonString: string,
7691
- ): SafeParseResult<DeploymentStreamDollarAndDollarEq, SDKValidationError> {
7368
+ ): SafeParseResult<DeploymentStreamAndEq, SDKValidationError> {
7692
7369
  return safeParse(
7693
7370
  jsonString,
7694
- (x) => DeploymentStreamDollarAndDollarEq$inboundSchema.parse(JSON.parse(x)),
7695
- `Failed to parse 'DeploymentStreamDollarAndDollarEq' from JSON`,
7371
+ (x) => DeploymentStreamAndEq$inboundSchema.parse(JSON.parse(x)),
7372
+ `Failed to parse 'DeploymentStreamAndEq' from JSON`,
7696
7373
  );
7697
7374
  }
7698
7375
 
7699
7376
  /** @internal */
7700
- export const DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$inboundSchema:
7377
+ export const DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema:
7701
7378
  z.ZodType<
7702
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd,
7379
+ DeploymentStreamKnowledgeFilterDeploymentsAnd,
7703
7380
  z.ZodTypeDef,
7704
7381
  unknown
7705
7382
  > = z.union([
7706
- z.lazy(() => DeploymentStreamDollarAndDollarEq$inboundSchema),
7707
- z.lazy(() => DeploymentStreamDollarAndDollarNe$inboundSchema),
7708
- z.lazy(() => DeploymentStreamDollarAnd3$inboundSchema),
7709
- z.lazy(() => DeploymentStreamDollarAndDollarGte$inboundSchema),
7710
- z.lazy(() => DeploymentStreamDollarAndDollarLt$inboundSchema),
7711
- z.lazy(() => DeploymentStreamDollarAndDollarLte$inboundSchema),
7712
- z.lazy(() => DeploymentStreamDollarAndDollarIn$inboundSchema),
7713
- z.lazy(() => DeploymentStreamDollarAndDollarNin$inboundSchema),
7714
- z.lazy(() => DeploymentStreamDollarAndDollarExists$inboundSchema),
7383
+ z.lazy(() => DeploymentStreamAndEq$inboundSchema),
7384
+ z.lazy(() => DeploymentStreamAndNe$inboundSchema),
7385
+ z.lazy(() => DeploymentStreamAnd3$inboundSchema),
7386
+ z.lazy(() => DeploymentStreamAndGte$inboundSchema),
7387
+ z.lazy(() => DeploymentStreamAndLt$inboundSchema),
7388
+ z.lazy(() => DeploymentStreamAndLte$inboundSchema),
7389
+ z.lazy(() => DeploymentStreamAndIn$inboundSchema),
7390
+ z.lazy(() => DeploymentStreamAndNin$inboundSchema),
7391
+ z.lazy(() => DeploymentStreamAndExists$inboundSchema),
7715
7392
  ]);
7716
7393
 
7717
7394
  /** @internal */
7718
- export type DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$Outbound =
7719
- | DeploymentStreamDollarAndDollarEq$Outbound
7720
- | DeploymentStreamDollarAndDollarNe$Outbound
7721
- | DeploymentStreamDollarAnd3$Outbound
7722
- | DeploymentStreamDollarAndDollarGte$Outbound
7723
- | DeploymentStreamDollarAndDollarLt$Outbound
7724
- | DeploymentStreamDollarAndDollarLte$Outbound
7725
- | DeploymentStreamDollarAndDollarIn$Outbound
7726
- | DeploymentStreamDollarAndDollarNin$Outbound
7727
- | DeploymentStreamDollarAndDollarExists$Outbound;
7395
+ export type DeploymentStreamKnowledgeFilterDeploymentsAnd$Outbound =
7396
+ | DeploymentStreamAndEq$Outbound
7397
+ | DeploymentStreamAndNe$Outbound
7398
+ | DeploymentStreamAnd3$Outbound
7399
+ | DeploymentStreamAndGte$Outbound
7400
+ | DeploymentStreamAndLt$Outbound
7401
+ | DeploymentStreamAndLte$Outbound
7402
+ | DeploymentStreamAndIn$Outbound
7403
+ | DeploymentStreamAndNin$Outbound
7404
+ | DeploymentStreamAndExists$Outbound;
7728
7405
 
7729
7406
  /** @internal */
7730
- export const DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$outboundSchema:
7407
+ export const DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema:
7731
7408
  z.ZodType<
7732
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$Outbound,
7409
+ DeploymentStreamKnowledgeFilterDeploymentsAnd$Outbound,
7733
7410
  z.ZodTypeDef,
7734
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd
7411
+ DeploymentStreamKnowledgeFilterDeploymentsAnd
7735
7412
  > = z.union([
7736
- z.lazy(() => DeploymentStreamDollarAndDollarEq$outboundSchema),
7737
- z.lazy(() => DeploymentStreamDollarAndDollarNe$outboundSchema),
7738
- z.lazy(() => DeploymentStreamDollarAnd3$outboundSchema),
7739
- z.lazy(() => DeploymentStreamDollarAndDollarGte$outboundSchema),
7740
- z.lazy(() => DeploymentStreamDollarAndDollarLt$outboundSchema),
7741
- z.lazy(() => DeploymentStreamDollarAndDollarLte$outboundSchema),
7742
- z.lazy(() => DeploymentStreamDollarAndDollarIn$outboundSchema),
7743
- z.lazy(() => DeploymentStreamDollarAndDollarNin$outboundSchema),
7744
- z.lazy(() => DeploymentStreamDollarAndDollarExists$outboundSchema),
7413
+ z.lazy(() => DeploymentStreamAndEq$outboundSchema),
7414
+ z.lazy(() => DeploymentStreamAndNe$outboundSchema),
7415
+ z.lazy(() => DeploymentStreamAnd3$outboundSchema),
7416
+ z.lazy(() => DeploymentStreamAndGte$outboundSchema),
7417
+ z.lazy(() => DeploymentStreamAndLt$outboundSchema),
7418
+ z.lazy(() => DeploymentStreamAndLte$outboundSchema),
7419
+ z.lazy(() => DeploymentStreamAndIn$outboundSchema),
7420
+ z.lazy(() => DeploymentStreamAndNin$outboundSchema),
7421
+ z.lazy(() => DeploymentStreamAndExists$outboundSchema),
7745
7422
  ]);
7746
7423
 
7747
7424
  /**
7748
7425
  * @internal
7749
7426
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7750
7427
  */
7751
- export namespace DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$ {
7752
- /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$inboundSchema` instead. */
7428
+ export namespace DeploymentStreamKnowledgeFilterDeploymentsAnd$ {
7429
+ /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema` instead. */
7753
7430
  export const inboundSchema =
7754
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$inboundSchema;
7755
- /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$outboundSchema` instead. */
7431
+ DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema;
7432
+ /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema` instead. */
7756
7433
  export const outboundSchema =
7757
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$outboundSchema;
7758
- /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$Outbound` instead. */
7759
- export type Outbound =
7760
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$Outbound;
7434
+ DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema;
7435
+ /** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsAnd$Outbound` instead. */
7436
+ export type Outbound = DeploymentStreamKnowledgeFilterDeploymentsAnd$Outbound;
7761
7437
  }
7762
7438
 
7763
- export function deploymentStreamKnowledgeFilterDeploymentsDollarAndToJSON(
7764
- deploymentStreamKnowledgeFilterDeploymentsDollarAnd:
7765
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd,
7439
+ export function deploymentStreamKnowledgeFilterDeploymentsAndToJSON(
7440
+ deploymentStreamKnowledgeFilterDeploymentsAnd:
7441
+ DeploymentStreamKnowledgeFilterDeploymentsAnd,
7766
7442
  ): string {
7767
7443
  return JSON.stringify(
7768
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$outboundSchema.parse(
7769
- deploymentStreamKnowledgeFilterDeploymentsDollarAnd,
7444
+ DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema.parse(
7445
+ deploymentStreamKnowledgeFilterDeploymentsAnd,
7770
7446
  ),
7771
7447
  );
7772
7448
  }
7773
7449
 
7774
- export function deploymentStreamKnowledgeFilterDeploymentsDollarAndFromJSON(
7450
+ export function deploymentStreamKnowledgeFilterDeploymentsAndFromJSON(
7775
7451
  jsonString: string,
7776
7452
  ): SafeParseResult<
7777
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd,
7453
+ DeploymentStreamKnowledgeFilterDeploymentsAnd,
7778
7454
  SDKValidationError
7779
7455
  > {
7780
7456
  return safeParse(
7781
7457
  jsonString,
7782
7458
  (x) =>
7783
- DeploymentStreamKnowledgeFilterDeploymentsDollarAnd$inboundSchema.parse(
7459
+ DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema.parse(
7784
7460
  JSON.parse(x),
7785
7461
  ),
7786
- `Failed to parse 'DeploymentStreamKnowledgeFilterDeploymentsDollarAnd' from JSON`,
7462
+ `Failed to parse 'DeploymentStreamKnowledgeFilterDeploymentsAnd' from JSON`,
7787
7463
  );
7788
7464
  }
7789
7465
 
7790
7466
  /** @internal */
7791
- export const DeploymentStreamKnowledgeFilterDollarAnd$inboundSchema: z.ZodType<
7792
- DeploymentStreamKnowledgeFilterDollarAnd,
7467
+ export const DeploymentStreamKnowledgeFilterAnd$inboundSchema: z.ZodType<
7468
+ DeploymentStreamKnowledgeFilterAnd,
7793
7469
  z.ZodTypeDef,
7794
7470
  unknown
7795
7471
  > = z.object({
7796
- $and: z.array(
7472
+ and: z.array(
7797
7473
  z.record(z.union([
7798
- z.lazy(() => DeploymentStreamDollarAndDollarEq$inboundSchema),
7474
+ z.lazy(() => DeploymentStreamAndEq$inboundSchema),
7799
7475
  z.lazy(() =>
7800
- DeploymentStreamDollarAndDollarNe$inboundSchema
7476
+ DeploymentStreamAndNe$inboundSchema
7801
7477
  ),
7802
- z.lazy(() => DeploymentStreamDollarAnd3$inboundSchema),
7803
- z.lazy(() => DeploymentStreamDollarAndDollarGte$inboundSchema),
7804
- z.lazy(() => DeploymentStreamDollarAndDollarLt$inboundSchema),
7805
- z.lazy(() => DeploymentStreamDollarAndDollarLte$inboundSchema),
7806
- z.lazy(() => DeploymentStreamDollarAndDollarIn$inboundSchema),
7807
- z.lazy(() => DeploymentStreamDollarAndDollarNin$inboundSchema),
7808
- z.lazy(() => DeploymentStreamDollarAndDollarExists$inboundSchema),
7478
+ z.lazy(() => DeploymentStreamAnd3$inboundSchema),
7479
+ z.lazy(() => DeploymentStreamAndGte$inboundSchema),
7480
+ z.lazy(() => DeploymentStreamAndLt$inboundSchema),
7481
+ z.lazy(() => DeploymentStreamAndLte$inboundSchema),
7482
+ z.lazy(() => DeploymentStreamAndIn$inboundSchema),
7483
+ z.lazy(() => DeploymentStreamAndNin$inboundSchema),
7484
+ z.lazy(() => DeploymentStreamAndExists$inboundSchema),
7809
7485
  ])),
7810
7486
  ),
7811
- }).transform((v) => {
7812
- return remap$(v, {
7813
- "$and": "dollarAnd",
7814
- });
7815
7487
  });
7816
7488
 
7817
7489
  /** @internal */
7818
- export type DeploymentStreamKnowledgeFilterDollarAnd$Outbound = {
7819
- $and: Array<
7490
+ export type DeploymentStreamKnowledgeFilterAnd$Outbound = {
7491
+ and: Array<
7820
7492
  {
7821
7493
  [k: string]:
7822
- | DeploymentStreamDollarAndDollarEq$Outbound
7823
- | DeploymentStreamDollarAndDollarNe$Outbound
7824
- | DeploymentStreamDollarAnd3$Outbound
7825
- | DeploymentStreamDollarAndDollarGte$Outbound
7826
- | DeploymentStreamDollarAndDollarLt$Outbound
7827
- | DeploymentStreamDollarAndDollarLte$Outbound
7828
- | DeploymentStreamDollarAndDollarIn$Outbound
7829
- | DeploymentStreamDollarAndDollarNin$Outbound
7830
- | DeploymentStreamDollarAndDollarExists$Outbound;
7494
+ | DeploymentStreamAndEq$Outbound
7495
+ | DeploymentStreamAndNe$Outbound
7496
+ | DeploymentStreamAnd3$Outbound
7497
+ | DeploymentStreamAndGte$Outbound
7498
+ | DeploymentStreamAndLt$Outbound
7499
+ | DeploymentStreamAndLte$Outbound
7500
+ | DeploymentStreamAndIn$Outbound
7501
+ | DeploymentStreamAndNin$Outbound
7502
+ | DeploymentStreamAndExists$Outbound;
7831
7503
  }
7832
7504
  >;
7833
7505
  };
7834
7506
 
7835
7507
  /** @internal */
7836
- export const DeploymentStreamKnowledgeFilterDollarAnd$outboundSchema: z.ZodType<
7837
- DeploymentStreamKnowledgeFilterDollarAnd$Outbound,
7508
+ export const DeploymentStreamKnowledgeFilterAnd$outboundSchema: z.ZodType<
7509
+ DeploymentStreamKnowledgeFilterAnd$Outbound,
7838
7510
  z.ZodTypeDef,
7839
- DeploymentStreamKnowledgeFilterDollarAnd
7511
+ DeploymentStreamKnowledgeFilterAnd
7840
7512
  > = z.object({
7841
- dollarAnd: z.array(
7513
+ and: z.array(
7842
7514
  z.record(z.union([
7843
- z.lazy(() => DeploymentStreamDollarAndDollarEq$outboundSchema),
7515
+ z.lazy(() => DeploymentStreamAndEq$outboundSchema),
7844
7516
  z.lazy(() =>
7845
- DeploymentStreamDollarAndDollarNe$outboundSchema
7517
+ DeploymentStreamAndNe$outboundSchema
7846
7518
  ),
7847
- z.lazy(() => DeploymentStreamDollarAnd3$outboundSchema),
7848
- z.lazy(() => DeploymentStreamDollarAndDollarGte$outboundSchema),
7849
- z.lazy(() => DeploymentStreamDollarAndDollarLt$outboundSchema),
7850
- z.lazy(() => DeploymentStreamDollarAndDollarLte$outboundSchema),
7851
- z.lazy(() => DeploymentStreamDollarAndDollarIn$outboundSchema),
7852
- z.lazy(() => DeploymentStreamDollarAndDollarNin$outboundSchema),
7853
- z.lazy(() => DeploymentStreamDollarAndDollarExists$outboundSchema),
7519
+ z.lazy(() => DeploymentStreamAnd3$outboundSchema),
7520
+ z.lazy(() => DeploymentStreamAndGte$outboundSchema),
7521
+ z.lazy(() => DeploymentStreamAndLt$outboundSchema),
7522
+ z.lazy(() => DeploymentStreamAndLte$outboundSchema),
7523
+ z.lazy(() => DeploymentStreamAndIn$outboundSchema),
7524
+ z.lazy(() => DeploymentStreamAndNin$outboundSchema),
7525
+ z.lazy(() => DeploymentStreamAndExists$outboundSchema),
7854
7526
  ])),
7855
7527
  ),
7856
- }).transform((v) => {
7857
- return remap$(v, {
7858
- dollarAnd: "$and",
7859
- });
7860
7528
  });
7861
7529
 
7862
7530
  /**
7863
7531
  * @internal
7864
7532
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7865
7533
  */
7866
- export namespace DeploymentStreamKnowledgeFilterDollarAnd$ {
7867
- /** @deprecated use `DeploymentStreamKnowledgeFilterDollarAnd$inboundSchema` instead. */
7868
- export const inboundSchema =
7869
- DeploymentStreamKnowledgeFilterDollarAnd$inboundSchema;
7870
- /** @deprecated use `DeploymentStreamKnowledgeFilterDollarAnd$outboundSchema` instead. */
7534
+ export namespace DeploymentStreamKnowledgeFilterAnd$ {
7535
+ /** @deprecated use `DeploymentStreamKnowledgeFilterAnd$inboundSchema` instead. */
7536
+ export const inboundSchema = DeploymentStreamKnowledgeFilterAnd$inboundSchema;
7537
+ /** @deprecated use `DeploymentStreamKnowledgeFilterAnd$outboundSchema` instead. */
7871
7538
  export const outboundSchema =
7872
- DeploymentStreamKnowledgeFilterDollarAnd$outboundSchema;
7873
- /** @deprecated use `DeploymentStreamKnowledgeFilterDollarAnd$Outbound` instead. */
7874
- export type Outbound = DeploymentStreamKnowledgeFilterDollarAnd$Outbound;
7539
+ DeploymentStreamKnowledgeFilterAnd$outboundSchema;
7540
+ /** @deprecated use `DeploymentStreamKnowledgeFilterAnd$Outbound` instead. */
7541
+ export type Outbound = DeploymentStreamKnowledgeFilterAnd$Outbound;
7875
7542
  }
7876
7543
 
7877
- export function deploymentStreamKnowledgeFilterDollarAndToJSON(
7878
- deploymentStreamKnowledgeFilterDollarAnd:
7879
- DeploymentStreamKnowledgeFilterDollarAnd,
7544
+ export function deploymentStreamKnowledgeFilterAndToJSON(
7545
+ deploymentStreamKnowledgeFilterAnd: DeploymentStreamKnowledgeFilterAnd,
7880
7546
  ): string {
7881
7547
  return JSON.stringify(
7882
- DeploymentStreamKnowledgeFilterDollarAnd$outboundSchema.parse(
7883
- deploymentStreamKnowledgeFilterDollarAnd,
7548
+ DeploymentStreamKnowledgeFilterAnd$outboundSchema.parse(
7549
+ deploymentStreamKnowledgeFilterAnd,
7884
7550
  ),
7885
7551
  );
7886
7552
  }
7887
7553
 
7888
- export function deploymentStreamKnowledgeFilterDollarAndFromJSON(
7554
+ export function deploymentStreamKnowledgeFilterAndFromJSON(
7889
7555
  jsonString: string,
7890
- ): SafeParseResult<
7891
- DeploymentStreamKnowledgeFilterDollarAnd,
7892
- SDKValidationError
7893
- > {
7556
+ ): SafeParseResult<DeploymentStreamKnowledgeFilterAnd, SDKValidationError> {
7894
7557
  return safeParse(
7895
7558
  jsonString,
7896
7559
  (x) =>
7897
- DeploymentStreamKnowledgeFilterDollarAnd$inboundSchema.parse(
7898
- JSON.parse(x),
7899
- ),
7900
- `Failed to parse 'DeploymentStreamKnowledgeFilterDollarAnd' from JSON`,
7560
+ DeploymentStreamKnowledgeFilterAnd$inboundSchema.parse(JSON.parse(x)),
7561
+ `Failed to parse 'DeploymentStreamKnowledgeFilterAnd' from JSON`,
7901
7562
  );
7902
7563
  }
7903
7564
 
7904
7565
  /** @internal */
7905
- export const OneDollarExists$inboundSchema: z.ZodType<
7906
- OneDollarExists,
7566
+ export const OneExists$inboundSchema: z.ZodType<
7567
+ OneExists,
7907
7568
  z.ZodTypeDef,
7908
7569
  unknown
7909
7570
  > = z.object({
7910
- $exists: z.boolean(),
7911
- }).transform((v) => {
7912
- return remap$(v, {
7913
- "$exists": "dollarExists",
7914
- });
7571
+ exists: z.boolean(),
7915
7572
  });
7916
7573
 
7917
7574
  /** @internal */
7918
- export type OneDollarExists$Outbound = {
7919
- $exists: boolean;
7575
+ export type OneExists$Outbound = {
7576
+ exists: boolean;
7920
7577
  };
7921
7578
 
7922
7579
  /** @internal */
7923
- export const OneDollarExists$outboundSchema: z.ZodType<
7924
- OneDollarExists$Outbound,
7580
+ export const OneExists$outboundSchema: z.ZodType<
7581
+ OneExists$Outbound,
7925
7582
  z.ZodTypeDef,
7926
- OneDollarExists
7583
+ OneExists
7927
7584
  > = z.object({
7928
- dollarExists: z.boolean(),
7929
- }).transform((v) => {
7930
- return remap$(v, {
7931
- dollarExists: "$exists",
7932
- });
7585
+ exists: z.boolean(),
7933
7586
  });
7934
7587
 
7935
7588
  /**
7936
7589
  * @internal
7937
7590
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7938
7591
  */
7939
- export namespace OneDollarExists$ {
7940
- /** @deprecated use `OneDollarExists$inboundSchema` instead. */
7941
- export const inboundSchema = OneDollarExists$inboundSchema;
7942
- /** @deprecated use `OneDollarExists$outboundSchema` instead. */
7943
- export const outboundSchema = OneDollarExists$outboundSchema;
7944
- /** @deprecated use `OneDollarExists$Outbound` instead. */
7945
- export type Outbound = OneDollarExists$Outbound;
7592
+ export namespace OneExists$ {
7593
+ /** @deprecated use `OneExists$inboundSchema` instead. */
7594
+ export const inboundSchema = OneExists$inboundSchema;
7595
+ /** @deprecated use `OneExists$outboundSchema` instead. */
7596
+ export const outboundSchema = OneExists$outboundSchema;
7597
+ /** @deprecated use `OneExists$Outbound` instead. */
7598
+ export type Outbound = OneExists$Outbound;
7946
7599
  }
7947
7600
 
7948
- export function oneDollarExistsToJSON(
7949
- oneDollarExists: OneDollarExists,
7950
- ): string {
7951
- return JSON.stringify(OneDollarExists$outboundSchema.parse(oneDollarExists));
7601
+ export function oneExistsToJSON(oneExists: OneExists): string {
7602
+ return JSON.stringify(OneExists$outboundSchema.parse(oneExists));
7952
7603
  }
7953
7604
 
7954
- export function oneDollarExistsFromJSON(
7605
+ export function oneExistsFromJSON(
7955
7606
  jsonString: string,
7956
- ): SafeParseResult<OneDollarExists, SDKValidationError> {
7607
+ ): SafeParseResult<OneExists, SDKValidationError> {
7957
7608
  return safeParse(
7958
7609
  jsonString,
7959
- (x) => OneDollarExists$inboundSchema.parse(JSON.parse(x)),
7960
- `Failed to parse 'OneDollarExists' from JSON`,
7610
+ (x) => OneExists$inboundSchema.parse(JSON.parse(x)),
7611
+ `Failed to parse 'OneExists' from JSON`,
7961
7612
  );
7962
7613
  }
7963
7614
 
7964
7615
  /** @internal */
7965
- export const DeploymentStream1DeploymentsDollarNin$inboundSchema: z.ZodType<
7966
- DeploymentStream1DeploymentsDollarNin,
7616
+ export const DeploymentStream1DeploymentsNin$inboundSchema: z.ZodType<
7617
+ DeploymentStream1DeploymentsNin,
7967
7618
  z.ZodTypeDef,
7968
7619
  unknown
7969
7620
  > = z.union([z.string(), z.number(), z.boolean()]);
7970
7621
 
7971
7622
  /** @internal */
7972
- export type DeploymentStream1DeploymentsDollarNin$Outbound =
7623
+ export type DeploymentStream1DeploymentsNin$Outbound =
7973
7624
  | string
7974
7625
  | number
7975
7626
  | boolean;
7976
7627
 
7977
7628
  /** @internal */
7978
- export const DeploymentStream1DeploymentsDollarNin$outboundSchema: z.ZodType<
7979
- DeploymentStream1DeploymentsDollarNin$Outbound,
7629
+ export const DeploymentStream1DeploymentsNin$outboundSchema: z.ZodType<
7630
+ DeploymentStream1DeploymentsNin$Outbound,
7980
7631
  z.ZodTypeDef,
7981
- DeploymentStream1DeploymentsDollarNin
7632
+ DeploymentStream1DeploymentsNin
7982
7633
  > = z.union([z.string(), z.number(), z.boolean()]);
7983
7634
 
7984
7635
  /**
7985
7636
  * @internal
7986
7637
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7987
7638
  */
7988
- export namespace DeploymentStream1DeploymentsDollarNin$ {
7989
- /** @deprecated use `DeploymentStream1DeploymentsDollarNin$inboundSchema` instead. */
7990
- export const inboundSchema =
7991
- DeploymentStream1DeploymentsDollarNin$inboundSchema;
7992
- /** @deprecated use `DeploymentStream1DeploymentsDollarNin$outboundSchema` instead. */
7993
- export const outboundSchema =
7994
- DeploymentStream1DeploymentsDollarNin$outboundSchema;
7995
- /** @deprecated use `DeploymentStream1DeploymentsDollarNin$Outbound` instead. */
7996
- export type Outbound = DeploymentStream1DeploymentsDollarNin$Outbound;
7639
+ export namespace DeploymentStream1DeploymentsNin$ {
7640
+ /** @deprecated use `DeploymentStream1DeploymentsNin$inboundSchema` instead. */
7641
+ export const inboundSchema = DeploymentStream1DeploymentsNin$inboundSchema;
7642
+ /** @deprecated use `DeploymentStream1DeploymentsNin$outboundSchema` instead. */
7643
+ export const outboundSchema = DeploymentStream1DeploymentsNin$outboundSchema;
7644
+ /** @deprecated use `DeploymentStream1DeploymentsNin$Outbound` instead. */
7645
+ export type Outbound = DeploymentStream1DeploymentsNin$Outbound;
7997
7646
  }
7998
7647
 
7999
- export function deploymentStream1DeploymentsDollarNinToJSON(
8000
- deploymentStream1DeploymentsDollarNin: DeploymentStream1DeploymentsDollarNin,
7648
+ export function deploymentStream1DeploymentsNinToJSON(
7649
+ deploymentStream1DeploymentsNin: DeploymentStream1DeploymentsNin,
8001
7650
  ): string {
8002
7651
  return JSON.stringify(
8003
- DeploymentStream1DeploymentsDollarNin$outboundSchema.parse(
8004
- deploymentStream1DeploymentsDollarNin,
7652
+ DeploymentStream1DeploymentsNin$outboundSchema.parse(
7653
+ deploymentStream1DeploymentsNin,
8005
7654
  ),
8006
7655
  );
8007
7656
  }
8008
7657
 
8009
- export function deploymentStream1DeploymentsDollarNinFromJSON(
7658
+ export function deploymentStream1DeploymentsNinFromJSON(
8010
7659
  jsonString: string,
8011
- ): SafeParseResult<DeploymentStream1DeploymentsDollarNin, SDKValidationError> {
7660
+ ): SafeParseResult<DeploymentStream1DeploymentsNin, SDKValidationError> {
8012
7661
  return safeParse(
8013
7662
  jsonString,
8014
- (x) =>
8015
- DeploymentStream1DeploymentsDollarNin$inboundSchema.parse(JSON.parse(x)),
8016
- `Failed to parse 'DeploymentStream1DeploymentsDollarNin' from JSON`,
7663
+ (x) => DeploymentStream1DeploymentsNin$inboundSchema.parse(JSON.parse(x)),
7664
+ `Failed to parse 'DeploymentStream1DeploymentsNin' from JSON`,
8017
7665
  );
8018
7666
  }
8019
7667
 
8020
7668
  /** @internal */
8021
- export const DeploymentStream1DollarNin$inboundSchema: z.ZodType<
8022
- DeploymentStream1DollarNin,
7669
+ export const DeploymentStream1Nin$inboundSchema: z.ZodType<
7670
+ DeploymentStream1Nin,
8023
7671
  z.ZodTypeDef,
8024
7672
  unknown
8025
7673
  > = z.object({
8026
- $nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
8027
- }).transform((v) => {
8028
- return remap$(v, {
8029
- "$nin": "dollarNin",
8030
- });
7674
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
8031
7675
  });
8032
7676
 
8033
7677
  /** @internal */
8034
- export type DeploymentStream1DollarNin$Outbound = {
8035
- $nin: Array<string | number | boolean>;
7678
+ export type DeploymentStream1Nin$Outbound = {
7679
+ nin: Array<string | number | boolean>;
8036
7680
  };
8037
7681
 
8038
7682
  /** @internal */
8039
- export const DeploymentStream1DollarNin$outboundSchema: z.ZodType<
8040
- DeploymentStream1DollarNin$Outbound,
7683
+ export const DeploymentStream1Nin$outboundSchema: z.ZodType<
7684
+ DeploymentStream1Nin$Outbound,
8041
7685
  z.ZodTypeDef,
8042
- DeploymentStream1DollarNin
7686
+ DeploymentStream1Nin
8043
7687
  > = z.object({
8044
- dollarNin: z.array(z.union([z.string(), z.number(), z.boolean()])),
8045
- }).transform((v) => {
8046
- return remap$(v, {
8047
- dollarNin: "$nin",
8048
- });
7688
+ nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
8049
7689
  });
8050
7690
 
8051
7691
  /**
8052
7692
  * @internal
8053
7693
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8054
7694
  */
8055
- export namespace DeploymentStream1DollarNin$ {
8056
- /** @deprecated use `DeploymentStream1DollarNin$inboundSchema` instead. */
8057
- export const inboundSchema = DeploymentStream1DollarNin$inboundSchema;
8058
- /** @deprecated use `DeploymentStream1DollarNin$outboundSchema` instead. */
8059
- export const outboundSchema = DeploymentStream1DollarNin$outboundSchema;
8060
- /** @deprecated use `DeploymentStream1DollarNin$Outbound` instead. */
8061
- export type Outbound = DeploymentStream1DollarNin$Outbound;
7695
+ export namespace DeploymentStream1Nin$ {
7696
+ /** @deprecated use `DeploymentStream1Nin$inboundSchema` instead. */
7697
+ export const inboundSchema = DeploymentStream1Nin$inboundSchema;
7698
+ /** @deprecated use `DeploymentStream1Nin$outboundSchema` instead. */
7699
+ export const outboundSchema = DeploymentStream1Nin$outboundSchema;
7700
+ /** @deprecated use `DeploymentStream1Nin$Outbound` instead. */
7701
+ export type Outbound = DeploymentStream1Nin$Outbound;
8062
7702
  }
8063
7703
 
8064
- export function deploymentStream1DollarNinToJSON(
8065
- deploymentStream1DollarNin: DeploymentStream1DollarNin,
7704
+ export function deploymentStream1NinToJSON(
7705
+ deploymentStream1Nin: DeploymentStream1Nin,
8066
7706
  ): string {
8067
7707
  return JSON.stringify(
8068
- DeploymentStream1DollarNin$outboundSchema.parse(deploymentStream1DollarNin),
7708
+ DeploymentStream1Nin$outboundSchema.parse(deploymentStream1Nin),
8069
7709
  );
8070
7710
  }
8071
7711
 
8072
- export function deploymentStream1DollarNinFromJSON(
7712
+ export function deploymentStream1NinFromJSON(
8073
7713
  jsonString: string,
8074
- ): SafeParseResult<DeploymentStream1DollarNin, SDKValidationError> {
7714
+ ): SafeParseResult<DeploymentStream1Nin, SDKValidationError> {
8075
7715
  return safeParse(
8076
7716
  jsonString,
8077
- (x) => DeploymentStream1DollarNin$inboundSchema.parse(JSON.parse(x)),
8078
- `Failed to parse 'DeploymentStream1DollarNin' from JSON`,
7717
+ (x) => DeploymentStream1Nin$inboundSchema.parse(JSON.parse(x)),
7718
+ `Failed to parse 'DeploymentStream1Nin' from JSON`,
8079
7719
  );
8080
7720
  }
8081
7721
 
8082
7722
  /** @internal */
8083
- export const DeploymentStream1DeploymentsDollarIn$inboundSchema: z.ZodType<
8084
- DeploymentStream1DeploymentsDollarIn,
7723
+ export const DeploymentStream1DeploymentsIn$inboundSchema: z.ZodType<
7724
+ DeploymentStream1DeploymentsIn,
8085
7725
  z.ZodTypeDef,
8086
7726
  unknown
8087
7727
  > = z.union([z.string(), z.number(), z.boolean()]);
8088
7728
 
8089
7729
  /** @internal */
8090
- export type DeploymentStream1DeploymentsDollarIn$Outbound =
8091
- | string
8092
- | number
8093
- | boolean;
7730
+ export type DeploymentStream1DeploymentsIn$Outbound = string | number | boolean;
8094
7731
 
8095
7732
  /** @internal */
8096
- export const DeploymentStream1DeploymentsDollarIn$outboundSchema: z.ZodType<
8097
- DeploymentStream1DeploymentsDollarIn$Outbound,
7733
+ export const DeploymentStream1DeploymentsIn$outboundSchema: z.ZodType<
7734
+ DeploymentStream1DeploymentsIn$Outbound,
8098
7735
  z.ZodTypeDef,
8099
- DeploymentStream1DeploymentsDollarIn
7736
+ DeploymentStream1DeploymentsIn
8100
7737
  > = z.union([z.string(), z.number(), z.boolean()]);
8101
7738
 
8102
7739
  /**
8103
7740
  * @internal
8104
7741
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8105
7742
  */
8106
- export namespace DeploymentStream1DeploymentsDollarIn$ {
8107
- /** @deprecated use `DeploymentStream1DeploymentsDollarIn$inboundSchema` instead. */
8108
- export const inboundSchema =
8109
- DeploymentStream1DeploymentsDollarIn$inboundSchema;
8110
- /** @deprecated use `DeploymentStream1DeploymentsDollarIn$outboundSchema` instead. */
8111
- export const outboundSchema =
8112
- DeploymentStream1DeploymentsDollarIn$outboundSchema;
8113
- /** @deprecated use `DeploymentStream1DeploymentsDollarIn$Outbound` instead. */
8114
- export type Outbound = DeploymentStream1DeploymentsDollarIn$Outbound;
7743
+ export namespace DeploymentStream1DeploymentsIn$ {
7744
+ /** @deprecated use `DeploymentStream1DeploymentsIn$inboundSchema` instead. */
7745
+ export const inboundSchema = DeploymentStream1DeploymentsIn$inboundSchema;
7746
+ /** @deprecated use `DeploymentStream1DeploymentsIn$outboundSchema` instead. */
7747
+ export const outboundSchema = DeploymentStream1DeploymentsIn$outboundSchema;
7748
+ /** @deprecated use `DeploymentStream1DeploymentsIn$Outbound` instead. */
7749
+ export type Outbound = DeploymentStream1DeploymentsIn$Outbound;
8115
7750
  }
8116
7751
 
8117
- export function deploymentStream1DeploymentsDollarInToJSON(
8118
- deploymentStream1DeploymentsDollarIn: DeploymentStream1DeploymentsDollarIn,
7752
+ export function deploymentStream1DeploymentsInToJSON(
7753
+ deploymentStream1DeploymentsIn: DeploymentStream1DeploymentsIn,
8119
7754
  ): string {
8120
7755
  return JSON.stringify(
8121
- DeploymentStream1DeploymentsDollarIn$outboundSchema.parse(
8122
- deploymentStream1DeploymentsDollarIn,
7756
+ DeploymentStream1DeploymentsIn$outboundSchema.parse(
7757
+ deploymentStream1DeploymentsIn,
8123
7758
  ),
8124
7759
  );
8125
7760
  }
8126
7761
 
8127
- export function deploymentStream1DeploymentsDollarInFromJSON(
7762
+ export function deploymentStream1DeploymentsInFromJSON(
8128
7763
  jsonString: string,
8129
- ): SafeParseResult<DeploymentStream1DeploymentsDollarIn, SDKValidationError> {
7764
+ ): SafeParseResult<DeploymentStream1DeploymentsIn, SDKValidationError> {
8130
7765
  return safeParse(
8131
7766
  jsonString,
8132
- (x) =>
8133
- DeploymentStream1DeploymentsDollarIn$inboundSchema.parse(JSON.parse(x)),
8134
- `Failed to parse 'DeploymentStream1DeploymentsDollarIn' from JSON`,
7767
+ (x) => DeploymentStream1DeploymentsIn$inboundSchema.parse(JSON.parse(x)),
7768
+ `Failed to parse 'DeploymentStream1DeploymentsIn' from JSON`,
8135
7769
  );
8136
7770
  }
8137
7771
 
8138
7772
  /** @internal */
8139
- export const DeploymentStream1DollarIn$inboundSchema: z.ZodType<
8140
- DeploymentStream1DollarIn,
7773
+ export const DeploymentStream1In$inboundSchema: z.ZodType<
7774
+ DeploymentStream1In,
8141
7775
  z.ZodTypeDef,
8142
7776
  unknown
8143
7777
  > = z.object({
8144
- $in: z.array(z.union([z.string(), z.number(), z.boolean()])),
8145
- }).transform((v) => {
8146
- return remap$(v, {
8147
- "$in": "dollarIn",
8148
- });
7778
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
8149
7779
  });
8150
7780
 
8151
7781
  /** @internal */
8152
- export type DeploymentStream1DollarIn$Outbound = {
8153
- $in: Array<string | number | boolean>;
7782
+ export type DeploymentStream1In$Outbound = {
7783
+ in: Array<string | number | boolean>;
8154
7784
  };
8155
7785
 
8156
7786
  /** @internal */
8157
- export const DeploymentStream1DollarIn$outboundSchema: z.ZodType<
8158
- DeploymentStream1DollarIn$Outbound,
7787
+ export const DeploymentStream1In$outboundSchema: z.ZodType<
7788
+ DeploymentStream1In$Outbound,
8159
7789
  z.ZodTypeDef,
8160
- DeploymentStream1DollarIn
7790
+ DeploymentStream1In
8161
7791
  > = z.object({
8162
- dollarIn: z.array(z.union([z.string(), z.number(), z.boolean()])),
8163
- }).transform((v) => {
8164
- return remap$(v, {
8165
- dollarIn: "$in",
8166
- });
7792
+ in: z.array(z.union([z.string(), z.number(), z.boolean()])),
8167
7793
  });
8168
7794
 
8169
7795
  /**
8170
7796
  * @internal
8171
7797
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8172
7798
  */
8173
- export namespace DeploymentStream1DollarIn$ {
8174
- /** @deprecated use `DeploymentStream1DollarIn$inboundSchema` instead. */
8175
- export const inboundSchema = DeploymentStream1DollarIn$inboundSchema;
8176
- /** @deprecated use `DeploymentStream1DollarIn$outboundSchema` instead. */
8177
- export const outboundSchema = DeploymentStream1DollarIn$outboundSchema;
8178
- /** @deprecated use `DeploymentStream1DollarIn$Outbound` instead. */
8179
- export type Outbound = DeploymentStream1DollarIn$Outbound;
7799
+ export namespace DeploymentStream1In$ {
7800
+ /** @deprecated use `DeploymentStream1In$inboundSchema` instead. */
7801
+ export const inboundSchema = DeploymentStream1In$inboundSchema;
7802
+ /** @deprecated use `DeploymentStream1In$outboundSchema` instead. */
7803
+ export const outboundSchema = DeploymentStream1In$outboundSchema;
7804
+ /** @deprecated use `DeploymentStream1In$Outbound` instead. */
7805
+ export type Outbound = DeploymentStream1In$Outbound;
8180
7806
  }
8181
7807
 
8182
- export function deploymentStream1DollarInToJSON(
8183
- deploymentStream1DollarIn: DeploymentStream1DollarIn,
7808
+ export function deploymentStream1InToJSON(
7809
+ deploymentStream1In: DeploymentStream1In,
8184
7810
  ): string {
8185
7811
  return JSON.stringify(
8186
- DeploymentStream1DollarIn$outboundSchema.parse(deploymentStream1DollarIn),
7812
+ DeploymentStream1In$outboundSchema.parse(deploymentStream1In),
8187
7813
  );
8188
7814
  }
8189
7815
 
8190
- export function deploymentStream1DollarInFromJSON(
7816
+ export function deploymentStream1InFromJSON(
8191
7817
  jsonString: string,
8192
- ): SafeParseResult<DeploymentStream1DollarIn, SDKValidationError> {
7818
+ ): SafeParseResult<DeploymentStream1In, SDKValidationError> {
8193
7819
  return safeParse(
8194
7820
  jsonString,
8195
- (x) => DeploymentStream1DollarIn$inboundSchema.parse(JSON.parse(x)),
8196
- `Failed to parse 'DeploymentStream1DollarIn' from JSON`,
7821
+ (x) => DeploymentStream1In$inboundSchema.parse(JSON.parse(x)),
7822
+ `Failed to parse 'DeploymentStream1In' from JSON`,
8197
7823
  );
8198
7824
  }
8199
7825
 
8200
7826
  /** @internal */
8201
- export const OneDollarLte$inboundSchema: z.ZodType<
8202
- OneDollarLte,
8203
- z.ZodTypeDef,
8204
- unknown
8205
- > = z.object({
8206
- $lte: z.number(),
8207
- }).transform((v) => {
8208
- return remap$(v, {
8209
- "$lte": "dollarLte",
7827
+ export const OneLte$inboundSchema: z.ZodType<OneLte, z.ZodTypeDef, unknown> = z
7828
+ .object({
7829
+ lte: z.number(),
8210
7830
  });
8211
- });
8212
7831
 
8213
7832
  /** @internal */
8214
- export type OneDollarLte$Outbound = {
8215
- $lte: number;
7833
+ export type OneLte$Outbound = {
7834
+ lte: number;
8216
7835
  };
8217
7836
 
8218
7837
  /** @internal */
8219
- export const OneDollarLte$outboundSchema: z.ZodType<
8220
- OneDollarLte$Outbound,
7838
+ export const OneLte$outboundSchema: z.ZodType<
7839
+ OneLte$Outbound,
8221
7840
  z.ZodTypeDef,
8222
- OneDollarLte
7841
+ OneLte
8223
7842
  > = z.object({
8224
- dollarLte: z.number(),
8225
- }).transform((v) => {
8226
- return remap$(v, {
8227
- dollarLte: "$lte",
8228
- });
7843
+ lte: z.number(),
8229
7844
  });
8230
7845
 
8231
7846
  /**
8232
7847
  * @internal
8233
7848
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8234
7849
  */
8235
- export namespace OneDollarLte$ {
8236
- /** @deprecated use `OneDollarLte$inboundSchema` instead. */
8237
- export const inboundSchema = OneDollarLte$inboundSchema;
8238
- /** @deprecated use `OneDollarLte$outboundSchema` instead. */
8239
- export const outboundSchema = OneDollarLte$outboundSchema;
8240
- /** @deprecated use `OneDollarLte$Outbound` instead. */
8241
- export type Outbound = OneDollarLte$Outbound;
7850
+ export namespace OneLte$ {
7851
+ /** @deprecated use `OneLte$inboundSchema` instead. */
7852
+ export const inboundSchema = OneLte$inboundSchema;
7853
+ /** @deprecated use `OneLte$outboundSchema` instead. */
7854
+ export const outboundSchema = OneLte$outboundSchema;
7855
+ /** @deprecated use `OneLte$Outbound` instead. */
7856
+ export type Outbound = OneLte$Outbound;
8242
7857
  }
8243
7858
 
8244
- export function oneDollarLteToJSON(oneDollarLte: OneDollarLte): string {
8245
- return JSON.stringify(OneDollarLte$outboundSchema.parse(oneDollarLte));
7859
+ export function oneLteToJSON(oneLte: OneLte): string {
7860
+ return JSON.stringify(OneLte$outboundSchema.parse(oneLte));
8246
7861
  }
8247
7862
 
8248
- export function oneDollarLteFromJSON(
7863
+ export function oneLteFromJSON(
8249
7864
  jsonString: string,
8250
- ): SafeParseResult<OneDollarLte, SDKValidationError> {
7865
+ ): SafeParseResult<OneLte, SDKValidationError> {
8251
7866
  return safeParse(
8252
7867
  jsonString,
8253
- (x) => OneDollarLte$inboundSchema.parse(JSON.parse(x)),
8254
- `Failed to parse 'OneDollarLte' from JSON`,
7868
+ (x) => OneLte$inboundSchema.parse(JSON.parse(x)),
7869
+ `Failed to parse 'OneLte' from JSON`,
8255
7870
  );
8256
7871
  }
8257
7872
 
8258
7873
  /** @internal */
8259
- export const OneDollarLt$inboundSchema: z.ZodType<
8260
- OneDollarLt,
8261
- z.ZodTypeDef,
8262
- unknown
8263
- > = z.object({
8264
- $lt: z.number(),
8265
- }).transform((v) => {
8266
- return remap$(v, {
8267
- "$lt": "dollarLt",
7874
+ export const OneLt$inboundSchema: z.ZodType<OneLt, z.ZodTypeDef, unknown> = z
7875
+ .object({
7876
+ lt: z.number(),
8268
7877
  });
8269
- });
8270
7878
 
8271
7879
  /** @internal */
8272
- export type OneDollarLt$Outbound = {
8273
- $lt: number;
7880
+ export type OneLt$Outbound = {
7881
+ lt: number;
8274
7882
  };
8275
7883
 
8276
7884
  /** @internal */
8277
- export const OneDollarLt$outboundSchema: z.ZodType<
8278
- OneDollarLt$Outbound,
7885
+ export const OneLt$outboundSchema: z.ZodType<
7886
+ OneLt$Outbound,
8279
7887
  z.ZodTypeDef,
8280
- OneDollarLt
7888
+ OneLt
8281
7889
  > = z.object({
8282
- dollarLt: z.number(),
8283
- }).transform((v) => {
8284
- return remap$(v, {
8285
- dollarLt: "$lt",
8286
- });
7890
+ lt: z.number(),
8287
7891
  });
8288
7892
 
8289
7893
  /**
8290
7894
  * @internal
8291
7895
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8292
7896
  */
8293
- export namespace OneDollarLt$ {
8294
- /** @deprecated use `OneDollarLt$inboundSchema` instead. */
8295
- export const inboundSchema = OneDollarLt$inboundSchema;
8296
- /** @deprecated use `OneDollarLt$outboundSchema` instead. */
8297
- export const outboundSchema = OneDollarLt$outboundSchema;
8298
- /** @deprecated use `OneDollarLt$Outbound` instead. */
8299
- export type Outbound = OneDollarLt$Outbound;
7897
+ export namespace OneLt$ {
7898
+ /** @deprecated use `OneLt$inboundSchema` instead. */
7899
+ export const inboundSchema = OneLt$inboundSchema;
7900
+ /** @deprecated use `OneLt$outboundSchema` instead. */
7901
+ export const outboundSchema = OneLt$outboundSchema;
7902
+ /** @deprecated use `OneLt$Outbound` instead. */
7903
+ export type Outbound = OneLt$Outbound;
8300
7904
  }
8301
7905
 
8302
- export function oneDollarLtToJSON(oneDollarLt: OneDollarLt): string {
8303
- return JSON.stringify(OneDollarLt$outboundSchema.parse(oneDollarLt));
7906
+ export function oneLtToJSON(oneLt: OneLt): string {
7907
+ return JSON.stringify(OneLt$outboundSchema.parse(oneLt));
8304
7908
  }
8305
7909
 
8306
- export function oneDollarLtFromJSON(
7910
+ export function oneLtFromJSON(
8307
7911
  jsonString: string,
8308
- ): SafeParseResult<OneDollarLt, SDKValidationError> {
7912
+ ): SafeParseResult<OneLt, SDKValidationError> {
8309
7913
  return safeParse(
8310
7914
  jsonString,
8311
- (x) => OneDollarLt$inboundSchema.parse(JSON.parse(x)),
8312
- `Failed to parse 'OneDollarLt' from JSON`,
7915
+ (x) => OneLt$inboundSchema.parse(JSON.parse(x)),
7916
+ `Failed to parse 'OneLt' from JSON`,
8313
7917
  );
8314
7918
  }
8315
7919
 
8316
7920
  /** @internal */
8317
- export const OneDollarGte$inboundSchema: z.ZodType<
8318
- OneDollarGte,
8319
- z.ZodTypeDef,
8320
- unknown
8321
- > = z.object({
8322
- $gte: z.number(),
8323
- }).transform((v) => {
8324
- return remap$(v, {
8325
- "$gte": "dollarGte",
7921
+ export const OneGte$inboundSchema: z.ZodType<OneGte, z.ZodTypeDef, unknown> = z
7922
+ .object({
7923
+ gte: z.number(),
8326
7924
  });
8327
- });
8328
7925
 
8329
7926
  /** @internal */
8330
- export type OneDollarGte$Outbound = {
8331
- $gte: number;
7927
+ export type OneGte$Outbound = {
7928
+ gte: number;
8332
7929
  };
8333
7930
 
8334
7931
  /** @internal */
8335
- export const OneDollarGte$outboundSchema: z.ZodType<
8336
- OneDollarGte$Outbound,
7932
+ export const OneGte$outboundSchema: z.ZodType<
7933
+ OneGte$Outbound,
8337
7934
  z.ZodTypeDef,
8338
- OneDollarGte
7935
+ OneGte
8339
7936
  > = z.object({
8340
- dollarGte: z.number(),
8341
- }).transform((v) => {
8342
- return remap$(v, {
8343
- dollarGte: "$gte",
8344
- });
7937
+ gte: z.number(),
8345
7938
  });
8346
7939
 
8347
7940
  /**
8348
7941
  * @internal
8349
7942
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8350
7943
  */
8351
- export namespace OneDollarGte$ {
8352
- /** @deprecated use `OneDollarGte$inboundSchema` instead. */
8353
- export const inboundSchema = OneDollarGte$inboundSchema;
8354
- /** @deprecated use `OneDollarGte$outboundSchema` instead. */
8355
- export const outboundSchema = OneDollarGte$outboundSchema;
8356
- /** @deprecated use `OneDollarGte$Outbound` instead. */
8357
- export type Outbound = OneDollarGte$Outbound;
7944
+ export namespace OneGte$ {
7945
+ /** @deprecated use `OneGte$inboundSchema` instead. */
7946
+ export const inboundSchema = OneGte$inboundSchema;
7947
+ /** @deprecated use `OneGte$outboundSchema` instead. */
7948
+ export const outboundSchema = OneGte$outboundSchema;
7949
+ /** @deprecated use `OneGte$Outbound` instead. */
7950
+ export type Outbound = OneGte$Outbound;
8358
7951
  }
8359
7952
 
8360
- export function oneDollarGteToJSON(oneDollarGte: OneDollarGte): string {
8361
- return JSON.stringify(OneDollarGte$outboundSchema.parse(oneDollarGte));
7953
+ export function oneGteToJSON(oneGte: OneGte): string {
7954
+ return JSON.stringify(OneGte$outboundSchema.parse(oneGte));
8362
7955
  }
8363
7956
 
8364
- export function oneDollarGteFromJSON(
7957
+ export function oneGteFromJSON(
8365
7958
  jsonString: string,
8366
- ): SafeParseResult<OneDollarGte, SDKValidationError> {
7959
+ ): SafeParseResult<OneGte, SDKValidationError> {
8367
7960
  return safeParse(
8368
7961
  jsonString,
8369
- (x) => OneDollarGte$inboundSchema.parse(JSON.parse(x)),
8370
- `Failed to parse 'OneDollarGte' from JSON`,
7962
+ (x) => OneGte$inboundSchema.parse(JSON.parse(x)),
7963
+ `Failed to parse 'OneGte' from JSON`,
8371
7964
  );
8372
7965
  }
8373
7966
 
@@ -8377,16 +7970,12 @@ export const DeploymentStream13$inboundSchema: z.ZodType<
8377
7970
  z.ZodTypeDef,
8378
7971
  unknown
8379
7972
  > = z.object({
8380
- $gt: z.number(),
8381
- }).transform((v) => {
8382
- return remap$(v, {
8383
- "$gt": "dollarGt",
8384
- });
7973
+ gt: z.number(),
8385
7974
  });
8386
7975
 
8387
7976
  /** @internal */
8388
7977
  export type DeploymentStream13$Outbound = {
8389
- $gt: number;
7978
+ gt: number;
8390
7979
  };
8391
7980
 
8392
7981
  /** @internal */
@@ -8395,11 +7984,7 @@ export const DeploymentStream13$outboundSchema: z.ZodType<
8395
7984
  z.ZodTypeDef,
8396
7985
  DeploymentStream13
8397
7986
  > = z.object({
8398
- dollarGt: z.number(),
8399
- }).transform((v) => {
8400
- return remap$(v, {
8401
- dollarGt: "$gt",
8402
- });
7987
+ gt: z.number(),
8403
7988
  });
8404
7989
 
8405
7990
  /**
@@ -8434,238 +8019,210 @@ export function deploymentStream13FromJSON(
8434
8019
  }
8435
8020
 
8436
8021
  /** @internal */
8437
- export const DeploymentStream1DeploymentsDollarNe$inboundSchema: z.ZodType<
8438
- DeploymentStream1DeploymentsDollarNe,
8022
+ export const DeploymentStream1DeploymentsNe$inboundSchema: z.ZodType<
8023
+ DeploymentStream1DeploymentsNe,
8439
8024
  z.ZodTypeDef,
8440
8025
  unknown
8441
8026
  > = z.union([z.string(), z.number(), z.boolean()]);
8442
8027
 
8443
8028
  /** @internal */
8444
- export type DeploymentStream1DeploymentsDollarNe$Outbound =
8445
- | string
8446
- | number
8447
- | boolean;
8029
+ export type DeploymentStream1DeploymentsNe$Outbound = string | number | boolean;
8448
8030
 
8449
8031
  /** @internal */
8450
- export const DeploymentStream1DeploymentsDollarNe$outboundSchema: z.ZodType<
8451
- DeploymentStream1DeploymentsDollarNe$Outbound,
8032
+ export const DeploymentStream1DeploymentsNe$outboundSchema: z.ZodType<
8033
+ DeploymentStream1DeploymentsNe$Outbound,
8452
8034
  z.ZodTypeDef,
8453
- DeploymentStream1DeploymentsDollarNe
8035
+ DeploymentStream1DeploymentsNe
8454
8036
  > = z.union([z.string(), z.number(), z.boolean()]);
8455
8037
 
8456
8038
  /**
8457
8039
  * @internal
8458
8040
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8459
8041
  */
8460
- export namespace DeploymentStream1DeploymentsDollarNe$ {
8461
- /** @deprecated use `DeploymentStream1DeploymentsDollarNe$inboundSchema` instead. */
8462
- export const inboundSchema =
8463
- DeploymentStream1DeploymentsDollarNe$inboundSchema;
8464
- /** @deprecated use `DeploymentStream1DeploymentsDollarNe$outboundSchema` instead. */
8465
- export const outboundSchema =
8466
- DeploymentStream1DeploymentsDollarNe$outboundSchema;
8467
- /** @deprecated use `DeploymentStream1DeploymentsDollarNe$Outbound` instead. */
8468
- export type Outbound = DeploymentStream1DeploymentsDollarNe$Outbound;
8042
+ export namespace DeploymentStream1DeploymentsNe$ {
8043
+ /** @deprecated use `DeploymentStream1DeploymentsNe$inboundSchema` instead. */
8044
+ export const inboundSchema = DeploymentStream1DeploymentsNe$inboundSchema;
8045
+ /** @deprecated use `DeploymentStream1DeploymentsNe$outboundSchema` instead. */
8046
+ export const outboundSchema = DeploymentStream1DeploymentsNe$outboundSchema;
8047
+ /** @deprecated use `DeploymentStream1DeploymentsNe$Outbound` instead. */
8048
+ export type Outbound = DeploymentStream1DeploymentsNe$Outbound;
8469
8049
  }
8470
8050
 
8471
- export function deploymentStream1DeploymentsDollarNeToJSON(
8472
- deploymentStream1DeploymentsDollarNe: DeploymentStream1DeploymentsDollarNe,
8051
+ export function deploymentStream1DeploymentsNeToJSON(
8052
+ deploymentStream1DeploymentsNe: DeploymentStream1DeploymentsNe,
8473
8053
  ): string {
8474
8054
  return JSON.stringify(
8475
- DeploymentStream1DeploymentsDollarNe$outboundSchema.parse(
8476
- deploymentStream1DeploymentsDollarNe,
8055
+ DeploymentStream1DeploymentsNe$outboundSchema.parse(
8056
+ deploymentStream1DeploymentsNe,
8477
8057
  ),
8478
8058
  );
8479
8059
  }
8480
8060
 
8481
- export function deploymentStream1DeploymentsDollarNeFromJSON(
8061
+ export function deploymentStream1DeploymentsNeFromJSON(
8482
8062
  jsonString: string,
8483
- ): SafeParseResult<DeploymentStream1DeploymentsDollarNe, SDKValidationError> {
8063
+ ): SafeParseResult<DeploymentStream1DeploymentsNe, SDKValidationError> {
8484
8064
  return safeParse(
8485
8065
  jsonString,
8486
- (x) =>
8487
- DeploymentStream1DeploymentsDollarNe$inboundSchema.parse(JSON.parse(x)),
8488
- `Failed to parse 'DeploymentStream1DeploymentsDollarNe' from JSON`,
8066
+ (x) => DeploymentStream1DeploymentsNe$inboundSchema.parse(JSON.parse(x)),
8067
+ `Failed to parse 'DeploymentStream1DeploymentsNe' from JSON`,
8489
8068
  );
8490
8069
  }
8491
8070
 
8492
8071
  /** @internal */
8493
- export const DeploymentStream1DollarNe$inboundSchema: z.ZodType<
8494
- DeploymentStream1DollarNe,
8072
+ export const DeploymentStream1Ne$inboundSchema: z.ZodType<
8073
+ DeploymentStream1Ne,
8495
8074
  z.ZodTypeDef,
8496
8075
  unknown
8497
8076
  > = z.object({
8498
- $ne: z.union([z.string(), z.number(), z.boolean()]),
8499
- }).transform((v) => {
8500
- return remap$(v, {
8501
- "$ne": "dollarNe",
8502
- });
8077
+ ne: z.union([z.string(), z.number(), z.boolean()]),
8503
8078
  });
8504
8079
 
8505
8080
  /** @internal */
8506
- export type DeploymentStream1DollarNe$Outbound = {
8507
- $ne: string | number | boolean;
8081
+ export type DeploymentStream1Ne$Outbound = {
8082
+ ne: string | number | boolean;
8508
8083
  };
8509
8084
 
8510
8085
  /** @internal */
8511
- export const DeploymentStream1DollarNe$outboundSchema: z.ZodType<
8512
- DeploymentStream1DollarNe$Outbound,
8086
+ export const DeploymentStream1Ne$outboundSchema: z.ZodType<
8087
+ DeploymentStream1Ne$Outbound,
8513
8088
  z.ZodTypeDef,
8514
- DeploymentStream1DollarNe
8089
+ DeploymentStream1Ne
8515
8090
  > = z.object({
8516
- dollarNe: z.union([z.string(), z.number(), z.boolean()]),
8517
- }).transform((v) => {
8518
- return remap$(v, {
8519
- dollarNe: "$ne",
8520
- });
8091
+ ne: z.union([z.string(), z.number(), z.boolean()]),
8521
8092
  });
8522
8093
 
8523
8094
  /**
8524
8095
  * @internal
8525
8096
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8526
8097
  */
8527
- export namespace DeploymentStream1DollarNe$ {
8528
- /** @deprecated use `DeploymentStream1DollarNe$inboundSchema` instead. */
8529
- export const inboundSchema = DeploymentStream1DollarNe$inboundSchema;
8530
- /** @deprecated use `DeploymentStream1DollarNe$outboundSchema` instead. */
8531
- export const outboundSchema = DeploymentStream1DollarNe$outboundSchema;
8532
- /** @deprecated use `DeploymentStream1DollarNe$Outbound` instead. */
8533
- export type Outbound = DeploymentStream1DollarNe$Outbound;
8098
+ export namespace DeploymentStream1Ne$ {
8099
+ /** @deprecated use `DeploymentStream1Ne$inboundSchema` instead. */
8100
+ export const inboundSchema = DeploymentStream1Ne$inboundSchema;
8101
+ /** @deprecated use `DeploymentStream1Ne$outboundSchema` instead. */
8102
+ export const outboundSchema = DeploymentStream1Ne$outboundSchema;
8103
+ /** @deprecated use `DeploymentStream1Ne$Outbound` instead. */
8104
+ export type Outbound = DeploymentStream1Ne$Outbound;
8534
8105
  }
8535
8106
 
8536
- export function deploymentStream1DollarNeToJSON(
8537
- deploymentStream1DollarNe: DeploymentStream1DollarNe,
8107
+ export function deploymentStream1NeToJSON(
8108
+ deploymentStream1Ne: DeploymentStream1Ne,
8538
8109
  ): string {
8539
8110
  return JSON.stringify(
8540
- DeploymentStream1DollarNe$outboundSchema.parse(deploymentStream1DollarNe),
8111
+ DeploymentStream1Ne$outboundSchema.parse(deploymentStream1Ne),
8541
8112
  );
8542
8113
  }
8543
8114
 
8544
- export function deploymentStream1DollarNeFromJSON(
8115
+ export function deploymentStream1NeFromJSON(
8545
8116
  jsonString: string,
8546
- ): SafeParseResult<DeploymentStream1DollarNe, SDKValidationError> {
8117
+ ): SafeParseResult<DeploymentStream1Ne, SDKValidationError> {
8547
8118
  return safeParse(
8548
8119
  jsonString,
8549
- (x) => DeploymentStream1DollarNe$inboundSchema.parse(JSON.parse(x)),
8550
- `Failed to parse 'DeploymentStream1DollarNe' from JSON`,
8120
+ (x) => DeploymentStream1Ne$inboundSchema.parse(JSON.parse(x)),
8121
+ `Failed to parse 'DeploymentStream1Ne' from JSON`,
8551
8122
  );
8552
8123
  }
8553
8124
 
8554
8125
  /** @internal */
8555
- export const DeploymentStream1DeploymentsDollarEq$inboundSchema: z.ZodType<
8556
- DeploymentStream1DeploymentsDollarEq,
8126
+ export const DeploymentStream1DeploymentsEq$inboundSchema: z.ZodType<
8127
+ DeploymentStream1DeploymentsEq,
8557
8128
  z.ZodTypeDef,
8558
8129
  unknown
8559
8130
  > = z.union([z.string(), z.number(), z.boolean()]);
8560
8131
 
8561
8132
  /** @internal */
8562
- export type DeploymentStream1DeploymentsDollarEq$Outbound =
8563
- | string
8564
- | number
8565
- | boolean;
8133
+ export type DeploymentStream1DeploymentsEq$Outbound = string | number | boolean;
8566
8134
 
8567
8135
  /** @internal */
8568
- export const DeploymentStream1DeploymentsDollarEq$outboundSchema: z.ZodType<
8569
- DeploymentStream1DeploymentsDollarEq$Outbound,
8136
+ export const DeploymentStream1DeploymentsEq$outboundSchema: z.ZodType<
8137
+ DeploymentStream1DeploymentsEq$Outbound,
8570
8138
  z.ZodTypeDef,
8571
- DeploymentStream1DeploymentsDollarEq
8139
+ DeploymentStream1DeploymentsEq
8572
8140
  > = z.union([z.string(), z.number(), z.boolean()]);
8573
8141
 
8574
8142
  /**
8575
8143
  * @internal
8576
8144
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8577
8145
  */
8578
- export namespace DeploymentStream1DeploymentsDollarEq$ {
8579
- /** @deprecated use `DeploymentStream1DeploymentsDollarEq$inboundSchema` instead. */
8580
- export const inboundSchema =
8581
- DeploymentStream1DeploymentsDollarEq$inboundSchema;
8582
- /** @deprecated use `DeploymentStream1DeploymentsDollarEq$outboundSchema` instead. */
8583
- export const outboundSchema =
8584
- DeploymentStream1DeploymentsDollarEq$outboundSchema;
8585
- /** @deprecated use `DeploymentStream1DeploymentsDollarEq$Outbound` instead. */
8586
- export type Outbound = DeploymentStream1DeploymentsDollarEq$Outbound;
8146
+ export namespace DeploymentStream1DeploymentsEq$ {
8147
+ /** @deprecated use `DeploymentStream1DeploymentsEq$inboundSchema` instead. */
8148
+ export const inboundSchema = DeploymentStream1DeploymentsEq$inboundSchema;
8149
+ /** @deprecated use `DeploymentStream1DeploymentsEq$outboundSchema` instead. */
8150
+ export const outboundSchema = DeploymentStream1DeploymentsEq$outboundSchema;
8151
+ /** @deprecated use `DeploymentStream1DeploymentsEq$Outbound` instead. */
8152
+ export type Outbound = DeploymentStream1DeploymentsEq$Outbound;
8587
8153
  }
8588
8154
 
8589
- export function deploymentStream1DeploymentsDollarEqToJSON(
8590
- deploymentStream1DeploymentsDollarEq: DeploymentStream1DeploymentsDollarEq,
8155
+ export function deploymentStream1DeploymentsEqToJSON(
8156
+ deploymentStream1DeploymentsEq: DeploymentStream1DeploymentsEq,
8591
8157
  ): string {
8592
8158
  return JSON.stringify(
8593
- DeploymentStream1DeploymentsDollarEq$outboundSchema.parse(
8594
- deploymentStream1DeploymentsDollarEq,
8159
+ DeploymentStream1DeploymentsEq$outboundSchema.parse(
8160
+ deploymentStream1DeploymentsEq,
8595
8161
  ),
8596
8162
  );
8597
8163
  }
8598
8164
 
8599
- export function deploymentStream1DeploymentsDollarEqFromJSON(
8165
+ export function deploymentStream1DeploymentsEqFromJSON(
8600
8166
  jsonString: string,
8601
- ): SafeParseResult<DeploymentStream1DeploymentsDollarEq, SDKValidationError> {
8167
+ ): SafeParseResult<DeploymentStream1DeploymentsEq, SDKValidationError> {
8602
8168
  return safeParse(
8603
8169
  jsonString,
8604
- (x) =>
8605
- DeploymentStream1DeploymentsDollarEq$inboundSchema.parse(JSON.parse(x)),
8606
- `Failed to parse 'DeploymentStream1DeploymentsDollarEq' from JSON`,
8170
+ (x) => DeploymentStream1DeploymentsEq$inboundSchema.parse(JSON.parse(x)),
8171
+ `Failed to parse 'DeploymentStream1DeploymentsEq' from JSON`,
8607
8172
  );
8608
8173
  }
8609
8174
 
8610
8175
  /** @internal */
8611
- export const DeploymentStream1DollarEq$inboundSchema: z.ZodType<
8612
- DeploymentStream1DollarEq,
8176
+ export const DeploymentStream1Eq$inboundSchema: z.ZodType<
8177
+ DeploymentStream1Eq,
8613
8178
  z.ZodTypeDef,
8614
8179
  unknown
8615
8180
  > = z.object({
8616
- $eq: z.union([z.string(), z.number(), z.boolean()]),
8617
- }).transform((v) => {
8618
- return remap$(v, {
8619
- "$eq": "dollarEq",
8620
- });
8181
+ eq: z.union([z.string(), z.number(), z.boolean()]),
8621
8182
  });
8622
8183
 
8623
8184
  /** @internal */
8624
- export type DeploymentStream1DollarEq$Outbound = {
8625
- $eq: string | number | boolean;
8185
+ export type DeploymentStream1Eq$Outbound = {
8186
+ eq: string | number | boolean;
8626
8187
  };
8627
8188
 
8628
8189
  /** @internal */
8629
- export const DeploymentStream1DollarEq$outboundSchema: z.ZodType<
8630
- DeploymentStream1DollarEq$Outbound,
8190
+ export const DeploymentStream1Eq$outboundSchema: z.ZodType<
8191
+ DeploymentStream1Eq$Outbound,
8631
8192
  z.ZodTypeDef,
8632
- DeploymentStream1DollarEq
8193
+ DeploymentStream1Eq
8633
8194
  > = z.object({
8634
- dollarEq: z.union([z.string(), z.number(), z.boolean()]),
8635
- }).transform((v) => {
8636
- return remap$(v, {
8637
- dollarEq: "$eq",
8638
- });
8195
+ eq: z.union([z.string(), z.number(), z.boolean()]),
8639
8196
  });
8640
8197
 
8641
8198
  /**
8642
8199
  * @internal
8643
8200
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8644
8201
  */
8645
- export namespace DeploymentStream1DollarEq$ {
8646
- /** @deprecated use `DeploymentStream1DollarEq$inboundSchema` instead. */
8647
- export const inboundSchema = DeploymentStream1DollarEq$inboundSchema;
8648
- /** @deprecated use `DeploymentStream1DollarEq$outboundSchema` instead. */
8649
- export const outboundSchema = DeploymentStream1DollarEq$outboundSchema;
8650
- /** @deprecated use `DeploymentStream1DollarEq$Outbound` instead. */
8651
- export type Outbound = DeploymentStream1DollarEq$Outbound;
8202
+ export namespace DeploymentStream1Eq$ {
8203
+ /** @deprecated use `DeploymentStream1Eq$inboundSchema` instead. */
8204
+ export const inboundSchema = DeploymentStream1Eq$inboundSchema;
8205
+ /** @deprecated use `DeploymentStream1Eq$outboundSchema` instead. */
8206
+ export const outboundSchema = DeploymentStream1Eq$outboundSchema;
8207
+ /** @deprecated use `DeploymentStream1Eq$Outbound` instead. */
8208
+ export type Outbound = DeploymentStream1Eq$Outbound;
8652
8209
  }
8653
8210
 
8654
- export function deploymentStream1DollarEqToJSON(
8655
- deploymentStream1DollarEq: DeploymentStream1DollarEq,
8211
+ export function deploymentStream1EqToJSON(
8212
+ deploymentStream1Eq: DeploymentStream1Eq,
8656
8213
  ): string {
8657
8214
  return JSON.stringify(
8658
- DeploymentStream1DollarEq$outboundSchema.parse(deploymentStream1DollarEq),
8215
+ DeploymentStream1Eq$outboundSchema.parse(deploymentStream1Eq),
8659
8216
  );
8660
8217
  }
8661
8218
 
8662
- export function deploymentStream1DollarEqFromJSON(
8219
+ export function deploymentStream1EqFromJSON(
8663
8220
  jsonString: string,
8664
- ): SafeParseResult<DeploymentStream1DollarEq, SDKValidationError> {
8221
+ ): SafeParseResult<DeploymentStream1Eq, SDKValidationError> {
8665
8222
  return safeParse(
8666
8223
  jsonString,
8667
- (x) => DeploymentStream1DollarEq$inboundSchema.parse(JSON.parse(x)),
8668
- `Failed to parse 'DeploymentStream1DollarEq' from JSON`,
8224
+ (x) => DeploymentStream1Eq$inboundSchema.parse(JSON.parse(x)),
8225
+ `Failed to parse 'DeploymentStream1Eq' from JSON`,
8669
8226
  );
8670
8227
  }
8671
8228
 
@@ -8675,28 +8232,28 @@ export const DeploymentStreamKnowledgeFilter1$inboundSchema: z.ZodType<
8675
8232
  z.ZodTypeDef,
8676
8233
  unknown
8677
8234
  > = z.union([
8678
- z.lazy(() => DeploymentStream1DollarEq$inboundSchema),
8679
- z.lazy(() => DeploymentStream1DollarNe$inboundSchema),
8235
+ z.lazy(() => DeploymentStream1Eq$inboundSchema),
8236
+ z.lazy(() => DeploymentStream1Ne$inboundSchema),
8680
8237
  z.lazy(() => DeploymentStream13$inboundSchema),
8681
- z.lazy(() => OneDollarGte$inboundSchema),
8682
- z.lazy(() => OneDollarLt$inboundSchema),
8683
- z.lazy(() => OneDollarLte$inboundSchema),
8684
- z.lazy(() => DeploymentStream1DollarIn$inboundSchema),
8685
- z.lazy(() => DeploymentStream1DollarNin$inboundSchema),
8686
- z.lazy(() => OneDollarExists$inboundSchema),
8238
+ z.lazy(() => OneGte$inboundSchema),
8239
+ z.lazy(() => OneLt$inboundSchema),
8240
+ z.lazy(() => OneLte$inboundSchema),
8241
+ z.lazy(() => DeploymentStream1In$inboundSchema),
8242
+ z.lazy(() => DeploymentStream1Nin$inboundSchema),
8243
+ z.lazy(() => OneExists$inboundSchema),
8687
8244
  ]);
8688
8245
 
8689
8246
  /** @internal */
8690
8247
  export type DeploymentStreamKnowledgeFilter1$Outbound =
8691
- | DeploymentStream1DollarEq$Outbound
8692
- | DeploymentStream1DollarNe$Outbound
8248
+ | DeploymentStream1Eq$Outbound
8249
+ | DeploymentStream1Ne$Outbound
8693
8250
  | DeploymentStream13$Outbound
8694
- | OneDollarGte$Outbound
8695
- | OneDollarLt$Outbound
8696
- | OneDollarLte$Outbound
8697
- | DeploymentStream1DollarIn$Outbound
8698
- | DeploymentStream1DollarNin$Outbound
8699
- | OneDollarExists$Outbound;
8251
+ | OneGte$Outbound
8252
+ | OneLt$Outbound
8253
+ | OneLte$Outbound
8254
+ | DeploymentStream1In$Outbound
8255
+ | DeploymentStream1Nin$Outbound
8256
+ | OneExists$Outbound;
8700
8257
 
8701
8258
  /** @internal */
8702
8259
  export const DeploymentStreamKnowledgeFilter1$outboundSchema: z.ZodType<
@@ -8704,15 +8261,15 @@ export const DeploymentStreamKnowledgeFilter1$outboundSchema: z.ZodType<
8704
8261
  z.ZodTypeDef,
8705
8262
  DeploymentStreamKnowledgeFilter1
8706
8263
  > = z.union([
8707
- z.lazy(() => DeploymentStream1DollarEq$outboundSchema),
8708
- z.lazy(() => DeploymentStream1DollarNe$outboundSchema),
8264
+ z.lazy(() => DeploymentStream1Eq$outboundSchema),
8265
+ z.lazy(() => DeploymentStream1Ne$outboundSchema),
8709
8266
  z.lazy(() => DeploymentStream13$outboundSchema),
8710
- z.lazy(() => OneDollarGte$outboundSchema),
8711
- z.lazy(() => OneDollarLt$outboundSchema),
8712
- z.lazy(() => OneDollarLte$outboundSchema),
8713
- z.lazy(() => DeploymentStream1DollarIn$outboundSchema),
8714
- z.lazy(() => DeploymentStream1DollarNin$outboundSchema),
8715
- z.lazy(() => OneDollarExists$outboundSchema),
8267
+ z.lazy(() => OneGte$outboundSchema),
8268
+ z.lazy(() => OneLt$outboundSchema),
8269
+ z.lazy(() => OneLte$outboundSchema),
8270
+ z.lazy(() => DeploymentStream1In$outboundSchema),
8271
+ z.lazy(() => DeploymentStream1Nin$outboundSchema),
8272
+ z.lazy(() => OneExists$outboundSchema),
8716
8273
  ]);
8717
8274
 
8718
8275
  /**
@@ -8754,38 +8311,36 @@ export const DeploymentStreamKnowledgeFilter$inboundSchema: z.ZodType<
8754
8311
  z.ZodTypeDef,
8755
8312
  unknown
8756
8313
  > = z.union([
8757
- z.lazy(() => DeploymentStreamKnowledgeFilterDollarAnd$inboundSchema),
8758
- z.lazy(() => DeploymentStreamKnowledgeFilterDollarOr$inboundSchema),
8759
- z.record(
8760
- z.union([
8761
- z.lazy(() => DeploymentStream1DollarEq$inboundSchema),
8762
- z.lazy(() => DeploymentStream1DollarNe$inboundSchema),
8763
- z.lazy(() => DeploymentStream13$inboundSchema),
8764
- z.lazy(() => OneDollarGte$inboundSchema),
8765
- z.lazy(() => OneDollarLt$inboundSchema),
8766
- z.lazy(() => OneDollarLte$inboundSchema),
8767
- z.lazy(() => DeploymentStream1DollarIn$inboundSchema),
8768
- z.lazy(() => DeploymentStream1DollarNin$inboundSchema),
8769
- z.lazy(() => OneDollarExists$inboundSchema),
8770
- ]),
8771
- ),
8314
+ z.lazy(() => DeploymentStreamKnowledgeFilterAnd$inboundSchema),
8315
+ z.lazy(() => DeploymentStreamKnowledgeFilterOr$inboundSchema),
8316
+ z.record(z.union([
8317
+ z.lazy(() => DeploymentStream1Eq$inboundSchema),
8318
+ z.lazy(() => DeploymentStream1Ne$inboundSchema),
8319
+ z.lazy(() => DeploymentStream13$inboundSchema),
8320
+ z.lazy(() => OneGte$inboundSchema),
8321
+ z.lazy(() => OneLt$inboundSchema),
8322
+ z.lazy(() => OneLte$inboundSchema),
8323
+ z.lazy(() => DeploymentStream1In$inboundSchema),
8324
+ z.lazy(() => DeploymentStream1Nin$inboundSchema),
8325
+ z.lazy(() => OneExists$inboundSchema),
8326
+ ])),
8772
8327
  ]);
8773
8328
 
8774
8329
  /** @internal */
8775
8330
  export type DeploymentStreamKnowledgeFilter$Outbound =
8776
- | DeploymentStreamKnowledgeFilterDollarAnd$Outbound
8777
- | DeploymentStreamKnowledgeFilterDollarOr$Outbound
8331
+ | DeploymentStreamKnowledgeFilterAnd$Outbound
8332
+ | DeploymentStreamKnowledgeFilterOr$Outbound
8778
8333
  | {
8779
8334
  [k: string]:
8780
- | DeploymentStream1DollarEq$Outbound
8781
- | DeploymentStream1DollarNe$Outbound
8335
+ | DeploymentStream1Eq$Outbound
8336
+ | DeploymentStream1Ne$Outbound
8782
8337
  | DeploymentStream13$Outbound
8783
- | OneDollarGte$Outbound
8784
- | OneDollarLt$Outbound
8785
- | OneDollarLte$Outbound
8786
- | DeploymentStream1DollarIn$Outbound
8787
- | DeploymentStream1DollarNin$Outbound
8788
- | OneDollarExists$Outbound;
8338
+ | OneGte$Outbound
8339
+ | OneLt$Outbound
8340
+ | OneLte$Outbound
8341
+ | DeploymentStream1In$Outbound
8342
+ | DeploymentStream1Nin$Outbound
8343
+ | OneExists$Outbound;
8789
8344
  };
8790
8345
 
8791
8346
  /** @internal */
@@ -8794,21 +8349,19 @@ export const DeploymentStreamKnowledgeFilter$outboundSchema: z.ZodType<
8794
8349
  z.ZodTypeDef,
8795
8350
  DeploymentStreamKnowledgeFilter
8796
8351
  > = z.union([
8797
- z.lazy(() => DeploymentStreamKnowledgeFilterDollarAnd$outboundSchema),
8798
- z.lazy(() => DeploymentStreamKnowledgeFilterDollarOr$outboundSchema),
8799
- z.record(
8800
- z.union([
8801
- z.lazy(() => DeploymentStream1DollarEq$outboundSchema),
8802
- z.lazy(() => DeploymentStream1DollarNe$outboundSchema),
8803
- z.lazy(() => DeploymentStream13$outboundSchema),
8804
- z.lazy(() => OneDollarGte$outboundSchema),
8805
- z.lazy(() => OneDollarLt$outboundSchema),
8806
- z.lazy(() => OneDollarLte$outboundSchema),
8807
- z.lazy(() => DeploymentStream1DollarIn$outboundSchema),
8808
- z.lazy(() => DeploymentStream1DollarNin$outboundSchema),
8809
- z.lazy(() => OneDollarExists$outboundSchema),
8810
- ]),
8811
- ),
8352
+ z.lazy(() => DeploymentStreamKnowledgeFilterAnd$outboundSchema),
8353
+ z.lazy(() => DeploymentStreamKnowledgeFilterOr$outboundSchema),
8354
+ z.record(z.union([
8355
+ z.lazy(() => DeploymentStream1Eq$outboundSchema),
8356
+ z.lazy(() => DeploymentStream1Ne$outboundSchema),
8357
+ z.lazy(() => DeploymentStream13$outboundSchema),
8358
+ z.lazy(() => OneGte$outboundSchema),
8359
+ z.lazy(() => OneLt$outboundSchema),
8360
+ z.lazy(() => OneLte$outboundSchema),
8361
+ z.lazy(() => DeploymentStream1In$outboundSchema),
8362
+ z.lazy(() => DeploymentStream1Nin$outboundSchema),
8363
+ z.lazy(() => OneExists$outboundSchema),
8364
+ ])),
8812
8365
  ]);
8813
8366
 
8814
8367
  /**
@@ -8880,19 +8433,19 @@ export const DeploymentStreamRequestBody$inboundSchema: z.ZodType<
8880
8433
  .optional(),
8881
8434
  thread: z.lazy(() => DeploymentStreamThread$inboundSchema).optional(),
8882
8435
  knowledge_filter: z.union([
8883
- z.lazy(() => DeploymentStreamKnowledgeFilterDollarAnd$inboundSchema),
8884
- z.lazy(() => DeploymentStreamKnowledgeFilterDollarOr$inboundSchema),
8436
+ z.lazy(() => DeploymentStreamKnowledgeFilterAnd$inboundSchema),
8437
+ z.lazy(() => DeploymentStreamKnowledgeFilterOr$inboundSchema),
8885
8438
  z.record(
8886
8439
  z.union([
8887
- z.lazy(() => DeploymentStream1DollarEq$inboundSchema),
8888
- z.lazy(() => DeploymentStream1DollarNe$inboundSchema),
8440
+ z.lazy(() => DeploymentStream1Eq$inboundSchema),
8441
+ z.lazy(() => DeploymentStream1Ne$inboundSchema),
8889
8442
  z.lazy(() => DeploymentStream13$inboundSchema),
8890
- z.lazy(() => OneDollarGte$inboundSchema),
8891
- z.lazy(() => OneDollarLt$inboundSchema),
8892
- z.lazy(() => OneDollarLte$inboundSchema),
8893
- z.lazy(() => DeploymentStream1DollarIn$inboundSchema),
8894
- z.lazy(() => DeploymentStream1DollarNin$inboundSchema),
8895
- z.lazy(() => OneDollarExists$inboundSchema),
8443
+ z.lazy(() => OneGte$inboundSchema),
8444
+ z.lazy(() => OneLt$inboundSchema),
8445
+ z.lazy(() => OneLte$inboundSchema),
8446
+ z.lazy(() => DeploymentStream1In$inboundSchema),
8447
+ z.lazy(() => DeploymentStream1Nin$inboundSchema),
8448
+ z.lazy(() => OneExists$inboundSchema),
8896
8449
  ]),
8897
8450
  ),
8898
8451
  ]).optional(),
@@ -8936,19 +8489,19 @@ export type DeploymentStreamRequestBody$Outbound = {
8936
8489
  invoke_options?: DeploymentStreamInvokeOptions$Outbound | undefined;
8937
8490
  thread?: DeploymentStreamThread$Outbound | undefined;
8938
8491
  knowledge_filter?:
8939
- | DeploymentStreamKnowledgeFilterDollarAnd$Outbound
8940
- | DeploymentStreamKnowledgeFilterDollarOr$Outbound
8492
+ | DeploymentStreamKnowledgeFilterAnd$Outbound
8493
+ | DeploymentStreamKnowledgeFilterOr$Outbound
8941
8494
  | {
8942
8495
  [k: string]:
8943
- | DeploymentStream1DollarEq$Outbound
8944
- | DeploymentStream1DollarNe$Outbound
8496
+ | DeploymentStream1Eq$Outbound
8497
+ | DeploymentStream1Ne$Outbound
8945
8498
  | DeploymentStream13$Outbound
8946
- | OneDollarGte$Outbound
8947
- | OneDollarLt$Outbound
8948
- | OneDollarLte$Outbound
8949
- | DeploymentStream1DollarIn$Outbound
8950
- | DeploymentStream1DollarNin$Outbound
8951
- | OneDollarExists$Outbound;
8499
+ | OneGte$Outbound
8500
+ | OneLt$Outbound
8501
+ | OneLte$Outbound
8502
+ | DeploymentStream1In$Outbound
8503
+ | DeploymentStream1Nin$Outbound
8504
+ | OneExists$Outbound;
8952
8505
  }
8953
8506
  | undefined;
8954
8507
  };
@@ -8989,19 +8542,19 @@ export const DeploymentStreamRequestBody$outboundSchema: z.ZodType<
8989
8542
  .optional(),
8990
8543
  thread: z.lazy(() => DeploymentStreamThread$outboundSchema).optional(),
8991
8544
  knowledgeFilter: z.union([
8992
- z.lazy(() => DeploymentStreamKnowledgeFilterDollarAnd$outboundSchema),
8993
- z.lazy(() => DeploymentStreamKnowledgeFilterDollarOr$outboundSchema),
8545
+ z.lazy(() => DeploymentStreamKnowledgeFilterAnd$outboundSchema),
8546
+ z.lazy(() => DeploymentStreamKnowledgeFilterOr$outboundSchema),
8994
8547
  z.record(
8995
8548
  z.union([
8996
- z.lazy(() => DeploymentStream1DollarEq$outboundSchema),
8997
- z.lazy(() => DeploymentStream1DollarNe$outboundSchema),
8549
+ z.lazy(() => DeploymentStream1Eq$outboundSchema),
8550
+ z.lazy(() => DeploymentStream1Ne$outboundSchema),
8998
8551
  z.lazy(() => DeploymentStream13$outboundSchema),
8999
- z.lazy(() => OneDollarGte$outboundSchema),
9000
- z.lazy(() => OneDollarLt$outboundSchema),
9001
- z.lazy(() => OneDollarLte$outboundSchema),
9002
- z.lazy(() => DeploymentStream1DollarIn$outboundSchema),
9003
- z.lazy(() => DeploymentStream1DollarNin$outboundSchema),
9004
- z.lazy(() => OneDollarExists$outboundSchema),
8552
+ z.lazy(() => OneGte$outboundSchema),
8553
+ z.lazy(() => OneLt$outboundSchema),
8554
+ z.lazy(() => OneLte$outboundSchema),
8555
+ z.lazy(() => DeploymentStream1In$outboundSchema),
8556
+ z.lazy(() => DeploymentStream1Nin$outboundSchema),
8557
+ z.lazy(() => OneExists$outboundSchema),
9005
8558
  ]),
9006
8559
  ),
9007
8560
  ]).optional(),