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