@orq-ai/node 3.5.21 → 3.5.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +1018 -971
- package/bin/mcp-server.js.map +33 -24
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/bulkcreatedatapoints.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/package.json +2 -2
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +6 -6
- package/packages/orq-rc/package.json +2 -2
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/deployments.ts +1217 -1677
- package/packages/orq-rc/src/models/operations/bulkcreatedatapoints.ts +416 -12
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +410 -13
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createprompt.ts +400 -12
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +1413 -1729
- package/packages/orq-rc/src/models/operations/deployments.ts +211 -23
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +1314 -1761
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getallprompts.ts +200 -6
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +195 -6
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +204 -6
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +207 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +202 -6
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +204 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +1334 -1750
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +412 -14
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateprompt.ts +400 -12
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/bulkcreatedatapoints.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
|
@@ -867,98 +867,98 @@ export type Thread = {
|
|
|
867
867
|
/**
|
|
868
868
|
* Exists
|
|
869
869
|
*/
|
|
870
|
-
export type
|
|
871
|
-
|
|
870
|
+
export type OrExists = {
|
|
871
|
+
exists: boolean;
|
|
872
872
|
};
|
|
873
873
|
|
|
874
|
-
export type
|
|
874
|
+
export type OrNin = string | number | boolean;
|
|
875
875
|
|
|
876
876
|
/**
|
|
877
877
|
* Not in
|
|
878
878
|
*/
|
|
879
|
-
export type
|
|
880
|
-
|
|
879
|
+
export type DeploymentsOrNin = {
|
|
880
|
+
nin: Array<string | number | boolean>;
|
|
881
881
|
};
|
|
882
882
|
|
|
883
|
-
export type
|
|
883
|
+
export type OrIn = string | number | boolean;
|
|
884
884
|
|
|
885
885
|
/**
|
|
886
886
|
* In
|
|
887
887
|
*/
|
|
888
|
-
export type
|
|
889
|
-
|
|
888
|
+
export type DeploymentsOrIn = {
|
|
889
|
+
in: Array<string | number | boolean>;
|
|
890
890
|
};
|
|
891
891
|
|
|
892
892
|
/**
|
|
893
893
|
* Less than or equal to
|
|
894
894
|
*/
|
|
895
|
-
export type
|
|
896
|
-
|
|
895
|
+
export type OrLte = {
|
|
896
|
+
lte: number;
|
|
897
897
|
};
|
|
898
898
|
|
|
899
899
|
/**
|
|
900
900
|
* Less than
|
|
901
901
|
*/
|
|
902
|
-
export type
|
|
903
|
-
|
|
902
|
+
export type OrLt = {
|
|
903
|
+
lt: number;
|
|
904
904
|
};
|
|
905
905
|
|
|
906
906
|
/**
|
|
907
907
|
* Greater than or equal to
|
|
908
908
|
*/
|
|
909
|
-
export type
|
|
910
|
-
|
|
909
|
+
export type OrGte = {
|
|
910
|
+
gte: number;
|
|
911
911
|
};
|
|
912
912
|
|
|
913
|
-
export type
|
|
914
|
-
|
|
913
|
+
export type Or3 = {
|
|
914
|
+
gt: number;
|
|
915
915
|
};
|
|
916
916
|
|
|
917
|
-
export type
|
|
917
|
+
export type OrNe = string | number | boolean;
|
|
918
918
|
|
|
919
919
|
/**
|
|
920
920
|
* Not equal to
|
|
921
921
|
*/
|
|
922
|
-
export type
|
|
923
|
-
|
|
922
|
+
export type DeploymentsOrNe = {
|
|
923
|
+
ne: string | number | boolean;
|
|
924
924
|
};
|
|
925
925
|
|
|
926
|
-
export type
|
|
926
|
+
export type OrEq = string | number | boolean;
|
|
927
927
|
|
|
928
928
|
/**
|
|
929
929
|
* Equal to
|
|
930
930
|
*/
|
|
931
|
-
export type
|
|
932
|
-
|
|
931
|
+
export type DeploymentsOrEq = {
|
|
932
|
+
eq: string | number | boolean;
|
|
933
933
|
};
|
|
934
934
|
|
|
935
|
-
export type
|
|
936
|
-
|
|
|
937
|
-
|
|
|
938
|
-
|
|
|
939
|
-
|
|
|
940
|
-
|
|
|
941
|
-
|
|
|
942
|
-
|
|
|
943
|
-
|
|
|
944
|
-
|
|
|
935
|
+
export type Or =
|
|
936
|
+
| DeploymentsOrEq
|
|
937
|
+
| DeploymentsOrNe
|
|
938
|
+
| Or3
|
|
939
|
+
| OrGte
|
|
940
|
+
| OrLt
|
|
941
|
+
| OrLte
|
|
942
|
+
| DeploymentsOrIn
|
|
943
|
+
| DeploymentsOrNin
|
|
944
|
+
| OrExists;
|
|
945
945
|
|
|
946
946
|
/**
|
|
947
947
|
* Or
|
|
948
948
|
*/
|
|
949
|
-
export type
|
|
950
|
-
|
|
949
|
+
export type KnowledgeFilterOr = {
|
|
950
|
+
or: Array<
|
|
951
951
|
{
|
|
952
952
|
[k: string]:
|
|
953
|
-
|
|
|
954
|
-
|
|
|
955
|
-
|
|
|
956
|
-
|
|
|
957
|
-
|
|
|
958
|
-
|
|
|
959
|
-
|
|
|
960
|
-
|
|
|
961
|
-
|
|
|
953
|
+
| DeploymentsOrEq
|
|
954
|
+
| DeploymentsOrNe
|
|
955
|
+
| Or3
|
|
956
|
+
| OrGte
|
|
957
|
+
| OrLt
|
|
958
|
+
| OrLte
|
|
959
|
+
| DeploymentsOrIn
|
|
960
|
+
| DeploymentsOrNin
|
|
961
|
+
| OrExists;
|
|
962
962
|
}
|
|
963
963
|
>;
|
|
964
964
|
};
|
|
@@ -966,98 +966,98 @@ export type KnowledgeFilterDollarOr = {
|
|
|
966
966
|
/**
|
|
967
967
|
* Exists
|
|
968
968
|
*/
|
|
969
|
-
export type
|
|
970
|
-
|
|
969
|
+
export type AndExists = {
|
|
970
|
+
exists: boolean;
|
|
971
971
|
};
|
|
972
972
|
|
|
973
|
-
export type
|
|
973
|
+
export type AndNin = string | number | boolean;
|
|
974
974
|
|
|
975
975
|
/**
|
|
976
976
|
* Not in
|
|
977
977
|
*/
|
|
978
|
-
export type
|
|
979
|
-
|
|
978
|
+
export type DeploymentsAndNin = {
|
|
979
|
+
nin: Array<string | number | boolean>;
|
|
980
980
|
};
|
|
981
981
|
|
|
982
|
-
export type
|
|
982
|
+
export type AndIn = string | number | boolean;
|
|
983
983
|
|
|
984
984
|
/**
|
|
985
985
|
* In
|
|
986
986
|
*/
|
|
987
|
-
export type
|
|
988
|
-
|
|
987
|
+
export type DeploymentsAndIn = {
|
|
988
|
+
in: Array<string | number | boolean>;
|
|
989
989
|
};
|
|
990
990
|
|
|
991
991
|
/**
|
|
992
992
|
* Less than or equal to
|
|
993
993
|
*/
|
|
994
|
-
export type
|
|
995
|
-
|
|
994
|
+
export type AndLte = {
|
|
995
|
+
lte: number;
|
|
996
996
|
};
|
|
997
997
|
|
|
998
998
|
/**
|
|
999
999
|
* Less than
|
|
1000
1000
|
*/
|
|
1001
|
-
export type
|
|
1002
|
-
|
|
1001
|
+
export type AndLt = {
|
|
1002
|
+
lt: number;
|
|
1003
1003
|
};
|
|
1004
1004
|
|
|
1005
1005
|
/**
|
|
1006
1006
|
* Greater than or equal to
|
|
1007
1007
|
*/
|
|
1008
|
-
export type
|
|
1009
|
-
|
|
1008
|
+
export type AndGte = {
|
|
1009
|
+
gte: number;
|
|
1010
1010
|
};
|
|
1011
1011
|
|
|
1012
|
-
export type
|
|
1013
|
-
|
|
1012
|
+
export type And3 = {
|
|
1013
|
+
gt: number;
|
|
1014
1014
|
};
|
|
1015
1015
|
|
|
1016
|
-
export type
|
|
1016
|
+
export type AndNe = string | number | boolean;
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
1019
|
* Not equal to
|
|
1020
1020
|
*/
|
|
1021
|
-
export type
|
|
1022
|
-
|
|
1021
|
+
export type DeploymentsAndNe = {
|
|
1022
|
+
ne: string | number | boolean;
|
|
1023
1023
|
};
|
|
1024
1024
|
|
|
1025
|
-
export type
|
|
1025
|
+
export type AndEq = string | number | boolean;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* Equal to
|
|
1029
1029
|
*/
|
|
1030
|
-
export type
|
|
1031
|
-
|
|
1030
|
+
export type DeploymentsAndEq = {
|
|
1031
|
+
eq: string | number | boolean;
|
|
1032
1032
|
};
|
|
1033
1033
|
|
|
1034
|
-
export type
|
|
1035
|
-
|
|
|
1036
|
-
|
|
|
1037
|
-
|
|
|
1038
|
-
|
|
|
1039
|
-
|
|
|
1040
|
-
|
|
|
1041
|
-
|
|
|
1042
|
-
|
|
|
1043
|
-
|
|
|
1034
|
+
export type And =
|
|
1035
|
+
| DeploymentsAndEq
|
|
1036
|
+
| DeploymentsAndNe
|
|
1037
|
+
| And3
|
|
1038
|
+
| AndGte
|
|
1039
|
+
| AndLt
|
|
1040
|
+
| AndLte
|
|
1041
|
+
| DeploymentsAndIn
|
|
1042
|
+
| DeploymentsAndNin
|
|
1043
|
+
| AndExists;
|
|
1044
1044
|
|
|
1045
1045
|
/**
|
|
1046
1046
|
* And
|
|
1047
1047
|
*/
|
|
1048
|
-
export type
|
|
1049
|
-
|
|
1048
|
+
export type KnowledgeFilterAnd = {
|
|
1049
|
+
and: Array<
|
|
1050
1050
|
{
|
|
1051
1051
|
[k: string]:
|
|
1052
|
-
|
|
|
1053
|
-
|
|
|
1054
|
-
|
|
|
1055
|
-
|
|
|
1056
|
-
|
|
|
1057
|
-
|
|
|
1058
|
-
|
|
|
1059
|
-
|
|
|
1060
|
-
|
|
|
1052
|
+
| DeploymentsAndEq
|
|
1053
|
+
| DeploymentsAndNe
|
|
1054
|
+
| And3
|
|
1055
|
+
| AndGte
|
|
1056
|
+
| AndLt
|
|
1057
|
+
| AndLte
|
|
1058
|
+
| DeploymentsAndIn
|
|
1059
|
+
| DeploymentsAndNin
|
|
1060
|
+
| AndExists;
|
|
1061
1061
|
}
|
|
1062
1062
|
>;
|
|
1063
1063
|
};
|
|
@@ -1065,100 +1065,88 @@ export type KnowledgeFilterDollarAnd = {
|
|
|
1065
1065
|
/**
|
|
1066
1066
|
* Exists
|
|
1067
1067
|
*/
|
|
1068
|
-
export type
|
|
1069
|
-
|
|
1068
|
+
export type Exists = {
|
|
1069
|
+
exists: boolean;
|
|
1070
1070
|
};
|
|
1071
1071
|
|
|
1072
|
-
export type
|
|
1072
|
+
export type Nin = string | number | boolean;
|
|
1073
1073
|
|
|
1074
1074
|
/**
|
|
1075
1075
|
* Not in
|
|
1076
1076
|
*/
|
|
1077
|
-
export type
|
|
1078
|
-
|
|
1077
|
+
export type OneNin = {
|
|
1078
|
+
nin: Array<string | number | boolean>;
|
|
1079
1079
|
};
|
|
1080
1080
|
|
|
1081
|
-
export type
|
|
1081
|
+
export type In = string | number | boolean;
|
|
1082
1082
|
|
|
1083
1083
|
/**
|
|
1084
1084
|
* In
|
|
1085
1085
|
*/
|
|
1086
|
-
export type
|
|
1087
|
-
|
|
1086
|
+
export type OneIn = {
|
|
1087
|
+
in: Array<string | number | boolean>;
|
|
1088
1088
|
};
|
|
1089
1089
|
|
|
1090
1090
|
/**
|
|
1091
1091
|
* Less than or equal to
|
|
1092
1092
|
*/
|
|
1093
|
-
export type
|
|
1094
|
-
|
|
1093
|
+
export type Lte = {
|
|
1094
|
+
lte: number;
|
|
1095
1095
|
};
|
|
1096
1096
|
|
|
1097
1097
|
/**
|
|
1098
1098
|
* Less than
|
|
1099
1099
|
*/
|
|
1100
|
-
export type
|
|
1101
|
-
|
|
1100
|
+
export type Lt = {
|
|
1101
|
+
lt: number;
|
|
1102
1102
|
};
|
|
1103
1103
|
|
|
1104
1104
|
/**
|
|
1105
1105
|
* Greater than or equal to
|
|
1106
1106
|
*/
|
|
1107
|
-
export type
|
|
1108
|
-
|
|
1107
|
+
export type Gte = {
|
|
1108
|
+
gte: number;
|
|
1109
1109
|
};
|
|
1110
1110
|
|
|
1111
1111
|
export type Three = {
|
|
1112
|
-
|
|
1112
|
+
gt: number;
|
|
1113
1113
|
};
|
|
1114
1114
|
|
|
1115
|
-
export type
|
|
1115
|
+
export type Ne = string | number | boolean;
|
|
1116
1116
|
|
|
1117
1117
|
/**
|
|
1118
1118
|
* Not equal to
|
|
1119
1119
|
*/
|
|
1120
|
-
export type
|
|
1121
|
-
|
|
1120
|
+
export type OneNe = {
|
|
1121
|
+
ne: string | number | boolean;
|
|
1122
1122
|
};
|
|
1123
1123
|
|
|
1124
|
-
export type
|
|
1124
|
+
export type Eq = string | number | boolean;
|
|
1125
1125
|
|
|
1126
1126
|
/**
|
|
1127
1127
|
* Equal to
|
|
1128
1128
|
*/
|
|
1129
|
-
export type
|
|
1130
|
-
|
|
1129
|
+
export type OneEq = {
|
|
1130
|
+
eq: string | number | boolean;
|
|
1131
1131
|
};
|
|
1132
1132
|
|
|
1133
1133
|
export type One =
|
|
1134
|
-
|
|
|
1135
|
-
|
|
|
1134
|
+
| OneEq
|
|
1135
|
+
| OneNe
|
|
1136
1136
|
| Three
|
|
1137
|
-
|
|
|
1138
|
-
|
|
|
1139
|
-
|
|
|
1140
|
-
|
|
|
1141
|
-
|
|
|
1142
|
-
|
|
|
1137
|
+
| Gte
|
|
1138
|
+
| Lt
|
|
1139
|
+
| Lte
|
|
1140
|
+
| OneIn
|
|
1141
|
+
| OneNin
|
|
1142
|
+
| Exists;
|
|
1143
1143
|
|
|
1144
1144
|
/**
|
|
1145
1145
|
* A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
|
|
1146
1146
|
*/
|
|
1147
|
-
export type KnowledgeFilter =
|
|
1148
|
-
|
|
|
1149
|
-
|
|
1150
|
-
| {
|
|
1151
|
-
[k: string]:
|
|
1152
|
-
| OneDollarEq
|
|
1153
|
-
| OneDollarNe
|
|
1154
|
-
| Three
|
|
1155
|
-
| DollarGte
|
|
1156
|
-
| DollarLt
|
|
1157
|
-
| DollarLte
|
|
1158
|
-
| OneDollarIn
|
|
1159
|
-
| OneDollarNin
|
|
1160
|
-
| DollarExists;
|
|
1161
|
-
};
|
|
1147
|
+
export type KnowledgeFilter = KnowledgeFilterAnd | KnowledgeFilterOr | {
|
|
1148
|
+
[k: string]: OneEq | OneNe | Three | Gte | Lt | Lte | OneIn | OneNin | Exists;
|
|
1149
|
+
};
|
|
1162
1150
|
|
|
1163
1151
|
/**
|
|
1164
1152
|
* The deployment request payload
|
|
@@ -1221,17 +1209,17 @@ export type Deployments = {
|
|
|
1221
1209
|
/**
|
|
1222
1210
|
* A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
|
|
1223
1211
|
*/
|
|
1224
|
-
knowledgeFilter?:
|
|
1212
|
+
knowledgeFilter?: KnowledgeFilterAnd | KnowledgeFilterOr | {
|
|
1225
1213
|
[k: string]:
|
|
1226
|
-
|
|
|
1227
|
-
|
|
|
1214
|
+
| OneEq
|
|
1215
|
+
| OneNe
|
|
1228
1216
|
| Three
|
|
1229
|
-
|
|
|
1230
|
-
|
|
|
1231
|
-
|
|
|
1232
|
-
|
|
|
1233
|
-
|
|
|
1234
|
-
|
|
|
1217
|
+
| Gte
|
|
1218
|
+
| Lt
|
|
1219
|
+
| Lte
|
|
1220
|
+
| OneIn
|
|
1221
|
+
| OneNin
|
|
1222
|
+
| Exists;
|
|
1235
1223
|
} | undefined;
|
|
1236
1224
|
};
|
|
1237
1225
|
|
|
@@ -4844,2314 +4832,1902 @@ export function threadFromJSON(
|
|
|
4844
4832
|
}
|
|
4845
4833
|
|
|
4846
4834
|
/** @internal */
|
|
4847
|
-
export const
|
|
4848
|
-
|
|
4835
|
+
export const OrExists$inboundSchema: z.ZodType<
|
|
4836
|
+
OrExists,
|
|
4849
4837
|
z.ZodTypeDef,
|
|
4850
4838
|
unknown
|
|
4851
4839
|
> = z.object({
|
|
4852
|
-
|
|
4853
|
-
}).transform((v) => {
|
|
4854
|
-
return remap$(v, {
|
|
4855
|
-
"$exists": "dollarExists",
|
|
4856
|
-
});
|
|
4840
|
+
exists: z.boolean(),
|
|
4857
4841
|
});
|
|
4858
4842
|
|
|
4859
4843
|
/** @internal */
|
|
4860
|
-
export type
|
|
4861
|
-
|
|
4844
|
+
export type OrExists$Outbound = {
|
|
4845
|
+
exists: boolean;
|
|
4862
4846
|
};
|
|
4863
4847
|
|
|
4864
4848
|
/** @internal */
|
|
4865
|
-
export const
|
|
4866
|
-
|
|
4849
|
+
export const OrExists$outboundSchema: z.ZodType<
|
|
4850
|
+
OrExists$Outbound,
|
|
4867
4851
|
z.ZodTypeDef,
|
|
4868
|
-
|
|
4852
|
+
OrExists
|
|
4869
4853
|
> = z.object({
|
|
4870
|
-
|
|
4871
|
-
}).transform((v) => {
|
|
4872
|
-
return remap$(v, {
|
|
4873
|
-
dollarExists: "$exists",
|
|
4874
|
-
});
|
|
4854
|
+
exists: z.boolean(),
|
|
4875
4855
|
});
|
|
4876
4856
|
|
|
4877
4857
|
/**
|
|
4878
4858
|
* @internal
|
|
4879
4859
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4880
4860
|
*/
|
|
4881
|
-
export namespace
|
|
4882
|
-
/** @deprecated use `
|
|
4883
|
-
export const inboundSchema =
|
|
4884
|
-
/** @deprecated use `
|
|
4885
|
-
export const outboundSchema =
|
|
4886
|
-
/** @deprecated use `
|
|
4887
|
-
export type Outbound =
|
|
4861
|
+
export namespace OrExists$ {
|
|
4862
|
+
/** @deprecated use `OrExists$inboundSchema` instead. */
|
|
4863
|
+
export const inboundSchema = OrExists$inboundSchema;
|
|
4864
|
+
/** @deprecated use `OrExists$outboundSchema` instead. */
|
|
4865
|
+
export const outboundSchema = OrExists$outboundSchema;
|
|
4866
|
+
/** @deprecated use `OrExists$Outbound` instead. */
|
|
4867
|
+
export type Outbound = OrExists$Outbound;
|
|
4888
4868
|
}
|
|
4889
4869
|
|
|
4890
|
-
export function
|
|
4891
|
-
|
|
4892
|
-
): string {
|
|
4893
|
-
return JSON.stringify(
|
|
4894
|
-
DollarOrDollarExists$outboundSchema.parse(dollarOrDollarExists),
|
|
4895
|
-
);
|
|
4870
|
+
export function orExistsToJSON(orExists: OrExists): string {
|
|
4871
|
+
return JSON.stringify(OrExists$outboundSchema.parse(orExists));
|
|
4896
4872
|
}
|
|
4897
4873
|
|
|
4898
|
-
export function
|
|
4874
|
+
export function orExistsFromJSON(
|
|
4899
4875
|
jsonString: string,
|
|
4900
|
-
): SafeParseResult<
|
|
4876
|
+
): SafeParseResult<OrExists, SDKValidationError> {
|
|
4901
4877
|
return safeParse(
|
|
4902
4878
|
jsonString,
|
|
4903
|
-
(x) =>
|
|
4904
|
-
`Failed to parse '
|
|
4879
|
+
(x) => OrExists$inboundSchema.parse(JSON.parse(x)),
|
|
4880
|
+
`Failed to parse 'OrExists' from JSON`,
|
|
4905
4881
|
);
|
|
4906
4882
|
}
|
|
4907
4883
|
|
|
4908
4884
|
/** @internal */
|
|
4909
|
-
export const
|
|
4910
|
-
|
|
4911
|
-
z.ZodTypeDef,
|
|
4912
|
-
unknown
|
|
4913
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
4885
|
+
export const OrNin$inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown> = z
|
|
4886
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
4914
4887
|
|
|
4915
4888
|
/** @internal */
|
|
4916
|
-
export type
|
|
4889
|
+
export type OrNin$Outbound = string | number | boolean;
|
|
4917
4890
|
|
|
4918
4891
|
/** @internal */
|
|
4919
|
-
export const
|
|
4920
|
-
|
|
4892
|
+
export const OrNin$outboundSchema: z.ZodType<
|
|
4893
|
+
OrNin$Outbound,
|
|
4921
4894
|
z.ZodTypeDef,
|
|
4922
|
-
|
|
4895
|
+
OrNin
|
|
4923
4896
|
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
4924
4897
|
|
|
4925
4898
|
/**
|
|
4926
4899
|
* @internal
|
|
4927
4900
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4928
4901
|
*/
|
|
4929
|
-
export namespace
|
|
4930
|
-
/** @deprecated use `
|
|
4931
|
-
export const inboundSchema =
|
|
4932
|
-
/** @deprecated use `
|
|
4933
|
-
export const outboundSchema =
|
|
4934
|
-
/** @deprecated use `
|
|
4935
|
-
export type Outbound =
|
|
4902
|
+
export namespace OrNin$ {
|
|
4903
|
+
/** @deprecated use `OrNin$inboundSchema` instead. */
|
|
4904
|
+
export const inboundSchema = OrNin$inboundSchema;
|
|
4905
|
+
/** @deprecated use `OrNin$outboundSchema` instead. */
|
|
4906
|
+
export const outboundSchema = OrNin$outboundSchema;
|
|
4907
|
+
/** @deprecated use `OrNin$Outbound` instead. */
|
|
4908
|
+
export type Outbound = OrNin$Outbound;
|
|
4936
4909
|
}
|
|
4937
4910
|
|
|
4938
|
-
export function
|
|
4939
|
-
|
|
4940
|
-
): string {
|
|
4941
|
-
return JSON.stringify(
|
|
4942
|
-
DollarOrDollarNin$outboundSchema.parse(dollarOrDollarNin),
|
|
4943
|
-
);
|
|
4911
|
+
export function orNinToJSON(orNin: OrNin): string {
|
|
4912
|
+
return JSON.stringify(OrNin$outboundSchema.parse(orNin));
|
|
4944
4913
|
}
|
|
4945
4914
|
|
|
4946
|
-
export function
|
|
4915
|
+
export function orNinFromJSON(
|
|
4947
4916
|
jsonString: string,
|
|
4948
|
-
): SafeParseResult<
|
|
4917
|
+
): SafeParseResult<OrNin, SDKValidationError> {
|
|
4949
4918
|
return safeParse(
|
|
4950
4919
|
jsonString,
|
|
4951
|
-
(x) =>
|
|
4952
|
-
`Failed to parse '
|
|
4920
|
+
(x) => OrNin$inboundSchema.parse(JSON.parse(x)),
|
|
4921
|
+
`Failed to parse 'OrNin' from JSON`,
|
|
4953
4922
|
);
|
|
4954
4923
|
}
|
|
4955
4924
|
|
|
4956
4925
|
/** @internal */
|
|
4957
|
-
export const
|
|
4958
|
-
|
|
4926
|
+
export const DeploymentsOrNin$inboundSchema: z.ZodType<
|
|
4927
|
+
DeploymentsOrNin,
|
|
4959
4928
|
z.ZodTypeDef,
|
|
4960
4929
|
unknown
|
|
4961
4930
|
> = z.object({
|
|
4962
|
-
|
|
4963
|
-
}).transform((v) => {
|
|
4964
|
-
return remap$(v, {
|
|
4965
|
-
"$nin": "dollarNin",
|
|
4966
|
-
});
|
|
4931
|
+
nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
4967
4932
|
});
|
|
4968
4933
|
|
|
4969
4934
|
/** @internal */
|
|
4970
|
-
export type
|
|
4971
|
-
|
|
4935
|
+
export type DeploymentsOrNin$Outbound = {
|
|
4936
|
+
nin: Array<string | number | boolean>;
|
|
4972
4937
|
};
|
|
4973
4938
|
|
|
4974
4939
|
/** @internal */
|
|
4975
|
-
export const
|
|
4976
|
-
|
|
4940
|
+
export const DeploymentsOrNin$outboundSchema: z.ZodType<
|
|
4941
|
+
DeploymentsOrNin$Outbound,
|
|
4977
4942
|
z.ZodTypeDef,
|
|
4978
|
-
|
|
4943
|
+
DeploymentsOrNin
|
|
4979
4944
|
> = z.object({
|
|
4980
|
-
|
|
4981
|
-
}).transform((v) => {
|
|
4982
|
-
return remap$(v, {
|
|
4983
|
-
dollarNin: "$nin",
|
|
4984
|
-
});
|
|
4945
|
+
nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
4985
4946
|
});
|
|
4986
4947
|
|
|
4987
4948
|
/**
|
|
4988
4949
|
* @internal
|
|
4989
4950
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4990
4951
|
*/
|
|
4991
|
-
export namespace
|
|
4992
|
-
/** @deprecated use `
|
|
4993
|
-
export const inboundSchema =
|
|
4994
|
-
/** @deprecated use `
|
|
4995
|
-
export const outboundSchema =
|
|
4996
|
-
/** @deprecated use `
|
|
4997
|
-
export type Outbound =
|
|
4952
|
+
export namespace DeploymentsOrNin$ {
|
|
4953
|
+
/** @deprecated use `DeploymentsOrNin$inboundSchema` instead. */
|
|
4954
|
+
export const inboundSchema = DeploymentsOrNin$inboundSchema;
|
|
4955
|
+
/** @deprecated use `DeploymentsOrNin$outboundSchema` instead. */
|
|
4956
|
+
export const outboundSchema = DeploymentsOrNin$outboundSchema;
|
|
4957
|
+
/** @deprecated use `DeploymentsOrNin$Outbound` instead. */
|
|
4958
|
+
export type Outbound = DeploymentsOrNin$Outbound;
|
|
4998
4959
|
}
|
|
4999
4960
|
|
|
5000
|
-
export function
|
|
5001
|
-
|
|
4961
|
+
export function deploymentsOrNinToJSON(
|
|
4962
|
+
deploymentsOrNin: DeploymentsOrNin,
|
|
5002
4963
|
): string {
|
|
5003
4964
|
return JSON.stringify(
|
|
5004
|
-
|
|
5005
|
-
deploymentsDollarOrDollarNin,
|
|
5006
|
-
),
|
|
4965
|
+
DeploymentsOrNin$outboundSchema.parse(deploymentsOrNin),
|
|
5007
4966
|
);
|
|
5008
4967
|
}
|
|
5009
4968
|
|
|
5010
|
-
export function
|
|
4969
|
+
export function deploymentsOrNinFromJSON(
|
|
5011
4970
|
jsonString: string,
|
|
5012
|
-
): SafeParseResult<
|
|
4971
|
+
): SafeParseResult<DeploymentsOrNin, SDKValidationError> {
|
|
5013
4972
|
return safeParse(
|
|
5014
4973
|
jsonString,
|
|
5015
|
-
(x) =>
|
|
5016
|
-
`Failed to parse '
|
|
4974
|
+
(x) => DeploymentsOrNin$inboundSchema.parse(JSON.parse(x)),
|
|
4975
|
+
`Failed to parse 'DeploymentsOrNin' from JSON`,
|
|
5017
4976
|
);
|
|
5018
4977
|
}
|
|
5019
4978
|
|
|
5020
4979
|
/** @internal */
|
|
5021
|
-
export const
|
|
5022
|
-
|
|
5023
|
-
z.ZodTypeDef,
|
|
5024
|
-
unknown
|
|
5025
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
4980
|
+
export const OrIn$inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown> = z
|
|
4981
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
5026
4982
|
|
|
5027
4983
|
/** @internal */
|
|
5028
|
-
export type
|
|
4984
|
+
export type OrIn$Outbound = string | number | boolean;
|
|
5029
4985
|
|
|
5030
4986
|
/** @internal */
|
|
5031
|
-
export const
|
|
5032
|
-
|
|
5033
|
-
z.ZodTypeDef,
|
|
5034
|
-
DollarOrDollarIn
|
|
5035
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
4987
|
+
export const OrIn$outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn> =
|
|
4988
|
+
z.union([z.string(), z.number(), z.boolean()]);
|
|
5036
4989
|
|
|
5037
4990
|
/**
|
|
5038
4991
|
* @internal
|
|
5039
4992
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5040
4993
|
*/
|
|
5041
|
-
export namespace
|
|
5042
|
-
/** @deprecated use `
|
|
5043
|
-
export const inboundSchema =
|
|
5044
|
-
/** @deprecated use `
|
|
5045
|
-
export const outboundSchema =
|
|
5046
|
-
/** @deprecated use `
|
|
5047
|
-
export type Outbound =
|
|
4994
|
+
export namespace OrIn$ {
|
|
4995
|
+
/** @deprecated use `OrIn$inboundSchema` instead. */
|
|
4996
|
+
export const inboundSchema = OrIn$inboundSchema;
|
|
4997
|
+
/** @deprecated use `OrIn$outboundSchema` instead. */
|
|
4998
|
+
export const outboundSchema = OrIn$outboundSchema;
|
|
4999
|
+
/** @deprecated use `OrIn$Outbound` instead. */
|
|
5000
|
+
export type Outbound = OrIn$Outbound;
|
|
5048
5001
|
}
|
|
5049
5002
|
|
|
5050
|
-
export function
|
|
5051
|
-
|
|
5052
|
-
): string {
|
|
5053
|
-
return JSON.stringify(
|
|
5054
|
-
DollarOrDollarIn$outboundSchema.parse(dollarOrDollarIn),
|
|
5055
|
-
);
|
|
5003
|
+
export function orInToJSON(orIn: OrIn): string {
|
|
5004
|
+
return JSON.stringify(OrIn$outboundSchema.parse(orIn));
|
|
5056
5005
|
}
|
|
5057
5006
|
|
|
5058
|
-
export function
|
|
5007
|
+
export function orInFromJSON(
|
|
5059
5008
|
jsonString: string,
|
|
5060
|
-
): SafeParseResult<
|
|
5009
|
+
): SafeParseResult<OrIn, SDKValidationError> {
|
|
5061
5010
|
return safeParse(
|
|
5062
5011
|
jsonString,
|
|
5063
|
-
(x) =>
|
|
5064
|
-
`Failed to parse '
|
|
5012
|
+
(x) => OrIn$inboundSchema.parse(JSON.parse(x)),
|
|
5013
|
+
`Failed to parse 'OrIn' from JSON`,
|
|
5065
5014
|
);
|
|
5066
5015
|
}
|
|
5067
5016
|
|
|
5068
5017
|
/** @internal */
|
|
5069
|
-
export const
|
|
5070
|
-
|
|
5018
|
+
export const DeploymentsOrIn$inboundSchema: z.ZodType<
|
|
5019
|
+
DeploymentsOrIn,
|
|
5071
5020
|
z.ZodTypeDef,
|
|
5072
5021
|
unknown
|
|
5073
5022
|
> = z.object({
|
|
5074
|
-
|
|
5075
|
-
}).transform((v) => {
|
|
5076
|
-
return remap$(v, {
|
|
5077
|
-
"$in": "dollarIn",
|
|
5078
|
-
});
|
|
5023
|
+
in: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
5079
5024
|
});
|
|
5080
5025
|
|
|
5081
5026
|
/** @internal */
|
|
5082
|
-
export type
|
|
5083
|
-
|
|
5027
|
+
export type DeploymentsOrIn$Outbound = {
|
|
5028
|
+
in: Array<string | number | boolean>;
|
|
5084
5029
|
};
|
|
5085
5030
|
|
|
5086
5031
|
/** @internal */
|
|
5087
|
-
export const
|
|
5088
|
-
|
|
5032
|
+
export const DeploymentsOrIn$outboundSchema: z.ZodType<
|
|
5033
|
+
DeploymentsOrIn$Outbound,
|
|
5089
5034
|
z.ZodTypeDef,
|
|
5090
|
-
|
|
5035
|
+
DeploymentsOrIn
|
|
5091
5036
|
> = z.object({
|
|
5092
|
-
|
|
5093
|
-
}).transform((v) => {
|
|
5094
|
-
return remap$(v, {
|
|
5095
|
-
dollarIn: "$in",
|
|
5096
|
-
});
|
|
5037
|
+
in: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
5097
5038
|
});
|
|
5098
5039
|
|
|
5099
5040
|
/**
|
|
5100
5041
|
* @internal
|
|
5101
5042
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5102
5043
|
*/
|
|
5103
|
-
export namespace
|
|
5104
|
-
/** @deprecated use `
|
|
5105
|
-
export const inboundSchema =
|
|
5106
|
-
/** @deprecated use `
|
|
5107
|
-
export const outboundSchema =
|
|
5108
|
-
/** @deprecated use `
|
|
5109
|
-
export type Outbound =
|
|
5044
|
+
export namespace DeploymentsOrIn$ {
|
|
5045
|
+
/** @deprecated use `DeploymentsOrIn$inboundSchema` instead. */
|
|
5046
|
+
export const inboundSchema = DeploymentsOrIn$inboundSchema;
|
|
5047
|
+
/** @deprecated use `DeploymentsOrIn$outboundSchema` instead. */
|
|
5048
|
+
export const outboundSchema = DeploymentsOrIn$outboundSchema;
|
|
5049
|
+
/** @deprecated use `DeploymentsOrIn$Outbound` instead. */
|
|
5050
|
+
export type Outbound = DeploymentsOrIn$Outbound;
|
|
5110
5051
|
}
|
|
5111
5052
|
|
|
5112
|
-
export function
|
|
5113
|
-
|
|
5053
|
+
export function deploymentsOrInToJSON(
|
|
5054
|
+
deploymentsOrIn: DeploymentsOrIn,
|
|
5114
5055
|
): string {
|
|
5115
|
-
return JSON.stringify(
|
|
5116
|
-
DeploymentsDollarOrDollarIn$outboundSchema.parse(
|
|
5117
|
-
deploymentsDollarOrDollarIn,
|
|
5118
|
-
),
|
|
5119
|
-
);
|
|
5056
|
+
return JSON.stringify(DeploymentsOrIn$outboundSchema.parse(deploymentsOrIn));
|
|
5120
5057
|
}
|
|
5121
5058
|
|
|
5122
|
-
export function
|
|
5059
|
+
export function deploymentsOrInFromJSON(
|
|
5123
5060
|
jsonString: string,
|
|
5124
|
-
): SafeParseResult<
|
|
5061
|
+
): SafeParseResult<DeploymentsOrIn, SDKValidationError> {
|
|
5125
5062
|
return safeParse(
|
|
5126
5063
|
jsonString,
|
|
5127
|
-
(x) =>
|
|
5128
|
-
`Failed to parse '
|
|
5064
|
+
(x) => DeploymentsOrIn$inboundSchema.parse(JSON.parse(x)),
|
|
5065
|
+
`Failed to parse 'DeploymentsOrIn' from JSON`,
|
|
5129
5066
|
);
|
|
5130
5067
|
}
|
|
5131
5068
|
|
|
5132
5069
|
/** @internal */
|
|
5133
|
-
export const
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
unknown
|
|
5137
|
-
> = z.object({
|
|
5138
|
-
$lte: z.number(),
|
|
5139
|
-
}).transform((v) => {
|
|
5140
|
-
return remap$(v, {
|
|
5141
|
-
"$lte": "dollarLte",
|
|
5070
|
+
export const OrLte$inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown> = z
|
|
5071
|
+
.object({
|
|
5072
|
+
lte: z.number(),
|
|
5142
5073
|
});
|
|
5143
|
-
});
|
|
5144
5074
|
|
|
5145
5075
|
/** @internal */
|
|
5146
|
-
export type
|
|
5147
|
-
|
|
5076
|
+
export type OrLte$Outbound = {
|
|
5077
|
+
lte: number;
|
|
5148
5078
|
};
|
|
5149
5079
|
|
|
5150
5080
|
/** @internal */
|
|
5151
|
-
export const
|
|
5152
|
-
|
|
5081
|
+
export const OrLte$outboundSchema: z.ZodType<
|
|
5082
|
+
OrLte$Outbound,
|
|
5153
5083
|
z.ZodTypeDef,
|
|
5154
|
-
|
|
5084
|
+
OrLte
|
|
5155
5085
|
> = z.object({
|
|
5156
|
-
|
|
5157
|
-
}).transform((v) => {
|
|
5158
|
-
return remap$(v, {
|
|
5159
|
-
dollarLte: "$lte",
|
|
5160
|
-
});
|
|
5086
|
+
lte: z.number(),
|
|
5161
5087
|
});
|
|
5162
5088
|
|
|
5163
5089
|
/**
|
|
5164
5090
|
* @internal
|
|
5165
5091
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5166
5092
|
*/
|
|
5167
|
-
export namespace
|
|
5168
|
-
/** @deprecated use `
|
|
5169
|
-
export const inboundSchema =
|
|
5170
|
-
/** @deprecated use `
|
|
5171
|
-
export const outboundSchema =
|
|
5172
|
-
/** @deprecated use `
|
|
5173
|
-
export type Outbound =
|
|
5093
|
+
export namespace OrLte$ {
|
|
5094
|
+
/** @deprecated use `OrLte$inboundSchema` instead. */
|
|
5095
|
+
export const inboundSchema = OrLte$inboundSchema;
|
|
5096
|
+
/** @deprecated use `OrLte$outboundSchema` instead. */
|
|
5097
|
+
export const outboundSchema = OrLte$outboundSchema;
|
|
5098
|
+
/** @deprecated use `OrLte$Outbound` instead. */
|
|
5099
|
+
export type Outbound = OrLte$Outbound;
|
|
5174
5100
|
}
|
|
5175
5101
|
|
|
5176
|
-
export function
|
|
5177
|
-
|
|
5178
|
-
): string {
|
|
5179
|
-
return JSON.stringify(
|
|
5180
|
-
DollarOrDollarLte$outboundSchema.parse(dollarOrDollarLte),
|
|
5181
|
-
);
|
|
5102
|
+
export function orLteToJSON(orLte: OrLte): string {
|
|
5103
|
+
return JSON.stringify(OrLte$outboundSchema.parse(orLte));
|
|
5182
5104
|
}
|
|
5183
5105
|
|
|
5184
|
-
export function
|
|
5106
|
+
export function orLteFromJSON(
|
|
5185
5107
|
jsonString: string,
|
|
5186
|
-
): SafeParseResult<
|
|
5108
|
+
): SafeParseResult<OrLte, SDKValidationError> {
|
|
5187
5109
|
return safeParse(
|
|
5188
5110
|
jsonString,
|
|
5189
|
-
(x) =>
|
|
5190
|
-
`Failed to parse '
|
|
5111
|
+
(x) => OrLte$inboundSchema.parse(JSON.parse(x)),
|
|
5112
|
+
`Failed to parse 'OrLte' from JSON`,
|
|
5191
5113
|
);
|
|
5192
5114
|
}
|
|
5193
5115
|
|
|
5194
5116
|
/** @internal */
|
|
5195
|
-
export const
|
|
5196
|
-
|
|
5197
|
-
|
|
5198
|
-
unknown
|
|
5199
|
-
> = z.object({
|
|
5200
|
-
$lt: z.number(),
|
|
5201
|
-
}).transform((v) => {
|
|
5202
|
-
return remap$(v, {
|
|
5203
|
-
"$lt": "dollarLt",
|
|
5117
|
+
export const OrLt$inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown> = z
|
|
5118
|
+
.object({
|
|
5119
|
+
lt: z.number(),
|
|
5204
5120
|
});
|
|
5205
|
-
});
|
|
5206
5121
|
|
|
5207
5122
|
/** @internal */
|
|
5208
|
-
export type
|
|
5209
|
-
|
|
5123
|
+
export type OrLt$Outbound = {
|
|
5124
|
+
lt: number;
|
|
5210
5125
|
};
|
|
5211
5126
|
|
|
5212
5127
|
/** @internal */
|
|
5213
|
-
export const
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
DollarOrDollarLt
|
|
5217
|
-
> = z.object({
|
|
5218
|
-
dollarLt: z.number(),
|
|
5219
|
-
}).transform((v) => {
|
|
5220
|
-
return remap$(v, {
|
|
5221
|
-
dollarLt: "$lt",
|
|
5128
|
+
export const OrLt$outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt> =
|
|
5129
|
+
z.object({
|
|
5130
|
+
lt: z.number(),
|
|
5222
5131
|
});
|
|
5223
|
-
});
|
|
5224
5132
|
|
|
5225
5133
|
/**
|
|
5226
5134
|
* @internal
|
|
5227
5135
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5228
5136
|
*/
|
|
5229
|
-
export namespace
|
|
5230
|
-
/** @deprecated use `
|
|
5231
|
-
export const inboundSchema =
|
|
5232
|
-
/** @deprecated use `
|
|
5233
|
-
export const outboundSchema =
|
|
5234
|
-
/** @deprecated use `
|
|
5235
|
-
export type Outbound =
|
|
5137
|
+
export namespace OrLt$ {
|
|
5138
|
+
/** @deprecated use `OrLt$inboundSchema` instead. */
|
|
5139
|
+
export const inboundSchema = OrLt$inboundSchema;
|
|
5140
|
+
/** @deprecated use `OrLt$outboundSchema` instead. */
|
|
5141
|
+
export const outboundSchema = OrLt$outboundSchema;
|
|
5142
|
+
/** @deprecated use `OrLt$Outbound` instead. */
|
|
5143
|
+
export type Outbound = OrLt$Outbound;
|
|
5236
5144
|
}
|
|
5237
5145
|
|
|
5238
|
-
export function
|
|
5239
|
-
|
|
5240
|
-
): string {
|
|
5241
|
-
return JSON.stringify(
|
|
5242
|
-
DollarOrDollarLt$outboundSchema.parse(dollarOrDollarLt),
|
|
5243
|
-
);
|
|
5146
|
+
export function orLtToJSON(orLt: OrLt): string {
|
|
5147
|
+
return JSON.stringify(OrLt$outboundSchema.parse(orLt));
|
|
5244
5148
|
}
|
|
5245
5149
|
|
|
5246
|
-
export function
|
|
5150
|
+
export function orLtFromJSON(
|
|
5247
5151
|
jsonString: string,
|
|
5248
|
-
): SafeParseResult<
|
|
5152
|
+
): SafeParseResult<OrLt, SDKValidationError> {
|
|
5249
5153
|
return safeParse(
|
|
5250
5154
|
jsonString,
|
|
5251
|
-
(x) =>
|
|
5252
|
-
`Failed to parse '
|
|
5155
|
+
(x) => OrLt$inboundSchema.parse(JSON.parse(x)),
|
|
5156
|
+
`Failed to parse 'OrLt' from JSON`,
|
|
5253
5157
|
);
|
|
5254
5158
|
}
|
|
5255
5159
|
|
|
5256
5160
|
/** @internal */
|
|
5257
|
-
export const
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
unknown
|
|
5261
|
-
> = z.object({
|
|
5262
|
-
$gte: z.number(),
|
|
5263
|
-
}).transform((v) => {
|
|
5264
|
-
return remap$(v, {
|
|
5265
|
-
"$gte": "dollarGte",
|
|
5161
|
+
export const OrGte$inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown> = z
|
|
5162
|
+
.object({
|
|
5163
|
+
gte: z.number(),
|
|
5266
5164
|
});
|
|
5267
|
-
});
|
|
5268
5165
|
|
|
5269
5166
|
/** @internal */
|
|
5270
|
-
export type
|
|
5271
|
-
|
|
5167
|
+
export type OrGte$Outbound = {
|
|
5168
|
+
gte: number;
|
|
5272
5169
|
};
|
|
5273
5170
|
|
|
5274
5171
|
/** @internal */
|
|
5275
|
-
export const
|
|
5276
|
-
|
|
5172
|
+
export const OrGte$outboundSchema: z.ZodType<
|
|
5173
|
+
OrGte$Outbound,
|
|
5277
5174
|
z.ZodTypeDef,
|
|
5278
|
-
|
|
5175
|
+
OrGte
|
|
5279
5176
|
> = z.object({
|
|
5280
|
-
|
|
5281
|
-
}).transform((v) => {
|
|
5282
|
-
return remap$(v, {
|
|
5283
|
-
dollarGte: "$gte",
|
|
5284
|
-
});
|
|
5177
|
+
gte: z.number(),
|
|
5285
5178
|
});
|
|
5286
5179
|
|
|
5287
5180
|
/**
|
|
5288
5181
|
* @internal
|
|
5289
5182
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5290
5183
|
*/
|
|
5291
|
-
export namespace
|
|
5292
|
-
/** @deprecated use `
|
|
5293
|
-
export const inboundSchema =
|
|
5294
|
-
/** @deprecated use `
|
|
5295
|
-
export const outboundSchema =
|
|
5296
|
-
/** @deprecated use `
|
|
5297
|
-
export type Outbound =
|
|
5184
|
+
export namespace OrGte$ {
|
|
5185
|
+
/** @deprecated use `OrGte$inboundSchema` instead. */
|
|
5186
|
+
export const inboundSchema = OrGte$inboundSchema;
|
|
5187
|
+
/** @deprecated use `OrGte$outboundSchema` instead. */
|
|
5188
|
+
export const outboundSchema = OrGte$outboundSchema;
|
|
5189
|
+
/** @deprecated use `OrGte$Outbound` instead. */
|
|
5190
|
+
export type Outbound = OrGte$Outbound;
|
|
5298
5191
|
}
|
|
5299
5192
|
|
|
5300
|
-
export function
|
|
5301
|
-
|
|
5302
|
-
): string {
|
|
5303
|
-
return JSON.stringify(
|
|
5304
|
-
DollarOrDollarGte$outboundSchema.parse(dollarOrDollarGte),
|
|
5305
|
-
);
|
|
5193
|
+
export function orGteToJSON(orGte: OrGte): string {
|
|
5194
|
+
return JSON.stringify(OrGte$outboundSchema.parse(orGte));
|
|
5306
5195
|
}
|
|
5307
5196
|
|
|
5308
|
-
export function
|
|
5197
|
+
export function orGteFromJSON(
|
|
5309
5198
|
jsonString: string,
|
|
5310
|
-
): SafeParseResult<
|
|
5199
|
+
): SafeParseResult<OrGte, SDKValidationError> {
|
|
5311
5200
|
return safeParse(
|
|
5312
5201
|
jsonString,
|
|
5313
|
-
(x) =>
|
|
5314
|
-
`Failed to parse '
|
|
5202
|
+
(x) => OrGte$inboundSchema.parse(JSON.parse(x)),
|
|
5203
|
+
`Failed to parse 'OrGte' from JSON`,
|
|
5315
5204
|
);
|
|
5316
5205
|
}
|
|
5317
5206
|
|
|
5318
5207
|
/** @internal */
|
|
5319
|
-
export const
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
unknown
|
|
5323
|
-
> = z.object({
|
|
5324
|
-
$gt: z.number(),
|
|
5325
|
-
}).transform((v) => {
|
|
5326
|
-
return remap$(v, {
|
|
5327
|
-
"$gt": "dollarGt",
|
|
5208
|
+
export const Or3$inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown> = z
|
|
5209
|
+
.object({
|
|
5210
|
+
gt: z.number(),
|
|
5328
5211
|
});
|
|
5329
|
-
});
|
|
5330
5212
|
|
|
5331
5213
|
/** @internal */
|
|
5332
|
-
export type
|
|
5333
|
-
|
|
5214
|
+
export type Or3$Outbound = {
|
|
5215
|
+
gt: number;
|
|
5334
5216
|
};
|
|
5335
5217
|
|
|
5336
5218
|
/** @internal */
|
|
5337
|
-
export const
|
|
5338
|
-
|
|
5339
|
-
|
|
5340
|
-
DollarOr3
|
|
5341
|
-
> = z.object({
|
|
5342
|
-
dollarGt: z.number(),
|
|
5343
|
-
}).transform((v) => {
|
|
5344
|
-
return remap$(v, {
|
|
5345
|
-
dollarGt: "$gt",
|
|
5219
|
+
export const Or3$outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3> = z
|
|
5220
|
+
.object({
|
|
5221
|
+
gt: z.number(),
|
|
5346
5222
|
});
|
|
5347
|
-
});
|
|
5348
5223
|
|
|
5349
5224
|
/**
|
|
5350
5225
|
* @internal
|
|
5351
5226
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5352
5227
|
*/
|
|
5353
|
-
export namespace
|
|
5354
|
-
/** @deprecated use `
|
|
5355
|
-
export const inboundSchema =
|
|
5356
|
-
/** @deprecated use `
|
|
5357
|
-
export const outboundSchema =
|
|
5358
|
-
/** @deprecated use `
|
|
5359
|
-
export type Outbound =
|
|
5228
|
+
export namespace Or3$ {
|
|
5229
|
+
/** @deprecated use `Or3$inboundSchema` instead. */
|
|
5230
|
+
export const inboundSchema = Or3$inboundSchema;
|
|
5231
|
+
/** @deprecated use `Or3$outboundSchema` instead. */
|
|
5232
|
+
export const outboundSchema = Or3$outboundSchema;
|
|
5233
|
+
/** @deprecated use `Or3$Outbound` instead. */
|
|
5234
|
+
export type Outbound = Or3$Outbound;
|
|
5360
5235
|
}
|
|
5361
5236
|
|
|
5362
|
-
export function
|
|
5363
|
-
return JSON.stringify(
|
|
5237
|
+
export function or3ToJSON(or3: Or3): string {
|
|
5238
|
+
return JSON.stringify(Or3$outboundSchema.parse(or3));
|
|
5364
5239
|
}
|
|
5365
5240
|
|
|
5366
|
-
export function
|
|
5241
|
+
export function or3FromJSON(
|
|
5367
5242
|
jsonString: string,
|
|
5368
|
-
): SafeParseResult<
|
|
5243
|
+
): SafeParseResult<Or3, SDKValidationError> {
|
|
5369
5244
|
return safeParse(
|
|
5370
5245
|
jsonString,
|
|
5371
|
-
(x) =>
|
|
5372
|
-
`Failed to parse '
|
|
5246
|
+
(x) => Or3$inboundSchema.parse(JSON.parse(x)),
|
|
5247
|
+
`Failed to parse 'Or3' from JSON`,
|
|
5373
5248
|
);
|
|
5374
5249
|
}
|
|
5375
5250
|
|
|
5376
5251
|
/** @internal */
|
|
5377
|
-
export const
|
|
5378
|
-
|
|
5379
|
-
z.ZodTypeDef,
|
|
5380
|
-
unknown
|
|
5381
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
5252
|
+
export const OrNe$inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown> = z
|
|
5253
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
5382
5254
|
|
|
5383
5255
|
/** @internal */
|
|
5384
|
-
export type
|
|
5256
|
+
export type OrNe$Outbound = string | number | boolean;
|
|
5385
5257
|
|
|
5386
5258
|
/** @internal */
|
|
5387
|
-
export const
|
|
5388
|
-
|
|
5389
|
-
z.ZodTypeDef,
|
|
5390
|
-
DollarOrDollarNe
|
|
5391
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
5259
|
+
export const OrNe$outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe> =
|
|
5260
|
+
z.union([z.string(), z.number(), z.boolean()]);
|
|
5392
5261
|
|
|
5393
5262
|
/**
|
|
5394
5263
|
* @internal
|
|
5395
5264
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5396
5265
|
*/
|
|
5397
|
-
export namespace
|
|
5398
|
-
/** @deprecated use `
|
|
5399
|
-
export const inboundSchema =
|
|
5400
|
-
/** @deprecated use `
|
|
5401
|
-
export const outboundSchema =
|
|
5402
|
-
/** @deprecated use `
|
|
5403
|
-
export type Outbound =
|
|
5266
|
+
export namespace OrNe$ {
|
|
5267
|
+
/** @deprecated use `OrNe$inboundSchema` instead. */
|
|
5268
|
+
export const inboundSchema = OrNe$inboundSchema;
|
|
5269
|
+
/** @deprecated use `OrNe$outboundSchema` instead. */
|
|
5270
|
+
export const outboundSchema = OrNe$outboundSchema;
|
|
5271
|
+
/** @deprecated use `OrNe$Outbound` instead. */
|
|
5272
|
+
export type Outbound = OrNe$Outbound;
|
|
5404
5273
|
}
|
|
5405
5274
|
|
|
5406
|
-
export function
|
|
5407
|
-
|
|
5408
|
-
): string {
|
|
5409
|
-
return JSON.stringify(
|
|
5410
|
-
DollarOrDollarNe$outboundSchema.parse(dollarOrDollarNe),
|
|
5411
|
-
);
|
|
5275
|
+
export function orNeToJSON(orNe: OrNe): string {
|
|
5276
|
+
return JSON.stringify(OrNe$outboundSchema.parse(orNe));
|
|
5412
5277
|
}
|
|
5413
5278
|
|
|
5414
|
-
export function
|
|
5279
|
+
export function orNeFromJSON(
|
|
5415
5280
|
jsonString: string,
|
|
5416
|
-
): SafeParseResult<
|
|
5281
|
+
): SafeParseResult<OrNe, SDKValidationError> {
|
|
5417
5282
|
return safeParse(
|
|
5418
5283
|
jsonString,
|
|
5419
|
-
(x) =>
|
|
5420
|
-
`Failed to parse '
|
|
5284
|
+
(x) => OrNe$inboundSchema.parse(JSON.parse(x)),
|
|
5285
|
+
`Failed to parse 'OrNe' from JSON`,
|
|
5421
5286
|
);
|
|
5422
5287
|
}
|
|
5423
5288
|
|
|
5424
5289
|
/** @internal */
|
|
5425
|
-
export const
|
|
5426
|
-
|
|
5290
|
+
export const DeploymentsOrNe$inboundSchema: z.ZodType<
|
|
5291
|
+
DeploymentsOrNe,
|
|
5427
5292
|
z.ZodTypeDef,
|
|
5428
5293
|
unknown
|
|
5429
5294
|
> = z.object({
|
|
5430
|
-
|
|
5431
|
-
}).transform((v) => {
|
|
5432
|
-
return remap$(v, {
|
|
5433
|
-
"$ne": "dollarNe",
|
|
5434
|
-
});
|
|
5295
|
+
ne: z.union([z.string(), z.number(), z.boolean()]),
|
|
5435
5296
|
});
|
|
5436
5297
|
|
|
5437
5298
|
/** @internal */
|
|
5438
|
-
export type
|
|
5439
|
-
|
|
5299
|
+
export type DeploymentsOrNe$Outbound = {
|
|
5300
|
+
ne: string | number | boolean;
|
|
5440
5301
|
};
|
|
5441
5302
|
|
|
5442
5303
|
/** @internal */
|
|
5443
|
-
export const
|
|
5444
|
-
|
|
5304
|
+
export const DeploymentsOrNe$outboundSchema: z.ZodType<
|
|
5305
|
+
DeploymentsOrNe$Outbound,
|
|
5445
5306
|
z.ZodTypeDef,
|
|
5446
|
-
|
|
5307
|
+
DeploymentsOrNe
|
|
5447
5308
|
> = z.object({
|
|
5448
|
-
|
|
5449
|
-
}).transform((v) => {
|
|
5450
|
-
return remap$(v, {
|
|
5451
|
-
dollarNe: "$ne",
|
|
5452
|
-
});
|
|
5309
|
+
ne: z.union([z.string(), z.number(), z.boolean()]),
|
|
5453
5310
|
});
|
|
5454
5311
|
|
|
5455
5312
|
/**
|
|
5456
5313
|
* @internal
|
|
5457
5314
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5458
5315
|
*/
|
|
5459
|
-
export namespace
|
|
5460
|
-
/** @deprecated use `
|
|
5461
|
-
export const inboundSchema =
|
|
5462
|
-
/** @deprecated use `
|
|
5463
|
-
export const outboundSchema =
|
|
5464
|
-
/** @deprecated use `
|
|
5465
|
-
export type Outbound =
|
|
5316
|
+
export namespace DeploymentsOrNe$ {
|
|
5317
|
+
/** @deprecated use `DeploymentsOrNe$inboundSchema` instead. */
|
|
5318
|
+
export const inboundSchema = DeploymentsOrNe$inboundSchema;
|
|
5319
|
+
/** @deprecated use `DeploymentsOrNe$outboundSchema` instead. */
|
|
5320
|
+
export const outboundSchema = DeploymentsOrNe$outboundSchema;
|
|
5321
|
+
/** @deprecated use `DeploymentsOrNe$Outbound` instead. */
|
|
5322
|
+
export type Outbound = DeploymentsOrNe$Outbound;
|
|
5466
5323
|
}
|
|
5467
5324
|
|
|
5468
|
-
export function
|
|
5469
|
-
|
|
5325
|
+
export function deploymentsOrNeToJSON(
|
|
5326
|
+
deploymentsOrNe: DeploymentsOrNe,
|
|
5470
5327
|
): string {
|
|
5471
|
-
return JSON.stringify(
|
|
5472
|
-
DeploymentsDollarOrDollarNe$outboundSchema.parse(
|
|
5473
|
-
deploymentsDollarOrDollarNe,
|
|
5474
|
-
),
|
|
5475
|
-
);
|
|
5328
|
+
return JSON.stringify(DeploymentsOrNe$outboundSchema.parse(deploymentsOrNe));
|
|
5476
5329
|
}
|
|
5477
5330
|
|
|
5478
|
-
export function
|
|
5331
|
+
export function deploymentsOrNeFromJSON(
|
|
5479
5332
|
jsonString: string,
|
|
5480
|
-
): SafeParseResult<
|
|
5333
|
+
): SafeParseResult<DeploymentsOrNe, SDKValidationError> {
|
|
5481
5334
|
return safeParse(
|
|
5482
5335
|
jsonString,
|
|
5483
|
-
(x) =>
|
|
5484
|
-
`Failed to parse '
|
|
5336
|
+
(x) => DeploymentsOrNe$inboundSchema.parse(JSON.parse(x)),
|
|
5337
|
+
`Failed to parse 'DeploymentsOrNe' from JSON`,
|
|
5485
5338
|
);
|
|
5486
5339
|
}
|
|
5487
5340
|
|
|
5488
5341
|
/** @internal */
|
|
5489
|
-
export const
|
|
5490
|
-
|
|
5491
|
-
z.ZodTypeDef,
|
|
5492
|
-
unknown
|
|
5493
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
5342
|
+
export const OrEq$inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown> = z
|
|
5343
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
5494
5344
|
|
|
5495
5345
|
/** @internal */
|
|
5496
|
-
export type
|
|
5346
|
+
export type OrEq$Outbound = string | number | boolean;
|
|
5497
5347
|
|
|
5498
5348
|
/** @internal */
|
|
5499
|
-
export const
|
|
5500
|
-
|
|
5501
|
-
z.ZodTypeDef,
|
|
5502
|
-
DollarOrDollarEq
|
|
5503
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
5349
|
+
export const OrEq$outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq> =
|
|
5350
|
+
z.union([z.string(), z.number(), z.boolean()]);
|
|
5504
5351
|
|
|
5505
5352
|
/**
|
|
5506
5353
|
* @internal
|
|
5507
5354
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5508
5355
|
*/
|
|
5509
|
-
export namespace
|
|
5510
|
-
/** @deprecated use `
|
|
5511
|
-
export const inboundSchema =
|
|
5512
|
-
/** @deprecated use `
|
|
5513
|
-
export const outboundSchema =
|
|
5514
|
-
/** @deprecated use `
|
|
5515
|
-
export type Outbound =
|
|
5356
|
+
export namespace OrEq$ {
|
|
5357
|
+
/** @deprecated use `OrEq$inboundSchema` instead. */
|
|
5358
|
+
export const inboundSchema = OrEq$inboundSchema;
|
|
5359
|
+
/** @deprecated use `OrEq$outboundSchema` instead. */
|
|
5360
|
+
export const outboundSchema = OrEq$outboundSchema;
|
|
5361
|
+
/** @deprecated use `OrEq$Outbound` instead. */
|
|
5362
|
+
export type Outbound = OrEq$Outbound;
|
|
5516
5363
|
}
|
|
5517
5364
|
|
|
5518
|
-
export function
|
|
5519
|
-
|
|
5520
|
-
): string {
|
|
5521
|
-
return JSON.stringify(
|
|
5522
|
-
DollarOrDollarEq$outboundSchema.parse(dollarOrDollarEq),
|
|
5523
|
-
);
|
|
5365
|
+
export function orEqToJSON(orEq: OrEq): string {
|
|
5366
|
+
return JSON.stringify(OrEq$outboundSchema.parse(orEq));
|
|
5524
5367
|
}
|
|
5525
5368
|
|
|
5526
|
-
export function
|
|
5369
|
+
export function orEqFromJSON(
|
|
5527
5370
|
jsonString: string,
|
|
5528
|
-
): SafeParseResult<
|
|
5371
|
+
): SafeParseResult<OrEq, SDKValidationError> {
|
|
5529
5372
|
return safeParse(
|
|
5530
5373
|
jsonString,
|
|
5531
|
-
(x) =>
|
|
5532
|
-
`Failed to parse '
|
|
5374
|
+
(x) => OrEq$inboundSchema.parse(JSON.parse(x)),
|
|
5375
|
+
`Failed to parse 'OrEq' from JSON`,
|
|
5533
5376
|
);
|
|
5534
5377
|
}
|
|
5535
5378
|
|
|
5536
5379
|
/** @internal */
|
|
5537
|
-
export const
|
|
5538
|
-
|
|
5380
|
+
export const DeploymentsOrEq$inboundSchema: z.ZodType<
|
|
5381
|
+
DeploymentsOrEq,
|
|
5539
5382
|
z.ZodTypeDef,
|
|
5540
5383
|
unknown
|
|
5541
5384
|
> = z.object({
|
|
5542
|
-
|
|
5543
|
-
}).transform((v) => {
|
|
5544
|
-
return remap$(v, {
|
|
5545
|
-
"$eq": "dollarEq",
|
|
5546
|
-
});
|
|
5385
|
+
eq: z.union([z.string(), z.number(), z.boolean()]),
|
|
5547
5386
|
});
|
|
5548
5387
|
|
|
5549
5388
|
/** @internal */
|
|
5550
|
-
export type
|
|
5551
|
-
|
|
5389
|
+
export type DeploymentsOrEq$Outbound = {
|
|
5390
|
+
eq: string | number | boolean;
|
|
5552
5391
|
};
|
|
5553
5392
|
|
|
5554
5393
|
/** @internal */
|
|
5555
|
-
export const
|
|
5556
|
-
|
|
5394
|
+
export const DeploymentsOrEq$outboundSchema: z.ZodType<
|
|
5395
|
+
DeploymentsOrEq$Outbound,
|
|
5557
5396
|
z.ZodTypeDef,
|
|
5558
|
-
|
|
5397
|
+
DeploymentsOrEq
|
|
5559
5398
|
> = z.object({
|
|
5560
|
-
|
|
5561
|
-
}).transform((v) => {
|
|
5562
|
-
return remap$(v, {
|
|
5563
|
-
dollarEq: "$eq",
|
|
5564
|
-
});
|
|
5399
|
+
eq: z.union([z.string(), z.number(), z.boolean()]),
|
|
5565
5400
|
});
|
|
5566
5401
|
|
|
5567
5402
|
/**
|
|
5568
5403
|
* @internal
|
|
5569
5404
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5570
5405
|
*/
|
|
5571
|
-
export namespace
|
|
5572
|
-
/** @deprecated use `
|
|
5573
|
-
export const inboundSchema =
|
|
5574
|
-
/** @deprecated use `
|
|
5575
|
-
export const outboundSchema =
|
|
5576
|
-
/** @deprecated use `
|
|
5577
|
-
export type Outbound =
|
|
5406
|
+
export namespace DeploymentsOrEq$ {
|
|
5407
|
+
/** @deprecated use `DeploymentsOrEq$inboundSchema` instead. */
|
|
5408
|
+
export const inboundSchema = DeploymentsOrEq$inboundSchema;
|
|
5409
|
+
/** @deprecated use `DeploymentsOrEq$outboundSchema` instead. */
|
|
5410
|
+
export const outboundSchema = DeploymentsOrEq$outboundSchema;
|
|
5411
|
+
/** @deprecated use `DeploymentsOrEq$Outbound` instead. */
|
|
5412
|
+
export type Outbound = DeploymentsOrEq$Outbound;
|
|
5578
5413
|
}
|
|
5579
5414
|
|
|
5580
|
-
export function
|
|
5581
|
-
|
|
5415
|
+
export function deploymentsOrEqToJSON(
|
|
5416
|
+
deploymentsOrEq: DeploymentsOrEq,
|
|
5582
5417
|
): string {
|
|
5583
|
-
return JSON.stringify(
|
|
5584
|
-
DeploymentsDollarOrDollarEq$outboundSchema.parse(
|
|
5585
|
-
deploymentsDollarOrDollarEq,
|
|
5586
|
-
),
|
|
5587
|
-
);
|
|
5418
|
+
return JSON.stringify(DeploymentsOrEq$outboundSchema.parse(deploymentsOrEq));
|
|
5588
5419
|
}
|
|
5589
5420
|
|
|
5590
|
-
export function
|
|
5421
|
+
export function deploymentsOrEqFromJSON(
|
|
5591
5422
|
jsonString: string,
|
|
5592
|
-
): SafeParseResult<
|
|
5423
|
+
): SafeParseResult<DeploymentsOrEq, SDKValidationError> {
|
|
5593
5424
|
return safeParse(
|
|
5594
5425
|
jsonString,
|
|
5595
|
-
(x) =>
|
|
5596
|
-
`Failed to parse '
|
|
5426
|
+
(x) => DeploymentsOrEq$inboundSchema.parse(JSON.parse(x)),
|
|
5427
|
+
`Failed to parse 'DeploymentsOrEq' from JSON`,
|
|
5597
5428
|
);
|
|
5598
5429
|
}
|
|
5599
5430
|
|
|
5600
5431
|
/** @internal */
|
|
5601
|
-
export const
|
|
5602
|
-
|
|
5603
|
-
z.
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
z.lazy(() =>
|
|
5607
|
-
z.lazy(() =>
|
|
5608
|
-
z.lazy(() =>
|
|
5609
|
-
z.lazy(() =>
|
|
5610
|
-
z.lazy(() =>
|
|
5611
|
-
z.lazy(() => DollarOrDollarLte$inboundSchema),
|
|
5612
|
-
z.lazy(() => DeploymentsDollarOrDollarIn$inboundSchema),
|
|
5613
|
-
z.lazy(() => DeploymentsDollarOrDollarNin$inboundSchema),
|
|
5614
|
-
z.lazy(() => DollarOrDollarExists$inboundSchema),
|
|
5432
|
+
export const Or$inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown> = z.union([
|
|
5433
|
+
z.lazy(() => DeploymentsOrEq$inboundSchema),
|
|
5434
|
+
z.lazy(() => DeploymentsOrNe$inboundSchema),
|
|
5435
|
+
z.lazy(() => Or3$inboundSchema),
|
|
5436
|
+
z.lazy(() => OrGte$inboundSchema),
|
|
5437
|
+
z.lazy(() => OrLt$inboundSchema),
|
|
5438
|
+
z.lazy(() => OrLte$inboundSchema),
|
|
5439
|
+
z.lazy(() => DeploymentsOrIn$inboundSchema),
|
|
5440
|
+
z.lazy(() => DeploymentsOrNin$inboundSchema),
|
|
5441
|
+
z.lazy(() => OrExists$inboundSchema),
|
|
5615
5442
|
]);
|
|
5616
5443
|
|
|
5617
5444
|
/** @internal */
|
|
5618
|
-
export type
|
|
5619
|
-
|
|
|
5620
|
-
|
|
|
5621
|
-
|
|
|
5622
|
-
|
|
|
5623
|
-
|
|
|
5624
|
-
|
|
|
5625
|
-
|
|
|
5626
|
-
|
|
|
5627
|
-
|
|
|
5445
|
+
export type Or$Outbound =
|
|
5446
|
+
| DeploymentsOrEq$Outbound
|
|
5447
|
+
| DeploymentsOrNe$Outbound
|
|
5448
|
+
| Or3$Outbound
|
|
5449
|
+
| OrGte$Outbound
|
|
5450
|
+
| OrLt$Outbound
|
|
5451
|
+
| OrLte$Outbound
|
|
5452
|
+
| DeploymentsOrIn$Outbound
|
|
5453
|
+
| DeploymentsOrNin$Outbound
|
|
5454
|
+
| OrExists$Outbound;
|
|
5628
5455
|
|
|
5629
5456
|
/** @internal */
|
|
5630
|
-
export const
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
z.lazy(() => DeploymentsDollarOrDollarNin$outboundSchema),
|
|
5643
|
-
z.lazy(() => DollarOrDollarExists$outboundSchema),
|
|
5644
|
-
]);
|
|
5457
|
+
export const Or$outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or> = z
|
|
5458
|
+
.union([
|
|
5459
|
+
z.lazy(() => DeploymentsOrEq$outboundSchema),
|
|
5460
|
+
z.lazy(() => DeploymentsOrNe$outboundSchema),
|
|
5461
|
+
z.lazy(() => Or3$outboundSchema),
|
|
5462
|
+
z.lazy(() => OrGte$outboundSchema),
|
|
5463
|
+
z.lazy(() => OrLt$outboundSchema),
|
|
5464
|
+
z.lazy(() => OrLte$outboundSchema),
|
|
5465
|
+
z.lazy(() => DeploymentsOrIn$outboundSchema),
|
|
5466
|
+
z.lazy(() => DeploymentsOrNin$outboundSchema),
|
|
5467
|
+
z.lazy(() => OrExists$outboundSchema),
|
|
5468
|
+
]);
|
|
5645
5469
|
|
|
5646
5470
|
/**
|
|
5647
5471
|
* @internal
|
|
5648
5472
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5649
5473
|
*/
|
|
5650
|
-
export namespace
|
|
5651
|
-
/** @deprecated use `
|
|
5652
|
-
export const inboundSchema =
|
|
5653
|
-
/** @deprecated use `
|
|
5654
|
-
export const outboundSchema =
|
|
5655
|
-
/** @deprecated use `
|
|
5656
|
-
export type Outbound =
|
|
5474
|
+
export namespace Or$ {
|
|
5475
|
+
/** @deprecated use `Or$inboundSchema` instead. */
|
|
5476
|
+
export const inboundSchema = Or$inboundSchema;
|
|
5477
|
+
/** @deprecated use `Or$outboundSchema` instead. */
|
|
5478
|
+
export const outboundSchema = Or$outboundSchema;
|
|
5479
|
+
/** @deprecated use `Or$Outbound` instead. */
|
|
5480
|
+
export type Outbound = Or$Outbound;
|
|
5657
5481
|
}
|
|
5658
5482
|
|
|
5659
|
-
export function
|
|
5660
|
-
return JSON.stringify(
|
|
5483
|
+
export function orToJSON(or: Or): string {
|
|
5484
|
+
return JSON.stringify(Or$outboundSchema.parse(or));
|
|
5661
5485
|
}
|
|
5662
5486
|
|
|
5663
|
-
export function
|
|
5487
|
+
export function orFromJSON(
|
|
5664
5488
|
jsonString: string,
|
|
5665
|
-
): SafeParseResult<
|
|
5489
|
+
): SafeParseResult<Or, SDKValidationError> {
|
|
5666
5490
|
return safeParse(
|
|
5667
5491
|
jsonString,
|
|
5668
|
-
(x) =>
|
|
5669
|
-
`Failed to parse '
|
|
5492
|
+
(x) => Or$inboundSchema.parse(JSON.parse(x)),
|
|
5493
|
+
`Failed to parse 'Or' from JSON`,
|
|
5670
5494
|
);
|
|
5671
5495
|
}
|
|
5672
5496
|
|
|
5673
5497
|
/** @internal */
|
|
5674
|
-
export const
|
|
5675
|
-
|
|
5498
|
+
export const KnowledgeFilterOr$inboundSchema: z.ZodType<
|
|
5499
|
+
KnowledgeFilterOr,
|
|
5676
5500
|
z.ZodTypeDef,
|
|
5677
5501
|
unknown
|
|
5678
5502
|
> = z.object({
|
|
5679
|
-
|
|
5503
|
+
or: z.array(
|
|
5680
5504
|
z.record(z.union([
|
|
5681
|
-
z.lazy(() =>
|
|
5505
|
+
z.lazy(() => DeploymentsOrEq$inboundSchema),
|
|
5682
5506
|
z.lazy(() =>
|
|
5683
|
-
|
|
5507
|
+
DeploymentsOrNe$inboundSchema
|
|
5684
5508
|
),
|
|
5685
|
-
z.lazy(() =>
|
|
5686
|
-
z.lazy(() =>
|
|
5687
|
-
z.lazy(() =>
|
|
5688
|
-
z.lazy(() =>
|
|
5689
|
-
z.lazy(() =>
|
|
5690
|
-
z.lazy(() =>
|
|
5691
|
-
z.lazy(() =>
|
|
5509
|
+
z.lazy(() => Or3$inboundSchema),
|
|
5510
|
+
z.lazy(() => OrGte$inboundSchema),
|
|
5511
|
+
z.lazy(() => OrLt$inboundSchema),
|
|
5512
|
+
z.lazy(() => OrLte$inboundSchema),
|
|
5513
|
+
z.lazy(() => DeploymentsOrIn$inboundSchema),
|
|
5514
|
+
z.lazy(() => DeploymentsOrNin$inboundSchema),
|
|
5515
|
+
z.lazy(() => OrExists$inboundSchema),
|
|
5692
5516
|
])),
|
|
5693
5517
|
),
|
|
5694
|
-
}).transform((v) => {
|
|
5695
|
-
return remap$(v, {
|
|
5696
|
-
"$or": "dollarOr",
|
|
5697
|
-
});
|
|
5698
5518
|
});
|
|
5699
5519
|
|
|
5700
5520
|
/** @internal */
|
|
5701
|
-
export type
|
|
5702
|
-
|
|
5521
|
+
export type KnowledgeFilterOr$Outbound = {
|
|
5522
|
+
or: Array<
|
|
5703
5523
|
{
|
|
5704
5524
|
[k: string]:
|
|
5705
|
-
|
|
|
5706
|
-
|
|
|
5707
|
-
|
|
|
5708
|
-
|
|
|
5709
|
-
|
|
|
5710
|
-
|
|
|
5711
|
-
|
|
|
5712
|
-
|
|
|
5713
|
-
|
|
|
5525
|
+
| DeploymentsOrEq$Outbound
|
|
5526
|
+
| DeploymentsOrNe$Outbound
|
|
5527
|
+
| Or3$Outbound
|
|
5528
|
+
| OrGte$Outbound
|
|
5529
|
+
| OrLt$Outbound
|
|
5530
|
+
| OrLte$Outbound
|
|
5531
|
+
| DeploymentsOrIn$Outbound
|
|
5532
|
+
| DeploymentsOrNin$Outbound
|
|
5533
|
+
| OrExists$Outbound;
|
|
5714
5534
|
}
|
|
5715
5535
|
>;
|
|
5716
5536
|
};
|
|
5717
5537
|
|
|
5718
5538
|
/** @internal */
|
|
5719
|
-
export const
|
|
5720
|
-
|
|
5539
|
+
export const KnowledgeFilterOr$outboundSchema: z.ZodType<
|
|
5540
|
+
KnowledgeFilterOr$Outbound,
|
|
5721
5541
|
z.ZodTypeDef,
|
|
5722
|
-
|
|
5542
|
+
KnowledgeFilterOr
|
|
5723
5543
|
> = z.object({
|
|
5724
|
-
|
|
5544
|
+
or: z.array(
|
|
5725
5545
|
z.record(z.union([
|
|
5726
|
-
z.lazy(() =>
|
|
5546
|
+
z.lazy(() => DeploymentsOrEq$outboundSchema),
|
|
5727
5547
|
z.lazy(() =>
|
|
5728
|
-
|
|
5548
|
+
DeploymentsOrNe$outboundSchema
|
|
5729
5549
|
),
|
|
5730
|
-
z.lazy(() =>
|
|
5731
|
-
z.lazy(() =>
|
|
5732
|
-
z.lazy(() =>
|
|
5733
|
-
z.lazy(() =>
|
|
5734
|
-
z.lazy(() =>
|
|
5735
|
-
z.lazy(() =>
|
|
5736
|
-
z.lazy(() =>
|
|
5550
|
+
z.lazy(() => Or3$outboundSchema),
|
|
5551
|
+
z.lazy(() => OrGte$outboundSchema),
|
|
5552
|
+
z.lazy(() => OrLt$outboundSchema),
|
|
5553
|
+
z.lazy(() => OrLte$outboundSchema),
|
|
5554
|
+
z.lazy(() => DeploymentsOrIn$outboundSchema),
|
|
5555
|
+
z.lazy(() => DeploymentsOrNin$outboundSchema),
|
|
5556
|
+
z.lazy(() => OrExists$outboundSchema),
|
|
5737
5557
|
])),
|
|
5738
5558
|
),
|
|
5739
|
-
}).transform((v) => {
|
|
5740
|
-
return remap$(v, {
|
|
5741
|
-
dollarOr: "$or",
|
|
5742
|
-
});
|
|
5743
5559
|
});
|
|
5744
5560
|
|
|
5745
5561
|
/**
|
|
5746
5562
|
* @internal
|
|
5747
5563
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5748
5564
|
*/
|
|
5749
|
-
export namespace
|
|
5750
|
-
/** @deprecated use `
|
|
5751
|
-
export const inboundSchema =
|
|
5752
|
-
/** @deprecated use `
|
|
5753
|
-
export const outboundSchema =
|
|
5754
|
-
/** @deprecated use `
|
|
5755
|
-
export type Outbound =
|
|
5565
|
+
export namespace KnowledgeFilterOr$ {
|
|
5566
|
+
/** @deprecated use `KnowledgeFilterOr$inboundSchema` instead. */
|
|
5567
|
+
export const inboundSchema = KnowledgeFilterOr$inboundSchema;
|
|
5568
|
+
/** @deprecated use `KnowledgeFilterOr$outboundSchema` instead. */
|
|
5569
|
+
export const outboundSchema = KnowledgeFilterOr$outboundSchema;
|
|
5570
|
+
/** @deprecated use `KnowledgeFilterOr$Outbound` instead. */
|
|
5571
|
+
export type Outbound = KnowledgeFilterOr$Outbound;
|
|
5756
5572
|
}
|
|
5757
5573
|
|
|
5758
|
-
export function
|
|
5759
|
-
|
|
5574
|
+
export function knowledgeFilterOrToJSON(
|
|
5575
|
+
knowledgeFilterOr: KnowledgeFilterOr,
|
|
5760
5576
|
): string {
|
|
5761
5577
|
return JSON.stringify(
|
|
5762
|
-
|
|
5578
|
+
KnowledgeFilterOr$outboundSchema.parse(knowledgeFilterOr),
|
|
5763
5579
|
);
|
|
5764
5580
|
}
|
|
5765
5581
|
|
|
5766
|
-
export function
|
|
5582
|
+
export function knowledgeFilterOrFromJSON(
|
|
5767
5583
|
jsonString: string,
|
|
5768
|
-
): SafeParseResult<
|
|
5584
|
+
): SafeParseResult<KnowledgeFilterOr, SDKValidationError> {
|
|
5769
5585
|
return safeParse(
|
|
5770
5586
|
jsonString,
|
|
5771
|
-
(x) =>
|
|
5772
|
-
`Failed to parse '
|
|
5587
|
+
(x) => KnowledgeFilterOr$inboundSchema.parse(JSON.parse(x)),
|
|
5588
|
+
`Failed to parse 'KnowledgeFilterOr' from JSON`,
|
|
5773
5589
|
);
|
|
5774
5590
|
}
|
|
5775
5591
|
|
|
5776
5592
|
/** @internal */
|
|
5777
|
-
export const
|
|
5778
|
-
|
|
5593
|
+
export const AndExists$inboundSchema: z.ZodType<
|
|
5594
|
+
AndExists,
|
|
5779
5595
|
z.ZodTypeDef,
|
|
5780
5596
|
unknown
|
|
5781
5597
|
> = z.object({
|
|
5782
|
-
|
|
5783
|
-
}).transform((v) => {
|
|
5784
|
-
return remap$(v, {
|
|
5785
|
-
"$exists": "dollarExists",
|
|
5786
|
-
});
|
|
5598
|
+
exists: z.boolean(),
|
|
5787
5599
|
});
|
|
5788
5600
|
|
|
5789
5601
|
/** @internal */
|
|
5790
|
-
export type
|
|
5791
|
-
|
|
5602
|
+
export type AndExists$Outbound = {
|
|
5603
|
+
exists: boolean;
|
|
5792
5604
|
};
|
|
5793
5605
|
|
|
5794
5606
|
/** @internal */
|
|
5795
|
-
export const
|
|
5796
|
-
|
|
5607
|
+
export const AndExists$outboundSchema: z.ZodType<
|
|
5608
|
+
AndExists$Outbound,
|
|
5797
5609
|
z.ZodTypeDef,
|
|
5798
|
-
|
|
5610
|
+
AndExists
|
|
5799
5611
|
> = z.object({
|
|
5800
|
-
|
|
5801
|
-
}).transform((v) => {
|
|
5802
|
-
return remap$(v, {
|
|
5803
|
-
dollarExists: "$exists",
|
|
5804
|
-
});
|
|
5612
|
+
exists: z.boolean(),
|
|
5805
5613
|
});
|
|
5806
5614
|
|
|
5807
5615
|
/**
|
|
5808
5616
|
* @internal
|
|
5809
5617
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5810
5618
|
*/
|
|
5811
|
-
export namespace
|
|
5812
|
-
/** @deprecated use `
|
|
5813
|
-
export const inboundSchema =
|
|
5814
|
-
/** @deprecated use `
|
|
5815
|
-
export const outboundSchema =
|
|
5816
|
-
/** @deprecated use `
|
|
5817
|
-
export type Outbound =
|
|
5619
|
+
export namespace AndExists$ {
|
|
5620
|
+
/** @deprecated use `AndExists$inboundSchema` instead. */
|
|
5621
|
+
export const inboundSchema = AndExists$inboundSchema;
|
|
5622
|
+
/** @deprecated use `AndExists$outboundSchema` instead. */
|
|
5623
|
+
export const outboundSchema = AndExists$outboundSchema;
|
|
5624
|
+
/** @deprecated use `AndExists$Outbound` instead. */
|
|
5625
|
+
export type Outbound = AndExists$Outbound;
|
|
5818
5626
|
}
|
|
5819
5627
|
|
|
5820
|
-
export function
|
|
5821
|
-
|
|
5822
|
-
): string {
|
|
5823
|
-
return JSON.stringify(
|
|
5824
|
-
DollarAndDollarExists$outboundSchema.parse(dollarAndDollarExists),
|
|
5825
|
-
);
|
|
5628
|
+
export function andExistsToJSON(andExists: AndExists): string {
|
|
5629
|
+
return JSON.stringify(AndExists$outboundSchema.parse(andExists));
|
|
5826
5630
|
}
|
|
5827
5631
|
|
|
5828
|
-
export function
|
|
5632
|
+
export function andExistsFromJSON(
|
|
5829
5633
|
jsonString: string,
|
|
5830
|
-
): SafeParseResult<
|
|
5634
|
+
): SafeParseResult<AndExists, SDKValidationError> {
|
|
5831
5635
|
return safeParse(
|
|
5832
5636
|
jsonString,
|
|
5833
|
-
(x) =>
|
|
5834
|
-
`Failed to parse '
|
|
5637
|
+
(x) => AndExists$inboundSchema.parse(JSON.parse(x)),
|
|
5638
|
+
`Failed to parse 'AndExists' from JSON`,
|
|
5835
5639
|
);
|
|
5836
5640
|
}
|
|
5837
5641
|
|
|
5838
5642
|
/** @internal */
|
|
5839
|
-
export const
|
|
5840
|
-
|
|
5841
|
-
z.ZodTypeDef,
|
|
5842
|
-
unknown
|
|
5843
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
5643
|
+
export const AndNin$inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown> = z
|
|
5644
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
5844
5645
|
|
|
5845
5646
|
/** @internal */
|
|
5846
|
-
export type
|
|
5647
|
+
export type AndNin$Outbound = string | number | boolean;
|
|
5847
5648
|
|
|
5848
5649
|
/** @internal */
|
|
5849
|
-
export const
|
|
5850
|
-
|
|
5650
|
+
export const AndNin$outboundSchema: z.ZodType<
|
|
5651
|
+
AndNin$Outbound,
|
|
5851
5652
|
z.ZodTypeDef,
|
|
5852
|
-
|
|
5653
|
+
AndNin
|
|
5853
5654
|
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
5854
5655
|
|
|
5855
5656
|
/**
|
|
5856
5657
|
* @internal
|
|
5857
5658
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5858
5659
|
*/
|
|
5859
|
-
export namespace
|
|
5860
|
-
/** @deprecated use `
|
|
5861
|
-
export const inboundSchema =
|
|
5862
|
-
/** @deprecated use `
|
|
5863
|
-
export const outboundSchema =
|
|
5864
|
-
/** @deprecated use `
|
|
5865
|
-
export type Outbound =
|
|
5660
|
+
export namespace AndNin$ {
|
|
5661
|
+
/** @deprecated use `AndNin$inboundSchema` instead. */
|
|
5662
|
+
export const inboundSchema = AndNin$inboundSchema;
|
|
5663
|
+
/** @deprecated use `AndNin$outboundSchema` instead. */
|
|
5664
|
+
export const outboundSchema = AndNin$outboundSchema;
|
|
5665
|
+
/** @deprecated use `AndNin$Outbound` instead. */
|
|
5666
|
+
export type Outbound = AndNin$Outbound;
|
|
5866
5667
|
}
|
|
5867
5668
|
|
|
5868
|
-
export function
|
|
5869
|
-
|
|
5870
|
-
): string {
|
|
5871
|
-
return JSON.stringify(
|
|
5872
|
-
DollarAndDollarNin$outboundSchema.parse(dollarAndDollarNin),
|
|
5873
|
-
);
|
|
5669
|
+
export function andNinToJSON(andNin: AndNin): string {
|
|
5670
|
+
return JSON.stringify(AndNin$outboundSchema.parse(andNin));
|
|
5874
5671
|
}
|
|
5875
5672
|
|
|
5876
|
-
export function
|
|
5673
|
+
export function andNinFromJSON(
|
|
5877
5674
|
jsonString: string,
|
|
5878
|
-
): SafeParseResult<
|
|
5675
|
+
): SafeParseResult<AndNin, SDKValidationError> {
|
|
5879
5676
|
return safeParse(
|
|
5880
5677
|
jsonString,
|
|
5881
|
-
(x) =>
|
|
5882
|
-
`Failed to parse '
|
|
5678
|
+
(x) => AndNin$inboundSchema.parse(JSON.parse(x)),
|
|
5679
|
+
`Failed to parse 'AndNin' from JSON`,
|
|
5883
5680
|
);
|
|
5884
5681
|
}
|
|
5885
5682
|
|
|
5886
5683
|
/** @internal */
|
|
5887
|
-
export const
|
|
5888
|
-
|
|
5684
|
+
export const DeploymentsAndNin$inboundSchema: z.ZodType<
|
|
5685
|
+
DeploymentsAndNin,
|
|
5889
5686
|
z.ZodTypeDef,
|
|
5890
5687
|
unknown
|
|
5891
5688
|
> = z.object({
|
|
5892
|
-
|
|
5893
|
-
}).transform((v) => {
|
|
5894
|
-
return remap$(v, {
|
|
5895
|
-
"$nin": "dollarNin",
|
|
5896
|
-
});
|
|
5689
|
+
nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
5897
5690
|
});
|
|
5898
5691
|
|
|
5899
5692
|
/** @internal */
|
|
5900
|
-
export type
|
|
5901
|
-
|
|
5693
|
+
export type DeploymentsAndNin$Outbound = {
|
|
5694
|
+
nin: Array<string | number | boolean>;
|
|
5902
5695
|
};
|
|
5903
5696
|
|
|
5904
5697
|
/** @internal */
|
|
5905
|
-
export const
|
|
5906
|
-
|
|
5698
|
+
export const DeploymentsAndNin$outboundSchema: z.ZodType<
|
|
5699
|
+
DeploymentsAndNin$Outbound,
|
|
5907
5700
|
z.ZodTypeDef,
|
|
5908
|
-
|
|
5701
|
+
DeploymentsAndNin
|
|
5909
5702
|
> = z.object({
|
|
5910
|
-
|
|
5911
|
-
}).transform((v) => {
|
|
5912
|
-
return remap$(v, {
|
|
5913
|
-
dollarNin: "$nin",
|
|
5914
|
-
});
|
|
5703
|
+
nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
5915
5704
|
});
|
|
5916
5705
|
|
|
5917
5706
|
/**
|
|
5918
5707
|
* @internal
|
|
5919
5708
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5920
5709
|
*/
|
|
5921
|
-
export namespace
|
|
5922
|
-
/** @deprecated use `
|
|
5923
|
-
export const inboundSchema =
|
|
5924
|
-
/** @deprecated use `
|
|
5925
|
-
export const outboundSchema =
|
|
5926
|
-
/** @deprecated use `
|
|
5927
|
-
export type Outbound =
|
|
5710
|
+
export namespace DeploymentsAndNin$ {
|
|
5711
|
+
/** @deprecated use `DeploymentsAndNin$inboundSchema` instead. */
|
|
5712
|
+
export const inboundSchema = DeploymentsAndNin$inboundSchema;
|
|
5713
|
+
/** @deprecated use `DeploymentsAndNin$outboundSchema` instead. */
|
|
5714
|
+
export const outboundSchema = DeploymentsAndNin$outboundSchema;
|
|
5715
|
+
/** @deprecated use `DeploymentsAndNin$Outbound` instead. */
|
|
5716
|
+
export type Outbound = DeploymentsAndNin$Outbound;
|
|
5928
5717
|
}
|
|
5929
5718
|
|
|
5930
|
-
export function
|
|
5931
|
-
|
|
5719
|
+
export function deploymentsAndNinToJSON(
|
|
5720
|
+
deploymentsAndNin: DeploymentsAndNin,
|
|
5932
5721
|
): string {
|
|
5933
5722
|
return JSON.stringify(
|
|
5934
|
-
|
|
5935
|
-
deploymentsDollarAndDollarNin,
|
|
5936
|
-
),
|
|
5723
|
+
DeploymentsAndNin$outboundSchema.parse(deploymentsAndNin),
|
|
5937
5724
|
);
|
|
5938
5725
|
}
|
|
5939
5726
|
|
|
5940
|
-
export function
|
|
5727
|
+
export function deploymentsAndNinFromJSON(
|
|
5941
5728
|
jsonString: string,
|
|
5942
|
-
): SafeParseResult<
|
|
5729
|
+
): SafeParseResult<DeploymentsAndNin, SDKValidationError> {
|
|
5943
5730
|
return safeParse(
|
|
5944
5731
|
jsonString,
|
|
5945
|
-
(x) =>
|
|
5946
|
-
`Failed to parse '
|
|
5732
|
+
(x) => DeploymentsAndNin$inboundSchema.parse(JSON.parse(x)),
|
|
5733
|
+
`Failed to parse 'DeploymentsAndNin' from JSON`,
|
|
5947
5734
|
);
|
|
5948
5735
|
}
|
|
5949
5736
|
|
|
5950
5737
|
/** @internal */
|
|
5951
|
-
export const
|
|
5952
|
-
|
|
5953
|
-
z.ZodTypeDef,
|
|
5954
|
-
unknown
|
|
5955
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
5738
|
+
export const AndIn$inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown> = z
|
|
5739
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
5956
5740
|
|
|
5957
5741
|
/** @internal */
|
|
5958
|
-
export type
|
|
5742
|
+
export type AndIn$Outbound = string | number | boolean;
|
|
5959
5743
|
|
|
5960
5744
|
/** @internal */
|
|
5961
|
-
export const
|
|
5962
|
-
|
|
5745
|
+
export const AndIn$outboundSchema: z.ZodType<
|
|
5746
|
+
AndIn$Outbound,
|
|
5963
5747
|
z.ZodTypeDef,
|
|
5964
|
-
|
|
5748
|
+
AndIn
|
|
5965
5749
|
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
5966
5750
|
|
|
5967
5751
|
/**
|
|
5968
5752
|
* @internal
|
|
5969
5753
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5970
5754
|
*/
|
|
5971
|
-
export namespace
|
|
5972
|
-
/** @deprecated use `
|
|
5973
|
-
export const inboundSchema =
|
|
5974
|
-
/** @deprecated use `
|
|
5975
|
-
export const outboundSchema =
|
|
5976
|
-
/** @deprecated use `
|
|
5977
|
-
export type Outbound =
|
|
5755
|
+
export namespace AndIn$ {
|
|
5756
|
+
/** @deprecated use `AndIn$inboundSchema` instead. */
|
|
5757
|
+
export const inboundSchema = AndIn$inboundSchema;
|
|
5758
|
+
/** @deprecated use `AndIn$outboundSchema` instead. */
|
|
5759
|
+
export const outboundSchema = AndIn$outboundSchema;
|
|
5760
|
+
/** @deprecated use `AndIn$Outbound` instead. */
|
|
5761
|
+
export type Outbound = AndIn$Outbound;
|
|
5978
5762
|
}
|
|
5979
5763
|
|
|
5980
|
-
export function
|
|
5981
|
-
|
|
5982
|
-
): string {
|
|
5983
|
-
return JSON.stringify(
|
|
5984
|
-
DollarAndDollarIn$outboundSchema.parse(dollarAndDollarIn),
|
|
5985
|
-
);
|
|
5764
|
+
export function andInToJSON(andIn: AndIn): string {
|
|
5765
|
+
return JSON.stringify(AndIn$outboundSchema.parse(andIn));
|
|
5986
5766
|
}
|
|
5987
5767
|
|
|
5988
|
-
export function
|
|
5768
|
+
export function andInFromJSON(
|
|
5989
5769
|
jsonString: string,
|
|
5990
|
-
): SafeParseResult<
|
|
5770
|
+
): SafeParseResult<AndIn, SDKValidationError> {
|
|
5991
5771
|
return safeParse(
|
|
5992
5772
|
jsonString,
|
|
5993
|
-
(x) =>
|
|
5994
|
-
`Failed to parse '
|
|
5773
|
+
(x) => AndIn$inboundSchema.parse(JSON.parse(x)),
|
|
5774
|
+
`Failed to parse 'AndIn' from JSON`,
|
|
5995
5775
|
);
|
|
5996
5776
|
}
|
|
5997
5777
|
|
|
5998
5778
|
/** @internal */
|
|
5999
|
-
export const
|
|
6000
|
-
|
|
5779
|
+
export const DeploymentsAndIn$inboundSchema: z.ZodType<
|
|
5780
|
+
DeploymentsAndIn,
|
|
6001
5781
|
z.ZodTypeDef,
|
|
6002
5782
|
unknown
|
|
6003
5783
|
> = z.object({
|
|
6004
|
-
|
|
6005
|
-
}).transform((v) => {
|
|
6006
|
-
return remap$(v, {
|
|
6007
|
-
"$in": "dollarIn",
|
|
6008
|
-
});
|
|
5784
|
+
in: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
6009
5785
|
});
|
|
6010
5786
|
|
|
6011
5787
|
/** @internal */
|
|
6012
|
-
export type
|
|
6013
|
-
|
|
5788
|
+
export type DeploymentsAndIn$Outbound = {
|
|
5789
|
+
in: Array<string | number | boolean>;
|
|
6014
5790
|
};
|
|
6015
5791
|
|
|
6016
5792
|
/** @internal */
|
|
6017
|
-
export const
|
|
6018
|
-
|
|
5793
|
+
export const DeploymentsAndIn$outboundSchema: z.ZodType<
|
|
5794
|
+
DeploymentsAndIn$Outbound,
|
|
6019
5795
|
z.ZodTypeDef,
|
|
6020
|
-
|
|
5796
|
+
DeploymentsAndIn
|
|
6021
5797
|
> = z.object({
|
|
6022
|
-
|
|
6023
|
-
}).transform((v) => {
|
|
6024
|
-
return remap$(v, {
|
|
6025
|
-
dollarIn: "$in",
|
|
6026
|
-
});
|
|
5798
|
+
in: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
6027
5799
|
});
|
|
6028
5800
|
|
|
6029
5801
|
/**
|
|
6030
5802
|
* @internal
|
|
6031
5803
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6032
5804
|
*/
|
|
6033
|
-
export namespace
|
|
6034
|
-
/** @deprecated use `
|
|
6035
|
-
export const inboundSchema =
|
|
6036
|
-
/** @deprecated use `
|
|
6037
|
-
export const outboundSchema =
|
|
6038
|
-
/** @deprecated use `
|
|
6039
|
-
export type Outbound =
|
|
5805
|
+
export namespace DeploymentsAndIn$ {
|
|
5806
|
+
/** @deprecated use `DeploymentsAndIn$inboundSchema` instead. */
|
|
5807
|
+
export const inboundSchema = DeploymentsAndIn$inboundSchema;
|
|
5808
|
+
/** @deprecated use `DeploymentsAndIn$outboundSchema` instead. */
|
|
5809
|
+
export const outboundSchema = DeploymentsAndIn$outboundSchema;
|
|
5810
|
+
/** @deprecated use `DeploymentsAndIn$Outbound` instead. */
|
|
5811
|
+
export type Outbound = DeploymentsAndIn$Outbound;
|
|
6040
5812
|
}
|
|
6041
5813
|
|
|
6042
|
-
export function
|
|
6043
|
-
|
|
5814
|
+
export function deploymentsAndInToJSON(
|
|
5815
|
+
deploymentsAndIn: DeploymentsAndIn,
|
|
6044
5816
|
): string {
|
|
6045
5817
|
return JSON.stringify(
|
|
6046
|
-
|
|
6047
|
-
deploymentsDollarAndDollarIn,
|
|
6048
|
-
),
|
|
5818
|
+
DeploymentsAndIn$outboundSchema.parse(deploymentsAndIn),
|
|
6049
5819
|
);
|
|
6050
5820
|
}
|
|
6051
5821
|
|
|
6052
|
-
export function
|
|
5822
|
+
export function deploymentsAndInFromJSON(
|
|
6053
5823
|
jsonString: string,
|
|
6054
|
-
): SafeParseResult<
|
|
5824
|
+
): SafeParseResult<DeploymentsAndIn, SDKValidationError> {
|
|
6055
5825
|
return safeParse(
|
|
6056
5826
|
jsonString,
|
|
6057
|
-
(x) =>
|
|
6058
|
-
`Failed to parse '
|
|
5827
|
+
(x) => DeploymentsAndIn$inboundSchema.parse(JSON.parse(x)),
|
|
5828
|
+
`Failed to parse 'DeploymentsAndIn' from JSON`,
|
|
6059
5829
|
);
|
|
6060
5830
|
}
|
|
6061
5831
|
|
|
6062
5832
|
/** @internal */
|
|
6063
|
-
export const
|
|
6064
|
-
|
|
6065
|
-
|
|
6066
|
-
unknown
|
|
6067
|
-
> = z.object({
|
|
6068
|
-
$lte: z.number(),
|
|
6069
|
-
}).transform((v) => {
|
|
6070
|
-
return remap$(v, {
|
|
6071
|
-
"$lte": "dollarLte",
|
|
5833
|
+
export const AndLte$inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown> = z
|
|
5834
|
+
.object({
|
|
5835
|
+
lte: z.number(),
|
|
6072
5836
|
});
|
|
6073
|
-
});
|
|
6074
5837
|
|
|
6075
5838
|
/** @internal */
|
|
6076
|
-
export type
|
|
6077
|
-
|
|
5839
|
+
export type AndLte$Outbound = {
|
|
5840
|
+
lte: number;
|
|
6078
5841
|
};
|
|
6079
5842
|
|
|
6080
5843
|
/** @internal */
|
|
6081
|
-
export const
|
|
6082
|
-
|
|
5844
|
+
export const AndLte$outboundSchema: z.ZodType<
|
|
5845
|
+
AndLte$Outbound,
|
|
6083
5846
|
z.ZodTypeDef,
|
|
6084
|
-
|
|
5847
|
+
AndLte
|
|
6085
5848
|
> = z.object({
|
|
6086
|
-
|
|
6087
|
-
}).transform((v) => {
|
|
6088
|
-
return remap$(v, {
|
|
6089
|
-
dollarLte: "$lte",
|
|
6090
|
-
});
|
|
5849
|
+
lte: z.number(),
|
|
6091
5850
|
});
|
|
6092
5851
|
|
|
6093
5852
|
/**
|
|
6094
5853
|
* @internal
|
|
6095
5854
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6096
5855
|
*/
|
|
6097
|
-
export namespace
|
|
6098
|
-
/** @deprecated use `
|
|
6099
|
-
export const inboundSchema =
|
|
6100
|
-
/** @deprecated use `
|
|
6101
|
-
export const outboundSchema =
|
|
6102
|
-
/** @deprecated use `
|
|
6103
|
-
export type Outbound =
|
|
5856
|
+
export namespace AndLte$ {
|
|
5857
|
+
/** @deprecated use `AndLte$inboundSchema` instead. */
|
|
5858
|
+
export const inboundSchema = AndLte$inboundSchema;
|
|
5859
|
+
/** @deprecated use `AndLte$outboundSchema` instead. */
|
|
5860
|
+
export const outboundSchema = AndLte$outboundSchema;
|
|
5861
|
+
/** @deprecated use `AndLte$Outbound` instead. */
|
|
5862
|
+
export type Outbound = AndLte$Outbound;
|
|
6104
5863
|
}
|
|
6105
5864
|
|
|
6106
|
-
export function
|
|
6107
|
-
|
|
6108
|
-
): string {
|
|
6109
|
-
return JSON.stringify(
|
|
6110
|
-
DollarAndDollarLte$outboundSchema.parse(dollarAndDollarLte),
|
|
6111
|
-
);
|
|
5865
|
+
export function andLteToJSON(andLte: AndLte): string {
|
|
5866
|
+
return JSON.stringify(AndLte$outboundSchema.parse(andLte));
|
|
6112
5867
|
}
|
|
6113
5868
|
|
|
6114
|
-
export function
|
|
5869
|
+
export function andLteFromJSON(
|
|
6115
5870
|
jsonString: string,
|
|
6116
|
-
): SafeParseResult<
|
|
5871
|
+
): SafeParseResult<AndLte, SDKValidationError> {
|
|
6117
5872
|
return safeParse(
|
|
6118
5873
|
jsonString,
|
|
6119
|
-
(x) =>
|
|
6120
|
-
`Failed to parse '
|
|
5874
|
+
(x) => AndLte$inboundSchema.parse(JSON.parse(x)),
|
|
5875
|
+
`Failed to parse 'AndLte' from JSON`,
|
|
6121
5876
|
);
|
|
6122
5877
|
}
|
|
6123
5878
|
|
|
6124
5879
|
/** @internal */
|
|
6125
|
-
export const
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
unknown
|
|
6129
|
-
> = z.object({
|
|
6130
|
-
$lt: z.number(),
|
|
6131
|
-
}).transform((v) => {
|
|
6132
|
-
return remap$(v, {
|
|
6133
|
-
"$lt": "dollarLt",
|
|
5880
|
+
export const AndLt$inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown> = z
|
|
5881
|
+
.object({
|
|
5882
|
+
lt: z.number(),
|
|
6134
5883
|
});
|
|
6135
|
-
});
|
|
6136
5884
|
|
|
6137
5885
|
/** @internal */
|
|
6138
|
-
export type
|
|
6139
|
-
|
|
5886
|
+
export type AndLt$Outbound = {
|
|
5887
|
+
lt: number;
|
|
6140
5888
|
};
|
|
6141
5889
|
|
|
6142
5890
|
/** @internal */
|
|
6143
|
-
export const
|
|
6144
|
-
|
|
5891
|
+
export const AndLt$outboundSchema: z.ZodType<
|
|
5892
|
+
AndLt$Outbound,
|
|
6145
5893
|
z.ZodTypeDef,
|
|
6146
|
-
|
|
5894
|
+
AndLt
|
|
6147
5895
|
> = z.object({
|
|
6148
|
-
|
|
6149
|
-
}).transform((v) => {
|
|
6150
|
-
return remap$(v, {
|
|
6151
|
-
dollarLt: "$lt",
|
|
6152
|
-
});
|
|
5896
|
+
lt: z.number(),
|
|
6153
5897
|
});
|
|
6154
5898
|
|
|
6155
5899
|
/**
|
|
6156
5900
|
* @internal
|
|
6157
5901
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6158
5902
|
*/
|
|
6159
|
-
export namespace
|
|
6160
|
-
/** @deprecated use `
|
|
6161
|
-
export const inboundSchema =
|
|
6162
|
-
/** @deprecated use `
|
|
6163
|
-
export const outboundSchema =
|
|
6164
|
-
/** @deprecated use `
|
|
6165
|
-
export type Outbound =
|
|
5903
|
+
export namespace AndLt$ {
|
|
5904
|
+
/** @deprecated use `AndLt$inboundSchema` instead. */
|
|
5905
|
+
export const inboundSchema = AndLt$inboundSchema;
|
|
5906
|
+
/** @deprecated use `AndLt$outboundSchema` instead. */
|
|
5907
|
+
export const outboundSchema = AndLt$outboundSchema;
|
|
5908
|
+
/** @deprecated use `AndLt$Outbound` instead. */
|
|
5909
|
+
export type Outbound = AndLt$Outbound;
|
|
6166
5910
|
}
|
|
6167
5911
|
|
|
6168
|
-
export function
|
|
6169
|
-
|
|
6170
|
-
): string {
|
|
6171
|
-
return JSON.stringify(
|
|
6172
|
-
DollarAndDollarLt$outboundSchema.parse(dollarAndDollarLt),
|
|
6173
|
-
);
|
|
5912
|
+
export function andLtToJSON(andLt: AndLt): string {
|
|
5913
|
+
return JSON.stringify(AndLt$outboundSchema.parse(andLt));
|
|
6174
5914
|
}
|
|
6175
5915
|
|
|
6176
|
-
export function
|
|
5916
|
+
export function andLtFromJSON(
|
|
6177
5917
|
jsonString: string,
|
|
6178
|
-
): SafeParseResult<
|
|
5918
|
+
): SafeParseResult<AndLt, SDKValidationError> {
|
|
6179
5919
|
return safeParse(
|
|
6180
5920
|
jsonString,
|
|
6181
|
-
(x) =>
|
|
6182
|
-
`Failed to parse '
|
|
5921
|
+
(x) => AndLt$inboundSchema.parse(JSON.parse(x)),
|
|
5922
|
+
`Failed to parse 'AndLt' from JSON`,
|
|
6183
5923
|
);
|
|
6184
5924
|
}
|
|
6185
5925
|
|
|
6186
5926
|
/** @internal */
|
|
6187
|
-
export const
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
unknown
|
|
6191
|
-
> = z.object({
|
|
6192
|
-
$gte: z.number(),
|
|
6193
|
-
}).transform((v) => {
|
|
6194
|
-
return remap$(v, {
|
|
6195
|
-
"$gte": "dollarGte",
|
|
5927
|
+
export const AndGte$inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown> = z
|
|
5928
|
+
.object({
|
|
5929
|
+
gte: z.number(),
|
|
6196
5930
|
});
|
|
6197
|
-
});
|
|
6198
5931
|
|
|
6199
5932
|
/** @internal */
|
|
6200
|
-
export type
|
|
6201
|
-
|
|
5933
|
+
export type AndGte$Outbound = {
|
|
5934
|
+
gte: number;
|
|
6202
5935
|
};
|
|
6203
5936
|
|
|
6204
5937
|
/** @internal */
|
|
6205
|
-
export const
|
|
6206
|
-
|
|
5938
|
+
export const AndGte$outboundSchema: z.ZodType<
|
|
5939
|
+
AndGte$Outbound,
|
|
6207
5940
|
z.ZodTypeDef,
|
|
6208
|
-
|
|
5941
|
+
AndGte
|
|
6209
5942
|
> = z.object({
|
|
6210
|
-
|
|
6211
|
-
}).transform((v) => {
|
|
6212
|
-
return remap$(v, {
|
|
6213
|
-
dollarGte: "$gte",
|
|
6214
|
-
});
|
|
5943
|
+
gte: z.number(),
|
|
6215
5944
|
});
|
|
6216
5945
|
|
|
6217
5946
|
/**
|
|
6218
5947
|
* @internal
|
|
6219
5948
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6220
5949
|
*/
|
|
6221
|
-
export namespace
|
|
6222
|
-
/** @deprecated use `
|
|
6223
|
-
export const inboundSchema =
|
|
6224
|
-
/** @deprecated use `
|
|
6225
|
-
export const outboundSchema =
|
|
6226
|
-
/** @deprecated use `
|
|
6227
|
-
export type Outbound =
|
|
5950
|
+
export namespace AndGte$ {
|
|
5951
|
+
/** @deprecated use `AndGte$inboundSchema` instead. */
|
|
5952
|
+
export const inboundSchema = AndGte$inboundSchema;
|
|
5953
|
+
/** @deprecated use `AndGte$outboundSchema` instead. */
|
|
5954
|
+
export const outboundSchema = AndGte$outboundSchema;
|
|
5955
|
+
/** @deprecated use `AndGte$Outbound` instead. */
|
|
5956
|
+
export type Outbound = AndGte$Outbound;
|
|
6228
5957
|
}
|
|
6229
5958
|
|
|
6230
|
-
export function
|
|
6231
|
-
|
|
6232
|
-
): string {
|
|
6233
|
-
return JSON.stringify(
|
|
6234
|
-
DollarAndDollarGte$outboundSchema.parse(dollarAndDollarGte),
|
|
6235
|
-
);
|
|
5959
|
+
export function andGteToJSON(andGte: AndGte): string {
|
|
5960
|
+
return JSON.stringify(AndGte$outboundSchema.parse(andGte));
|
|
6236
5961
|
}
|
|
6237
5962
|
|
|
6238
|
-
export function
|
|
5963
|
+
export function andGteFromJSON(
|
|
6239
5964
|
jsonString: string,
|
|
6240
|
-
): SafeParseResult<
|
|
5965
|
+
): SafeParseResult<AndGte, SDKValidationError> {
|
|
6241
5966
|
return safeParse(
|
|
6242
5967
|
jsonString,
|
|
6243
|
-
(x) =>
|
|
6244
|
-
`Failed to parse '
|
|
5968
|
+
(x) => AndGte$inboundSchema.parse(JSON.parse(x)),
|
|
5969
|
+
`Failed to parse 'AndGte' from JSON`,
|
|
6245
5970
|
);
|
|
6246
5971
|
}
|
|
6247
5972
|
|
|
6248
5973
|
/** @internal */
|
|
6249
|
-
export const
|
|
6250
|
-
|
|
6251
|
-
|
|
6252
|
-
unknown
|
|
6253
|
-
> = z.object({
|
|
6254
|
-
$gt: z.number(),
|
|
6255
|
-
}).transform((v) => {
|
|
6256
|
-
return remap$(v, {
|
|
6257
|
-
"$gt": "dollarGt",
|
|
5974
|
+
export const And3$inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown> = z
|
|
5975
|
+
.object({
|
|
5976
|
+
gt: z.number(),
|
|
6258
5977
|
});
|
|
6259
|
-
});
|
|
6260
5978
|
|
|
6261
5979
|
/** @internal */
|
|
6262
|
-
export type
|
|
6263
|
-
|
|
5980
|
+
export type And3$Outbound = {
|
|
5981
|
+
gt: number;
|
|
6264
5982
|
};
|
|
6265
5983
|
|
|
6266
5984
|
/** @internal */
|
|
6267
|
-
export const
|
|
6268
|
-
|
|
6269
|
-
|
|
6270
|
-
DollarAnd3
|
|
6271
|
-
> = z.object({
|
|
6272
|
-
dollarGt: z.number(),
|
|
6273
|
-
}).transform((v) => {
|
|
6274
|
-
return remap$(v, {
|
|
6275
|
-
dollarGt: "$gt",
|
|
5985
|
+
export const And3$outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3> =
|
|
5986
|
+
z.object({
|
|
5987
|
+
gt: z.number(),
|
|
6276
5988
|
});
|
|
6277
|
-
});
|
|
6278
5989
|
|
|
6279
5990
|
/**
|
|
6280
5991
|
* @internal
|
|
6281
5992
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6282
5993
|
*/
|
|
6283
|
-
export namespace
|
|
6284
|
-
/** @deprecated use `
|
|
6285
|
-
export const inboundSchema =
|
|
6286
|
-
/** @deprecated use `
|
|
6287
|
-
export const outboundSchema =
|
|
6288
|
-
/** @deprecated use `
|
|
6289
|
-
export type Outbound =
|
|
5994
|
+
export namespace And3$ {
|
|
5995
|
+
/** @deprecated use `And3$inboundSchema` instead. */
|
|
5996
|
+
export const inboundSchema = And3$inboundSchema;
|
|
5997
|
+
/** @deprecated use `And3$outboundSchema` instead. */
|
|
5998
|
+
export const outboundSchema = And3$outboundSchema;
|
|
5999
|
+
/** @deprecated use `And3$Outbound` instead. */
|
|
6000
|
+
export type Outbound = And3$Outbound;
|
|
6290
6001
|
}
|
|
6291
6002
|
|
|
6292
|
-
export function
|
|
6293
|
-
return JSON.stringify(
|
|
6003
|
+
export function and3ToJSON(and3: And3): string {
|
|
6004
|
+
return JSON.stringify(And3$outboundSchema.parse(and3));
|
|
6294
6005
|
}
|
|
6295
6006
|
|
|
6296
|
-
export function
|
|
6007
|
+
export function and3FromJSON(
|
|
6297
6008
|
jsonString: string,
|
|
6298
|
-
): SafeParseResult<
|
|
6009
|
+
): SafeParseResult<And3, SDKValidationError> {
|
|
6299
6010
|
return safeParse(
|
|
6300
6011
|
jsonString,
|
|
6301
|
-
(x) =>
|
|
6302
|
-
`Failed to parse '
|
|
6012
|
+
(x) => And3$inboundSchema.parse(JSON.parse(x)),
|
|
6013
|
+
`Failed to parse 'And3' from JSON`,
|
|
6303
6014
|
);
|
|
6304
6015
|
}
|
|
6305
6016
|
|
|
6306
6017
|
/** @internal */
|
|
6307
|
-
export const
|
|
6308
|
-
|
|
6309
|
-
z.ZodTypeDef,
|
|
6310
|
-
unknown
|
|
6311
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6018
|
+
export const AndNe$inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown> = z
|
|
6019
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
6312
6020
|
|
|
6313
6021
|
/** @internal */
|
|
6314
|
-
export type
|
|
6022
|
+
export type AndNe$Outbound = string | number | boolean;
|
|
6315
6023
|
|
|
6316
6024
|
/** @internal */
|
|
6317
|
-
export const
|
|
6318
|
-
|
|
6025
|
+
export const AndNe$outboundSchema: z.ZodType<
|
|
6026
|
+
AndNe$Outbound,
|
|
6319
6027
|
z.ZodTypeDef,
|
|
6320
|
-
|
|
6028
|
+
AndNe
|
|
6321
6029
|
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6322
6030
|
|
|
6323
6031
|
/**
|
|
6324
6032
|
* @internal
|
|
6325
6033
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6326
6034
|
*/
|
|
6327
|
-
export namespace
|
|
6328
|
-
/** @deprecated use `
|
|
6329
|
-
export const inboundSchema =
|
|
6330
|
-
/** @deprecated use `
|
|
6331
|
-
export const outboundSchema =
|
|
6332
|
-
/** @deprecated use `
|
|
6333
|
-
export type Outbound =
|
|
6035
|
+
export namespace AndNe$ {
|
|
6036
|
+
/** @deprecated use `AndNe$inboundSchema` instead. */
|
|
6037
|
+
export const inboundSchema = AndNe$inboundSchema;
|
|
6038
|
+
/** @deprecated use `AndNe$outboundSchema` instead. */
|
|
6039
|
+
export const outboundSchema = AndNe$outboundSchema;
|
|
6040
|
+
/** @deprecated use `AndNe$Outbound` instead. */
|
|
6041
|
+
export type Outbound = AndNe$Outbound;
|
|
6334
6042
|
}
|
|
6335
6043
|
|
|
6336
|
-
export function
|
|
6337
|
-
|
|
6338
|
-
): string {
|
|
6339
|
-
return JSON.stringify(
|
|
6340
|
-
DollarAndDollarNe$outboundSchema.parse(dollarAndDollarNe),
|
|
6341
|
-
);
|
|
6044
|
+
export function andNeToJSON(andNe: AndNe): string {
|
|
6045
|
+
return JSON.stringify(AndNe$outboundSchema.parse(andNe));
|
|
6342
6046
|
}
|
|
6343
6047
|
|
|
6344
|
-
export function
|
|
6048
|
+
export function andNeFromJSON(
|
|
6345
6049
|
jsonString: string,
|
|
6346
|
-
): SafeParseResult<
|
|
6050
|
+
): SafeParseResult<AndNe, SDKValidationError> {
|
|
6347
6051
|
return safeParse(
|
|
6348
6052
|
jsonString,
|
|
6349
|
-
(x) =>
|
|
6350
|
-
`Failed to parse '
|
|
6053
|
+
(x) => AndNe$inboundSchema.parse(JSON.parse(x)),
|
|
6054
|
+
`Failed to parse 'AndNe' from JSON`,
|
|
6351
6055
|
);
|
|
6352
6056
|
}
|
|
6353
6057
|
|
|
6354
6058
|
/** @internal */
|
|
6355
|
-
export const
|
|
6356
|
-
|
|
6059
|
+
export const DeploymentsAndNe$inboundSchema: z.ZodType<
|
|
6060
|
+
DeploymentsAndNe,
|
|
6357
6061
|
z.ZodTypeDef,
|
|
6358
6062
|
unknown
|
|
6359
6063
|
> = z.object({
|
|
6360
|
-
|
|
6361
|
-
}).transform((v) => {
|
|
6362
|
-
return remap$(v, {
|
|
6363
|
-
"$ne": "dollarNe",
|
|
6364
|
-
});
|
|
6064
|
+
ne: z.union([z.string(), z.number(), z.boolean()]),
|
|
6365
6065
|
});
|
|
6366
6066
|
|
|
6367
6067
|
/** @internal */
|
|
6368
|
-
export type
|
|
6369
|
-
|
|
6068
|
+
export type DeploymentsAndNe$Outbound = {
|
|
6069
|
+
ne: string | number | boolean;
|
|
6370
6070
|
};
|
|
6371
6071
|
|
|
6372
6072
|
/** @internal */
|
|
6373
|
-
export const
|
|
6374
|
-
|
|
6073
|
+
export const DeploymentsAndNe$outboundSchema: z.ZodType<
|
|
6074
|
+
DeploymentsAndNe$Outbound,
|
|
6375
6075
|
z.ZodTypeDef,
|
|
6376
|
-
|
|
6076
|
+
DeploymentsAndNe
|
|
6377
6077
|
> = z.object({
|
|
6378
|
-
|
|
6379
|
-
}).transform((v) => {
|
|
6380
|
-
return remap$(v, {
|
|
6381
|
-
dollarNe: "$ne",
|
|
6382
|
-
});
|
|
6078
|
+
ne: z.union([z.string(), z.number(), z.boolean()]),
|
|
6383
6079
|
});
|
|
6384
6080
|
|
|
6385
6081
|
/**
|
|
6386
6082
|
* @internal
|
|
6387
6083
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6388
6084
|
*/
|
|
6389
|
-
export namespace
|
|
6390
|
-
/** @deprecated use `
|
|
6391
|
-
export const inboundSchema =
|
|
6392
|
-
/** @deprecated use `
|
|
6393
|
-
export const outboundSchema =
|
|
6394
|
-
/** @deprecated use `
|
|
6395
|
-
export type Outbound =
|
|
6085
|
+
export namespace DeploymentsAndNe$ {
|
|
6086
|
+
/** @deprecated use `DeploymentsAndNe$inboundSchema` instead. */
|
|
6087
|
+
export const inboundSchema = DeploymentsAndNe$inboundSchema;
|
|
6088
|
+
/** @deprecated use `DeploymentsAndNe$outboundSchema` instead. */
|
|
6089
|
+
export const outboundSchema = DeploymentsAndNe$outboundSchema;
|
|
6090
|
+
/** @deprecated use `DeploymentsAndNe$Outbound` instead. */
|
|
6091
|
+
export type Outbound = DeploymentsAndNe$Outbound;
|
|
6396
6092
|
}
|
|
6397
6093
|
|
|
6398
|
-
export function
|
|
6399
|
-
|
|
6094
|
+
export function deploymentsAndNeToJSON(
|
|
6095
|
+
deploymentsAndNe: DeploymentsAndNe,
|
|
6400
6096
|
): string {
|
|
6401
6097
|
return JSON.stringify(
|
|
6402
|
-
|
|
6403
|
-
deploymentsDollarAndDollarNe,
|
|
6404
|
-
),
|
|
6098
|
+
DeploymentsAndNe$outboundSchema.parse(deploymentsAndNe),
|
|
6405
6099
|
);
|
|
6406
6100
|
}
|
|
6407
6101
|
|
|
6408
|
-
export function
|
|
6102
|
+
export function deploymentsAndNeFromJSON(
|
|
6409
6103
|
jsonString: string,
|
|
6410
|
-
): SafeParseResult<
|
|
6104
|
+
): SafeParseResult<DeploymentsAndNe, SDKValidationError> {
|
|
6411
6105
|
return safeParse(
|
|
6412
6106
|
jsonString,
|
|
6413
|
-
(x) =>
|
|
6414
|
-
`Failed to parse '
|
|
6107
|
+
(x) => DeploymentsAndNe$inboundSchema.parse(JSON.parse(x)),
|
|
6108
|
+
`Failed to parse 'DeploymentsAndNe' from JSON`,
|
|
6415
6109
|
);
|
|
6416
6110
|
}
|
|
6417
6111
|
|
|
6418
6112
|
/** @internal */
|
|
6419
|
-
export const
|
|
6420
|
-
|
|
6421
|
-
z.ZodTypeDef,
|
|
6422
|
-
unknown
|
|
6423
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6113
|
+
export const AndEq$inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown> = z
|
|
6114
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
6424
6115
|
|
|
6425
6116
|
/** @internal */
|
|
6426
|
-
export type
|
|
6117
|
+
export type AndEq$Outbound = string | number | boolean;
|
|
6427
6118
|
|
|
6428
6119
|
/** @internal */
|
|
6429
|
-
export const
|
|
6430
|
-
|
|
6120
|
+
export const AndEq$outboundSchema: z.ZodType<
|
|
6121
|
+
AndEq$Outbound,
|
|
6431
6122
|
z.ZodTypeDef,
|
|
6432
|
-
|
|
6123
|
+
AndEq
|
|
6433
6124
|
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6434
6125
|
|
|
6435
6126
|
/**
|
|
6436
6127
|
* @internal
|
|
6437
6128
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6438
6129
|
*/
|
|
6439
|
-
export namespace
|
|
6440
|
-
/** @deprecated use `
|
|
6441
|
-
export const inboundSchema =
|
|
6442
|
-
/** @deprecated use `
|
|
6443
|
-
export const outboundSchema =
|
|
6444
|
-
/** @deprecated use `
|
|
6445
|
-
export type Outbound =
|
|
6130
|
+
export namespace AndEq$ {
|
|
6131
|
+
/** @deprecated use `AndEq$inboundSchema` instead. */
|
|
6132
|
+
export const inboundSchema = AndEq$inboundSchema;
|
|
6133
|
+
/** @deprecated use `AndEq$outboundSchema` instead. */
|
|
6134
|
+
export const outboundSchema = AndEq$outboundSchema;
|
|
6135
|
+
/** @deprecated use `AndEq$Outbound` instead. */
|
|
6136
|
+
export type Outbound = AndEq$Outbound;
|
|
6446
6137
|
}
|
|
6447
6138
|
|
|
6448
|
-
export function
|
|
6449
|
-
|
|
6450
|
-
): string {
|
|
6451
|
-
return JSON.stringify(
|
|
6452
|
-
DollarAndDollarEq$outboundSchema.parse(dollarAndDollarEq),
|
|
6453
|
-
);
|
|
6139
|
+
export function andEqToJSON(andEq: AndEq): string {
|
|
6140
|
+
return JSON.stringify(AndEq$outboundSchema.parse(andEq));
|
|
6454
6141
|
}
|
|
6455
6142
|
|
|
6456
|
-
export function
|
|
6143
|
+
export function andEqFromJSON(
|
|
6457
6144
|
jsonString: string,
|
|
6458
|
-
): SafeParseResult<
|
|
6145
|
+
): SafeParseResult<AndEq, SDKValidationError> {
|
|
6459
6146
|
return safeParse(
|
|
6460
6147
|
jsonString,
|
|
6461
|
-
(x) =>
|
|
6462
|
-
`Failed to parse '
|
|
6148
|
+
(x) => AndEq$inboundSchema.parse(JSON.parse(x)),
|
|
6149
|
+
`Failed to parse 'AndEq' from JSON`,
|
|
6463
6150
|
);
|
|
6464
6151
|
}
|
|
6465
6152
|
|
|
6466
6153
|
/** @internal */
|
|
6467
|
-
export const
|
|
6468
|
-
|
|
6154
|
+
export const DeploymentsAndEq$inboundSchema: z.ZodType<
|
|
6155
|
+
DeploymentsAndEq,
|
|
6469
6156
|
z.ZodTypeDef,
|
|
6470
6157
|
unknown
|
|
6471
6158
|
> = z.object({
|
|
6472
|
-
|
|
6473
|
-
}).transform((v) => {
|
|
6474
|
-
return remap$(v, {
|
|
6475
|
-
"$eq": "dollarEq",
|
|
6476
|
-
});
|
|
6159
|
+
eq: z.union([z.string(), z.number(), z.boolean()]),
|
|
6477
6160
|
});
|
|
6478
6161
|
|
|
6479
6162
|
/** @internal */
|
|
6480
|
-
export type
|
|
6481
|
-
|
|
6163
|
+
export type DeploymentsAndEq$Outbound = {
|
|
6164
|
+
eq: string | number | boolean;
|
|
6482
6165
|
};
|
|
6483
6166
|
|
|
6484
6167
|
/** @internal */
|
|
6485
|
-
export const
|
|
6486
|
-
|
|
6168
|
+
export const DeploymentsAndEq$outboundSchema: z.ZodType<
|
|
6169
|
+
DeploymentsAndEq$Outbound,
|
|
6487
6170
|
z.ZodTypeDef,
|
|
6488
|
-
|
|
6171
|
+
DeploymentsAndEq
|
|
6489
6172
|
> = z.object({
|
|
6490
|
-
|
|
6491
|
-
}).transform((v) => {
|
|
6492
|
-
return remap$(v, {
|
|
6493
|
-
dollarEq: "$eq",
|
|
6494
|
-
});
|
|
6173
|
+
eq: z.union([z.string(), z.number(), z.boolean()]),
|
|
6495
6174
|
});
|
|
6496
6175
|
|
|
6497
6176
|
/**
|
|
6498
6177
|
* @internal
|
|
6499
6178
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6500
6179
|
*/
|
|
6501
|
-
export namespace
|
|
6502
|
-
/** @deprecated use `
|
|
6503
|
-
export const inboundSchema =
|
|
6504
|
-
/** @deprecated use `
|
|
6505
|
-
export const outboundSchema =
|
|
6506
|
-
/** @deprecated use `
|
|
6507
|
-
export type Outbound =
|
|
6180
|
+
export namespace DeploymentsAndEq$ {
|
|
6181
|
+
/** @deprecated use `DeploymentsAndEq$inboundSchema` instead. */
|
|
6182
|
+
export const inboundSchema = DeploymentsAndEq$inboundSchema;
|
|
6183
|
+
/** @deprecated use `DeploymentsAndEq$outboundSchema` instead. */
|
|
6184
|
+
export const outboundSchema = DeploymentsAndEq$outboundSchema;
|
|
6185
|
+
/** @deprecated use `DeploymentsAndEq$Outbound` instead. */
|
|
6186
|
+
export type Outbound = DeploymentsAndEq$Outbound;
|
|
6508
6187
|
}
|
|
6509
6188
|
|
|
6510
|
-
export function
|
|
6511
|
-
|
|
6189
|
+
export function deploymentsAndEqToJSON(
|
|
6190
|
+
deploymentsAndEq: DeploymentsAndEq,
|
|
6512
6191
|
): string {
|
|
6513
6192
|
return JSON.stringify(
|
|
6514
|
-
|
|
6515
|
-
deploymentsDollarAndDollarEq,
|
|
6516
|
-
),
|
|
6193
|
+
DeploymentsAndEq$outboundSchema.parse(deploymentsAndEq),
|
|
6517
6194
|
);
|
|
6518
6195
|
}
|
|
6519
6196
|
|
|
6520
|
-
export function
|
|
6197
|
+
export function deploymentsAndEqFromJSON(
|
|
6521
6198
|
jsonString: string,
|
|
6522
|
-
): SafeParseResult<
|
|
6199
|
+
): SafeParseResult<DeploymentsAndEq, SDKValidationError> {
|
|
6523
6200
|
return safeParse(
|
|
6524
6201
|
jsonString,
|
|
6525
|
-
(x) =>
|
|
6526
|
-
`Failed to parse '
|
|
6202
|
+
(x) => DeploymentsAndEq$inboundSchema.parse(JSON.parse(x)),
|
|
6203
|
+
`Failed to parse 'DeploymentsAndEq' from JSON`,
|
|
6527
6204
|
);
|
|
6528
6205
|
}
|
|
6529
6206
|
|
|
6530
6207
|
/** @internal */
|
|
6531
|
-
export const
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
|
|
6538
|
-
|
|
6539
|
-
|
|
6540
|
-
|
|
6541
|
-
|
|
6542
|
-
|
|
6543
|
-
|
|
6544
|
-
z.lazy(() => DollarAndDollarExists$inboundSchema),
|
|
6545
|
-
]);
|
|
6208
|
+
export const And$inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown> = z.union(
|
|
6209
|
+
[
|
|
6210
|
+
z.lazy(() => DeploymentsAndEq$inboundSchema),
|
|
6211
|
+
z.lazy(() => DeploymentsAndNe$inboundSchema),
|
|
6212
|
+
z.lazy(() => And3$inboundSchema),
|
|
6213
|
+
z.lazy(() => AndGte$inboundSchema),
|
|
6214
|
+
z.lazy(() => AndLt$inboundSchema),
|
|
6215
|
+
z.lazy(() => AndLte$inboundSchema),
|
|
6216
|
+
z.lazy(() => DeploymentsAndIn$inboundSchema),
|
|
6217
|
+
z.lazy(() => DeploymentsAndNin$inboundSchema),
|
|
6218
|
+
z.lazy(() => AndExists$inboundSchema),
|
|
6219
|
+
],
|
|
6220
|
+
);
|
|
6546
6221
|
|
|
6547
6222
|
/** @internal */
|
|
6548
|
-
export type
|
|
6549
|
-
|
|
|
6550
|
-
|
|
|
6551
|
-
|
|
|
6552
|
-
|
|
|
6553
|
-
|
|
|
6554
|
-
|
|
|
6555
|
-
|
|
|
6556
|
-
|
|
|
6557
|
-
|
|
|
6223
|
+
export type And$Outbound =
|
|
6224
|
+
| DeploymentsAndEq$Outbound
|
|
6225
|
+
| DeploymentsAndNe$Outbound
|
|
6226
|
+
| And3$Outbound
|
|
6227
|
+
| AndGte$Outbound
|
|
6228
|
+
| AndLt$Outbound
|
|
6229
|
+
| AndLte$Outbound
|
|
6230
|
+
| DeploymentsAndIn$Outbound
|
|
6231
|
+
| DeploymentsAndNin$Outbound
|
|
6232
|
+
| AndExists$Outbound;
|
|
6558
6233
|
|
|
6559
6234
|
/** @internal */
|
|
6560
|
-
export const
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
z.lazy(() => DeploymentsDollarAndDollarNin$outboundSchema),
|
|
6573
|
-
z.lazy(() => DollarAndDollarExists$outboundSchema),
|
|
6574
|
-
]);
|
|
6235
|
+
export const And$outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And> = z
|
|
6236
|
+
.union([
|
|
6237
|
+
z.lazy(() => DeploymentsAndEq$outboundSchema),
|
|
6238
|
+
z.lazy(() => DeploymentsAndNe$outboundSchema),
|
|
6239
|
+
z.lazy(() => And3$outboundSchema),
|
|
6240
|
+
z.lazy(() => AndGte$outboundSchema),
|
|
6241
|
+
z.lazy(() => AndLt$outboundSchema),
|
|
6242
|
+
z.lazy(() => AndLte$outboundSchema),
|
|
6243
|
+
z.lazy(() => DeploymentsAndIn$outboundSchema),
|
|
6244
|
+
z.lazy(() => DeploymentsAndNin$outboundSchema),
|
|
6245
|
+
z.lazy(() => AndExists$outboundSchema),
|
|
6246
|
+
]);
|
|
6575
6247
|
|
|
6576
6248
|
/**
|
|
6577
6249
|
* @internal
|
|
6578
6250
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6579
6251
|
*/
|
|
6580
|
-
export namespace
|
|
6581
|
-
/** @deprecated use `
|
|
6582
|
-
export const inboundSchema =
|
|
6583
|
-
/** @deprecated use `
|
|
6584
|
-
export const outboundSchema =
|
|
6585
|
-
/** @deprecated use `
|
|
6586
|
-
export type Outbound =
|
|
6252
|
+
export namespace And$ {
|
|
6253
|
+
/** @deprecated use `And$inboundSchema` instead. */
|
|
6254
|
+
export const inboundSchema = And$inboundSchema;
|
|
6255
|
+
/** @deprecated use `And$outboundSchema` instead. */
|
|
6256
|
+
export const outboundSchema = And$outboundSchema;
|
|
6257
|
+
/** @deprecated use `And$Outbound` instead. */
|
|
6258
|
+
export type Outbound = And$Outbound;
|
|
6587
6259
|
}
|
|
6588
6260
|
|
|
6589
|
-
export function
|
|
6590
|
-
return JSON.stringify(
|
|
6261
|
+
export function andToJSON(and: And): string {
|
|
6262
|
+
return JSON.stringify(And$outboundSchema.parse(and));
|
|
6591
6263
|
}
|
|
6592
6264
|
|
|
6593
|
-
export function
|
|
6265
|
+
export function andFromJSON(
|
|
6594
6266
|
jsonString: string,
|
|
6595
|
-
): SafeParseResult<
|
|
6267
|
+
): SafeParseResult<And, SDKValidationError> {
|
|
6596
6268
|
return safeParse(
|
|
6597
6269
|
jsonString,
|
|
6598
|
-
(x) =>
|
|
6599
|
-
`Failed to parse '
|
|
6270
|
+
(x) => And$inboundSchema.parse(JSON.parse(x)),
|
|
6271
|
+
`Failed to parse 'And' from JSON`,
|
|
6600
6272
|
);
|
|
6601
6273
|
}
|
|
6602
6274
|
|
|
6603
6275
|
/** @internal */
|
|
6604
|
-
export const
|
|
6605
|
-
|
|
6276
|
+
export const KnowledgeFilterAnd$inboundSchema: z.ZodType<
|
|
6277
|
+
KnowledgeFilterAnd,
|
|
6606
6278
|
z.ZodTypeDef,
|
|
6607
6279
|
unknown
|
|
6608
6280
|
> = z.object({
|
|
6609
|
-
|
|
6281
|
+
and: z.array(
|
|
6610
6282
|
z.record(z.union([
|
|
6611
|
-
z.lazy(() =>
|
|
6283
|
+
z.lazy(() => DeploymentsAndEq$inboundSchema),
|
|
6612
6284
|
z.lazy(() =>
|
|
6613
|
-
|
|
6285
|
+
DeploymentsAndNe$inboundSchema
|
|
6614
6286
|
),
|
|
6615
|
-
z.lazy(() =>
|
|
6616
|
-
z.lazy(() =>
|
|
6617
|
-
z.lazy(() =>
|
|
6618
|
-
z.lazy(() =>
|
|
6619
|
-
z.lazy(() =>
|
|
6620
|
-
z.lazy(() =>
|
|
6621
|
-
z.lazy(() =>
|
|
6287
|
+
z.lazy(() => And3$inboundSchema),
|
|
6288
|
+
z.lazy(() => AndGte$inboundSchema),
|
|
6289
|
+
z.lazy(() => AndLt$inboundSchema),
|
|
6290
|
+
z.lazy(() => AndLte$inboundSchema),
|
|
6291
|
+
z.lazy(() => DeploymentsAndIn$inboundSchema),
|
|
6292
|
+
z.lazy(() => DeploymentsAndNin$inboundSchema),
|
|
6293
|
+
z.lazy(() => AndExists$inboundSchema),
|
|
6622
6294
|
])),
|
|
6623
6295
|
),
|
|
6624
|
-
}).transform((v) => {
|
|
6625
|
-
return remap$(v, {
|
|
6626
|
-
"$and": "dollarAnd",
|
|
6627
|
-
});
|
|
6628
6296
|
});
|
|
6629
6297
|
|
|
6630
6298
|
/** @internal */
|
|
6631
|
-
export type
|
|
6632
|
-
|
|
6299
|
+
export type KnowledgeFilterAnd$Outbound = {
|
|
6300
|
+
and: Array<
|
|
6633
6301
|
{
|
|
6634
6302
|
[k: string]:
|
|
6635
|
-
|
|
|
6636
|
-
|
|
|
6637
|
-
|
|
|
6638
|
-
|
|
|
6639
|
-
|
|
|
6640
|
-
|
|
|
6641
|
-
|
|
|
6642
|
-
|
|
|
6643
|
-
|
|
|
6303
|
+
| DeploymentsAndEq$Outbound
|
|
6304
|
+
| DeploymentsAndNe$Outbound
|
|
6305
|
+
| And3$Outbound
|
|
6306
|
+
| AndGte$Outbound
|
|
6307
|
+
| AndLt$Outbound
|
|
6308
|
+
| AndLte$Outbound
|
|
6309
|
+
| DeploymentsAndIn$Outbound
|
|
6310
|
+
| DeploymentsAndNin$Outbound
|
|
6311
|
+
| AndExists$Outbound;
|
|
6644
6312
|
}
|
|
6645
6313
|
>;
|
|
6646
6314
|
};
|
|
6647
6315
|
|
|
6648
6316
|
/** @internal */
|
|
6649
|
-
export const
|
|
6650
|
-
|
|
6317
|
+
export const KnowledgeFilterAnd$outboundSchema: z.ZodType<
|
|
6318
|
+
KnowledgeFilterAnd$Outbound,
|
|
6651
6319
|
z.ZodTypeDef,
|
|
6652
|
-
|
|
6320
|
+
KnowledgeFilterAnd
|
|
6653
6321
|
> = z.object({
|
|
6654
|
-
|
|
6322
|
+
and: z.array(
|
|
6655
6323
|
z.record(z.union([
|
|
6656
|
-
z.lazy(() =>
|
|
6324
|
+
z.lazy(() => DeploymentsAndEq$outboundSchema),
|
|
6657
6325
|
z.lazy(() =>
|
|
6658
|
-
|
|
6326
|
+
DeploymentsAndNe$outboundSchema
|
|
6659
6327
|
),
|
|
6660
|
-
z.lazy(() =>
|
|
6661
|
-
z.lazy(() =>
|
|
6662
|
-
z.lazy(() =>
|
|
6663
|
-
z.lazy(() =>
|
|
6664
|
-
z.lazy(() =>
|
|
6665
|
-
z.lazy(() =>
|
|
6666
|
-
z.lazy(() =>
|
|
6328
|
+
z.lazy(() => And3$outboundSchema),
|
|
6329
|
+
z.lazy(() => AndGte$outboundSchema),
|
|
6330
|
+
z.lazy(() => AndLt$outboundSchema),
|
|
6331
|
+
z.lazy(() => AndLte$outboundSchema),
|
|
6332
|
+
z.lazy(() => DeploymentsAndIn$outboundSchema),
|
|
6333
|
+
z.lazy(() => DeploymentsAndNin$outboundSchema),
|
|
6334
|
+
z.lazy(() => AndExists$outboundSchema),
|
|
6667
6335
|
])),
|
|
6668
6336
|
),
|
|
6669
|
-
}).transform((v) => {
|
|
6670
|
-
return remap$(v, {
|
|
6671
|
-
dollarAnd: "$and",
|
|
6672
|
-
});
|
|
6673
6337
|
});
|
|
6674
6338
|
|
|
6675
6339
|
/**
|
|
6676
6340
|
* @internal
|
|
6677
6341
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6678
6342
|
*/
|
|
6679
|
-
export namespace
|
|
6680
|
-
/** @deprecated use `
|
|
6681
|
-
export const inboundSchema =
|
|
6682
|
-
/** @deprecated use `
|
|
6683
|
-
export const outboundSchema =
|
|
6684
|
-
/** @deprecated use `
|
|
6685
|
-
export type Outbound =
|
|
6343
|
+
export namespace KnowledgeFilterAnd$ {
|
|
6344
|
+
/** @deprecated use `KnowledgeFilterAnd$inboundSchema` instead. */
|
|
6345
|
+
export const inboundSchema = KnowledgeFilterAnd$inboundSchema;
|
|
6346
|
+
/** @deprecated use `KnowledgeFilterAnd$outboundSchema` instead. */
|
|
6347
|
+
export const outboundSchema = KnowledgeFilterAnd$outboundSchema;
|
|
6348
|
+
/** @deprecated use `KnowledgeFilterAnd$Outbound` instead. */
|
|
6349
|
+
export type Outbound = KnowledgeFilterAnd$Outbound;
|
|
6686
6350
|
}
|
|
6687
6351
|
|
|
6688
|
-
export function
|
|
6689
|
-
|
|
6352
|
+
export function knowledgeFilterAndToJSON(
|
|
6353
|
+
knowledgeFilterAnd: KnowledgeFilterAnd,
|
|
6690
6354
|
): string {
|
|
6691
6355
|
return JSON.stringify(
|
|
6692
|
-
|
|
6356
|
+
KnowledgeFilterAnd$outboundSchema.parse(knowledgeFilterAnd),
|
|
6693
6357
|
);
|
|
6694
6358
|
}
|
|
6695
6359
|
|
|
6696
|
-
export function
|
|
6360
|
+
export function knowledgeFilterAndFromJSON(
|
|
6697
6361
|
jsonString: string,
|
|
6698
|
-
): SafeParseResult<
|
|
6362
|
+
): SafeParseResult<KnowledgeFilterAnd, SDKValidationError> {
|
|
6699
6363
|
return safeParse(
|
|
6700
6364
|
jsonString,
|
|
6701
|
-
(x) =>
|
|
6702
|
-
`Failed to parse '
|
|
6365
|
+
(x) => KnowledgeFilterAnd$inboundSchema.parse(JSON.parse(x)),
|
|
6366
|
+
`Failed to parse 'KnowledgeFilterAnd' from JSON`,
|
|
6703
6367
|
);
|
|
6704
6368
|
}
|
|
6705
6369
|
|
|
6706
6370
|
/** @internal */
|
|
6707
|
-
export const
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
unknown
|
|
6711
|
-
> = z.object({
|
|
6712
|
-
$exists: z.boolean(),
|
|
6713
|
-
}).transform((v) => {
|
|
6714
|
-
return remap$(v, {
|
|
6715
|
-
"$exists": "dollarExists",
|
|
6371
|
+
export const Exists$inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown> = z
|
|
6372
|
+
.object({
|
|
6373
|
+
exists: z.boolean(),
|
|
6716
6374
|
});
|
|
6717
|
-
});
|
|
6718
6375
|
|
|
6719
6376
|
/** @internal */
|
|
6720
|
-
export type
|
|
6721
|
-
|
|
6377
|
+
export type Exists$Outbound = {
|
|
6378
|
+
exists: boolean;
|
|
6722
6379
|
};
|
|
6723
6380
|
|
|
6724
6381
|
/** @internal */
|
|
6725
|
-
export const
|
|
6726
|
-
|
|
6382
|
+
export const Exists$outboundSchema: z.ZodType<
|
|
6383
|
+
Exists$Outbound,
|
|
6727
6384
|
z.ZodTypeDef,
|
|
6728
|
-
|
|
6385
|
+
Exists
|
|
6729
6386
|
> = z.object({
|
|
6730
|
-
|
|
6731
|
-
}).transform((v) => {
|
|
6732
|
-
return remap$(v, {
|
|
6733
|
-
dollarExists: "$exists",
|
|
6734
|
-
});
|
|
6387
|
+
exists: z.boolean(),
|
|
6735
6388
|
});
|
|
6736
6389
|
|
|
6737
6390
|
/**
|
|
6738
6391
|
* @internal
|
|
6739
6392
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6740
6393
|
*/
|
|
6741
|
-
export namespace
|
|
6742
|
-
/** @deprecated use `
|
|
6743
|
-
export const inboundSchema =
|
|
6744
|
-
/** @deprecated use `
|
|
6745
|
-
export const outboundSchema =
|
|
6746
|
-
/** @deprecated use `
|
|
6747
|
-
export type Outbound =
|
|
6394
|
+
export namespace Exists$ {
|
|
6395
|
+
/** @deprecated use `Exists$inboundSchema` instead. */
|
|
6396
|
+
export const inboundSchema = Exists$inboundSchema;
|
|
6397
|
+
/** @deprecated use `Exists$outboundSchema` instead. */
|
|
6398
|
+
export const outboundSchema = Exists$outboundSchema;
|
|
6399
|
+
/** @deprecated use `Exists$Outbound` instead. */
|
|
6400
|
+
export type Outbound = Exists$Outbound;
|
|
6748
6401
|
}
|
|
6749
6402
|
|
|
6750
|
-
export function
|
|
6751
|
-
return JSON.stringify(
|
|
6403
|
+
export function existsToJSON(exists: Exists): string {
|
|
6404
|
+
return JSON.stringify(Exists$outboundSchema.parse(exists));
|
|
6752
6405
|
}
|
|
6753
6406
|
|
|
6754
|
-
export function
|
|
6407
|
+
export function existsFromJSON(
|
|
6755
6408
|
jsonString: string,
|
|
6756
|
-
): SafeParseResult<
|
|
6409
|
+
): SafeParseResult<Exists, SDKValidationError> {
|
|
6757
6410
|
return safeParse(
|
|
6758
6411
|
jsonString,
|
|
6759
|
-
(x) =>
|
|
6760
|
-
`Failed to parse '
|
|
6412
|
+
(x) => Exists$inboundSchema.parse(JSON.parse(x)),
|
|
6413
|
+
`Failed to parse 'Exists' from JSON`,
|
|
6761
6414
|
);
|
|
6762
6415
|
}
|
|
6763
6416
|
|
|
6764
6417
|
/** @internal */
|
|
6765
|
-
export const
|
|
6766
|
-
|
|
6767
|
-
|
|
6768
|
-
unknown
|
|
6769
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6418
|
+
export const Nin$inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown> = z.union(
|
|
6419
|
+
[z.string(), z.number(), z.boolean()],
|
|
6420
|
+
);
|
|
6770
6421
|
|
|
6771
6422
|
/** @internal */
|
|
6772
|
-
export type
|
|
6423
|
+
export type Nin$Outbound = string | number | boolean;
|
|
6773
6424
|
|
|
6774
6425
|
/** @internal */
|
|
6775
|
-
export const
|
|
6776
|
-
|
|
6777
|
-
z.ZodTypeDef,
|
|
6778
|
-
DollarNin
|
|
6779
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6426
|
+
export const Nin$outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin> = z
|
|
6427
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
6780
6428
|
|
|
6781
6429
|
/**
|
|
6782
6430
|
* @internal
|
|
6783
6431
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6784
6432
|
*/
|
|
6785
|
-
export namespace
|
|
6786
|
-
/** @deprecated use `
|
|
6787
|
-
export const inboundSchema =
|
|
6788
|
-
/** @deprecated use `
|
|
6789
|
-
export const outboundSchema =
|
|
6790
|
-
/** @deprecated use `
|
|
6791
|
-
export type Outbound =
|
|
6433
|
+
export namespace Nin$ {
|
|
6434
|
+
/** @deprecated use `Nin$inboundSchema` instead. */
|
|
6435
|
+
export const inboundSchema = Nin$inboundSchema;
|
|
6436
|
+
/** @deprecated use `Nin$outboundSchema` instead. */
|
|
6437
|
+
export const outboundSchema = Nin$outboundSchema;
|
|
6438
|
+
/** @deprecated use `Nin$Outbound` instead. */
|
|
6439
|
+
export type Outbound = Nin$Outbound;
|
|
6792
6440
|
}
|
|
6793
6441
|
|
|
6794
|
-
export function
|
|
6795
|
-
return JSON.stringify(
|
|
6442
|
+
export function ninToJSON(nin: Nin): string {
|
|
6443
|
+
return JSON.stringify(Nin$outboundSchema.parse(nin));
|
|
6796
6444
|
}
|
|
6797
6445
|
|
|
6798
|
-
export function
|
|
6446
|
+
export function ninFromJSON(
|
|
6799
6447
|
jsonString: string,
|
|
6800
|
-
): SafeParseResult<
|
|
6448
|
+
): SafeParseResult<Nin, SDKValidationError> {
|
|
6801
6449
|
return safeParse(
|
|
6802
6450
|
jsonString,
|
|
6803
|
-
(x) =>
|
|
6804
|
-
`Failed to parse '
|
|
6451
|
+
(x) => Nin$inboundSchema.parse(JSON.parse(x)),
|
|
6452
|
+
`Failed to parse 'Nin' from JSON`,
|
|
6805
6453
|
);
|
|
6806
6454
|
}
|
|
6807
6455
|
|
|
6808
6456
|
/** @internal */
|
|
6809
|
-
export const
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
unknown
|
|
6813
|
-
> = z.object({
|
|
6814
|
-
$nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
6815
|
-
}).transform((v) => {
|
|
6816
|
-
return remap$(v, {
|
|
6817
|
-
"$nin": "dollarNin",
|
|
6457
|
+
export const OneNin$inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown> = z
|
|
6458
|
+
.object({
|
|
6459
|
+
nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
6818
6460
|
});
|
|
6819
|
-
});
|
|
6820
6461
|
|
|
6821
6462
|
/** @internal */
|
|
6822
|
-
export type
|
|
6823
|
-
|
|
6463
|
+
export type OneNin$Outbound = {
|
|
6464
|
+
nin: Array<string | number | boolean>;
|
|
6824
6465
|
};
|
|
6825
6466
|
|
|
6826
6467
|
/** @internal */
|
|
6827
|
-
export const
|
|
6828
|
-
|
|
6468
|
+
export const OneNin$outboundSchema: z.ZodType<
|
|
6469
|
+
OneNin$Outbound,
|
|
6829
6470
|
z.ZodTypeDef,
|
|
6830
|
-
|
|
6471
|
+
OneNin
|
|
6831
6472
|
> = z.object({
|
|
6832
|
-
|
|
6833
|
-
}).transform((v) => {
|
|
6834
|
-
return remap$(v, {
|
|
6835
|
-
dollarNin: "$nin",
|
|
6836
|
-
});
|
|
6473
|
+
nin: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
6837
6474
|
});
|
|
6838
6475
|
|
|
6839
6476
|
/**
|
|
6840
6477
|
* @internal
|
|
6841
6478
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6842
6479
|
*/
|
|
6843
|
-
export namespace
|
|
6844
|
-
/** @deprecated use `
|
|
6845
|
-
export const inboundSchema =
|
|
6846
|
-
/** @deprecated use `
|
|
6847
|
-
export const outboundSchema =
|
|
6848
|
-
/** @deprecated use `
|
|
6849
|
-
export type Outbound =
|
|
6480
|
+
export namespace OneNin$ {
|
|
6481
|
+
/** @deprecated use `OneNin$inboundSchema` instead. */
|
|
6482
|
+
export const inboundSchema = OneNin$inboundSchema;
|
|
6483
|
+
/** @deprecated use `OneNin$outboundSchema` instead. */
|
|
6484
|
+
export const outboundSchema = OneNin$outboundSchema;
|
|
6485
|
+
/** @deprecated use `OneNin$Outbound` instead. */
|
|
6486
|
+
export type Outbound = OneNin$Outbound;
|
|
6850
6487
|
}
|
|
6851
6488
|
|
|
6852
|
-
export function
|
|
6853
|
-
return JSON.stringify(
|
|
6489
|
+
export function oneNinToJSON(oneNin: OneNin): string {
|
|
6490
|
+
return JSON.stringify(OneNin$outboundSchema.parse(oneNin));
|
|
6854
6491
|
}
|
|
6855
6492
|
|
|
6856
|
-
export function
|
|
6493
|
+
export function oneNinFromJSON(
|
|
6857
6494
|
jsonString: string,
|
|
6858
|
-
): SafeParseResult<
|
|
6495
|
+
): SafeParseResult<OneNin, SDKValidationError> {
|
|
6859
6496
|
return safeParse(
|
|
6860
6497
|
jsonString,
|
|
6861
|
-
(x) =>
|
|
6862
|
-
`Failed to parse '
|
|
6498
|
+
(x) => OneNin$inboundSchema.parse(JSON.parse(x)),
|
|
6499
|
+
`Failed to parse 'OneNin' from JSON`,
|
|
6863
6500
|
);
|
|
6864
6501
|
}
|
|
6865
6502
|
|
|
6866
6503
|
/** @internal */
|
|
6867
|
-
export const
|
|
6868
|
-
|
|
6869
|
-
z.
|
|
6870
|
-
|
|
6871
|
-
|
|
6504
|
+
export const In$inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown> = z.union([
|
|
6505
|
+
z.string(),
|
|
6506
|
+
z.number(),
|
|
6507
|
+
z.boolean(),
|
|
6508
|
+
]);
|
|
6872
6509
|
|
|
6873
6510
|
/** @internal */
|
|
6874
|
-
export type
|
|
6511
|
+
export type In$Outbound = string | number | boolean;
|
|
6875
6512
|
|
|
6876
6513
|
/** @internal */
|
|
6877
|
-
export const
|
|
6878
|
-
|
|
6879
|
-
z.ZodTypeDef,
|
|
6880
|
-
DollarIn
|
|
6881
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6514
|
+
export const In$outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In> = z
|
|
6515
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
6882
6516
|
|
|
6883
6517
|
/**
|
|
6884
6518
|
* @internal
|
|
6885
6519
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6886
6520
|
*/
|
|
6887
|
-
export namespace
|
|
6888
|
-
/** @deprecated use `
|
|
6889
|
-
export const inboundSchema =
|
|
6890
|
-
/** @deprecated use `
|
|
6891
|
-
export const outboundSchema =
|
|
6892
|
-
/** @deprecated use `
|
|
6893
|
-
export type Outbound =
|
|
6521
|
+
export namespace In$ {
|
|
6522
|
+
/** @deprecated use `In$inboundSchema` instead. */
|
|
6523
|
+
export const inboundSchema = In$inboundSchema;
|
|
6524
|
+
/** @deprecated use `In$outboundSchema` instead. */
|
|
6525
|
+
export const outboundSchema = In$outboundSchema;
|
|
6526
|
+
/** @deprecated use `In$Outbound` instead. */
|
|
6527
|
+
export type Outbound = In$Outbound;
|
|
6894
6528
|
}
|
|
6895
6529
|
|
|
6896
|
-
export function
|
|
6897
|
-
return JSON.stringify(
|
|
6530
|
+
export function inToJSON(value: In): string {
|
|
6531
|
+
return JSON.stringify(In$outboundSchema.parse(value));
|
|
6898
6532
|
}
|
|
6899
6533
|
|
|
6900
|
-
export function
|
|
6534
|
+
export function inFromJSON(
|
|
6901
6535
|
jsonString: string,
|
|
6902
|
-
): SafeParseResult<
|
|
6536
|
+
): SafeParseResult<In, SDKValidationError> {
|
|
6903
6537
|
return safeParse(
|
|
6904
6538
|
jsonString,
|
|
6905
|
-
(x) =>
|
|
6906
|
-
`Failed to parse '
|
|
6539
|
+
(x) => In$inboundSchema.parse(JSON.parse(x)),
|
|
6540
|
+
`Failed to parse 'In' from JSON`,
|
|
6907
6541
|
);
|
|
6908
6542
|
}
|
|
6909
6543
|
|
|
6910
6544
|
/** @internal */
|
|
6911
|
-
export const
|
|
6912
|
-
|
|
6913
|
-
|
|
6914
|
-
unknown
|
|
6915
|
-
> = z.object({
|
|
6916
|
-
$in: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
6917
|
-
}).transform((v) => {
|
|
6918
|
-
return remap$(v, {
|
|
6919
|
-
"$in": "dollarIn",
|
|
6545
|
+
export const OneIn$inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown> = z
|
|
6546
|
+
.object({
|
|
6547
|
+
in: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
6920
6548
|
});
|
|
6921
|
-
});
|
|
6922
6549
|
|
|
6923
6550
|
/** @internal */
|
|
6924
|
-
export type
|
|
6925
|
-
|
|
6551
|
+
export type OneIn$Outbound = {
|
|
6552
|
+
in: Array<string | number | boolean>;
|
|
6926
6553
|
};
|
|
6927
6554
|
|
|
6928
6555
|
/** @internal */
|
|
6929
|
-
export const
|
|
6930
|
-
|
|
6556
|
+
export const OneIn$outboundSchema: z.ZodType<
|
|
6557
|
+
OneIn$Outbound,
|
|
6931
6558
|
z.ZodTypeDef,
|
|
6932
|
-
|
|
6559
|
+
OneIn
|
|
6933
6560
|
> = z.object({
|
|
6934
|
-
|
|
6935
|
-
}).transform((v) => {
|
|
6936
|
-
return remap$(v, {
|
|
6937
|
-
dollarIn: "$in",
|
|
6938
|
-
});
|
|
6561
|
+
in: z.array(z.union([z.string(), z.number(), z.boolean()])),
|
|
6939
6562
|
});
|
|
6940
6563
|
|
|
6941
6564
|
/**
|
|
6942
6565
|
* @internal
|
|
6943
6566
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6944
6567
|
*/
|
|
6945
|
-
export namespace
|
|
6946
|
-
/** @deprecated use `
|
|
6947
|
-
export const inboundSchema =
|
|
6948
|
-
/** @deprecated use `
|
|
6949
|
-
export const outboundSchema =
|
|
6950
|
-
/** @deprecated use `
|
|
6951
|
-
export type Outbound =
|
|
6568
|
+
export namespace OneIn$ {
|
|
6569
|
+
/** @deprecated use `OneIn$inboundSchema` instead. */
|
|
6570
|
+
export const inboundSchema = OneIn$inboundSchema;
|
|
6571
|
+
/** @deprecated use `OneIn$outboundSchema` instead. */
|
|
6572
|
+
export const outboundSchema = OneIn$outboundSchema;
|
|
6573
|
+
/** @deprecated use `OneIn$Outbound` instead. */
|
|
6574
|
+
export type Outbound = OneIn$Outbound;
|
|
6952
6575
|
}
|
|
6953
6576
|
|
|
6954
|
-
export function
|
|
6955
|
-
return JSON.stringify(
|
|
6577
|
+
export function oneInToJSON(oneIn: OneIn): string {
|
|
6578
|
+
return JSON.stringify(OneIn$outboundSchema.parse(oneIn));
|
|
6956
6579
|
}
|
|
6957
6580
|
|
|
6958
|
-
export function
|
|
6581
|
+
export function oneInFromJSON(
|
|
6959
6582
|
jsonString: string,
|
|
6960
|
-
): SafeParseResult<
|
|
6583
|
+
): SafeParseResult<OneIn, SDKValidationError> {
|
|
6961
6584
|
return safeParse(
|
|
6962
6585
|
jsonString,
|
|
6963
|
-
(x) =>
|
|
6964
|
-
`Failed to parse '
|
|
6586
|
+
(x) => OneIn$inboundSchema.parse(JSON.parse(x)),
|
|
6587
|
+
`Failed to parse 'OneIn' from JSON`,
|
|
6965
6588
|
);
|
|
6966
6589
|
}
|
|
6967
6590
|
|
|
6968
6591
|
/** @internal */
|
|
6969
|
-
export const
|
|
6970
|
-
|
|
6971
|
-
|
|
6972
|
-
unknown
|
|
6973
|
-
> = z.object({
|
|
6974
|
-
$lte: z.number(),
|
|
6975
|
-
}).transform((v) => {
|
|
6976
|
-
return remap$(v, {
|
|
6977
|
-
"$lte": "dollarLte",
|
|
6592
|
+
export const Lte$inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown> = z
|
|
6593
|
+
.object({
|
|
6594
|
+
lte: z.number(),
|
|
6978
6595
|
});
|
|
6979
|
-
});
|
|
6980
6596
|
|
|
6981
6597
|
/** @internal */
|
|
6982
|
-
export type
|
|
6983
|
-
|
|
6598
|
+
export type Lte$Outbound = {
|
|
6599
|
+
lte: number;
|
|
6984
6600
|
};
|
|
6985
6601
|
|
|
6986
6602
|
/** @internal */
|
|
6987
|
-
export const
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
DollarLte
|
|
6991
|
-
> = z.object({
|
|
6992
|
-
dollarLte: z.number(),
|
|
6993
|
-
}).transform((v) => {
|
|
6994
|
-
return remap$(v, {
|
|
6995
|
-
dollarLte: "$lte",
|
|
6603
|
+
export const Lte$outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte> = z
|
|
6604
|
+
.object({
|
|
6605
|
+
lte: z.number(),
|
|
6996
6606
|
});
|
|
6997
|
-
});
|
|
6998
6607
|
|
|
6999
6608
|
/**
|
|
7000
6609
|
* @internal
|
|
7001
6610
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7002
6611
|
*/
|
|
7003
|
-
export namespace
|
|
7004
|
-
/** @deprecated use `
|
|
7005
|
-
export const inboundSchema =
|
|
7006
|
-
/** @deprecated use `
|
|
7007
|
-
export const outboundSchema =
|
|
7008
|
-
/** @deprecated use `
|
|
7009
|
-
export type Outbound =
|
|
6612
|
+
export namespace Lte$ {
|
|
6613
|
+
/** @deprecated use `Lte$inboundSchema` instead. */
|
|
6614
|
+
export const inboundSchema = Lte$inboundSchema;
|
|
6615
|
+
/** @deprecated use `Lte$outboundSchema` instead. */
|
|
6616
|
+
export const outboundSchema = Lte$outboundSchema;
|
|
6617
|
+
/** @deprecated use `Lte$Outbound` instead. */
|
|
6618
|
+
export type Outbound = Lte$Outbound;
|
|
7010
6619
|
}
|
|
7011
6620
|
|
|
7012
|
-
export function
|
|
7013
|
-
return JSON.stringify(
|
|
6621
|
+
export function lteToJSON(lte: Lte): string {
|
|
6622
|
+
return JSON.stringify(Lte$outboundSchema.parse(lte));
|
|
7014
6623
|
}
|
|
7015
6624
|
|
|
7016
|
-
export function
|
|
6625
|
+
export function lteFromJSON(
|
|
7017
6626
|
jsonString: string,
|
|
7018
|
-
): SafeParseResult<
|
|
6627
|
+
): SafeParseResult<Lte, SDKValidationError> {
|
|
7019
6628
|
return safeParse(
|
|
7020
6629
|
jsonString,
|
|
7021
|
-
(x) =>
|
|
7022
|
-
`Failed to parse '
|
|
6630
|
+
(x) => Lte$inboundSchema.parse(JSON.parse(x)),
|
|
6631
|
+
`Failed to parse 'Lte' from JSON`,
|
|
7023
6632
|
);
|
|
7024
6633
|
}
|
|
7025
6634
|
|
|
7026
6635
|
/** @internal */
|
|
7027
|
-
export const
|
|
7028
|
-
|
|
7029
|
-
z.ZodTypeDef,
|
|
7030
|
-
unknown
|
|
7031
|
-
> = z.object({
|
|
7032
|
-
$lt: z.number(),
|
|
7033
|
-
}).transform((v) => {
|
|
7034
|
-
return remap$(v, {
|
|
7035
|
-
"$lt": "dollarLt",
|
|
7036
|
-
});
|
|
6636
|
+
export const Lt$inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown> = z.object({
|
|
6637
|
+
lt: z.number(),
|
|
7037
6638
|
});
|
|
7038
6639
|
|
|
7039
6640
|
/** @internal */
|
|
7040
|
-
export type
|
|
7041
|
-
|
|
6641
|
+
export type Lt$Outbound = {
|
|
6642
|
+
lt: number;
|
|
7042
6643
|
};
|
|
7043
6644
|
|
|
7044
6645
|
/** @internal */
|
|
7045
|
-
export const
|
|
7046
|
-
|
|
7047
|
-
|
|
7048
|
-
DollarLt
|
|
7049
|
-
> = z.object({
|
|
7050
|
-
dollarLt: z.number(),
|
|
7051
|
-
}).transform((v) => {
|
|
7052
|
-
return remap$(v, {
|
|
7053
|
-
dollarLt: "$lt",
|
|
6646
|
+
export const Lt$outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt> = z
|
|
6647
|
+
.object({
|
|
6648
|
+
lt: z.number(),
|
|
7054
6649
|
});
|
|
7055
|
-
});
|
|
7056
6650
|
|
|
7057
6651
|
/**
|
|
7058
6652
|
* @internal
|
|
7059
6653
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7060
6654
|
*/
|
|
7061
|
-
export namespace
|
|
7062
|
-
/** @deprecated use `
|
|
7063
|
-
export const inboundSchema =
|
|
7064
|
-
/** @deprecated use `
|
|
7065
|
-
export const outboundSchema =
|
|
7066
|
-
/** @deprecated use `
|
|
7067
|
-
export type Outbound =
|
|
6655
|
+
export namespace Lt$ {
|
|
6656
|
+
/** @deprecated use `Lt$inboundSchema` instead. */
|
|
6657
|
+
export const inboundSchema = Lt$inboundSchema;
|
|
6658
|
+
/** @deprecated use `Lt$outboundSchema` instead. */
|
|
6659
|
+
export const outboundSchema = Lt$outboundSchema;
|
|
6660
|
+
/** @deprecated use `Lt$Outbound` instead. */
|
|
6661
|
+
export type Outbound = Lt$Outbound;
|
|
7068
6662
|
}
|
|
7069
6663
|
|
|
7070
|
-
export function
|
|
7071
|
-
return JSON.stringify(
|
|
6664
|
+
export function ltToJSON(lt: Lt): string {
|
|
6665
|
+
return JSON.stringify(Lt$outboundSchema.parse(lt));
|
|
7072
6666
|
}
|
|
7073
6667
|
|
|
7074
|
-
export function
|
|
6668
|
+
export function ltFromJSON(
|
|
7075
6669
|
jsonString: string,
|
|
7076
|
-
): SafeParseResult<
|
|
6670
|
+
): SafeParseResult<Lt, SDKValidationError> {
|
|
7077
6671
|
return safeParse(
|
|
7078
6672
|
jsonString,
|
|
7079
|
-
(x) =>
|
|
7080
|
-
`Failed to parse '
|
|
6673
|
+
(x) => Lt$inboundSchema.parse(JSON.parse(x)),
|
|
6674
|
+
`Failed to parse 'Lt' from JSON`,
|
|
7081
6675
|
);
|
|
7082
6676
|
}
|
|
7083
6677
|
|
|
7084
6678
|
/** @internal */
|
|
7085
|
-
export const
|
|
7086
|
-
|
|
7087
|
-
|
|
7088
|
-
unknown
|
|
7089
|
-
> = z.object({
|
|
7090
|
-
$gte: z.number(),
|
|
7091
|
-
}).transform((v) => {
|
|
7092
|
-
return remap$(v, {
|
|
7093
|
-
"$gte": "dollarGte",
|
|
6679
|
+
export const Gte$inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown> = z
|
|
6680
|
+
.object({
|
|
6681
|
+
gte: z.number(),
|
|
7094
6682
|
});
|
|
7095
|
-
});
|
|
7096
6683
|
|
|
7097
6684
|
/** @internal */
|
|
7098
|
-
export type
|
|
7099
|
-
|
|
6685
|
+
export type Gte$Outbound = {
|
|
6686
|
+
gte: number;
|
|
7100
6687
|
};
|
|
7101
6688
|
|
|
7102
6689
|
/** @internal */
|
|
7103
|
-
export const
|
|
7104
|
-
|
|
7105
|
-
|
|
7106
|
-
DollarGte
|
|
7107
|
-
> = z.object({
|
|
7108
|
-
dollarGte: z.number(),
|
|
7109
|
-
}).transform((v) => {
|
|
7110
|
-
return remap$(v, {
|
|
7111
|
-
dollarGte: "$gte",
|
|
6690
|
+
export const Gte$outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte> = z
|
|
6691
|
+
.object({
|
|
6692
|
+
gte: z.number(),
|
|
7112
6693
|
});
|
|
7113
|
-
});
|
|
7114
6694
|
|
|
7115
6695
|
/**
|
|
7116
6696
|
* @internal
|
|
7117
6697
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7118
6698
|
*/
|
|
7119
|
-
export namespace
|
|
7120
|
-
/** @deprecated use `
|
|
7121
|
-
export const inboundSchema =
|
|
7122
|
-
/** @deprecated use `
|
|
7123
|
-
export const outboundSchema =
|
|
7124
|
-
/** @deprecated use `
|
|
7125
|
-
export type Outbound =
|
|
6699
|
+
export namespace Gte$ {
|
|
6700
|
+
/** @deprecated use `Gte$inboundSchema` instead. */
|
|
6701
|
+
export const inboundSchema = Gte$inboundSchema;
|
|
6702
|
+
/** @deprecated use `Gte$outboundSchema` instead. */
|
|
6703
|
+
export const outboundSchema = Gte$outboundSchema;
|
|
6704
|
+
/** @deprecated use `Gte$Outbound` instead. */
|
|
6705
|
+
export type Outbound = Gte$Outbound;
|
|
7126
6706
|
}
|
|
7127
6707
|
|
|
7128
|
-
export function
|
|
7129
|
-
return JSON.stringify(
|
|
6708
|
+
export function gteToJSON(gte: Gte): string {
|
|
6709
|
+
return JSON.stringify(Gte$outboundSchema.parse(gte));
|
|
7130
6710
|
}
|
|
7131
6711
|
|
|
7132
|
-
export function
|
|
6712
|
+
export function gteFromJSON(
|
|
7133
6713
|
jsonString: string,
|
|
7134
|
-
): SafeParseResult<
|
|
6714
|
+
): SafeParseResult<Gte, SDKValidationError> {
|
|
7135
6715
|
return safeParse(
|
|
7136
6716
|
jsonString,
|
|
7137
|
-
(x) =>
|
|
7138
|
-
`Failed to parse '
|
|
6717
|
+
(x) => Gte$inboundSchema.parse(JSON.parse(x)),
|
|
6718
|
+
`Failed to parse 'Gte' from JSON`,
|
|
7139
6719
|
);
|
|
7140
6720
|
}
|
|
7141
6721
|
|
|
7142
6722
|
/** @internal */
|
|
7143
6723
|
export const Three$inboundSchema: z.ZodType<Three, z.ZodTypeDef, unknown> = z
|
|
7144
6724
|
.object({
|
|
7145
|
-
|
|
7146
|
-
}).transform((v) => {
|
|
7147
|
-
return remap$(v, {
|
|
7148
|
-
"$gt": "dollarGt",
|
|
7149
|
-
});
|
|
6725
|
+
gt: z.number(),
|
|
7150
6726
|
});
|
|
7151
6727
|
|
|
7152
6728
|
/** @internal */
|
|
7153
6729
|
export type Three$Outbound = {
|
|
7154
|
-
|
|
6730
|
+
gt: number;
|
|
7155
6731
|
};
|
|
7156
6732
|
|
|
7157
6733
|
/** @internal */
|
|
@@ -7160,11 +6736,7 @@ export const Three$outboundSchema: z.ZodType<
|
|
|
7160
6736
|
z.ZodTypeDef,
|
|
7161
6737
|
Three
|
|
7162
6738
|
> = z.object({
|
|
7163
|
-
|
|
7164
|
-
}).transform((v) => {
|
|
7165
|
-
return remap$(v, {
|
|
7166
|
-
dollarGt: "$gt",
|
|
7167
|
-
});
|
|
6739
|
+
gt: z.number(),
|
|
7168
6740
|
});
|
|
7169
6741
|
|
|
7170
6742
|
/**
|
|
@@ -7195,248 +6767,220 @@ export function threeFromJSON(
|
|
|
7195
6767
|
}
|
|
7196
6768
|
|
|
7197
6769
|
/** @internal */
|
|
7198
|
-
export const
|
|
7199
|
-
|
|
7200
|
-
z.
|
|
7201
|
-
|
|
7202
|
-
|
|
6770
|
+
export const Ne$inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown> = z.union([
|
|
6771
|
+
z.string(),
|
|
6772
|
+
z.number(),
|
|
6773
|
+
z.boolean(),
|
|
6774
|
+
]);
|
|
7203
6775
|
|
|
7204
6776
|
/** @internal */
|
|
7205
|
-
export type
|
|
6777
|
+
export type Ne$Outbound = string | number | boolean;
|
|
7206
6778
|
|
|
7207
6779
|
/** @internal */
|
|
7208
|
-
export const
|
|
7209
|
-
|
|
7210
|
-
z.ZodTypeDef,
|
|
7211
|
-
DollarNe
|
|
7212
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6780
|
+
export const Ne$outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne> = z
|
|
6781
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
7213
6782
|
|
|
7214
6783
|
/**
|
|
7215
6784
|
* @internal
|
|
7216
6785
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7217
6786
|
*/
|
|
7218
|
-
export namespace
|
|
7219
|
-
/** @deprecated use `
|
|
7220
|
-
export const inboundSchema =
|
|
7221
|
-
/** @deprecated use `
|
|
7222
|
-
export const outboundSchema =
|
|
7223
|
-
/** @deprecated use `
|
|
7224
|
-
export type Outbound =
|
|
6787
|
+
export namespace Ne$ {
|
|
6788
|
+
/** @deprecated use `Ne$inboundSchema` instead. */
|
|
6789
|
+
export const inboundSchema = Ne$inboundSchema;
|
|
6790
|
+
/** @deprecated use `Ne$outboundSchema` instead. */
|
|
6791
|
+
export const outboundSchema = Ne$outboundSchema;
|
|
6792
|
+
/** @deprecated use `Ne$Outbound` instead. */
|
|
6793
|
+
export type Outbound = Ne$Outbound;
|
|
7225
6794
|
}
|
|
7226
6795
|
|
|
7227
|
-
export function
|
|
7228
|
-
return JSON.stringify(
|
|
6796
|
+
export function neToJSON(ne: Ne): string {
|
|
6797
|
+
return JSON.stringify(Ne$outboundSchema.parse(ne));
|
|
7229
6798
|
}
|
|
7230
6799
|
|
|
7231
|
-
export function
|
|
6800
|
+
export function neFromJSON(
|
|
7232
6801
|
jsonString: string,
|
|
7233
|
-
): SafeParseResult<
|
|
6802
|
+
): SafeParseResult<Ne, SDKValidationError> {
|
|
7234
6803
|
return safeParse(
|
|
7235
6804
|
jsonString,
|
|
7236
|
-
(x) =>
|
|
7237
|
-
`Failed to parse '
|
|
6805
|
+
(x) => Ne$inboundSchema.parse(JSON.parse(x)),
|
|
6806
|
+
`Failed to parse 'Ne' from JSON`,
|
|
7238
6807
|
);
|
|
7239
6808
|
}
|
|
7240
6809
|
|
|
7241
6810
|
/** @internal */
|
|
7242
|
-
export const
|
|
7243
|
-
|
|
7244
|
-
|
|
7245
|
-
unknown
|
|
7246
|
-
> = z.object({
|
|
7247
|
-
$ne: z.union([z.string(), z.number(), z.boolean()]),
|
|
7248
|
-
}).transform((v) => {
|
|
7249
|
-
return remap$(v, {
|
|
7250
|
-
"$ne": "dollarNe",
|
|
6811
|
+
export const OneNe$inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown> = z
|
|
6812
|
+
.object({
|
|
6813
|
+
ne: z.union([z.string(), z.number(), z.boolean()]),
|
|
7251
6814
|
});
|
|
7252
|
-
});
|
|
7253
6815
|
|
|
7254
6816
|
/** @internal */
|
|
7255
|
-
export type
|
|
7256
|
-
|
|
6817
|
+
export type OneNe$Outbound = {
|
|
6818
|
+
ne: string | number | boolean;
|
|
7257
6819
|
};
|
|
7258
6820
|
|
|
7259
6821
|
/** @internal */
|
|
7260
|
-
export const
|
|
7261
|
-
|
|
6822
|
+
export const OneNe$outboundSchema: z.ZodType<
|
|
6823
|
+
OneNe$Outbound,
|
|
7262
6824
|
z.ZodTypeDef,
|
|
7263
|
-
|
|
6825
|
+
OneNe
|
|
7264
6826
|
> = z.object({
|
|
7265
|
-
|
|
7266
|
-
}).transform((v) => {
|
|
7267
|
-
return remap$(v, {
|
|
7268
|
-
dollarNe: "$ne",
|
|
7269
|
-
});
|
|
6827
|
+
ne: z.union([z.string(), z.number(), z.boolean()]),
|
|
7270
6828
|
});
|
|
7271
6829
|
|
|
7272
6830
|
/**
|
|
7273
6831
|
* @internal
|
|
7274
6832
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7275
6833
|
*/
|
|
7276
|
-
export namespace
|
|
7277
|
-
/** @deprecated use `
|
|
7278
|
-
export const inboundSchema =
|
|
7279
|
-
/** @deprecated use `
|
|
7280
|
-
export const outboundSchema =
|
|
7281
|
-
/** @deprecated use `
|
|
7282
|
-
export type Outbound =
|
|
6834
|
+
export namespace OneNe$ {
|
|
6835
|
+
/** @deprecated use `OneNe$inboundSchema` instead. */
|
|
6836
|
+
export const inboundSchema = OneNe$inboundSchema;
|
|
6837
|
+
/** @deprecated use `OneNe$outboundSchema` instead. */
|
|
6838
|
+
export const outboundSchema = OneNe$outboundSchema;
|
|
6839
|
+
/** @deprecated use `OneNe$Outbound` instead. */
|
|
6840
|
+
export type Outbound = OneNe$Outbound;
|
|
7283
6841
|
}
|
|
7284
6842
|
|
|
7285
|
-
export function
|
|
7286
|
-
return JSON.stringify(
|
|
6843
|
+
export function oneNeToJSON(oneNe: OneNe): string {
|
|
6844
|
+
return JSON.stringify(OneNe$outboundSchema.parse(oneNe));
|
|
7287
6845
|
}
|
|
7288
6846
|
|
|
7289
|
-
export function
|
|
6847
|
+
export function oneNeFromJSON(
|
|
7290
6848
|
jsonString: string,
|
|
7291
|
-
): SafeParseResult<
|
|
6849
|
+
): SafeParseResult<OneNe, SDKValidationError> {
|
|
7292
6850
|
return safeParse(
|
|
7293
6851
|
jsonString,
|
|
7294
|
-
(x) =>
|
|
7295
|
-
`Failed to parse '
|
|
6852
|
+
(x) => OneNe$inboundSchema.parse(JSON.parse(x)),
|
|
6853
|
+
`Failed to parse 'OneNe' from JSON`,
|
|
7296
6854
|
);
|
|
7297
6855
|
}
|
|
7298
6856
|
|
|
7299
6857
|
/** @internal */
|
|
7300
|
-
export const
|
|
7301
|
-
|
|
7302
|
-
z.
|
|
7303
|
-
|
|
7304
|
-
|
|
6858
|
+
export const Eq$inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown> = z.union([
|
|
6859
|
+
z.string(),
|
|
6860
|
+
z.number(),
|
|
6861
|
+
z.boolean(),
|
|
6862
|
+
]);
|
|
7305
6863
|
|
|
7306
6864
|
/** @internal */
|
|
7307
|
-
export type
|
|
6865
|
+
export type Eq$Outbound = string | number | boolean;
|
|
7308
6866
|
|
|
7309
6867
|
/** @internal */
|
|
7310
|
-
export const
|
|
7311
|
-
|
|
7312
|
-
z.ZodTypeDef,
|
|
7313
|
-
DollarEq
|
|
7314
|
-
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
6868
|
+
export const Eq$outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq> = z
|
|
6869
|
+
.union([z.string(), z.number(), z.boolean()]);
|
|
7315
6870
|
|
|
7316
6871
|
/**
|
|
7317
6872
|
* @internal
|
|
7318
6873
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7319
6874
|
*/
|
|
7320
|
-
export namespace
|
|
7321
|
-
/** @deprecated use `
|
|
7322
|
-
export const inboundSchema =
|
|
7323
|
-
/** @deprecated use `
|
|
7324
|
-
export const outboundSchema =
|
|
7325
|
-
/** @deprecated use `
|
|
7326
|
-
export type Outbound =
|
|
6875
|
+
export namespace Eq$ {
|
|
6876
|
+
/** @deprecated use `Eq$inboundSchema` instead. */
|
|
6877
|
+
export const inboundSchema = Eq$inboundSchema;
|
|
6878
|
+
/** @deprecated use `Eq$outboundSchema` instead. */
|
|
6879
|
+
export const outboundSchema = Eq$outboundSchema;
|
|
6880
|
+
/** @deprecated use `Eq$Outbound` instead. */
|
|
6881
|
+
export type Outbound = Eq$Outbound;
|
|
7327
6882
|
}
|
|
7328
6883
|
|
|
7329
|
-
export function
|
|
7330
|
-
return JSON.stringify(
|
|
6884
|
+
export function eqToJSON(eq: Eq): string {
|
|
6885
|
+
return JSON.stringify(Eq$outboundSchema.parse(eq));
|
|
7331
6886
|
}
|
|
7332
6887
|
|
|
7333
|
-
export function
|
|
6888
|
+
export function eqFromJSON(
|
|
7334
6889
|
jsonString: string,
|
|
7335
|
-
): SafeParseResult<
|
|
6890
|
+
): SafeParseResult<Eq, SDKValidationError> {
|
|
7336
6891
|
return safeParse(
|
|
7337
6892
|
jsonString,
|
|
7338
|
-
(x) =>
|
|
7339
|
-
`Failed to parse '
|
|
6893
|
+
(x) => Eq$inboundSchema.parse(JSON.parse(x)),
|
|
6894
|
+
`Failed to parse 'Eq' from JSON`,
|
|
7340
6895
|
);
|
|
7341
6896
|
}
|
|
7342
6897
|
|
|
7343
6898
|
/** @internal */
|
|
7344
|
-
export const
|
|
7345
|
-
|
|
7346
|
-
|
|
7347
|
-
unknown
|
|
7348
|
-
> = z.object({
|
|
7349
|
-
$eq: z.union([z.string(), z.number(), z.boolean()]),
|
|
7350
|
-
}).transform((v) => {
|
|
7351
|
-
return remap$(v, {
|
|
7352
|
-
"$eq": "dollarEq",
|
|
6899
|
+
export const OneEq$inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown> = z
|
|
6900
|
+
.object({
|
|
6901
|
+
eq: z.union([z.string(), z.number(), z.boolean()]),
|
|
7353
6902
|
});
|
|
7354
|
-
});
|
|
7355
6903
|
|
|
7356
6904
|
/** @internal */
|
|
7357
|
-
export type
|
|
7358
|
-
|
|
6905
|
+
export type OneEq$Outbound = {
|
|
6906
|
+
eq: string | number | boolean;
|
|
7359
6907
|
};
|
|
7360
6908
|
|
|
7361
6909
|
/** @internal */
|
|
7362
|
-
export const
|
|
7363
|
-
|
|
6910
|
+
export const OneEq$outboundSchema: z.ZodType<
|
|
6911
|
+
OneEq$Outbound,
|
|
7364
6912
|
z.ZodTypeDef,
|
|
7365
|
-
|
|
6913
|
+
OneEq
|
|
7366
6914
|
> = z.object({
|
|
7367
|
-
|
|
7368
|
-
}).transform((v) => {
|
|
7369
|
-
return remap$(v, {
|
|
7370
|
-
dollarEq: "$eq",
|
|
7371
|
-
});
|
|
6915
|
+
eq: z.union([z.string(), z.number(), z.boolean()]),
|
|
7372
6916
|
});
|
|
7373
6917
|
|
|
7374
6918
|
/**
|
|
7375
6919
|
* @internal
|
|
7376
6920
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7377
6921
|
*/
|
|
7378
|
-
export namespace
|
|
7379
|
-
/** @deprecated use `
|
|
7380
|
-
export const inboundSchema =
|
|
7381
|
-
/** @deprecated use `
|
|
7382
|
-
export const outboundSchema =
|
|
7383
|
-
/** @deprecated use `
|
|
7384
|
-
export type Outbound =
|
|
6922
|
+
export namespace OneEq$ {
|
|
6923
|
+
/** @deprecated use `OneEq$inboundSchema` instead. */
|
|
6924
|
+
export const inboundSchema = OneEq$inboundSchema;
|
|
6925
|
+
/** @deprecated use `OneEq$outboundSchema` instead. */
|
|
6926
|
+
export const outboundSchema = OneEq$outboundSchema;
|
|
6927
|
+
/** @deprecated use `OneEq$Outbound` instead. */
|
|
6928
|
+
export type Outbound = OneEq$Outbound;
|
|
7385
6929
|
}
|
|
7386
6930
|
|
|
7387
|
-
export function
|
|
7388
|
-
return JSON.stringify(
|
|
6931
|
+
export function oneEqToJSON(oneEq: OneEq): string {
|
|
6932
|
+
return JSON.stringify(OneEq$outboundSchema.parse(oneEq));
|
|
7389
6933
|
}
|
|
7390
6934
|
|
|
7391
|
-
export function
|
|
6935
|
+
export function oneEqFromJSON(
|
|
7392
6936
|
jsonString: string,
|
|
7393
|
-
): SafeParseResult<
|
|
6937
|
+
): SafeParseResult<OneEq, SDKValidationError> {
|
|
7394
6938
|
return safeParse(
|
|
7395
6939
|
jsonString,
|
|
7396
|
-
(x) =>
|
|
7397
|
-
`Failed to parse '
|
|
6940
|
+
(x) => OneEq$inboundSchema.parse(JSON.parse(x)),
|
|
6941
|
+
`Failed to parse 'OneEq' from JSON`,
|
|
7398
6942
|
);
|
|
7399
6943
|
}
|
|
7400
6944
|
|
|
7401
6945
|
/** @internal */
|
|
7402
6946
|
export const One$inboundSchema: z.ZodType<One, z.ZodTypeDef, unknown> = z.union(
|
|
7403
6947
|
[
|
|
7404
|
-
z.lazy(() =>
|
|
7405
|
-
z.lazy(() =>
|
|
6948
|
+
z.lazy(() => OneEq$inboundSchema),
|
|
6949
|
+
z.lazy(() => OneNe$inboundSchema),
|
|
7406
6950
|
z.lazy(() => Three$inboundSchema),
|
|
7407
|
-
z.lazy(() =>
|
|
7408
|
-
z.lazy(() =>
|
|
7409
|
-
z.lazy(() =>
|
|
7410
|
-
z.lazy(() =>
|
|
7411
|
-
z.lazy(() =>
|
|
7412
|
-
z.lazy(() =>
|
|
6951
|
+
z.lazy(() => Gte$inboundSchema),
|
|
6952
|
+
z.lazy(() => Lt$inboundSchema),
|
|
6953
|
+
z.lazy(() => Lte$inboundSchema),
|
|
6954
|
+
z.lazy(() => OneIn$inboundSchema),
|
|
6955
|
+
z.lazy(() => OneNin$inboundSchema),
|
|
6956
|
+
z.lazy(() => Exists$inboundSchema),
|
|
7413
6957
|
],
|
|
7414
6958
|
);
|
|
7415
6959
|
|
|
7416
6960
|
/** @internal */
|
|
7417
6961
|
export type One$Outbound =
|
|
7418
|
-
|
|
|
7419
|
-
|
|
|
6962
|
+
| OneEq$Outbound
|
|
6963
|
+
| OneNe$Outbound
|
|
7420
6964
|
| Three$Outbound
|
|
7421
|
-
|
|
|
7422
|
-
|
|
|
7423
|
-
|
|
|
7424
|
-
|
|
|
7425
|
-
|
|
|
7426
|
-
|
|
|
6965
|
+
| Gte$Outbound
|
|
6966
|
+
| Lt$Outbound
|
|
6967
|
+
| Lte$Outbound
|
|
6968
|
+
| OneIn$Outbound
|
|
6969
|
+
| OneNin$Outbound
|
|
6970
|
+
| Exists$Outbound;
|
|
7427
6971
|
|
|
7428
6972
|
/** @internal */
|
|
7429
6973
|
export const One$outboundSchema: z.ZodType<One$Outbound, z.ZodTypeDef, One> = z
|
|
7430
6974
|
.union([
|
|
7431
|
-
z.lazy(() =>
|
|
7432
|
-
z.lazy(() =>
|
|
6975
|
+
z.lazy(() => OneEq$outboundSchema),
|
|
6976
|
+
z.lazy(() => OneNe$outboundSchema),
|
|
7433
6977
|
z.lazy(() => Three$outboundSchema),
|
|
7434
|
-
z.lazy(() =>
|
|
7435
|
-
z.lazy(() =>
|
|
7436
|
-
z.lazy(() =>
|
|
7437
|
-
z.lazy(() =>
|
|
7438
|
-
z.lazy(() =>
|
|
7439
|
-
z.lazy(() =>
|
|
6978
|
+
z.lazy(() => Gte$outboundSchema),
|
|
6979
|
+
z.lazy(() => Lt$outboundSchema),
|
|
6980
|
+
z.lazy(() => Lte$outboundSchema),
|
|
6981
|
+
z.lazy(() => OneIn$outboundSchema),
|
|
6982
|
+
z.lazy(() => OneNin$outboundSchema),
|
|
6983
|
+
z.lazy(() => Exists$outboundSchema),
|
|
7440
6984
|
]);
|
|
7441
6985
|
|
|
7442
6986
|
/**
|
|
@@ -7472,36 +7016,36 @@ export const KnowledgeFilter$inboundSchema: z.ZodType<
|
|
|
7472
7016
|
z.ZodTypeDef,
|
|
7473
7017
|
unknown
|
|
7474
7018
|
> = z.union([
|
|
7475
|
-
z.lazy(() =>
|
|
7476
|
-
z.lazy(() =>
|
|
7019
|
+
z.lazy(() => KnowledgeFilterAnd$inboundSchema),
|
|
7020
|
+
z.lazy(() => KnowledgeFilterOr$inboundSchema),
|
|
7477
7021
|
z.record(z.union([
|
|
7478
|
-
z.lazy(() =>
|
|
7479
|
-
z.lazy(() =>
|
|
7022
|
+
z.lazy(() => OneEq$inboundSchema),
|
|
7023
|
+
z.lazy(() => OneNe$inboundSchema),
|
|
7480
7024
|
z.lazy(() => Three$inboundSchema),
|
|
7481
|
-
z.lazy(() =>
|
|
7482
|
-
z.lazy(() =>
|
|
7483
|
-
z.lazy(() =>
|
|
7484
|
-
z.lazy(() =>
|
|
7485
|
-
z.lazy(() =>
|
|
7486
|
-
z.lazy(() =>
|
|
7025
|
+
z.lazy(() => Gte$inboundSchema),
|
|
7026
|
+
z.lazy(() => Lt$inboundSchema),
|
|
7027
|
+
z.lazy(() => Lte$inboundSchema),
|
|
7028
|
+
z.lazy(() => OneIn$inboundSchema),
|
|
7029
|
+
z.lazy(() => OneNin$inboundSchema),
|
|
7030
|
+
z.lazy(() => Exists$inboundSchema),
|
|
7487
7031
|
])),
|
|
7488
7032
|
]);
|
|
7489
7033
|
|
|
7490
7034
|
/** @internal */
|
|
7491
7035
|
export type KnowledgeFilter$Outbound =
|
|
7492
|
-
|
|
|
7493
|
-
|
|
|
7036
|
+
| KnowledgeFilterAnd$Outbound
|
|
7037
|
+
| KnowledgeFilterOr$Outbound
|
|
7494
7038
|
| {
|
|
7495
7039
|
[k: string]:
|
|
7496
|
-
|
|
|
7497
|
-
|
|
|
7040
|
+
| OneEq$Outbound
|
|
7041
|
+
| OneNe$Outbound
|
|
7498
7042
|
| Three$Outbound
|
|
7499
|
-
|
|
|
7500
|
-
|
|
|
7501
|
-
|
|
|
7502
|
-
|
|
|
7503
|
-
|
|
|
7504
|
-
|
|
|
7043
|
+
| Gte$Outbound
|
|
7044
|
+
| Lt$Outbound
|
|
7045
|
+
| Lte$Outbound
|
|
7046
|
+
| OneIn$Outbound
|
|
7047
|
+
| OneNin$Outbound
|
|
7048
|
+
| Exists$Outbound;
|
|
7505
7049
|
};
|
|
7506
7050
|
|
|
7507
7051
|
/** @internal */
|
|
@@ -7510,18 +7054,18 @@ export const KnowledgeFilter$outboundSchema: z.ZodType<
|
|
|
7510
7054
|
z.ZodTypeDef,
|
|
7511
7055
|
KnowledgeFilter
|
|
7512
7056
|
> = z.union([
|
|
7513
|
-
z.lazy(() =>
|
|
7514
|
-
z.lazy(() =>
|
|
7057
|
+
z.lazy(() => KnowledgeFilterAnd$outboundSchema),
|
|
7058
|
+
z.lazy(() => KnowledgeFilterOr$outboundSchema),
|
|
7515
7059
|
z.record(z.union([
|
|
7516
|
-
z.lazy(() =>
|
|
7517
|
-
z.lazy(() =>
|
|
7060
|
+
z.lazy(() => OneEq$outboundSchema),
|
|
7061
|
+
z.lazy(() => OneNe$outboundSchema),
|
|
7518
7062
|
z.lazy(() => Three$outboundSchema),
|
|
7519
|
-
z.lazy(() =>
|
|
7520
|
-
z.lazy(() =>
|
|
7521
|
-
z.lazy(() =>
|
|
7522
|
-
z.lazy(() =>
|
|
7523
|
-
z.lazy(() =>
|
|
7524
|
-
z.lazy(() =>
|
|
7063
|
+
z.lazy(() => Gte$outboundSchema),
|
|
7064
|
+
z.lazy(() => Lt$outboundSchema),
|
|
7065
|
+
z.lazy(() => Lte$outboundSchema),
|
|
7066
|
+
z.lazy(() => OneIn$outboundSchema),
|
|
7067
|
+
z.lazy(() => OneNin$outboundSchema),
|
|
7068
|
+
z.lazy(() => Exists$outboundSchema),
|
|
7525
7069
|
])),
|
|
7526
7070
|
]);
|
|
7527
7071
|
|
|
@@ -7588,21 +7132,19 @@ export const Deployments$inboundSchema: z.ZodType<
|
|
|
7588
7132
|
invoke_options: z.lazy(() => InvokeOptions$inboundSchema).optional(),
|
|
7589
7133
|
thread: z.lazy(() => Thread$inboundSchema).optional(),
|
|
7590
7134
|
knowledge_filter: z.union([
|
|
7591
|
-
z.lazy(() =>
|
|
7592
|
-
z.lazy(() =>
|
|
7593
|
-
z.record(
|
|
7594
|
-
z.
|
|
7595
|
-
|
|
7596
|
-
|
|
7597
|
-
|
|
7598
|
-
|
|
7599
|
-
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
|
|
7603
|
-
|
|
7604
|
-
]),
|
|
7605
|
-
),
|
|
7135
|
+
z.lazy(() => KnowledgeFilterAnd$inboundSchema),
|
|
7136
|
+
z.lazy(() => KnowledgeFilterOr$inboundSchema),
|
|
7137
|
+
z.record(z.union([
|
|
7138
|
+
z.lazy(() => OneEq$inboundSchema),
|
|
7139
|
+
z.lazy(() => OneNe$inboundSchema),
|
|
7140
|
+
z.lazy(() => Three$inboundSchema),
|
|
7141
|
+
z.lazy(() => Gte$inboundSchema),
|
|
7142
|
+
z.lazy(() => Lt$inboundSchema),
|
|
7143
|
+
z.lazy(() => Lte$inboundSchema),
|
|
7144
|
+
z.lazy(() => OneIn$inboundSchema),
|
|
7145
|
+
z.lazy(() => OneNin$inboundSchema),
|
|
7146
|
+
z.lazy(() => Exists$inboundSchema),
|
|
7147
|
+
])),
|
|
7606
7148
|
]).optional(),
|
|
7607
7149
|
}).transform((v) => {
|
|
7608
7150
|
return remap$(v, {
|
|
@@ -7644,19 +7186,19 @@ export type Deployments$Outbound = {
|
|
|
7644
7186
|
invoke_options?: InvokeOptions$Outbound | undefined;
|
|
7645
7187
|
thread?: Thread$Outbound | undefined;
|
|
7646
7188
|
knowledge_filter?:
|
|
7647
|
-
|
|
|
7648
|
-
|
|
|
7189
|
+
| KnowledgeFilterAnd$Outbound
|
|
7190
|
+
| KnowledgeFilterOr$Outbound
|
|
7649
7191
|
| {
|
|
7650
7192
|
[k: string]:
|
|
7651
|
-
|
|
|
7652
|
-
|
|
|
7193
|
+
| OneEq$Outbound
|
|
7194
|
+
| OneNe$Outbound
|
|
7653
7195
|
| Three$Outbound
|
|
7654
|
-
|
|
|
7655
|
-
|
|
|
7656
|
-
|
|
|
7657
|
-
|
|
|
7658
|
-
|
|
|
7659
|
-
|
|
|
7196
|
+
| Gte$Outbound
|
|
7197
|
+
| Lt$Outbound
|
|
7198
|
+
| Lte$Outbound
|
|
7199
|
+
| OneIn$Outbound
|
|
7200
|
+
| OneNin$Outbound
|
|
7201
|
+
| Exists$Outbound;
|
|
7660
7202
|
}
|
|
7661
7203
|
| undefined;
|
|
7662
7204
|
};
|
|
@@ -7695,21 +7237,19 @@ export const Deployments$outboundSchema: z.ZodType<
|
|
|
7695
7237
|
invokeOptions: z.lazy(() => InvokeOptions$outboundSchema).optional(),
|
|
7696
7238
|
thread: z.lazy(() => Thread$outboundSchema).optional(),
|
|
7697
7239
|
knowledgeFilter: z.union([
|
|
7698
|
-
z.lazy(() =>
|
|
7699
|
-
z.lazy(() =>
|
|
7700
|
-
z.record(
|
|
7701
|
-
z.
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
|
|
7705
|
-
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
|
|
7709
|
-
|
|
7710
|
-
|
|
7711
|
-
]),
|
|
7712
|
-
),
|
|
7240
|
+
z.lazy(() => KnowledgeFilterAnd$outboundSchema),
|
|
7241
|
+
z.lazy(() => KnowledgeFilterOr$outboundSchema),
|
|
7242
|
+
z.record(z.union([
|
|
7243
|
+
z.lazy(() => OneEq$outboundSchema),
|
|
7244
|
+
z.lazy(() => OneNe$outboundSchema),
|
|
7245
|
+
z.lazy(() => Three$outboundSchema),
|
|
7246
|
+
z.lazy(() => Gte$outboundSchema),
|
|
7247
|
+
z.lazy(() => Lt$outboundSchema),
|
|
7248
|
+
z.lazy(() => Lte$outboundSchema),
|
|
7249
|
+
z.lazy(() => OneIn$outboundSchema),
|
|
7250
|
+
z.lazy(() => OneNin$outboundSchema),
|
|
7251
|
+
z.lazy(() => Exists$outboundSchema),
|
|
7252
|
+
])),
|
|
7713
7253
|
]).optional(),
|
|
7714
7254
|
}).transform((v) => {
|
|
7715
7255
|
return remap$(v, {
|