@orq-ai/node 3.5.21 → 3.5.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +1018 -971
- package/bin/mcp-server.js.map +33 -24
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/bulkcreatedatapoints.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/package.json +2 -2
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +6 -6
- package/packages/orq-rc/package.json +2 -2
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/deployments.ts +1217 -1677
- package/packages/orq-rc/src/models/operations/bulkcreatedatapoints.ts +416 -12
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +410 -13
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createprompt.ts +400 -12
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +1413 -1729
- package/packages/orq-rc/src/models/operations/deployments.ts +211 -23
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +1314 -1761
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getallprompts.ts +200 -6
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +195 -6
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +204 -6
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +207 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +202 -6
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +204 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +1334 -1750
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +412 -14
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateprompt.ts +400 -12
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/bulkcreatedatapoints.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- 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
|
|
956
|
-
|
|
955
|
+
export type DeploymentStreamOrExists = {
|
|
956
|
+
exists: boolean;
|
|
957
957
|
};
|
|
958
958
|
|
|
959
|
-
export type
|
|
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
|
|
968
|
-
|
|
964
|
+
export type DeploymentStreamOrNin = {
|
|
965
|
+
nin: Array<string | number | boolean>;
|
|
969
966
|
};
|
|
970
967
|
|
|
971
|
-
export type
|
|
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
|
|
980
|
-
|
|
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
|
|
987
|
-
|
|
980
|
+
export type DeploymentStreamOrLte = {
|
|
981
|
+
lte: number;
|
|
988
982
|
};
|
|
989
983
|
|
|
990
984
|
/**
|
|
991
985
|
* Less than
|
|
992
986
|
*/
|
|
993
|
-
export type
|
|
994
|
-
|
|
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
|
|
1001
|
-
|
|
994
|
+
export type DeploymentStreamOrGte = {
|
|
995
|
+
gte: number;
|
|
1002
996
|
};
|
|
1003
997
|
|
|
1004
|
-
export type
|
|
1005
|
-
|
|
998
|
+
export type DeploymentStreamOr3 = {
|
|
999
|
+
gt: number;
|
|
1006
1000
|
};
|
|
1007
1001
|
|
|
1008
|
-
export type
|
|
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
|
|
1017
|
-
|
|
1007
|
+
export type DeploymentStreamOrNe = {
|
|
1008
|
+
ne: string | number | boolean;
|
|
1018
1009
|
};
|
|
1019
1010
|
|
|
1020
|
-
export type
|
|
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
|
|
1029
|
-
|
|
1016
|
+
export type DeploymentStreamOrEq = {
|
|
1017
|
+
eq: string | number | boolean;
|
|
1030
1018
|
};
|
|
1031
1019
|
|
|
1032
|
-
export type
|
|
1033
|
-
|
|
|
1034
|
-
|
|
|
1035
|
-
|
|
|
1036
|
-
|
|
|
1037
|
-
|
|
|
1038
|
-
|
|
|
1039
|
-
|
|
|
1040
|
-
|
|
|
1041
|
-
|
|
|
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
|
|
1047
|
-
|
|
1034
|
+
export type DeploymentStreamKnowledgeFilterOr = {
|
|
1035
|
+
or: Array<
|
|
1048
1036
|
{
|
|
1049
1037
|
[k: string]:
|
|
1050
|
-
|
|
|
1051
|
-
|
|
|
1052
|
-
|
|
|
1053
|
-
|
|
|
1054
|
-
|
|
|
1055
|
-
|
|
|
1056
|
-
|
|
|
1057
|
-
|
|
|
1058
|
-
|
|
|
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
|
|
1067
|
-
|
|
1054
|
+
export type DeploymentStreamAndExists = {
|
|
1055
|
+
exists: boolean;
|
|
1068
1056
|
};
|
|
1069
1057
|
|
|
1070
|
-
export type
|
|
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
|
|
1079
|
-
|
|
1063
|
+
export type DeploymentStreamAndNin = {
|
|
1064
|
+
nin: Array<string | number | boolean>;
|
|
1080
1065
|
};
|
|
1081
1066
|
|
|
1082
|
-
export type
|
|
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
|
|
1091
|
-
|
|
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
|
|
1098
|
-
|
|
1079
|
+
export type DeploymentStreamAndLte = {
|
|
1080
|
+
lte: number;
|
|
1099
1081
|
};
|
|
1100
1082
|
|
|
1101
1083
|
/**
|
|
1102
1084
|
* Less than
|
|
1103
1085
|
*/
|
|
1104
|
-
export type
|
|
1105
|
-
|
|
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
|
|
1112
|
-
|
|
1093
|
+
export type DeploymentStreamAndGte = {
|
|
1094
|
+
gte: number;
|
|
1113
1095
|
};
|
|
1114
1096
|
|
|
1115
|
-
export type
|
|
1116
|
-
|
|
1097
|
+
export type DeploymentStreamAnd3 = {
|
|
1098
|
+
gt: number;
|
|
1117
1099
|
};
|
|
1118
1100
|
|
|
1119
|
-
export type
|
|
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
|
|
1128
|
-
|
|
1106
|
+
export type DeploymentStreamAndNe = {
|
|
1107
|
+
ne: string | number | boolean;
|
|
1129
1108
|
};
|
|
1130
1109
|
|
|
1131
|
-
export type
|
|
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
|
|
1140
|
-
|
|
1115
|
+
export type DeploymentStreamAndEq = {
|
|
1116
|
+
eq: string | number | boolean;
|
|
1141
1117
|
};
|
|
1142
1118
|
|
|
1143
|
-
export type
|
|
1144
|
-
|
|
|
1145
|
-
|
|
|
1146
|
-
|
|
|
1147
|
-
|
|
|
1148
|
-
|
|
|
1149
|
-
|
|
|
1150
|
-
|
|
|
1151
|
-
|
|
|
1152
|
-
|
|
|
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
|
|
1158
|
-
|
|
1133
|
+
export type DeploymentStreamKnowledgeFilterAnd = {
|
|
1134
|
+
and: Array<
|
|
1159
1135
|
{
|
|
1160
1136
|
[k: string]:
|
|
1161
|
-
|
|
|
1162
|
-
|
|
|
1163
|
-
|
|
|
1164
|
-
|
|
|
1165
|
-
|
|
|
1166
|
-
|
|
|
1167
|
-
|
|
|
1168
|
-
|
|
|
1169
|
-
|
|
|
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
|
|
1178
|
-
|
|
1153
|
+
export type OneExists = {
|
|
1154
|
+
exists: boolean;
|
|
1179
1155
|
};
|
|
1180
1156
|
|
|
1181
|
-
export type
|
|
1157
|
+
export type DeploymentStream1DeploymentsNin = string | number | boolean;
|
|
1182
1158
|
|
|
1183
1159
|
/**
|
|
1184
1160
|
* Not in
|
|
1185
1161
|
*/
|
|
1186
|
-
export type
|
|
1187
|
-
|
|
1162
|
+
export type DeploymentStream1Nin = {
|
|
1163
|
+
nin: Array<string | number | boolean>;
|
|
1188
1164
|
};
|
|
1189
1165
|
|
|
1190
|
-
export type
|
|
1166
|
+
export type DeploymentStream1DeploymentsIn = string | number | boolean;
|
|
1191
1167
|
|
|
1192
1168
|
/**
|
|
1193
1169
|
* In
|
|
1194
1170
|
*/
|
|
1195
|
-
export type
|
|
1196
|
-
|
|
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
|
|
1203
|
-
|
|
1178
|
+
export type OneLte = {
|
|
1179
|
+
lte: number;
|
|
1204
1180
|
};
|
|
1205
1181
|
|
|
1206
1182
|
/**
|
|
1207
1183
|
* Less than
|
|
1208
1184
|
*/
|
|
1209
|
-
export type
|
|
1210
|
-
|
|
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
|
|
1217
|
-
|
|
1192
|
+
export type OneGte = {
|
|
1193
|
+
gte: number;
|
|
1218
1194
|
};
|
|
1219
1195
|
|
|
1220
1196
|
export type DeploymentStream13 = {
|
|
1221
|
-
|
|
1197
|
+
gt: number;
|
|
1222
1198
|
};
|
|
1223
1199
|
|
|
1224
|
-
export type
|
|
1200
|
+
export type DeploymentStream1DeploymentsNe = string | number | boolean;
|
|
1225
1201
|
|
|
1226
1202
|
/**
|
|
1227
1203
|
* Not equal to
|
|
1228
1204
|
*/
|
|
1229
|
-
export type
|
|
1230
|
-
|
|
1205
|
+
export type DeploymentStream1Ne = {
|
|
1206
|
+
ne: string | number | boolean;
|
|
1231
1207
|
};
|
|
1232
1208
|
|
|
1233
|
-
export type
|
|
1209
|
+
export type DeploymentStream1DeploymentsEq = string | number | boolean;
|
|
1234
1210
|
|
|
1235
1211
|
/**
|
|
1236
1212
|
* Equal to
|
|
1237
1213
|
*/
|
|
1238
|
-
export type
|
|
1239
|
-
|
|
1214
|
+
export type DeploymentStream1Eq = {
|
|
1215
|
+
eq: string | number | boolean;
|
|
1240
1216
|
};
|
|
1241
1217
|
|
|
1242
1218
|
export type DeploymentStreamKnowledgeFilter1 =
|
|
1243
|
-
|
|
|
1244
|
-
|
|
|
1219
|
+
| DeploymentStream1Eq
|
|
1220
|
+
| DeploymentStream1Ne
|
|
1245
1221
|
| DeploymentStream13
|
|
1246
|
-
|
|
|
1247
|
-
|
|
|
1248
|
-
|
|
|
1249
|
-
|
|
|
1250
|
-
|
|
|
1251
|
-
|
|
|
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
|
-
|
|
|
1258
|
-
|
|
|
1233
|
+
| DeploymentStreamKnowledgeFilterAnd
|
|
1234
|
+
| DeploymentStreamKnowledgeFilterOr
|
|
1259
1235
|
| {
|
|
1260
1236
|
[k: string]:
|
|
1261
|
-
|
|
|
1262
|
-
|
|
|
1237
|
+
| DeploymentStream1Eq
|
|
1238
|
+
| DeploymentStream1Ne
|
|
1263
1239
|
| DeploymentStream13
|
|
1264
|
-
|
|
|
1265
|
-
|
|
|
1266
|
-
|
|
|
1267
|
-
|
|
|
1268
|
-
|
|
|
1269
|
-
|
|
|
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
|
-
|
|
|
1332
|
-
|
|
|
1307
|
+
| DeploymentStreamKnowledgeFilterAnd
|
|
1308
|
+
| DeploymentStreamKnowledgeFilterOr
|
|
1333
1309
|
| {
|
|
1334
1310
|
[k: string]:
|
|
1335
|
-
|
|
|
1336
|
-
|
|
|
1311
|
+
| DeploymentStream1Eq
|
|
1312
|
+
| DeploymentStream1Ne
|
|
1337
1313
|
| DeploymentStream13
|
|
1338
|
-
|
|
|
1339
|
-
|
|
|
1340
|
-
|
|
|
1341
|
-
|
|
|
1342
|
-
|
|
|
1343
|
-
|
|
|
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
|
|
5817
|
-
|
|
5792
|
+
export const DeploymentStreamOrExists$inboundSchema: z.ZodType<
|
|
5793
|
+
DeploymentStreamOrExists,
|
|
5818
5794
|
z.ZodTypeDef,
|
|
5819
5795
|
unknown
|
|
5820
5796
|
> = z.object({
|
|
5821
|
-
|
|
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
|
|
5830
|
-
|
|
5801
|
+
export type DeploymentStreamOrExists$Outbound = {
|
|
5802
|
+
exists: boolean;
|
|
5831
5803
|
};
|
|
5832
5804
|
|
|
5833
5805
|
/** @internal */
|
|
5834
|
-
export const
|
|
5835
|
-
|
|
5806
|
+
export const DeploymentStreamOrExists$outboundSchema: z.ZodType<
|
|
5807
|
+
DeploymentStreamOrExists$Outbound,
|
|
5836
5808
|
z.ZodTypeDef,
|
|
5837
|
-
|
|
5809
|
+
DeploymentStreamOrExists
|
|
5838
5810
|
> = z.object({
|
|
5839
|
-
|
|
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
|
|
5851
|
-
/** @deprecated use `
|
|
5852
|
-
export const inboundSchema =
|
|
5853
|
-
|
|
5854
|
-
|
|
5855
|
-
|
|
5856
|
-
|
|
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
|
|
5862
|
-
|
|
5827
|
+
export function deploymentStreamOrExistsToJSON(
|
|
5828
|
+
deploymentStreamOrExists: DeploymentStreamOrExists,
|
|
5863
5829
|
): string {
|
|
5864
5830
|
return JSON.stringify(
|
|
5865
|
-
|
|
5866
|
-
deploymentStreamDollarOrDollarExists,
|
|
5867
|
-
),
|
|
5831
|
+
DeploymentStreamOrExists$outboundSchema.parse(deploymentStreamOrExists),
|
|
5868
5832
|
);
|
|
5869
5833
|
}
|
|
5870
5834
|
|
|
5871
|
-
export function
|
|
5835
|
+
export function deploymentStreamOrExistsFromJSON(
|
|
5872
5836
|
jsonString: string,
|
|
5873
|
-
): SafeParseResult<
|
|
5837
|
+
): SafeParseResult<DeploymentStreamOrExists, SDKValidationError> {
|
|
5874
5838
|
return safeParse(
|
|
5875
5839
|
jsonString,
|
|
5876
|
-
(x) =>
|
|
5877
|
-
|
|
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
|
|
5884
|
-
|
|
5885
|
-
|
|
5886
|
-
|
|
5887
|
-
|
|
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
|
|
5853
|
+
export type DeploymentStreamOrDeploymentsNin$Outbound =
|
|
5892
5854
|
| string
|
|
5893
5855
|
| number
|
|
5894
5856
|
| boolean;
|
|
5895
5857
|
|
|
5896
5858
|
/** @internal */
|
|
5897
|
-
export const
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
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
|
|
5909
|
-
/** @deprecated use `
|
|
5910
|
-
export const inboundSchema =
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
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
|
|
5920
|
-
|
|
5921
|
-
DeploymentStreamDollarOrDeploymentsDollarNin,
|
|
5878
|
+
export function deploymentStreamOrDeploymentsNinToJSON(
|
|
5879
|
+
deploymentStreamOrDeploymentsNin: DeploymentStreamOrDeploymentsNin,
|
|
5922
5880
|
): string {
|
|
5923
5881
|
return JSON.stringify(
|
|
5924
|
-
|
|
5925
|
-
|
|
5882
|
+
DeploymentStreamOrDeploymentsNin$outboundSchema.parse(
|
|
5883
|
+
deploymentStreamOrDeploymentsNin,
|
|
5926
5884
|
),
|
|
5927
5885
|
);
|
|
5928
5886
|
}
|
|
5929
5887
|
|
|
5930
|
-
export function
|
|
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
|
-
|
|
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
|
|
5948
|
-
|
|
5899
|
+
export const DeploymentStreamOrNin$inboundSchema: z.ZodType<
|
|
5900
|
+
DeploymentStreamOrNin,
|
|
5949
5901
|
z.ZodTypeDef,
|
|
5950
5902
|
unknown
|
|
5951
5903
|
> = z.object({
|
|
5952
|
-
|
|
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
|
|
5961
|
-
|
|
5908
|
+
export type DeploymentStreamOrNin$Outbound = {
|
|
5909
|
+
nin: Array<string | number | boolean>;
|
|
5962
5910
|
};
|
|
5963
5911
|
|
|
5964
5912
|
/** @internal */
|
|
5965
|
-
export const
|
|
5966
|
-
|
|
5913
|
+
export const DeploymentStreamOrNin$outboundSchema: z.ZodType<
|
|
5914
|
+
DeploymentStreamOrNin$Outbound,
|
|
5967
5915
|
z.ZodTypeDef,
|
|
5968
|
-
|
|
5916
|
+
DeploymentStreamOrNin
|
|
5969
5917
|
> = z.object({
|
|
5970
|
-
|
|
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
|
|
5982
|
-
/** @deprecated use `
|
|
5983
|
-
export const inboundSchema =
|
|
5984
|
-
/** @deprecated use `
|
|
5985
|
-
export const outboundSchema =
|
|
5986
|
-
|
|
5987
|
-
|
|
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
|
|
5992
|
-
|
|
5934
|
+
export function deploymentStreamOrNinToJSON(
|
|
5935
|
+
deploymentStreamOrNin: DeploymentStreamOrNin,
|
|
5993
5936
|
): string {
|
|
5994
5937
|
return JSON.stringify(
|
|
5995
|
-
|
|
5996
|
-
deploymentStreamDollarOrDollarNin,
|
|
5997
|
-
),
|
|
5938
|
+
DeploymentStreamOrNin$outboundSchema.parse(deploymentStreamOrNin),
|
|
5998
5939
|
);
|
|
5999
5940
|
}
|
|
6000
5941
|
|
|
6001
|
-
export function
|
|
5942
|
+
export function deploymentStreamOrNinFromJSON(
|
|
6002
5943
|
jsonString: string,
|
|
6003
|
-
): SafeParseResult<
|
|
5944
|
+
): SafeParseResult<DeploymentStreamOrNin, SDKValidationError> {
|
|
6004
5945
|
return safeParse(
|
|
6005
5946
|
jsonString,
|
|
6006
|
-
(x) =>
|
|
6007
|
-
`Failed to parse '
|
|
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
|
|
6013
|
-
|
|
6014
|
-
|
|
6015
|
-
|
|
6016
|
-
|
|
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
|
|
5960
|
+
export type DeploymentStreamOrDeploymentsIn$Outbound =
|
|
6021
5961
|
| string
|
|
6022
5962
|
| number
|
|
6023
5963
|
| boolean;
|
|
6024
5964
|
|
|
6025
5965
|
/** @internal */
|
|
6026
|
-
export const
|
|
6027
|
-
|
|
6028
|
-
|
|
6029
|
-
|
|
6030
|
-
|
|
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
|
|
6038
|
-
/** @deprecated use `
|
|
6039
|
-
export const inboundSchema =
|
|
6040
|
-
|
|
6041
|
-
|
|
6042
|
-
|
|
6043
|
-
|
|
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
|
|
6049
|
-
|
|
6050
|
-
DeploymentStreamDollarOrDeploymentsDollarIn,
|
|
5985
|
+
export function deploymentStreamOrDeploymentsInToJSON(
|
|
5986
|
+
deploymentStreamOrDeploymentsIn: DeploymentStreamOrDeploymentsIn,
|
|
6051
5987
|
): string {
|
|
6052
5988
|
return JSON.stringify(
|
|
6053
|
-
|
|
6054
|
-
|
|
5989
|
+
DeploymentStreamOrDeploymentsIn$outboundSchema.parse(
|
|
5990
|
+
deploymentStreamOrDeploymentsIn,
|
|
6055
5991
|
),
|
|
6056
5992
|
);
|
|
6057
5993
|
}
|
|
6058
5994
|
|
|
6059
|
-
export function
|
|
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
|
-
|
|
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
|
|
6077
|
-
|
|
6006
|
+
export const DeploymentStreamOrIn$inboundSchema: z.ZodType<
|
|
6007
|
+
DeploymentStreamOrIn,
|
|
6078
6008
|
z.ZodTypeDef,
|
|
6079
6009
|
unknown
|
|
6080
6010
|
> = z.object({
|
|
6081
|
-
|
|
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
|
|
6090
|
-
|
|
6015
|
+
export type DeploymentStreamOrIn$Outbound = {
|
|
6016
|
+
in: Array<string | number | boolean>;
|
|
6091
6017
|
};
|
|
6092
6018
|
|
|
6093
6019
|
/** @internal */
|
|
6094
|
-
export const
|
|
6095
|
-
|
|
6020
|
+
export const DeploymentStreamOrIn$outboundSchema: z.ZodType<
|
|
6021
|
+
DeploymentStreamOrIn$Outbound,
|
|
6096
6022
|
z.ZodTypeDef,
|
|
6097
|
-
|
|
6023
|
+
DeploymentStreamOrIn
|
|
6098
6024
|
> = z.object({
|
|
6099
|
-
|
|
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
|
|
6111
|
-
/** @deprecated use `
|
|
6112
|
-
export const inboundSchema =
|
|
6113
|
-
/** @deprecated use `
|
|
6114
|
-
export const outboundSchema =
|
|
6115
|
-
/** @deprecated use `
|
|
6116
|
-
export type 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
|
|
6120
|
-
|
|
6041
|
+
export function deploymentStreamOrInToJSON(
|
|
6042
|
+
deploymentStreamOrIn: DeploymentStreamOrIn,
|
|
6121
6043
|
): string {
|
|
6122
6044
|
return JSON.stringify(
|
|
6123
|
-
|
|
6124
|
-
deploymentStreamDollarOrDollarIn,
|
|
6125
|
-
),
|
|
6045
|
+
DeploymentStreamOrIn$outboundSchema.parse(deploymentStreamOrIn),
|
|
6126
6046
|
);
|
|
6127
6047
|
}
|
|
6128
6048
|
|
|
6129
|
-
export function
|
|
6049
|
+
export function deploymentStreamOrInFromJSON(
|
|
6130
6050
|
jsonString: string,
|
|
6131
|
-
): SafeParseResult<
|
|
6051
|
+
): SafeParseResult<DeploymentStreamOrIn, SDKValidationError> {
|
|
6132
6052
|
return safeParse(
|
|
6133
6053
|
jsonString,
|
|
6134
|
-
(x) =>
|
|
6135
|
-
`Failed to parse '
|
|
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
|
|
6141
|
-
|
|
6060
|
+
export const DeploymentStreamOrLte$inboundSchema: z.ZodType<
|
|
6061
|
+
DeploymentStreamOrLte,
|
|
6142
6062
|
z.ZodTypeDef,
|
|
6143
6063
|
unknown
|
|
6144
6064
|
> = z.object({
|
|
6145
|
-
|
|
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
|
|
6154
|
-
|
|
6069
|
+
export type DeploymentStreamOrLte$Outbound = {
|
|
6070
|
+
lte: number;
|
|
6155
6071
|
};
|
|
6156
6072
|
|
|
6157
6073
|
/** @internal */
|
|
6158
|
-
export const
|
|
6159
|
-
|
|
6074
|
+
export const DeploymentStreamOrLte$outboundSchema: z.ZodType<
|
|
6075
|
+
DeploymentStreamOrLte$Outbound,
|
|
6160
6076
|
z.ZodTypeDef,
|
|
6161
|
-
|
|
6077
|
+
DeploymentStreamOrLte
|
|
6162
6078
|
> = z.object({
|
|
6163
|
-
|
|
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
|
|
6175
|
-
/** @deprecated use `
|
|
6176
|
-
export const inboundSchema =
|
|
6177
|
-
/** @deprecated use `
|
|
6178
|
-
export const outboundSchema =
|
|
6179
|
-
|
|
6180
|
-
|
|
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
|
|
6185
|
-
|
|
6095
|
+
export function deploymentStreamOrLteToJSON(
|
|
6096
|
+
deploymentStreamOrLte: DeploymentStreamOrLte,
|
|
6186
6097
|
): string {
|
|
6187
6098
|
return JSON.stringify(
|
|
6188
|
-
|
|
6189
|
-
deploymentStreamDollarOrDollarLte,
|
|
6190
|
-
),
|
|
6099
|
+
DeploymentStreamOrLte$outboundSchema.parse(deploymentStreamOrLte),
|
|
6191
6100
|
);
|
|
6192
6101
|
}
|
|
6193
6102
|
|
|
6194
|
-
export function
|
|
6103
|
+
export function deploymentStreamOrLteFromJSON(
|
|
6195
6104
|
jsonString: string,
|
|
6196
|
-
): SafeParseResult<
|
|
6105
|
+
): SafeParseResult<DeploymentStreamOrLte, SDKValidationError> {
|
|
6197
6106
|
return safeParse(
|
|
6198
6107
|
jsonString,
|
|
6199
|
-
(x) =>
|
|
6200
|
-
`Failed to parse '
|
|
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
|
|
6206
|
-
|
|
6114
|
+
export const DeploymentStreamOrLt$inboundSchema: z.ZodType<
|
|
6115
|
+
DeploymentStreamOrLt,
|
|
6207
6116
|
z.ZodTypeDef,
|
|
6208
6117
|
unknown
|
|
6209
6118
|
> = z.object({
|
|
6210
|
-
|
|
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
|
|
6219
|
-
|
|
6123
|
+
export type DeploymentStreamOrLt$Outbound = {
|
|
6124
|
+
lt: number;
|
|
6220
6125
|
};
|
|
6221
6126
|
|
|
6222
6127
|
/** @internal */
|
|
6223
|
-
export const
|
|
6224
|
-
|
|
6128
|
+
export const DeploymentStreamOrLt$outboundSchema: z.ZodType<
|
|
6129
|
+
DeploymentStreamOrLt$Outbound,
|
|
6225
6130
|
z.ZodTypeDef,
|
|
6226
|
-
|
|
6131
|
+
DeploymentStreamOrLt
|
|
6227
6132
|
> = z.object({
|
|
6228
|
-
|
|
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
|
|
6240
|
-
/** @deprecated use `
|
|
6241
|
-
export const inboundSchema =
|
|
6242
|
-
/** @deprecated use `
|
|
6243
|
-
export const outboundSchema =
|
|
6244
|
-
/** @deprecated use `
|
|
6245
|
-
export type 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
|
|
6249
|
-
|
|
6149
|
+
export function deploymentStreamOrLtToJSON(
|
|
6150
|
+
deploymentStreamOrLt: DeploymentStreamOrLt,
|
|
6250
6151
|
): string {
|
|
6251
6152
|
return JSON.stringify(
|
|
6252
|
-
|
|
6253
|
-
deploymentStreamDollarOrDollarLt,
|
|
6254
|
-
),
|
|
6153
|
+
DeploymentStreamOrLt$outboundSchema.parse(deploymentStreamOrLt),
|
|
6255
6154
|
);
|
|
6256
6155
|
}
|
|
6257
6156
|
|
|
6258
|
-
export function
|
|
6157
|
+
export function deploymentStreamOrLtFromJSON(
|
|
6259
6158
|
jsonString: string,
|
|
6260
|
-
): SafeParseResult<
|
|
6159
|
+
): SafeParseResult<DeploymentStreamOrLt, SDKValidationError> {
|
|
6261
6160
|
return safeParse(
|
|
6262
6161
|
jsonString,
|
|
6263
|
-
(x) =>
|
|
6264
|
-
`Failed to parse '
|
|
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
|
|
6270
|
-
|
|
6168
|
+
export const DeploymentStreamOrGte$inboundSchema: z.ZodType<
|
|
6169
|
+
DeploymentStreamOrGte,
|
|
6271
6170
|
z.ZodTypeDef,
|
|
6272
6171
|
unknown
|
|
6273
6172
|
> = z.object({
|
|
6274
|
-
|
|
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
|
|
6283
|
-
|
|
6177
|
+
export type DeploymentStreamOrGte$Outbound = {
|
|
6178
|
+
gte: number;
|
|
6284
6179
|
};
|
|
6285
6180
|
|
|
6286
6181
|
/** @internal */
|
|
6287
|
-
export const
|
|
6288
|
-
|
|
6182
|
+
export const DeploymentStreamOrGte$outboundSchema: z.ZodType<
|
|
6183
|
+
DeploymentStreamOrGte$Outbound,
|
|
6289
6184
|
z.ZodTypeDef,
|
|
6290
|
-
|
|
6185
|
+
DeploymentStreamOrGte
|
|
6291
6186
|
> = z.object({
|
|
6292
|
-
|
|
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
|
|
6304
|
-
/** @deprecated use `
|
|
6305
|
-
export const inboundSchema =
|
|
6306
|
-
/** @deprecated use `
|
|
6307
|
-
export const outboundSchema =
|
|
6308
|
-
|
|
6309
|
-
|
|
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
|
|
6314
|
-
|
|
6203
|
+
export function deploymentStreamOrGteToJSON(
|
|
6204
|
+
deploymentStreamOrGte: DeploymentStreamOrGte,
|
|
6315
6205
|
): string {
|
|
6316
6206
|
return JSON.stringify(
|
|
6317
|
-
|
|
6318
|
-
deploymentStreamDollarOrDollarGte,
|
|
6319
|
-
),
|
|
6207
|
+
DeploymentStreamOrGte$outboundSchema.parse(deploymentStreamOrGte),
|
|
6320
6208
|
);
|
|
6321
6209
|
}
|
|
6322
6210
|
|
|
6323
|
-
export function
|
|
6211
|
+
export function deploymentStreamOrGteFromJSON(
|
|
6324
6212
|
jsonString: string,
|
|
6325
|
-
): SafeParseResult<
|
|
6213
|
+
): SafeParseResult<DeploymentStreamOrGte, SDKValidationError> {
|
|
6326
6214
|
return safeParse(
|
|
6327
6215
|
jsonString,
|
|
6328
|
-
(x) =>
|
|
6329
|
-
`Failed to parse '
|
|
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
|
|
6335
|
-
|
|
6222
|
+
export const DeploymentStreamOr3$inboundSchema: z.ZodType<
|
|
6223
|
+
DeploymentStreamOr3,
|
|
6336
6224
|
z.ZodTypeDef,
|
|
6337
6225
|
unknown
|
|
6338
6226
|
> = z.object({
|
|
6339
|
-
|
|
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
|
|
6348
|
-
|
|
6231
|
+
export type DeploymentStreamOr3$Outbound = {
|
|
6232
|
+
gt: number;
|
|
6349
6233
|
};
|
|
6350
6234
|
|
|
6351
6235
|
/** @internal */
|
|
6352
|
-
export const
|
|
6353
|
-
|
|
6236
|
+
export const DeploymentStreamOr3$outboundSchema: z.ZodType<
|
|
6237
|
+
DeploymentStreamOr3$Outbound,
|
|
6354
6238
|
z.ZodTypeDef,
|
|
6355
|
-
|
|
6239
|
+
DeploymentStreamOr3
|
|
6356
6240
|
> = z.object({
|
|
6357
|
-
|
|
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
|
|
6369
|
-
/** @deprecated use `
|
|
6370
|
-
export const inboundSchema =
|
|
6371
|
-
/** @deprecated use `
|
|
6372
|
-
export const outboundSchema =
|
|
6373
|
-
/** @deprecated use `
|
|
6374
|
-
export type 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
|
|
6378
|
-
|
|
6257
|
+
export function deploymentStreamOr3ToJSON(
|
|
6258
|
+
deploymentStreamOr3: DeploymentStreamOr3,
|
|
6379
6259
|
): string {
|
|
6380
6260
|
return JSON.stringify(
|
|
6381
|
-
|
|
6261
|
+
DeploymentStreamOr3$outboundSchema.parse(deploymentStreamOr3),
|
|
6382
6262
|
);
|
|
6383
6263
|
}
|
|
6384
6264
|
|
|
6385
|
-
export function
|
|
6265
|
+
export function deploymentStreamOr3FromJSON(
|
|
6386
6266
|
jsonString: string,
|
|
6387
|
-
): SafeParseResult<
|
|
6267
|
+
): SafeParseResult<DeploymentStreamOr3, SDKValidationError> {
|
|
6388
6268
|
return safeParse(
|
|
6389
6269
|
jsonString,
|
|
6390
|
-
(x) =>
|
|
6391
|
-
`Failed to parse '
|
|
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
|
|
6397
|
-
|
|
6398
|
-
|
|
6399
|
-
|
|
6400
|
-
|
|
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
|
|
6283
|
+
export type DeploymentStreamOrDeploymentsNe$Outbound =
|
|
6405
6284
|
| string
|
|
6406
6285
|
| number
|
|
6407
6286
|
| boolean;
|
|
6408
6287
|
|
|
6409
6288
|
/** @internal */
|
|
6410
|
-
export const
|
|
6411
|
-
|
|
6412
|
-
|
|
6413
|
-
|
|
6414
|
-
|
|
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
|
|
6422
|
-
/** @deprecated use `
|
|
6423
|
-
export const inboundSchema =
|
|
6424
|
-
|
|
6425
|
-
|
|
6426
|
-
|
|
6427
|
-
|
|
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
|
|
6433
|
-
|
|
6434
|
-
DeploymentStreamDollarOrDeploymentsDollarNe,
|
|
6308
|
+
export function deploymentStreamOrDeploymentsNeToJSON(
|
|
6309
|
+
deploymentStreamOrDeploymentsNe: DeploymentStreamOrDeploymentsNe,
|
|
6435
6310
|
): string {
|
|
6436
6311
|
return JSON.stringify(
|
|
6437
|
-
|
|
6438
|
-
|
|
6312
|
+
DeploymentStreamOrDeploymentsNe$outboundSchema.parse(
|
|
6313
|
+
deploymentStreamOrDeploymentsNe,
|
|
6439
6314
|
),
|
|
6440
6315
|
);
|
|
6441
6316
|
}
|
|
6442
6317
|
|
|
6443
|
-
export function
|
|
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
|
-
|
|
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
|
|
6461
|
-
|
|
6329
|
+
export const DeploymentStreamOrNe$inboundSchema: z.ZodType<
|
|
6330
|
+
DeploymentStreamOrNe,
|
|
6462
6331
|
z.ZodTypeDef,
|
|
6463
6332
|
unknown
|
|
6464
6333
|
> = z.object({
|
|
6465
|
-
|
|
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
|
|
6474
|
-
|
|
6338
|
+
export type DeploymentStreamOrNe$Outbound = {
|
|
6339
|
+
ne: string | number | boolean;
|
|
6475
6340
|
};
|
|
6476
6341
|
|
|
6477
6342
|
/** @internal */
|
|
6478
|
-
export const
|
|
6479
|
-
|
|
6343
|
+
export const DeploymentStreamOrNe$outboundSchema: z.ZodType<
|
|
6344
|
+
DeploymentStreamOrNe$Outbound,
|
|
6480
6345
|
z.ZodTypeDef,
|
|
6481
|
-
|
|
6346
|
+
DeploymentStreamOrNe
|
|
6482
6347
|
> = z.object({
|
|
6483
|
-
|
|
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
|
|
6495
|
-
/** @deprecated use `
|
|
6496
|
-
export const inboundSchema =
|
|
6497
|
-
/** @deprecated use `
|
|
6498
|
-
export const outboundSchema =
|
|
6499
|
-
/** @deprecated use `
|
|
6500
|
-
export type 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
|
|
6504
|
-
|
|
6364
|
+
export function deploymentStreamOrNeToJSON(
|
|
6365
|
+
deploymentStreamOrNe: DeploymentStreamOrNe,
|
|
6505
6366
|
): string {
|
|
6506
6367
|
return JSON.stringify(
|
|
6507
|
-
|
|
6508
|
-
deploymentStreamDollarOrDollarNe,
|
|
6509
|
-
),
|
|
6368
|
+
DeploymentStreamOrNe$outboundSchema.parse(deploymentStreamOrNe),
|
|
6510
6369
|
);
|
|
6511
6370
|
}
|
|
6512
6371
|
|
|
6513
|
-
export function
|
|
6372
|
+
export function deploymentStreamOrNeFromJSON(
|
|
6514
6373
|
jsonString: string,
|
|
6515
|
-
): SafeParseResult<
|
|
6374
|
+
): SafeParseResult<DeploymentStreamOrNe, SDKValidationError> {
|
|
6516
6375
|
return safeParse(
|
|
6517
6376
|
jsonString,
|
|
6518
|
-
(x) =>
|
|
6519
|
-
`Failed to parse '
|
|
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
|
|
6525
|
-
|
|
6526
|
-
|
|
6527
|
-
|
|
6528
|
-
|
|
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
|
|
6390
|
+
export type DeploymentStreamOrDeploymentsEq$Outbound =
|
|
6533
6391
|
| string
|
|
6534
6392
|
| number
|
|
6535
6393
|
| boolean;
|
|
6536
6394
|
|
|
6537
6395
|
/** @internal */
|
|
6538
|
-
export const
|
|
6539
|
-
|
|
6540
|
-
|
|
6541
|
-
|
|
6542
|
-
|
|
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
|
|
6550
|
-
/** @deprecated use `
|
|
6551
|
-
export const inboundSchema =
|
|
6552
|
-
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
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
|
|
6561
|
-
|
|
6562
|
-
DeploymentStreamDollarOrDeploymentsDollarEq,
|
|
6415
|
+
export function deploymentStreamOrDeploymentsEqToJSON(
|
|
6416
|
+
deploymentStreamOrDeploymentsEq: DeploymentStreamOrDeploymentsEq,
|
|
6563
6417
|
): string {
|
|
6564
6418
|
return JSON.stringify(
|
|
6565
|
-
|
|
6566
|
-
|
|
6419
|
+
DeploymentStreamOrDeploymentsEq$outboundSchema.parse(
|
|
6420
|
+
deploymentStreamOrDeploymentsEq,
|
|
6567
6421
|
),
|
|
6568
6422
|
);
|
|
6569
6423
|
}
|
|
6570
6424
|
|
|
6571
|
-
export function
|
|
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
|
-
|
|
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
|
|
6589
|
-
|
|
6436
|
+
export const DeploymentStreamOrEq$inboundSchema: z.ZodType<
|
|
6437
|
+
DeploymentStreamOrEq,
|
|
6590
6438
|
z.ZodTypeDef,
|
|
6591
6439
|
unknown
|
|
6592
6440
|
> = z.object({
|
|
6593
|
-
|
|
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
|
|
6602
|
-
|
|
6445
|
+
export type DeploymentStreamOrEq$Outbound = {
|
|
6446
|
+
eq: string | number | boolean;
|
|
6603
6447
|
};
|
|
6604
6448
|
|
|
6605
6449
|
/** @internal */
|
|
6606
|
-
export const
|
|
6607
|
-
|
|
6450
|
+
export const DeploymentStreamOrEq$outboundSchema: z.ZodType<
|
|
6451
|
+
DeploymentStreamOrEq$Outbound,
|
|
6608
6452
|
z.ZodTypeDef,
|
|
6609
|
-
|
|
6453
|
+
DeploymentStreamOrEq
|
|
6610
6454
|
> = z.object({
|
|
6611
|
-
|
|
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
|
|
6623
|
-
/** @deprecated use `
|
|
6624
|
-
export const inboundSchema =
|
|
6625
|
-
/** @deprecated use `
|
|
6626
|
-
export const outboundSchema =
|
|
6627
|
-
/** @deprecated use `
|
|
6628
|
-
export type 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
|
|
6632
|
-
|
|
6471
|
+
export function deploymentStreamOrEqToJSON(
|
|
6472
|
+
deploymentStreamOrEq: DeploymentStreamOrEq,
|
|
6633
6473
|
): string {
|
|
6634
6474
|
return JSON.stringify(
|
|
6635
|
-
|
|
6636
|
-
deploymentStreamDollarOrDollarEq,
|
|
6637
|
-
),
|
|
6475
|
+
DeploymentStreamOrEq$outboundSchema.parse(deploymentStreamOrEq),
|
|
6638
6476
|
);
|
|
6639
6477
|
}
|
|
6640
6478
|
|
|
6641
|
-
export function
|
|
6479
|
+
export function deploymentStreamOrEqFromJSON(
|
|
6642
6480
|
jsonString: string,
|
|
6643
|
-
): SafeParseResult<
|
|
6481
|
+
): SafeParseResult<DeploymentStreamOrEq, SDKValidationError> {
|
|
6644
6482
|
return safeParse(
|
|
6645
6483
|
jsonString,
|
|
6646
|
-
(x) =>
|
|
6647
|
-
`Failed to parse '
|
|
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
|
|
6490
|
+
export const DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema:
|
|
6653
6491
|
z.ZodType<
|
|
6654
|
-
|
|
6492
|
+
DeploymentStreamKnowledgeFilterDeploymentsOr,
|
|
6655
6493
|
z.ZodTypeDef,
|
|
6656
6494
|
unknown
|
|
6657
6495
|
> = z.union([
|
|
6658
|
-
z.lazy(() =>
|
|
6659
|
-
z.lazy(() =>
|
|
6660
|
-
z.lazy(() =>
|
|
6661
|
-
z.lazy(() =>
|
|
6662
|
-
z.lazy(() =>
|
|
6663
|
-
z.lazy(() =>
|
|
6664
|
-
z.lazy(() =>
|
|
6665
|
-
z.lazy(() =>
|
|
6666
|
-
z.lazy(() =>
|
|
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
|
|
6671
|
-
|
|
|
6672
|
-
|
|
|
6673
|
-
|
|
|
6674
|
-
|
|
|
6675
|
-
|
|
|
6676
|
-
|
|
|
6677
|
-
|
|
|
6678
|
-
|
|
|
6679
|
-
|
|
|
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
|
|
6520
|
+
export const DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema:
|
|
6683
6521
|
z.ZodType<
|
|
6684
|
-
|
|
6522
|
+
DeploymentStreamKnowledgeFilterDeploymentsOr$Outbound,
|
|
6685
6523
|
z.ZodTypeDef,
|
|
6686
|
-
|
|
6524
|
+
DeploymentStreamKnowledgeFilterDeploymentsOr
|
|
6687
6525
|
> = z.union([
|
|
6688
|
-
z.lazy(() =>
|
|
6689
|
-
z.lazy(() =>
|
|
6690
|
-
z.lazy(() =>
|
|
6691
|
-
z.lazy(() =>
|
|
6692
|
-
z.lazy(() =>
|
|
6693
|
-
z.lazy(() =>
|
|
6694
|
-
z.lazy(() =>
|
|
6695
|
-
z.lazy(() =>
|
|
6696
|
-
z.lazy(() =>
|
|
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
|
|
6704
|
-
/** @deprecated use `
|
|
6541
|
+
export namespace DeploymentStreamKnowledgeFilterDeploymentsOr$ {
|
|
6542
|
+
/** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema` instead. */
|
|
6705
6543
|
export const inboundSchema =
|
|
6706
|
-
|
|
6707
|
-
/** @deprecated use `
|
|
6544
|
+
DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema;
|
|
6545
|
+
/** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema` instead. */
|
|
6708
6546
|
export const outboundSchema =
|
|
6709
|
-
|
|
6710
|
-
/** @deprecated use `
|
|
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
|
|
6716
|
-
|
|
6717
|
-
|
|
6552
|
+
export function deploymentStreamKnowledgeFilterDeploymentsOrToJSON(
|
|
6553
|
+
deploymentStreamKnowledgeFilterDeploymentsOr:
|
|
6554
|
+
DeploymentStreamKnowledgeFilterDeploymentsOr,
|
|
6718
6555
|
): string {
|
|
6719
6556
|
return JSON.stringify(
|
|
6720
|
-
|
|
6721
|
-
|
|
6557
|
+
DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema.parse(
|
|
6558
|
+
deploymentStreamKnowledgeFilterDeploymentsOr,
|
|
6722
6559
|
),
|
|
6723
6560
|
);
|
|
6724
6561
|
}
|
|
6725
6562
|
|
|
6726
|
-
export function
|
|
6563
|
+
export function deploymentStreamKnowledgeFilterDeploymentsOrFromJSON(
|
|
6727
6564
|
jsonString: string,
|
|
6728
6565
|
): SafeParseResult<
|
|
6729
|
-
|
|
6566
|
+
DeploymentStreamKnowledgeFilterDeploymentsOr,
|
|
6730
6567
|
SDKValidationError
|
|
6731
6568
|
> {
|
|
6732
6569
|
return safeParse(
|
|
6733
6570
|
jsonString,
|
|
6734
6571
|
(x) =>
|
|
6735
|
-
|
|
6572
|
+
DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema.parse(
|
|
6736
6573
|
JSON.parse(x),
|
|
6737
6574
|
),
|
|
6738
|
-
`Failed to parse '
|
|
6575
|
+
`Failed to parse 'DeploymentStreamKnowledgeFilterDeploymentsOr' from JSON`,
|
|
6739
6576
|
);
|
|
6740
6577
|
}
|
|
6741
6578
|
|
|
6742
6579
|
/** @internal */
|
|
6743
|
-
export const
|
|
6744
|
-
|
|
6580
|
+
export const DeploymentStreamKnowledgeFilterOr$inboundSchema: z.ZodType<
|
|
6581
|
+
DeploymentStreamKnowledgeFilterOr,
|
|
6745
6582
|
z.ZodTypeDef,
|
|
6746
6583
|
unknown
|
|
6747
6584
|
> = z.object({
|
|
6748
|
-
|
|
6585
|
+
or: z.array(
|
|
6749
6586
|
z.record(z.union([
|
|
6750
|
-
z.lazy(() =>
|
|
6587
|
+
z.lazy(() => DeploymentStreamOrEq$inboundSchema),
|
|
6751
6588
|
z.lazy(() =>
|
|
6752
|
-
|
|
6589
|
+
DeploymentStreamOrNe$inboundSchema
|
|
6753
6590
|
),
|
|
6754
|
-
z.lazy(() =>
|
|
6755
|
-
z.lazy(() =>
|
|
6756
|
-
z.lazy(() =>
|
|
6757
|
-
z.lazy(() =>
|
|
6758
|
-
z.lazy(() =>
|
|
6759
|
-
z.lazy(() =>
|
|
6760
|
-
z.lazy(() =>
|
|
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
|
|
6771
|
-
|
|
6603
|
+
export type DeploymentStreamKnowledgeFilterOr$Outbound = {
|
|
6604
|
+
or: Array<
|
|
6772
6605
|
{
|
|
6773
6606
|
[k: string]:
|
|
6774
|
-
|
|
|
6775
|
-
|
|
|
6776
|
-
|
|
|
6777
|
-
|
|
|
6778
|
-
|
|
|
6779
|
-
|
|
|
6780
|
-
|
|
|
6781
|
-
|
|
|
6782
|
-
|
|
|
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
|
|
6789
|
-
|
|
6621
|
+
export const DeploymentStreamKnowledgeFilterOr$outboundSchema: z.ZodType<
|
|
6622
|
+
DeploymentStreamKnowledgeFilterOr$Outbound,
|
|
6790
6623
|
z.ZodTypeDef,
|
|
6791
|
-
|
|
6624
|
+
DeploymentStreamKnowledgeFilterOr
|
|
6792
6625
|
> = z.object({
|
|
6793
|
-
|
|
6626
|
+
or: z.array(
|
|
6794
6627
|
z.record(z.union([
|
|
6795
|
-
z.lazy(() =>
|
|
6628
|
+
z.lazy(() => DeploymentStreamOrEq$outboundSchema),
|
|
6796
6629
|
z.lazy(() =>
|
|
6797
|
-
|
|
6630
|
+
DeploymentStreamOrNe$outboundSchema
|
|
6798
6631
|
),
|
|
6799
|
-
z.lazy(() =>
|
|
6800
|
-
z.lazy(() =>
|
|
6801
|
-
z.lazy(() =>
|
|
6802
|
-
z.lazy(() =>
|
|
6803
|
-
z.lazy(() =>
|
|
6804
|
-
z.lazy(() =>
|
|
6805
|
-
z.lazy(() =>
|
|
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
|
|
6819
|
-
/** @deprecated use `
|
|
6820
|
-
export const inboundSchema =
|
|
6821
|
-
|
|
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
|
-
|
|
6825
|
-
/** @deprecated use `
|
|
6826
|
-
export type Outbound =
|
|
6652
|
+
DeploymentStreamKnowledgeFilterOr$outboundSchema;
|
|
6653
|
+
/** @deprecated use `DeploymentStreamKnowledgeFilterOr$Outbound` instead. */
|
|
6654
|
+
export type Outbound = DeploymentStreamKnowledgeFilterOr$Outbound;
|
|
6827
6655
|
}
|
|
6828
6656
|
|
|
6829
|
-
export function
|
|
6830
|
-
|
|
6831
|
-
DeploymentStreamKnowledgeFilterDollarOr,
|
|
6657
|
+
export function deploymentStreamKnowledgeFilterOrToJSON(
|
|
6658
|
+
deploymentStreamKnowledgeFilterOr: DeploymentStreamKnowledgeFilterOr,
|
|
6832
6659
|
): string {
|
|
6833
6660
|
return JSON.stringify(
|
|
6834
|
-
|
|
6835
|
-
|
|
6661
|
+
DeploymentStreamKnowledgeFilterOr$outboundSchema.parse(
|
|
6662
|
+
deploymentStreamKnowledgeFilterOr,
|
|
6836
6663
|
),
|
|
6837
6664
|
);
|
|
6838
6665
|
}
|
|
6839
6666
|
|
|
6840
|
-
export function
|
|
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
|
-
|
|
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
|
|
6858
|
-
|
|
6678
|
+
export const DeploymentStreamAndExists$inboundSchema: z.ZodType<
|
|
6679
|
+
DeploymentStreamAndExists,
|
|
6859
6680
|
z.ZodTypeDef,
|
|
6860
6681
|
unknown
|
|
6861
6682
|
> = z.object({
|
|
6862
|
-
|
|
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
|
|
6871
|
-
|
|
6687
|
+
export type DeploymentStreamAndExists$Outbound = {
|
|
6688
|
+
exists: boolean;
|
|
6872
6689
|
};
|
|
6873
6690
|
|
|
6874
6691
|
/** @internal */
|
|
6875
|
-
export const
|
|
6876
|
-
|
|
6692
|
+
export const DeploymentStreamAndExists$outboundSchema: z.ZodType<
|
|
6693
|
+
DeploymentStreamAndExists$Outbound,
|
|
6877
6694
|
z.ZodTypeDef,
|
|
6878
|
-
|
|
6695
|
+
DeploymentStreamAndExists
|
|
6879
6696
|
> = z.object({
|
|
6880
|
-
|
|
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
|
|
6892
|
-
/** @deprecated use `
|
|
6893
|
-
export const inboundSchema =
|
|
6894
|
-
|
|
6895
|
-
|
|
6896
|
-
|
|
6897
|
-
|
|
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
|
|
6903
|
-
|
|
6713
|
+
export function deploymentStreamAndExistsToJSON(
|
|
6714
|
+
deploymentStreamAndExists: DeploymentStreamAndExists,
|
|
6904
6715
|
): string {
|
|
6905
6716
|
return JSON.stringify(
|
|
6906
|
-
|
|
6907
|
-
deploymentStreamDollarAndDollarExists,
|
|
6908
|
-
),
|
|
6717
|
+
DeploymentStreamAndExists$outboundSchema.parse(deploymentStreamAndExists),
|
|
6909
6718
|
);
|
|
6910
6719
|
}
|
|
6911
6720
|
|
|
6912
|
-
export function
|
|
6721
|
+
export function deploymentStreamAndExistsFromJSON(
|
|
6913
6722
|
jsonString: string,
|
|
6914
|
-
): SafeParseResult<
|
|
6723
|
+
): SafeParseResult<DeploymentStreamAndExists, SDKValidationError> {
|
|
6915
6724
|
return safeParse(
|
|
6916
6725
|
jsonString,
|
|
6917
|
-
(x) =>
|
|
6918
|
-
|
|
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
|
|
6925
|
-
|
|
6926
|
-
|
|
6927
|
-
|
|
6928
|
-
|
|
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
|
|
6739
|
+
export type DeploymentStreamAndDeploymentsNin$Outbound =
|
|
6933
6740
|
| string
|
|
6934
6741
|
| number
|
|
6935
6742
|
| boolean;
|
|
6936
6743
|
|
|
6937
6744
|
/** @internal */
|
|
6938
|
-
export const
|
|
6939
|
-
|
|
6940
|
-
|
|
6941
|
-
|
|
6942
|
-
|
|
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
|
|
6950
|
-
/** @deprecated use `
|
|
6951
|
-
export const inboundSchema =
|
|
6952
|
-
|
|
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
|
-
|
|
6956
|
-
/** @deprecated use `
|
|
6957
|
-
export type Outbound =
|
|
6760
|
+
DeploymentStreamAndDeploymentsNin$outboundSchema;
|
|
6761
|
+
/** @deprecated use `DeploymentStreamAndDeploymentsNin$Outbound` instead. */
|
|
6762
|
+
export type Outbound = DeploymentStreamAndDeploymentsNin$Outbound;
|
|
6958
6763
|
}
|
|
6959
6764
|
|
|
6960
|
-
export function
|
|
6961
|
-
|
|
6962
|
-
DeploymentStreamDollarAndDeploymentsDollarNin,
|
|
6765
|
+
export function deploymentStreamAndDeploymentsNinToJSON(
|
|
6766
|
+
deploymentStreamAndDeploymentsNin: DeploymentStreamAndDeploymentsNin,
|
|
6963
6767
|
): string {
|
|
6964
6768
|
return JSON.stringify(
|
|
6965
|
-
|
|
6966
|
-
|
|
6769
|
+
DeploymentStreamAndDeploymentsNin$outboundSchema.parse(
|
|
6770
|
+
deploymentStreamAndDeploymentsNin,
|
|
6967
6771
|
),
|
|
6968
6772
|
);
|
|
6969
6773
|
}
|
|
6970
6774
|
|
|
6971
|
-
export function
|
|
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
|
-
|
|
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
|
|
6989
|
-
|
|
6786
|
+
export const DeploymentStreamAndNin$inboundSchema: z.ZodType<
|
|
6787
|
+
DeploymentStreamAndNin,
|
|
6990
6788
|
z.ZodTypeDef,
|
|
6991
6789
|
unknown
|
|
6992
6790
|
> = z.object({
|
|
6993
|
-
|
|
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
|
|
7002
|
-
|
|
6795
|
+
export type DeploymentStreamAndNin$Outbound = {
|
|
6796
|
+
nin: Array<string | number | boolean>;
|
|
7003
6797
|
};
|
|
7004
6798
|
|
|
7005
6799
|
/** @internal */
|
|
7006
|
-
export const
|
|
7007
|
-
|
|
6800
|
+
export const DeploymentStreamAndNin$outboundSchema: z.ZodType<
|
|
6801
|
+
DeploymentStreamAndNin$Outbound,
|
|
7008
6802
|
z.ZodTypeDef,
|
|
7009
|
-
|
|
6803
|
+
DeploymentStreamAndNin
|
|
7010
6804
|
> = z.object({
|
|
7011
|
-
|
|
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
|
|
7023
|
-
/** @deprecated use `
|
|
7024
|
-
export const inboundSchema =
|
|
7025
|
-
/** @deprecated use `
|
|
7026
|
-
export const outboundSchema =
|
|
7027
|
-
|
|
7028
|
-
|
|
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
|
|
7033
|
-
|
|
6821
|
+
export function deploymentStreamAndNinToJSON(
|
|
6822
|
+
deploymentStreamAndNin: DeploymentStreamAndNin,
|
|
7034
6823
|
): string {
|
|
7035
6824
|
return JSON.stringify(
|
|
7036
|
-
|
|
7037
|
-
deploymentStreamDollarAndDollarNin,
|
|
7038
|
-
),
|
|
6825
|
+
DeploymentStreamAndNin$outboundSchema.parse(deploymentStreamAndNin),
|
|
7039
6826
|
);
|
|
7040
6827
|
}
|
|
7041
6828
|
|
|
7042
|
-
export function
|
|
6829
|
+
export function deploymentStreamAndNinFromJSON(
|
|
7043
6830
|
jsonString: string,
|
|
7044
|
-
): SafeParseResult<
|
|
6831
|
+
): SafeParseResult<DeploymentStreamAndNin, SDKValidationError> {
|
|
7045
6832
|
return safeParse(
|
|
7046
6833
|
jsonString,
|
|
7047
|
-
(x) =>
|
|
7048
|
-
|
|
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
|
|
7055
|
-
|
|
7056
|
-
|
|
7057
|
-
|
|
7058
|
-
|
|
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
|
|
6847
|
+
export type DeploymentStreamAndDeploymentsIn$Outbound =
|
|
7063
6848
|
| string
|
|
7064
6849
|
| number
|
|
7065
6850
|
| boolean;
|
|
7066
6851
|
|
|
7067
6852
|
/** @internal */
|
|
7068
|
-
export const
|
|
7069
|
-
|
|
7070
|
-
|
|
7071
|
-
|
|
7072
|
-
|
|
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
|
|
7080
|
-
/** @deprecated use `
|
|
7081
|
-
export const inboundSchema =
|
|
7082
|
-
|
|
7083
|
-
|
|
7084
|
-
|
|
7085
|
-
|
|
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
|
|
7091
|
-
|
|
7092
|
-
DeploymentStreamDollarAndDeploymentsDollarIn,
|
|
6872
|
+
export function deploymentStreamAndDeploymentsInToJSON(
|
|
6873
|
+
deploymentStreamAndDeploymentsIn: DeploymentStreamAndDeploymentsIn,
|
|
7093
6874
|
): string {
|
|
7094
6875
|
return JSON.stringify(
|
|
7095
|
-
|
|
7096
|
-
|
|
6876
|
+
DeploymentStreamAndDeploymentsIn$outboundSchema.parse(
|
|
6877
|
+
deploymentStreamAndDeploymentsIn,
|
|
7097
6878
|
),
|
|
7098
6879
|
);
|
|
7099
6880
|
}
|
|
7100
6881
|
|
|
7101
|
-
export function
|
|
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
|
-
|
|
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
|
|
7119
|
-
|
|
6893
|
+
export const DeploymentStreamAndIn$inboundSchema: z.ZodType<
|
|
6894
|
+
DeploymentStreamAndIn,
|
|
7120
6895
|
z.ZodTypeDef,
|
|
7121
6896
|
unknown
|
|
7122
6897
|
> = z.object({
|
|
7123
|
-
|
|
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
|
|
7132
|
-
|
|
6902
|
+
export type DeploymentStreamAndIn$Outbound = {
|
|
6903
|
+
in: Array<string | number | boolean>;
|
|
7133
6904
|
};
|
|
7134
6905
|
|
|
7135
6906
|
/** @internal */
|
|
7136
|
-
export const
|
|
7137
|
-
|
|
6907
|
+
export const DeploymentStreamAndIn$outboundSchema: z.ZodType<
|
|
6908
|
+
DeploymentStreamAndIn$Outbound,
|
|
7138
6909
|
z.ZodTypeDef,
|
|
7139
|
-
|
|
6910
|
+
DeploymentStreamAndIn
|
|
7140
6911
|
> = z.object({
|
|
7141
|
-
|
|
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
|
|
7153
|
-
/** @deprecated use `
|
|
7154
|
-
export const inboundSchema =
|
|
7155
|
-
/** @deprecated use `
|
|
7156
|
-
export const outboundSchema =
|
|
7157
|
-
|
|
7158
|
-
|
|
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
|
|
7163
|
-
|
|
6928
|
+
export function deploymentStreamAndInToJSON(
|
|
6929
|
+
deploymentStreamAndIn: DeploymentStreamAndIn,
|
|
7164
6930
|
): string {
|
|
7165
6931
|
return JSON.stringify(
|
|
7166
|
-
|
|
7167
|
-
deploymentStreamDollarAndDollarIn,
|
|
7168
|
-
),
|
|
6932
|
+
DeploymentStreamAndIn$outboundSchema.parse(deploymentStreamAndIn),
|
|
7169
6933
|
);
|
|
7170
6934
|
}
|
|
7171
6935
|
|
|
7172
|
-
export function
|
|
6936
|
+
export function deploymentStreamAndInFromJSON(
|
|
7173
6937
|
jsonString: string,
|
|
7174
|
-
): SafeParseResult<
|
|
6938
|
+
): SafeParseResult<DeploymentStreamAndIn, SDKValidationError> {
|
|
7175
6939
|
return safeParse(
|
|
7176
6940
|
jsonString,
|
|
7177
|
-
(x) =>
|
|
7178
|
-
`Failed to parse '
|
|
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
|
|
7184
|
-
|
|
6947
|
+
export const DeploymentStreamAndLte$inboundSchema: z.ZodType<
|
|
6948
|
+
DeploymentStreamAndLte,
|
|
7185
6949
|
z.ZodTypeDef,
|
|
7186
6950
|
unknown
|
|
7187
6951
|
> = z.object({
|
|
7188
|
-
|
|
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
|
|
7197
|
-
|
|
6956
|
+
export type DeploymentStreamAndLte$Outbound = {
|
|
6957
|
+
lte: number;
|
|
7198
6958
|
};
|
|
7199
6959
|
|
|
7200
6960
|
/** @internal */
|
|
7201
|
-
export const
|
|
7202
|
-
|
|
6961
|
+
export const DeploymentStreamAndLte$outboundSchema: z.ZodType<
|
|
6962
|
+
DeploymentStreamAndLte$Outbound,
|
|
7203
6963
|
z.ZodTypeDef,
|
|
7204
|
-
|
|
6964
|
+
DeploymentStreamAndLte
|
|
7205
6965
|
> = z.object({
|
|
7206
|
-
|
|
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
|
|
7218
|
-
/** @deprecated use `
|
|
7219
|
-
export const inboundSchema =
|
|
7220
|
-
/** @deprecated use `
|
|
7221
|
-
export const outboundSchema =
|
|
7222
|
-
|
|
7223
|
-
|
|
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
|
|
7228
|
-
|
|
6982
|
+
export function deploymentStreamAndLteToJSON(
|
|
6983
|
+
deploymentStreamAndLte: DeploymentStreamAndLte,
|
|
7229
6984
|
): string {
|
|
7230
6985
|
return JSON.stringify(
|
|
7231
|
-
|
|
7232
|
-
deploymentStreamDollarAndDollarLte,
|
|
7233
|
-
),
|
|
6986
|
+
DeploymentStreamAndLte$outboundSchema.parse(deploymentStreamAndLte),
|
|
7234
6987
|
);
|
|
7235
6988
|
}
|
|
7236
6989
|
|
|
7237
|
-
export function
|
|
6990
|
+
export function deploymentStreamAndLteFromJSON(
|
|
7238
6991
|
jsonString: string,
|
|
7239
|
-
): SafeParseResult<
|
|
6992
|
+
): SafeParseResult<DeploymentStreamAndLte, SDKValidationError> {
|
|
7240
6993
|
return safeParse(
|
|
7241
6994
|
jsonString,
|
|
7242
|
-
(x) =>
|
|
7243
|
-
|
|
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
|
|
7250
|
-
|
|
7001
|
+
export const DeploymentStreamAndLt$inboundSchema: z.ZodType<
|
|
7002
|
+
DeploymentStreamAndLt,
|
|
7251
7003
|
z.ZodTypeDef,
|
|
7252
7004
|
unknown
|
|
7253
7005
|
> = z.object({
|
|
7254
|
-
|
|
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
|
|
7263
|
-
|
|
7010
|
+
export type DeploymentStreamAndLt$Outbound = {
|
|
7011
|
+
lt: number;
|
|
7264
7012
|
};
|
|
7265
7013
|
|
|
7266
7014
|
/** @internal */
|
|
7267
|
-
export const
|
|
7268
|
-
|
|
7015
|
+
export const DeploymentStreamAndLt$outboundSchema: z.ZodType<
|
|
7016
|
+
DeploymentStreamAndLt$Outbound,
|
|
7269
7017
|
z.ZodTypeDef,
|
|
7270
|
-
|
|
7018
|
+
DeploymentStreamAndLt
|
|
7271
7019
|
> = z.object({
|
|
7272
|
-
|
|
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
|
|
7284
|
-
/** @deprecated use `
|
|
7285
|
-
export const inboundSchema =
|
|
7286
|
-
/** @deprecated use `
|
|
7287
|
-
export const outboundSchema =
|
|
7288
|
-
|
|
7289
|
-
|
|
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
|
|
7294
|
-
|
|
7036
|
+
export function deploymentStreamAndLtToJSON(
|
|
7037
|
+
deploymentStreamAndLt: DeploymentStreamAndLt,
|
|
7295
7038
|
): string {
|
|
7296
7039
|
return JSON.stringify(
|
|
7297
|
-
|
|
7298
|
-
deploymentStreamDollarAndDollarLt,
|
|
7299
|
-
),
|
|
7040
|
+
DeploymentStreamAndLt$outboundSchema.parse(deploymentStreamAndLt),
|
|
7300
7041
|
);
|
|
7301
7042
|
}
|
|
7302
7043
|
|
|
7303
|
-
export function
|
|
7044
|
+
export function deploymentStreamAndLtFromJSON(
|
|
7304
7045
|
jsonString: string,
|
|
7305
|
-
): SafeParseResult<
|
|
7046
|
+
): SafeParseResult<DeploymentStreamAndLt, SDKValidationError> {
|
|
7306
7047
|
return safeParse(
|
|
7307
7048
|
jsonString,
|
|
7308
|
-
(x) =>
|
|
7309
|
-
`Failed to parse '
|
|
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
|
|
7315
|
-
|
|
7055
|
+
export const DeploymentStreamAndGte$inboundSchema: z.ZodType<
|
|
7056
|
+
DeploymentStreamAndGte,
|
|
7316
7057
|
z.ZodTypeDef,
|
|
7317
7058
|
unknown
|
|
7318
7059
|
> = z.object({
|
|
7319
|
-
|
|
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
|
|
7328
|
-
|
|
7064
|
+
export type DeploymentStreamAndGte$Outbound = {
|
|
7065
|
+
gte: number;
|
|
7329
7066
|
};
|
|
7330
7067
|
|
|
7331
7068
|
/** @internal */
|
|
7332
|
-
export const
|
|
7333
|
-
|
|
7069
|
+
export const DeploymentStreamAndGte$outboundSchema: z.ZodType<
|
|
7070
|
+
DeploymentStreamAndGte$Outbound,
|
|
7334
7071
|
z.ZodTypeDef,
|
|
7335
|
-
|
|
7072
|
+
DeploymentStreamAndGte
|
|
7336
7073
|
> = z.object({
|
|
7337
|
-
|
|
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
|
|
7349
|
-
/** @deprecated use `
|
|
7350
|
-
export const inboundSchema =
|
|
7351
|
-
/** @deprecated use `
|
|
7352
|
-
export const outboundSchema =
|
|
7353
|
-
|
|
7354
|
-
|
|
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
|
|
7359
|
-
|
|
7090
|
+
export function deploymentStreamAndGteToJSON(
|
|
7091
|
+
deploymentStreamAndGte: DeploymentStreamAndGte,
|
|
7360
7092
|
): string {
|
|
7361
7093
|
return JSON.stringify(
|
|
7362
|
-
|
|
7363
|
-
deploymentStreamDollarAndDollarGte,
|
|
7364
|
-
),
|
|
7094
|
+
DeploymentStreamAndGte$outboundSchema.parse(deploymentStreamAndGte),
|
|
7365
7095
|
);
|
|
7366
7096
|
}
|
|
7367
7097
|
|
|
7368
|
-
export function
|
|
7098
|
+
export function deploymentStreamAndGteFromJSON(
|
|
7369
7099
|
jsonString: string,
|
|
7370
|
-
): SafeParseResult<
|
|
7100
|
+
): SafeParseResult<DeploymentStreamAndGte, SDKValidationError> {
|
|
7371
7101
|
return safeParse(
|
|
7372
7102
|
jsonString,
|
|
7373
|
-
(x) =>
|
|
7374
|
-
|
|
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
|
|
7381
|
-
|
|
7109
|
+
export const DeploymentStreamAnd3$inboundSchema: z.ZodType<
|
|
7110
|
+
DeploymentStreamAnd3,
|
|
7382
7111
|
z.ZodTypeDef,
|
|
7383
7112
|
unknown
|
|
7384
7113
|
> = z.object({
|
|
7385
|
-
|
|
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
|
|
7394
|
-
|
|
7118
|
+
export type DeploymentStreamAnd3$Outbound = {
|
|
7119
|
+
gt: number;
|
|
7395
7120
|
};
|
|
7396
7121
|
|
|
7397
7122
|
/** @internal */
|
|
7398
|
-
export const
|
|
7399
|
-
|
|
7123
|
+
export const DeploymentStreamAnd3$outboundSchema: z.ZodType<
|
|
7124
|
+
DeploymentStreamAnd3$Outbound,
|
|
7400
7125
|
z.ZodTypeDef,
|
|
7401
|
-
|
|
7126
|
+
DeploymentStreamAnd3
|
|
7402
7127
|
> = z.object({
|
|
7403
|
-
|
|
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
|
|
7415
|
-
/** @deprecated use `
|
|
7416
|
-
export const inboundSchema =
|
|
7417
|
-
/** @deprecated use `
|
|
7418
|
-
export const outboundSchema =
|
|
7419
|
-
/** @deprecated use `
|
|
7420
|
-
export type 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
|
|
7424
|
-
|
|
7144
|
+
export function deploymentStreamAnd3ToJSON(
|
|
7145
|
+
deploymentStreamAnd3: DeploymentStreamAnd3,
|
|
7425
7146
|
): string {
|
|
7426
7147
|
return JSON.stringify(
|
|
7427
|
-
|
|
7148
|
+
DeploymentStreamAnd3$outboundSchema.parse(deploymentStreamAnd3),
|
|
7428
7149
|
);
|
|
7429
7150
|
}
|
|
7430
7151
|
|
|
7431
|
-
export function
|
|
7152
|
+
export function deploymentStreamAnd3FromJSON(
|
|
7432
7153
|
jsonString: string,
|
|
7433
|
-
): SafeParseResult<
|
|
7154
|
+
): SafeParseResult<DeploymentStreamAnd3, SDKValidationError> {
|
|
7434
7155
|
return safeParse(
|
|
7435
7156
|
jsonString,
|
|
7436
|
-
(x) =>
|
|
7437
|
-
`Failed to parse '
|
|
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
|
|
7443
|
-
|
|
7444
|
-
|
|
7445
|
-
|
|
7446
|
-
|
|
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
|
|
7170
|
+
export type DeploymentStreamAndDeploymentsNe$Outbound =
|
|
7451
7171
|
| string
|
|
7452
7172
|
| number
|
|
7453
7173
|
| boolean;
|
|
7454
7174
|
|
|
7455
7175
|
/** @internal */
|
|
7456
|
-
export const
|
|
7457
|
-
|
|
7458
|
-
|
|
7459
|
-
|
|
7460
|
-
|
|
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
|
|
7468
|
-
/** @deprecated use `
|
|
7469
|
-
export const inboundSchema =
|
|
7470
|
-
|
|
7471
|
-
|
|
7472
|
-
|
|
7473
|
-
|
|
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
|
|
7479
|
-
|
|
7480
|
-
DeploymentStreamDollarAndDeploymentsDollarNe,
|
|
7195
|
+
export function deploymentStreamAndDeploymentsNeToJSON(
|
|
7196
|
+
deploymentStreamAndDeploymentsNe: DeploymentStreamAndDeploymentsNe,
|
|
7481
7197
|
): string {
|
|
7482
7198
|
return JSON.stringify(
|
|
7483
|
-
|
|
7484
|
-
|
|
7199
|
+
DeploymentStreamAndDeploymentsNe$outboundSchema.parse(
|
|
7200
|
+
deploymentStreamAndDeploymentsNe,
|
|
7485
7201
|
),
|
|
7486
7202
|
);
|
|
7487
7203
|
}
|
|
7488
7204
|
|
|
7489
|
-
export function
|
|
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
|
-
|
|
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
|
|
7507
|
-
|
|
7216
|
+
export const DeploymentStreamAndNe$inboundSchema: z.ZodType<
|
|
7217
|
+
DeploymentStreamAndNe,
|
|
7508
7218
|
z.ZodTypeDef,
|
|
7509
7219
|
unknown
|
|
7510
7220
|
> = z.object({
|
|
7511
|
-
|
|
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
|
|
7520
|
-
|
|
7225
|
+
export type DeploymentStreamAndNe$Outbound = {
|
|
7226
|
+
ne: string | number | boolean;
|
|
7521
7227
|
};
|
|
7522
7228
|
|
|
7523
7229
|
/** @internal */
|
|
7524
|
-
export const
|
|
7525
|
-
|
|
7230
|
+
export const DeploymentStreamAndNe$outboundSchema: z.ZodType<
|
|
7231
|
+
DeploymentStreamAndNe$Outbound,
|
|
7526
7232
|
z.ZodTypeDef,
|
|
7527
|
-
|
|
7233
|
+
DeploymentStreamAndNe
|
|
7528
7234
|
> = z.object({
|
|
7529
|
-
|
|
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
|
|
7541
|
-
/** @deprecated use `
|
|
7542
|
-
export const inboundSchema =
|
|
7543
|
-
/** @deprecated use `
|
|
7544
|
-
export const outboundSchema =
|
|
7545
|
-
|
|
7546
|
-
|
|
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
|
|
7551
|
-
|
|
7251
|
+
export function deploymentStreamAndNeToJSON(
|
|
7252
|
+
deploymentStreamAndNe: DeploymentStreamAndNe,
|
|
7552
7253
|
): string {
|
|
7553
7254
|
return JSON.stringify(
|
|
7554
|
-
|
|
7555
|
-
deploymentStreamDollarAndDollarNe,
|
|
7556
|
-
),
|
|
7255
|
+
DeploymentStreamAndNe$outboundSchema.parse(deploymentStreamAndNe),
|
|
7557
7256
|
);
|
|
7558
7257
|
}
|
|
7559
7258
|
|
|
7560
|
-
export function
|
|
7259
|
+
export function deploymentStreamAndNeFromJSON(
|
|
7561
7260
|
jsonString: string,
|
|
7562
|
-
): SafeParseResult<
|
|
7261
|
+
): SafeParseResult<DeploymentStreamAndNe, SDKValidationError> {
|
|
7563
7262
|
return safeParse(
|
|
7564
7263
|
jsonString,
|
|
7565
|
-
(x) =>
|
|
7566
|
-
`Failed to parse '
|
|
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
|
|
7572
|
-
|
|
7573
|
-
|
|
7574
|
-
|
|
7575
|
-
|
|
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
|
|
7277
|
+
export type DeploymentStreamAndDeploymentsEq$Outbound =
|
|
7580
7278
|
| string
|
|
7581
7279
|
| number
|
|
7582
7280
|
| boolean;
|
|
7583
7281
|
|
|
7584
7282
|
/** @internal */
|
|
7585
|
-
export const
|
|
7586
|
-
|
|
7587
|
-
|
|
7588
|
-
|
|
7589
|
-
|
|
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
|
|
7597
|
-
/** @deprecated use `
|
|
7598
|
-
export const inboundSchema =
|
|
7599
|
-
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
|
|
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
|
|
7608
|
-
|
|
7609
|
-
DeploymentStreamDollarAndDeploymentsDollarEq,
|
|
7302
|
+
export function deploymentStreamAndDeploymentsEqToJSON(
|
|
7303
|
+
deploymentStreamAndDeploymentsEq: DeploymentStreamAndDeploymentsEq,
|
|
7610
7304
|
): string {
|
|
7611
7305
|
return JSON.stringify(
|
|
7612
|
-
|
|
7613
|
-
|
|
7306
|
+
DeploymentStreamAndDeploymentsEq$outboundSchema.parse(
|
|
7307
|
+
deploymentStreamAndDeploymentsEq,
|
|
7614
7308
|
),
|
|
7615
7309
|
);
|
|
7616
7310
|
}
|
|
7617
7311
|
|
|
7618
|
-
export function
|
|
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
|
-
|
|
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
|
|
7636
|
-
|
|
7323
|
+
export const DeploymentStreamAndEq$inboundSchema: z.ZodType<
|
|
7324
|
+
DeploymentStreamAndEq,
|
|
7637
7325
|
z.ZodTypeDef,
|
|
7638
7326
|
unknown
|
|
7639
7327
|
> = z.object({
|
|
7640
|
-
|
|
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
|
|
7649
|
-
|
|
7332
|
+
export type DeploymentStreamAndEq$Outbound = {
|
|
7333
|
+
eq: string | number | boolean;
|
|
7650
7334
|
};
|
|
7651
7335
|
|
|
7652
7336
|
/** @internal */
|
|
7653
|
-
export const
|
|
7654
|
-
|
|
7337
|
+
export const DeploymentStreamAndEq$outboundSchema: z.ZodType<
|
|
7338
|
+
DeploymentStreamAndEq$Outbound,
|
|
7655
7339
|
z.ZodTypeDef,
|
|
7656
|
-
|
|
7340
|
+
DeploymentStreamAndEq
|
|
7657
7341
|
> = z.object({
|
|
7658
|
-
|
|
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
|
|
7670
|
-
/** @deprecated use `
|
|
7671
|
-
export const inboundSchema =
|
|
7672
|
-
/** @deprecated use `
|
|
7673
|
-
export const outboundSchema =
|
|
7674
|
-
|
|
7675
|
-
|
|
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
|
|
7680
|
-
|
|
7358
|
+
export function deploymentStreamAndEqToJSON(
|
|
7359
|
+
deploymentStreamAndEq: DeploymentStreamAndEq,
|
|
7681
7360
|
): string {
|
|
7682
7361
|
return JSON.stringify(
|
|
7683
|
-
|
|
7684
|
-
deploymentStreamDollarAndDollarEq,
|
|
7685
|
-
),
|
|
7362
|
+
DeploymentStreamAndEq$outboundSchema.parse(deploymentStreamAndEq),
|
|
7686
7363
|
);
|
|
7687
7364
|
}
|
|
7688
7365
|
|
|
7689
|
-
export function
|
|
7366
|
+
export function deploymentStreamAndEqFromJSON(
|
|
7690
7367
|
jsonString: string,
|
|
7691
|
-
): SafeParseResult<
|
|
7368
|
+
): SafeParseResult<DeploymentStreamAndEq, SDKValidationError> {
|
|
7692
7369
|
return safeParse(
|
|
7693
7370
|
jsonString,
|
|
7694
|
-
(x) =>
|
|
7695
|
-
`Failed to parse '
|
|
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
|
|
7377
|
+
export const DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema:
|
|
7701
7378
|
z.ZodType<
|
|
7702
|
-
|
|
7379
|
+
DeploymentStreamKnowledgeFilterDeploymentsAnd,
|
|
7703
7380
|
z.ZodTypeDef,
|
|
7704
7381
|
unknown
|
|
7705
7382
|
> = z.union([
|
|
7706
|
-
z.lazy(() =>
|
|
7707
|
-
z.lazy(() =>
|
|
7708
|
-
z.lazy(() =>
|
|
7709
|
-
z.lazy(() =>
|
|
7710
|
-
z.lazy(() =>
|
|
7711
|
-
z.lazy(() =>
|
|
7712
|
-
z.lazy(() =>
|
|
7713
|
-
z.lazy(() =>
|
|
7714
|
-
z.lazy(() =>
|
|
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
|
|
7719
|
-
|
|
|
7720
|
-
|
|
|
7721
|
-
|
|
|
7722
|
-
|
|
|
7723
|
-
|
|
|
7724
|
-
|
|
|
7725
|
-
|
|
|
7726
|
-
|
|
|
7727
|
-
|
|
|
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
|
|
7407
|
+
export const DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema:
|
|
7731
7408
|
z.ZodType<
|
|
7732
|
-
|
|
7409
|
+
DeploymentStreamKnowledgeFilterDeploymentsAnd$Outbound,
|
|
7733
7410
|
z.ZodTypeDef,
|
|
7734
|
-
|
|
7411
|
+
DeploymentStreamKnowledgeFilterDeploymentsAnd
|
|
7735
7412
|
> = z.union([
|
|
7736
|
-
z.lazy(() =>
|
|
7737
|
-
z.lazy(() =>
|
|
7738
|
-
z.lazy(() =>
|
|
7739
|
-
z.lazy(() =>
|
|
7740
|
-
z.lazy(() =>
|
|
7741
|
-
z.lazy(() =>
|
|
7742
|
-
z.lazy(() =>
|
|
7743
|
-
z.lazy(() =>
|
|
7744
|
-
z.lazy(() =>
|
|
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
|
|
7752
|
-
/** @deprecated use `
|
|
7428
|
+
export namespace DeploymentStreamKnowledgeFilterDeploymentsAnd$ {
|
|
7429
|
+
/** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema` instead. */
|
|
7753
7430
|
export const inboundSchema =
|
|
7754
|
-
|
|
7755
|
-
/** @deprecated use `
|
|
7431
|
+
DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema;
|
|
7432
|
+
/** @deprecated use `DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema` instead. */
|
|
7756
7433
|
export const outboundSchema =
|
|
7757
|
-
|
|
7758
|
-
/** @deprecated use `
|
|
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
|
|
7764
|
-
|
|
7765
|
-
|
|
7439
|
+
export function deploymentStreamKnowledgeFilterDeploymentsAndToJSON(
|
|
7440
|
+
deploymentStreamKnowledgeFilterDeploymentsAnd:
|
|
7441
|
+
DeploymentStreamKnowledgeFilterDeploymentsAnd,
|
|
7766
7442
|
): string {
|
|
7767
7443
|
return JSON.stringify(
|
|
7768
|
-
|
|
7769
|
-
|
|
7444
|
+
DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema.parse(
|
|
7445
|
+
deploymentStreamKnowledgeFilterDeploymentsAnd,
|
|
7770
7446
|
),
|
|
7771
7447
|
);
|
|
7772
7448
|
}
|
|
7773
7449
|
|
|
7774
|
-
export function
|
|
7450
|
+
export function deploymentStreamKnowledgeFilterDeploymentsAndFromJSON(
|
|
7775
7451
|
jsonString: string,
|
|
7776
7452
|
): SafeParseResult<
|
|
7777
|
-
|
|
7453
|
+
DeploymentStreamKnowledgeFilterDeploymentsAnd,
|
|
7778
7454
|
SDKValidationError
|
|
7779
7455
|
> {
|
|
7780
7456
|
return safeParse(
|
|
7781
7457
|
jsonString,
|
|
7782
7458
|
(x) =>
|
|
7783
|
-
|
|
7459
|
+
DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema.parse(
|
|
7784
7460
|
JSON.parse(x),
|
|
7785
7461
|
),
|
|
7786
|
-
`Failed to parse '
|
|
7462
|
+
`Failed to parse 'DeploymentStreamKnowledgeFilterDeploymentsAnd' from JSON`,
|
|
7787
7463
|
);
|
|
7788
7464
|
}
|
|
7789
7465
|
|
|
7790
7466
|
/** @internal */
|
|
7791
|
-
export const
|
|
7792
|
-
|
|
7467
|
+
export const DeploymentStreamKnowledgeFilterAnd$inboundSchema: z.ZodType<
|
|
7468
|
+
DeploymentStreamKnowledgeFilterAnd,
|
|
7793
7469
|
z.ZodTypeDef,
|
|
7794
7470
|
unknown
|
|
7795
7471
|
> = z.object({
|
|
7796
|
-
|
|
7472
|
+
and: z.array(
|
|
7797
7473
|
z.record(z.union([
|
|
7798
|
-
z.lazy(() =>
|
|
7474
|
+
z.lazy(() => DeploymentStreamAndEq$inboundSchema),
|
|
7799
7475
|
z.lazy(() =>
|
|
7800
|
-
|
|
7476
|
+
DeploymentStreamAndNe$inboundSchema
|
|
7801
7477
|
),
|
|
7802
|
-
z.lazy(() =>
|
|
7803
|
-
z.lazy(() =>
|
|
7804
|
-
z.lazy(() =>
|
|
7805
|
-
z.lazy(() =>
|
|
7806
|
-
z.lazy(() =>
|
|
7807
|
-
z.lazy(() =>
|
|
7808
|
-
z.lazy(() =>
|
|
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
|
|
7819
|
-
|
|
7490
|
+
export type DeploymentStreamKnowledgeFilterAnd$Outbound = {
|
|
7491
|
+
and: Array<
|
|
7820
7492
|
{
|
|
7821
7493
|
[k: string]:
|
|
7822
|
-
|
|
|
7823
|
-
|
|
|
7824
|
-
|
|
|
7825
|
-
|
|
|
7826
|
-
|
|
|
7827
|
-
|
|
|
7828
|
-
|
|
|
7829
|
-
|
|
|
7830
|
-
|
|
|
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
|
|
7837
|
-
|
|
7508
|
+
export const DeploymentStreamKnowledgeFilterAnd$outboundSchema: z.ZodType<
|
|
7509
|
+
DeploymentStreamKnowledgeFilterAnd$Outbound,
|
|
7838
7510
|
z.ZodTypeDef,
|
|
7839
|
-
|
|
7511
|
+
DeploymentStreamKnowledgeFilterAnd
|
|
7840
7512
|
> = z.object({
|
|
7841
|
-
|
|
7513
|
+
and: z.array(
|
|
7842
7514
|
z.record(z.union([
|
|
7843
|
-
z.lazy(() =>
|
|
7515
|
+
z.lazy(() => DeploymentStreamAndEq$outboundSchema),
|
|
7844
7516
|
z.lazy(() =>
|
|
7845
|
-
|
|
7517
|
+
DeploymentStreamAndNe$outboundSchema
|
|
7846
7518
|
),
|
|
7847
|
-
z.lazy(() =>
|
|
7848
|
-
z.lazy(() =>
|
|
7849
|
-
z.lazy(() =>
|
|
7850
|
-
z.lazy(() =>
|
|
7851
|
-
z.lazy(() =>
|
|
7852
|
-
z.lazy(() =>
|
|
7853
|
-
z.lazy(() =>
|
|
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
|
|
7867
|
-
/** @deprecated use `
|
|
7868
|
-
export const inboundSchema =
|
|
7869
|
-
|
|
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
|
-
|
|
7873
|
-
/** @deprecated use `
|
|
7874
|
-
export type Outbound =
|
|
7539
|
+
DeploymentStreamKnowledgeFilterAnd$outboundSchema;
|
|
7540
|
+
/** @deprecated use `DeploymentStreamKnowledgeFilterAnd$Outbound` instead. */
|
|
7541
|
+
export type Outbound = DeploymentStreamKnowledgeFilterAnd$Outbound;
|
|
7875
7542
|
}
|
|
7876
7543
|
|
|
7877
|
-
export function
|
|
7878
|
-
|
|
7879
|
-
DeploymentStreamKnowledgeFilterDollarAnd,
|
|
7544
|
+
export function deploymentStreamKnowledgeFilterAndToJSON(
|
|
7545
|
+
deploymentStreamKnowledgeFilterAnd: DeploymentStreamKnowledgeFilterAnd,
|
|
7880
7546
|
): string {
|
|
7881
7547
|
return JSON.stringify(
|
|
7882
|
-
|
|
7883
|
-
|
|
7548
|
+
DeploymentStreamKnowledgeFilterAnd$outboundSchema.parse(
|
|
7549
|
+
deploymentStreamKnowledgeFilterAnd,
|
|
7884
7550
|
),
|
|
7885
7551
|
);
|
|
7886
7552
|
}
|
|
7887
7553
|
|
|
7888
|
-
export function
|
|
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
|
-
|
|
7898
|
-
|
|
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
|
|
7906
|
-
|
|
7566
|
+
export const OneExists$inboundSchema: z.ZodType<
|
|
7567
|
+
OneExists,
|
|
7907
7568
|
z.ZodTypeDef,
|
|
7908
7569
|
unknown
|
|
7909
7570
|
> = z.object({
|
|
7910
|
-
|
|
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
|
|
7919
|
-
|
|
7575
|
+
export type OneExists$Outbound = {
|
|
7576
|
+
exists: boolean;
|
|
7920
7577
|
};
|
|
7921
7578
|
|
|
7922
7579
|
/** @internal */
|
|
7923
|
-
export const
|
|
7924
|
-
|
|
7580
|
+
export const OneExists$outboundSchema: z.ZodType<
|
|
7581
|
+
OneExists$Outbound,
|
|
7925
7582
|
z.ZodTypeDef,
|
|
7926
|
-
|
|
7583
|
+
OneExists
|
|
7927
7584
|
> = z.object({
|
|
7928
|
-
|
|
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
|
|
7940
|
-
/** @deprecated use `
|
|
7941
|
-
export const inboundSchema =
|
|
7942
|
-
/** @deprecated use `
|
|
7943
|
-
export const outboundSchema =
|
|
7944
|
-
/** @deprecated use `
|
|
7945
|
-
export type 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
|
|
7949
|
-
|
|
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
|
|
7605
|
+
export function oneExistsFromJSON(
|
|
7955
7606
|
jsonString: string,
|
|
7956
|
-
): SafeParseResult<
|
|
7607
|
+
): SafeParseResult<OneExists, SDKValidationError> {
|
|
7957
7608
|
return safeParse(
|
|
7958
7609
|
jsonString,
|
|
7959
|
-
(x) =>
|
|
7960
|
-
`Failed to parse '
|
|
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
|
|
7966
|
-
|
|
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
|
|
7623
|
+
export type DeploymentStream1DeploymentsNin$Outbound =
|
|
7973
7624
|
| string
|
|
7974
7625
|
| number
|
|
7975
7626
|
| boolean;
|
|
7976
7627
|
|
|
7977
7628
|
/** @internal */
|
|
7978
|
-
export const
|
|
7979
|
-
|
|
7629
|
+
export const DeploymentStream1DeploymentsNin$outboundSchema: z.ZodType<
|
|
7630
|
+
DeploymentStream1DeploymentsNin$Outbound,
|
|
7980
7631
|
z.ZodTypeDef,
|
|
7981
|
-
|
|
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
|
|
7989
|
-
/** @deprecated use `
|
|
7990
|
-
export const inboundSchema =
|
|
7991
|
-
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
|
-
|
|
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
|
|
8000
|
-
|
|
7648
|
+
export function deploymentStream1DeploymentsNinToJSON(
|
|
7649
|
+
deploymentStream1DeploymentsNin: DeploymentStream1DeploymentsNin,
|
|
8001
7650
|
): string {
|
|
8002
7651
|
return JSON.stringify(
|
|
8003
|
-
|
|
8004
|
-
|
|
7652
|
+
DeploymentStream1DeploymentsNin$outboundSchema.parse(
|
|
7653
|
+
deploymentStream1DeploymentsNin,
|
|
8005
7654
|
),
|
|
8006
7655
|
);
|
|
8007
7656
|
}
|
|
8008
7657
|
|
|
8009
|
-
export function
|
|
7658
|
+
export function deploymentStream1DeploymentsNinFromJSON(
|
|
8010
7659
|
jsonString: string,
|
|
8011
|
-
): SafeParseResult<
|
|
7660
|
+
): SafeParseResult<DeploymentStream1DeploymentsNin, SDKValidationError> {
|
|
8012
7661
|
return safeParse(
|
|
8013
7662
|
jsonString,
|
|
8014
|
-
(x) =>
|
|
8015
|
-
|
|
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
|
|
8022
|
-
|
|
7669
|
+
export const DeploymentStream1Nin$inboundSchema: z.ZodType<
|
|
7670
|
+
DeploymentStream1Nin,
|
|
8023
7671
|
z.ZodTypeDef,
|
|
8024
7672
|
unknown
|
|
8025
7673
|
> = z.object({
|
|
8026
|
-
|
|
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
|
|
8035
|
-
|
|
7678
|
+
export type DeploymentStream1Nin$Outbound = {
|
|
7679
|
+
nin: Array<string | number | boolean>;
|
|
8036
7680
|
};
|
|
8037
7681
|
|
|
8038
7682
|
/** @internal */
|
|
8039
|
-
export const
|
|
8040
|
-
|
|
7683
|
+
export const DeploymentStream1Nin$outboundSchema: z.ZodType<
|
|
7684
|
+
DeploymentStream1Nin$Outbound,
|
|
8041
7685
|
z.ZodTypeDef,
|
|
8042
|
-
|
|
7686
|
+
DeploymentStream1Nin
|
|
8043
7687
|
> = z.object({
|
|
8044
|
-
|
|
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
|
|
8056
|
-
/** @deprecated use `
|
|
8057
|
-
export const inboundSchema =
|
|
8058
|
-
/** @deprecated use `
|
|
8059
|
-
export const outboundSchema =
|
|
8060
|
-
/** @deprecated use `
|
|
8061
|
-
export type 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
|
|
8065
|
-
|
|
7704
|
+
export function deploymentStream1NinToJSON(
|
|
7705
|
+
deploymentStream1Nin: DeploymentStream1Nin,
|
|
8066
7706
|
): string {
|
|
8067
7707
|
return JSON.stringify(
|
|
8068
|
-
|
|
7708
|
+
DeploymentStream1Nin$outboundSchema.parse(deploymentStream1Nin),
|
|
8069
7709
|
);
|
|
8070
7710
|
}
|
|
8071
7711
|
|
|
8072
|
-
export function
|
|
7712
|
+
export function deploymentStream1NinFromJSON(
|
|
8073
7713
|
jsonString: string,
|
|
8074
|
-
): SafeParseResult<
|
|
7714
|
+
): SafeParseResult<DeploymentStream1Nin, SDKValidationError> {
|
|
8075
7715
|
return safeParse(
|
|
8076
7716
|
jsonString,
|
|
8077
|
-
(x) =>
|
|
8078
|
-
`Failed to parse '
|
|
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
|
|
8084
|
-
|
|
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
|
|
8091
|
-
| string
|
|
8092
|
-
| number
|
|
8093
|
-
| boolean;
|
|
7730
|
+
export type DeploymentStream1DeploymentsIn$Outbound = string | number | boolean;
|
|
8094
7731
|
|
|
8095
7732
|
/** @internal */
|
|
8096
|
-
export const
|
|
8097
|
-
|
|
7733
|
+
export const DeploymentStream1DeploymentsIn$outboundSchema: z.ZodType<
|
|
7734
|
+
DeploymentStream1DeploymentsIn$Outbound,
|
|
8098
7735
|
z.ZodTypeDef,
|
|
8099
|
-
|
|
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
|
|
8107
|
-
/** @deprecated use `
|
|
8108
|
-
export const inboundSchema =
|
|
8109
|
-
|
|
8110
|
-
|
|
8111
|
-
|
|
8112
|
-
|
|
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
|
|
8118
|
-
|
|
7752
|
+
export function deploymentStream1DeploymentsInToJSON(
|
|
7753
|
+
deploymentStream1DeploymentsIn: DeploymentStream1DeploymentsIn,
|
|
8119
7754
|
): string {
|
|
8120
7755
|
return JSON.stringify(
|
|
8121
|
-
|
|
8122
|
-
|
|
7756
|
+
DeploymentStream1DeploymentsIn$outboundSchema.parse(
|
|
7757
|
+
deploymentStream1DeploymentsIn,
|
|
8123
7758
|
),
|
|
8124
7759
|
);
|
|
8125
7760
|
}
|
|
8126
7761
|
|
|
8127
|
-
export function
|
|
7762
|
+
export function deploymentStream1DeploymentsInFromJSON(
|
|
8128
7763
|
jsonString: string,
|
|
8129
|
-
): SafeParseResult<
|
|
7764
|
+
): SafeParseResult<DeploymentStream1DeploymentsIn, SDKValidationError> {
|
|
8130
7765
|
return safeParse(
|
|
8131
7766
|
jsonString,
|
|
8132
|
-
(x) =>
|
|
8133
|
-
|
|
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
|
|
8140
|
-
|
|
7773
|
+
export const DeploymentStream1In$inboundSchema: z.ZodType<
|
|
7774
|
+
DeploymentStream1In,
|
|
8141
7775
|
z.ZodTypeDef,
|
|
8142
7776
|
unknown
|
|
8143
7777
|
> = z.object({
|
|
8144
|
-
|
|
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
|
|
8153
|
-
|
|
7782
|
+
export type DeploymentStream1In$Outbound = {
|
|
7783
|
+
in: Array<string | number | boolean>;
|
|
8154
7784
|
};
|
|
8155
7785
|
|
|
8156
7786
|
/** @internal */
|
|
8157
|
-
export const
|
|
8158
|
-
|
|
7787
|
+
export const DeploymentStream1In$outboundSchema: z.ZodType<
|
|
7788
|
+
DeploymentStream1In$Outbound,
|
|
8159
7789
|
z.ZodTypeDef,
|
|
8160
|
-
|
|
7790
|
+
DeploymentStream1In
|
|
8161
7791
|
> = z.object({
|
|
8162
|
-
|
|
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
|
|
8174
|
-
/** @deprecated use `
|
|
8175
|
-
export const inboundSchema =
|
|
8176
|
-
/** @deprecated use `
|
|
8177
|
-
export const outboundSchema =
|
|
8178
|
-
/** @deprecated use `
|
|
8179
|
-
export type 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
|
|
8183
|
-
|
|
7808
|
+
export function deploymentStream1InToJSON(
|
|
7809
|
+
deploymentStream1In: DeploymentStream1In,
|
|
8184
7810
|
): string {
|
|
8185
7811
|
return JSON.stringify(
|
|
8186
|
-
|
|
7812
|
+
DeploymentStream1In$outboundSchema.parse(deploymentStream1In),
|
|
8187
7813
|
);
|
|
8188
7814
|
}
|
|
8189
7815
|
|
|
8190
|
-
export function
|
|
7816
|
+
export function deploymentStream1InFromJSON(
|
|
8191
7817
|
jsonString: string,
|
|
8192
|
-
): SafeParseResult<
|
|
7818
|
+
): SafeParseResult<DeploymentStream1In, SDKValidationError> {
|
|
8193
7819
|
return safeParse(
|
|
8194
7820
|
jsonString,
|
|
8195
|
-
(x) =>
|
|
8196
|
-
`Failed to parse '
|
|
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
|
|
8202
|
-
|
|
8203
|
-
|
|
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
|
|
8215
|
-
|
|
7833
|
+
export type OneLte$Outbound = {
|
|
7834
|
+
lte: number;
|
|
8216
7835
|
};
|
|
8217
7836
|
|
|
8218
7837
|
/** @internal */
|
|
8219
|
-
export const
|
|
8220
|
-
|
|
7838
|
+
export const OneLte$outboundSchema: z.ZodType<
|
|
7839
|
+
OneLte$Outbound,
|
|
8221
7840
|
z.ZodTypeDef,
|
|
8222
|
-
|
|
7841
|
+
OneLte
|
|
8223
7842
|
> = z.object({
|
|
8224
|
-
|
|
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
|
|
8236
|
-
/** @deprecated use `
|
|
8237
|
-
export const inboundSchema =
|
|
8238
|
-
/** @deprecated use `
|
|
8239
|
-
export const outboundSchema =
|
|
8240
|
-
/** @deprecated use `
|
|
8241
|
-
export type 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
|
|
8245
|
-
return JSON.stringify(
|
|
7859
|
+
export function oneLteToJSON(oneLte: OneLte): string {
|
|
7860
|
+
return JSON.stringify(OneLte$outboundSchema.parse(oneLte));
|
|
8246
7861
|
}
|
|
8247
7862
|
|
|
8248
|
-
export function
|
|
7863
|
+
export function oneLteFromJSON(
|
|
8249
7864
|
jsonString: string,
|
|
8250
|
-
): SafeParseResult<
|
|
7865
|
+
): SafeParseResult<OneLte, SDKValidationError> {
|
|
8251
7866
|
return safeParse(
|
|
8252
7867
|
jsonString,
|
|
8253
|
-
(x) =>
|
|
8254
|
-
`Failed to parse '
|
|
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
|
|
8260
|
-
|
|
8261
|
-
|
|
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
|
|
8273
|
-
|
|
7880
|
+
export type OneLt$Outbound = {
|
|
7881
|
+
lt: number;
|
|
8274
7882
|
};
|
|
8275
7883
|
|
|
8276
7884
|
/** @internal */
|
|
8277
|
-
export const
|
|
8278
|
-
|
|
7885
|
+
export const OneLt$outboundSchema: z.ZodType<
|
|
7886
|
+
OneLt$Outbound,
|
|
8279
7887
|
z.ZodTypeDef,
|
|
8280
|
-
|
|
7888
|
+
OneLt
|
|
8281
7889
|
> = z.object({
|
|
8282
|
-
|
|
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
|
|
8294
|
-
/** @deprecated use `
|
|
8295
|
-
export const inboundSchema =
|
|
8296
|
-
/** @deprecated use `
|
|
8297
|
-
export const outboundSchema =
|
|
8298
|
-
/** @deprecated use `
|
|
8299
|
-
export type 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
|
|
8303
|
-
return JSON.stringify(
|
|
7906
|
+
export function oneLtToJSON(oneLt: OneLt): string {
|
|
7907
|
+
return JSON.stringify(OneLt$outboundSchema.parse(oneLt));
|
|
8304
7908
|
}
|
|
8305
7909
|
|
|
8306
|
-
export function
|
|
7910
|
+
export function oneLtFromJSON(
|
|
8307
7911
|
jsonString: string,
|
|
8308
|
-
): SafeParseResult<
|
|
7912
|
+
): SafeParseResult<OneLt, SDKValidationError> {
|
|
8309
7913
|
return safeParse(
|
|
8310
7914
|
jsonString,
|
|
8311
|
-
(x) =>
|
|
8312
|
-
`Failed to parse '
|
|
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
|
|
8318
|
-
|
|
8319
|
-
|
|
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
|
|
8331
|
-
|
|
7927
|
+
export type OneGte$Outbound = {
|
|
7928
|
+
gte: number;
|
|
8332
7929
|
};
|
|
8333
7930
|
|
|
8334
7931
|
/** @internal */
|
|
8335
|
-
export const
|
|
8336
|
-
|
|
7932
|
+
export const OneGte$outboundSchema: z.ZodType<
|
|
7933
|
+
OneGte$Outbound,
|
|
8337
7934
|
z.ZodTypeDef,
|
|
8338
|
-
|
|
7935
|
+
OneGte
|
|
8339
7936
|
> = z.object({
|
|
8340
|
-
|
|
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
|
|
8352
|
-
/** @deprecated use `
|
|
8353
|
-
export const inboundSchema =
|
|
8354
|
-
/** @deprecated use `
|
|
8355
|
-
export const outboundSchema =
|
|
8356
|
-
/** @deprecated use `
|
|
8357
|
-
export type 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
|
|
8361
|
-
return JSON.stringify(
|
|
7953
|
+
export function oneGteToJSON(oneGte: OneGte): string {
|
|
7954
|
+
return JSON.stringify(OneGte$outboundSchema.parse(oneGte));
|
|
8362
7955
|
}
|
|
8363
7956
|
|
|
8364
|
-
export function
|
|
7957
|
+
export function oneGteFromJSON(
|
|
8365
7958
|
jsonString: string,
|
|
8366
|
-
): SafeParseResult<
|
|
7959
|
+
): SafeParseResult<OneGte, SDKValidationError> {
|
|
8367
7960
|
return safeParse(
|
|
8368
7961
|
jsonString,
|
|
8369
|
-
(x) =>
|
|
8370
|
-
`Failed to parse '
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
8438
|
-
|
|
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
|
|
8445
|
-
| string
|
|
8446
|
-
| number
|
|
8447
|
-
| boolean;
|
|
8029
|
+
export type DeploymentStream1DeploymentsNe$Outbound = string | number | boolean;
|
|
8448
8030
|
|
|
8449
8031
|
/** @internal */
|
|
8450
|
-
export const
|
|
8451
|
-
|
|
8032
|
+
export const DeploymentStream1DeploymentsNe$outboundSchema: z.ZodType<
|
|
8033
|
+
DeploymentStream1DeploymentsNe$Outbound,
|
|
8452
8034
|
z.ZodTypeDef,
|
|
8453
|
-
|
|
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
|
|
8461
|
-
/** @deprecated use `
|
|
8462
|
-
export const inboundSchema =
|
|
8463
|
-
|
|
8464
|
-
|
|
8465
|
-
|
|
8466
|
-
|
|
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
|
|
8472
|
-
|
|
8051
|
+
export function deploymentStream1DeploymentsNeToJSON(
|
|
8052
|
+
deploymentStream1DeploymentsNe: DeploymentStream1DeploymentsNe,
|
|
8473
8053
|
): string {
|
|
8474
8054
|
return JSON.stringify(
|
|
8475
|
-
|
|
8476
|
-
|
|
8055
|
+
DeploymentStream1DeploymentsNe$outboundSchema.parse(
|
|
8056
|
+
deploymentStream1DeploymentsNe,
|
|
8477
8057
|
),
|
|
8478
8058
|
);
|
|
8479
8059
|
}
|
|
8480
8060
|
|
|
8481
|
-
export function
|
|
8061
|
+
export function deploymentStream1DeploymentsNeFromJSON(
|
|
8482
8062
|
jsonString: string,
|
|
8483
|
-
): SafeParseResult<
|
|
8063
|
+
): SafeParseResult<DeploymentStream1DeploymentsNe, SDKValidationError> {
|
|
8484
8064
|
return safeParse(
|
|
8485
8065
|
jsonString,
|
|
8486
|
-
(x) =>
|
|
8487
|
-
|
|
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
|
|
8494
|
-
|
|
8072
|
+
export const DeploymentStream1Ne$inboundSchema: z.ZodType<
|
|
8073
|
+
DeploymentStream1Ne,
|
|
8495
8074
|
z.ZodTypeDef,
|
|
8496
8075
|
unknown
|
|
8497
8076
|
> = z.object({
|
|
8498
|
-
|
|
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
|
|
8507
|
-
|
|
8081
|
+
export type DeploymentStream1Ne$Outbound = {
|
|
8082
|
+
ne: string | number | boolean;
|
|
8508
8083
|
};
|
|
8509
8084
|
|
|
8510
8085
|
/** @internal */
|
|
8511
|
-
export const
|
|
8512
|
-
|
|
8086
|
+
export const DeploymentStream1Ne$outboundSchema: z.ZodType<
|
|
8087
|
+
DeploymentStream1Ne$Outbound,
|
|
8513
8088
|
z.ZodTypeDef,
|
|
8514
|
-
|
|
8089
|
+
DeploymentStream1Ne
|
|
8515
8090
|
> = z.object({
|
|
8516
|
-
|
|
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
|
|
8528
|
-
/** @deprecated use `
|
|
8529
|
-
export const inboundSchema =
|
|
8530
|
-
/** @deprecated use `
|
|
8531
|
-
export const outboundSchema =
|
|
8532
|
-
/** @deprecated use `
|
|
8533
|
-
export type 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
|
|
8537
|
-
|
|
8107
|
+
export function deploymentStream1NeToJSON(
|
|
8108
|
+
deploymentStream1Ne: DeploymentStream1Ne,
|
|
8538
8109
|
): string {
|
|
8539
8110
|
return JSON.stringify(
|
|
8540
|
-
|
|
8111
|
+
DeploymentStream1Ne$outboundSchema.parse(deploymentStream1Ne),
|
|
8541
8112
|
);
|
|
8542
8113
|
}
|
|
8543
8114
|
|
|
8544
|
-
export function
|
|
8115
|
+
export function deploymentStream1NeFromJSON(
|
|
8545
8116
|
jsonString: string,
|
|
8546
|
-
): SafeParseResult<
|
|
8117
|
+
): SafeParseResult<DeploymentStream1Ne, SDKValidationError> {
|
|
8547
8118
|
return safeParse(
|
|
8548
8119
|
jsonString,
|
|
8549
|
-
(x) =>
|
|
8550
|
-
`Failed to parse '
|
|
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
|
|
8556
|
-
|
|
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
|
|
8563
|
-
| string
|
|
8564
|
-
| number
|
|
8565
|
-
| boolean;
|
|
8133
|
+
export type DeploymentStream1DeploymentsEq$Outbound = string | number | boolean;
|
|
8566
8134
|
|
|
8567
8135
|
/** @internal */
|
|
8568
|
-
export const
|
|
8569
|
-
|
|
8136
|
+
export const DeploymentStream1DeploymentsEq$outboundSchema: z.ZodType<
|
|
8137
|
+
DeploymentStream1DeploymentsEq$Outbound,
|
|
8570
8138
|
z.ZodTypeDef,
|
|
8571
|
-
|
|
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
|
|
8579
|
-
/** @deprecated use `
|
|
8580
|
-
export const inboundSchema =
|
|
8581
|
-
|
|
8582
|
-
|
|
8583
|
-
|
|
8584
|
-
|
|
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
|
|
8590
|
-
|
|
8155
|
+
export function deploymentStream1DeploymentsEqToJSON(
|
|
8156
|
+
deploymentStream1DeploymentsEq: DeploymentStream1DeploymentsEq,
|
|
8591
8157
|
): string {
|
|
8592
8158
|
return JSON.stringify(
|
|
8593
|
-
|
|
8594
|
-
|
|
8159
|
+
DeploymentStream1DeploymentsEq$outboundSchema.parse(
|
|
8160
|
+
deploymentStream1DeploymentsEq,
|
|
8595
8161
|
),
|
|
8596
8162
|
);
|
|
8597
8163
|
}
|
|
8598
8164
|
|
|
8599
|
-
export function
|
|
8165
|
+
export function deploymentStream1DeploymentsEqFromJSON(
|
|
8600
8166
|
jsonString: string,
|
|
8601
|
-
): SafeParseResult<
|
|
8167
|
+
): SafeParseResult<DeploymentStream1DeploymentsEq, SDKValidationError> {
|
|
8602
8168
|
return safeParse(
|
|
8603
8169
|
jsonString,
|
|
8604
|
-
(x) =>
|
|
8605
|
-
|
|
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
|
|
8612
|
-
|
|
8176
|
+
export const DeploymentStream1Eq$inboundSchema: z.ZodType<
|
|
8177
|
+
DeploymentStream1Eq,
|
|
8613
8178
|
z.ZodTypeDef,
|
|
8614
8179
|
unknown
|
|
8615
8180
|
> = z.object({
|
|
8616
|
-
|
|
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
|
|
8625
|
-
|
|
8185
|
+
export type DeploymentStream1Eq$Outbound = {
|
|
8186
|
+
eq: string | number | boolean;
|
|
8626
8187
|
};
|
|
8627
8188
|
|
|
8628
8189
|
/** @internal */
|
|
8629
|
-
export const
|
|
8630
|
-
|
|
8190
|
+
export const DeploymentStream1Eq$outboundSchema: z.ZodType<
|
|
8191
|
+
DeploymentStream1Eq$Outbound,
|
|
8631
8192
|
z.ZodTypeDef,
|
|
8632
|
-
|
|
8193
|
+
DeploymentStream1Eq
|
|
8633
8194
|
> = z.object({
|
|
8634
|
-
|
|
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
|
|
8646
|
-
/** @deprecated use `
|
|
8647
|
-
export const inboundSchema =
|
|
8648
|
-
/** @deprecated use `
|
|
8649
|
-
export const outboundSchema =
|
|
8650
|
-
/** @deprecated use `
|
|
8651
|
-
export type 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
|
|
8655
|
-
|
|
8211
|
+
export function deploymentStream1EqToJSON(
|
|
8212
|
+
deploymentStream1Eq: DeploymentStream1Eq,
|
|
8656
8213
|
): string {
|
|
8657
8214
|
return JSON.stringify(
|
|
8658
|
-
|
|
8215
|
+
DeploymentStream1Eq$outboundSchema.parse(deploymentStream1Eq),
|
|
8659
8216
|
);
|
|
8660
8217
|
}
|
|
8661
8218
|
|
|
8662
|
-
export function
|
|
8219
|
+
export function deploymentStream1EqFromJSON(
|
|
8663
8220
|
jsonString: string,
|
|
8664
|
-
): SafeParseResult<
|
|
8221
|
+
): SafeParseResult<DeploymentStream1Eq, SDKValidationError> {
|
|
8665
8222
|
return safeParse(
|
|
8666
8223
|
jsonString,
|
|
8667
|
-
(x) =>
|
|
8668
|
-
`Failed to parse '
|
|
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(() =>
|
|
8679
|
-
z.lazy(() =>
|
|
8235
|
+
z.lazy(() => DeploymentStream1Eq$inboundSchema),
|
|
8236
|
+
z.lazy(() => DeploymentStream1Ne$inboundSchema),
|
|
8680
8237
|
z.lazy(() => DeploymentStream13$inboundSchema),
|
|
8681
|
-
z.lazy(() =>
|
|
8682
|
-
z.lazy(() =>
|
|
8683
|
-
z.lazy(() =>
|
|
8684
|
-
z.lazy(() =>
|
|
8685
|
-
z.lazy(() =>
|
|
8686
|
-
z.lazy(() =>
|
|
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
|
-
|
|
|
8692
|
-
|
|
|
8248
|
+
| DeploymentStream1Eq$Outbound
|
|
8249
|
+
| DeploymentStream1Ne$Outbound
|
|
8693
8250
|
| DeploymentStream13$Outbound
|
|
8694
|
-
|
|
|
8695
|
-
|
|
|
8696
|
-
|
|
|
8697
|
-
|
|
|
8698
|
-
|
|
|
8699
|
-
|
|
|
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(() =>
|
|
8708
|
-
z.lazy(() =>
|
|
8264
|
+
z.lazy(() => DeploymentStream1Eq$outboundSchema),
|
|
8265
|
+
z.lazy(() => DeploymentStream1Ne$outboundSchema),
|
|
8709
8266
|
z.lazy(() => DeploymentStream13$outboundSchema),
|
|
8710
|
-
z.lazy(() =>
|
|
8711
|
-
z.lazy(() =>
|
|
8712
|
-
z.lazy(() =>
|
|
8713
|
-
z.lazy(() =>
|
|
8714
|
-
z.lazy(() =>
|
|
8715
|
-
z.lazy(() =>
|
|
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(() =>
|
|
8758
|
-
z.lazy(() =>
|
|
8759
|
-
z.record(
|
|
8760
|
-
z.
|
|
8761
|
-
|
|
8762
|
-
|
|
8763
|
-
|
|
8764
|
-
|
|
8765
|
-
|
|
8766
|
-
|
|
8767
|
-
|
|
8768
|
-
|
|
8769
|
-
|
|
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
|
-
|
|
|
8777
|
-
|
|
|
8331
|
+
| DeploymentStreamKnowledgeFilterAnd$Outbound
|
|
8332
|
+
| DeploymentStreamKnowledgeFilterOr$Outbound
|
|
8778
8333
|
| {
|
|
8779
8334
|
[k: string]:
|
|
8780
|
-
|
|
|
8781
|
-
|
|
|
8335
|
+
| DeploymentStream1Eq$Outbound
|
|
8336
|
+
| DeploymentStream1Ne$Outbound
|
|
8782
8337
|
| DeploymentStream13$Outbound
|
|
8783
|
-
|
|
|
8784
|
-
|
|
|
8785
|
-
|
|
|
8786
|
-
|
|
|
8787
|
-
|
|
|
8788
|
-
|
|
|
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(() =>
|
|
8798
|
-
z.lazy(() =>
|
|
8799
|
-
z.record(
|
|
8800
|
-
z.
|
|
8801
|
-
|
|
8802
|
-
|
|
8803
|
-
|
|
8804
|
-
|
|
8805
|
-
|
|
8806
|
-
|
|
8807
|
-
|
|
8808
|
-
|
|
8809
|
-
|
|
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(() =>
|
|
8884
|
-
z.lazy(() =>
|
|
8436
|
+
z.lazy(() => DeploymentStreamKnowledgeFilterAnd$inboundSchema),
|
|
8437
|
+
z.lazy(() => DeploymentStreamKnowledgeFilterOr$inboundSchema),
|
|
8885
8438
|
z.record(
|
|
8886
8439
|
z.union([
|
|
8887
|
-
z.lazy(() =>
|
|
8888
|
-
z.lazy(() =>
|
|
8440
|
+
z.lazy(() => DeploymentStream1Eq$inboundSchema),
|
|
8441
|
+
z.lazy(() => DeploymentStream1Ne$inboundSchema),
|
|
8889
8442
|
z.lazy(() => DeploymentStream13$inboundSchema),
|
|
8890
|
-
z.lazy(() =>
|
|
8891
|
-
z.lazy(() =>
|
|
8892
|
-
z.lazy(() =>
|
|
8893
|
-
z.lazy(() =>
|
|
8894
|
-
z.lazy(() =>
|
|
8895
|
-
z.lazy(() =>
|
|
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
|
-
|
|
|
8940
|
-
|
|
|
8492
|
+
| DeploymentStreamKnowledgeFilterAnd$Outbound
|
|
8493
|
+
| DeploymentStreamKnowledgeFilterOr$Outbound
|
|
8941
8494
|
| {
|
|
8942
8495
|
[k: string]:
|
|
8943
|
-
|
|
|
8944
|
-
|
|
|
8496
|
+
| DeploymentStream1Eq$Outbound
|
|
8497
|
+
| DeploymentStream1Ne$Outbound
|
|
8945
8498
|
| DeploymentStream13$Outbound
|
|
8946
|
-
|
|
|
8947
|
-
|
|
|
8948
|
-
|
|
|
8949
|
-
|
|
|
8950
|
-
|
|
|
8951
|
-
|
|
|
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(() =>
|
|
8993
|
-
z.lazy(() =>
|
|
8545
|
+
z.lazy(() => DeploymentStreamKnowledgeFilterAnd$outboundSchema),
|
|
8546
|
+
z.lazy(() => DeploymentStreamKnowledgeFilterOr$outboundSchema),
|
|
8994
8547
|
z.record(
|
|
8995
8548
|
z.union([
|
|
8996
|
-
z.lazy(() =>
|
|
8997
|
-
z.lazy(() =>
|
|
8549
|
+
z.lazy(() => DeploymentStream1Eq$outboundSchema),
|
|
8550
|
+
z.lazy(() => DeploymentStream1Ne$outboundSchema),
|
|
8998
8551
|
z.lazy(() => DeploymentStream13$outboundSchema),
|
|
8999
|
-
z.lazy(() =>
|
|
9000
|
-
z.lazy(() =>
|
|
9001
|
-
z.lazy(() =>
|
|
9002
|
-
z.lazy(() =>
|
|
9003
|
-
z.lazy(() =>
|
|
9004
|
-
z.lazy(() =>
|
|
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(),
|