@orq-ai/node 3.6.0-rc.25 → 3.6.0-rc.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +3013 -3880
- package/bin/mcp-server.js.map +37 -28
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/deployments.d.ts +618 -618
- package/models/components/deployments.d.ts.map +1 -1
- package/models/components/deployments.js +864 -1051
- package/models/components/deployments.js.map +1 -1
- package/models/operations/bulkcreatedatapoints.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/deploymentgetconfig.d.ts +618 -618
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +855 -1052
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentstream.d.ts +618 -618
- package/models/operations/deploymentstream.d.ts.map +1 -1
- package/models/operations/deploymentstream.js +823 -1052
- package/models/operations/deploymentstream.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/searchknowledge.d.ts +642 -642
- package/models/operations/searchknowledge.d.ts.map +1 -1
- package/models/operations/searchknowledge.js +946 -1177
- package/models/operations/searchknowledge.js.map +1 -1
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/package.json +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/deployments.ts +1217 -1677
- package/src/models/operations/bulkcreatedatapoints.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/deploymentgetconfig.ts +1202 -1723
- package/src/models/operations/deploymentstream.ts +1314 -1761
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/searchknowledge.ts +1334 -1750
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
|
@@ -4,192 +4,192 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
|
4
4
|
/**
|
|
5
5
|
* Exists
|
|
6
6
|
*/
|
|
7
|
-
export type
|
|
8
|
-
|
|
7
|
+
export type SearchKnowledgeOrExists = {
|
|
8
|
+
exists: boolean;
|
|
9
9
|
};
|
|
10
|
-
export type
|
|
10
|
+
export type SearchKnowledgeOrKnowledgeNin = string | number | boolean;
|
|
11
11
|
/**
|
|
12
12
|
* Not in
|
|
13
13
|
*/
|
|
14
|
-
export type
|
|
15
|
-
|
|
14
|
+
export type SearchKnowledgeOrNin = {
|
|
15
|
+
nin: Array<string | number | boolean>;
|
|
16
16
|
};
|
|
17
|
-
export type
|
|
17
|
+
export type SearchKnowledgeOrKnowledgeIn = string | number | boolean;
|
|
18
18
|
/**
|
|
19
19
|
* In
|
|
20
20
|
*/
|
|
21
|
-
export type
|
|
22
|
-
|
|
21
|
+
export type SearchKnowledgeOrIn = {
|
|
22
|
+
in: Array<string | number | boolean>;
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
25
25
|
* Less than or equal to
|
|
26
26
|
*/
|
|
27
|
-
export type
|
|
28
|
-
|
|
27
|
+
export type SearchKnowledgeOrLte = {
|
|
28
|
+
lte: number;
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
31
|
* Less than
|
|
32
32
|
*/
|
|
33
|
-
export type
|
|
34
|
-
|
|
33
|
+
export type SearchKnowledgeOrLt = {
|
|
34
|
+
lt: number;
|
|
35
35
|
};
|
|
36
36
|
/**
|
|
37
37
|
* Greater than or equal to
|
|
38
38
|
*/
|
|
39
|
-
export type
|
|
40
|
-
|
|
39
|
+
export type SearchKnowledgeOrGte = {
|
|
40
|
+
gte: number;
|
|
41
41
|
};
|
|
42
|
-
export type
|
|
43
|
-
|
|
42
|
+
export type SearchKnowledgeOr3 = {
|
|
43
|
+
gt: number;
|
|
44
44
|
};
|
|
45
|
-
export type
|
|
45
|
+
export type SearchKnowledgeOrKnowledgeNe = string | number | boolean;
|
|
46
46
|
/**
|
|
47
47
|
* Not equal to
|
|
48
48
|
*/
|
|
49
|
-
export type
|
|
50
|
-
|
|
49
|
+
export type SearchKnowledgeOrNe = {
|
|
50
|
+
ne: string | number | boolean;
|
|
51
51
|
};
|
|
52
|
-
export type
|
|
52
|
+
export type SearchKnowledgeOrKnowledgeEq = string | number | boolean;
|
|
53
53
|
/**
|
|
54
54
|
* Equal to
|
|
55
55
|
*/
|
|
56
|
-
export type
|
|
57
|
-
|
|
56
|
+
export type SearchKnowledgeOrEq = {
|
|
57
|
+
eq: string | number | boolean;
|
|
58
58
|
};
|
|
59
|
-
export type
|
|
59
|
+
export type SearchKnowledgeFilterByOr = SearchKnowledgeOrEq | SearchKnowledgeOrNe | SearchKnowledgeOr3 | SearchKnowledgeOrGte | SearchKnowledgeOrLt | SearchKnowledgeOrLte | SearchKnowledgeOrIn | SearchKnowledgeOrNin | SearchKnowledgeOrExists;
|
|
60
60
|
/**
|
|
61
61
|
* Or
|
|
62
62
|
*/
|
|
63
|
-
export type
|
|
64
|
-
|
|
65
|
-
[k: string]:
|
|
63
|
+
export type FilterByOr = {
|
|
64
|
+
or: Array<{
|
|
65
|
+
[k: string]: SearchKnowledgeOrEq | SearchKnowledgeOrNe | SearchKnowledgeOr3 | SearchKnowledgeOrGte | SearchKnowledgeOrLt | SearchKnowledgeOrLte | SearchKnowledgeOrIn | SearchKnowledgeOrNin | SearchKnowledgeOrExists;
|
|
66
66
|
}>;
|
|
67
67
|
};
|
|
68
68
|
/**
|
|
69
69
|
* Exists
|
|
70
70
|
*/
|
|
71
|
-
export type
|
|
72
|
-
|
|
71
|
+
export type SearchKnowledgeAndExists = {
|
|
72
|
+
exists: boolean;
|
|
73
73
|
};
|
|
74
|
-
export type
|
|
74
|
+
export type SearchKnowledgeAndKnowledgeNin = string | number | boolean;
|
|
75
75
|
/**
|
|
76
76
|
* Not in
|
|
77
77
|
*/
|
|
78
|
-
export type
|
|
79
|
-
|
|
78
|
+
export type SearchKnowledgeAndNin = {
|
|
79
|
+
nin: Array<string | number | boolean>;
|
|
80
80
|
};
|
|
81
|
-
export type
|
|
81
|
+
export type SearchKnowledgeAndKnowledgeIn = string | number | boolean;
|
|
82
82
|
/**
|
|
83
83
|
* In
|
|
84
84
|
*/
|
|
85
|
-
export type
|
|
86
|
-
|
|
85
|
+
export type SearchKnowledgeAndIn = {
|
|
86
|
+
in: Array<string | number | boolean>;
|
|
87
87
|
};
|
|
88
88
|
/**
|
|
89
89
|
* Less than or equal to
|
|
90
90
|
*/
|
|
91
|
-
export type
|
|
92
|
-
|
|
91
|
+
export type SearchKnowledgeAndLte = {
|
|
92
|
+
lte: number;
|
|
93
93
|
};
|
|
94
94
|
/**
|
|
95
95
|
* Less than
|
|
96
96
|
*/
|
|
97
|
-
export type
|
|
98
|
-
|
|
97
|
+
export type SearchKnowledgeAndLt = {
|
|
98
|
+
lt: number;
|
|
99
99
|
};
|
|
100
100
|
/**
|
|
101
101
|
* Greater than or equal to
|
|
102
102
|
*/
|
|
103
|
-
export type
|
|
104
|
-
|
|
103
|
+
export type SearchKnowledgeAndGte = {
|
|
104
|
+
gte: number;
|
|
105
105
|
};
|
|
106
|
-
export type
|
|
107
|
-
|
|
106
|
+
export type SearchKnowledgeAnd3 = {
|
|
107
|
+
gt: number;
|
|
108
108
|
};
|
|
109
|
-
export type
|
|
109
|
+
export type SearchKnowledgeAndKnowledgeNe = string | number | boolean;
|
|
110
110
|
/**
|
|
111
111
|
* Not equal to
|
|
112
112
|
*/
|
|
113
|
-
export type
|
|
114
|
-
|
|
113
|
+
export type SearchKnowledgeAndNe = {
|
|
114
|
+
ne: string | number | boolean;
|
|
115
115
|
};
|
|
116
|
-
export type
|
|
116
|
+
export type SearchKnowledgeAndKnowledgeEq = string | number | boolean;
|
|
117
117
|
/**
|
|
118
118
|
* Equal to
|
|
119
119
|
*/
|
|
120
|
-
export type
|
|
121
|
-
|
|
120
|
+
export type SearchKnowledgeAndEq = {
|
|
121
|
+
eq: string | number | boolean;
|
|
122
122
|
};
|
|
123
|
-
export type
|
|
123
|
+
export type SearchKnowledgeFilterByAnd = SearchKnowledgeAndEq | SearchKnowledgeAndNe | SearchKnowledgeAnd3 | SearchKnowledgeAndGte | SearchKnowledgeAndLt | SearchKnowledgeAndLte | SearchKnowledgeAndIn | SearchKnowledgeAndNin | SearchKnowledgeAndExists;
|
|
124
124
|
/**
|
|
125
125
|
* And
|
|
126
126
|
*/
|
|
127
|
-
export type
|
|
128
|
-
|
|
129
|
-
[k: string]:
|
|
127
|
+
export type FilterByAnd = {
|
|
128
|
+
and: Array<{
|
|
129
|
+
[k: string]: SearchKnowledgeAndEq | SearchKnowledgeAndNe | SearchKnowledgeAnd3 | SearchKnowledgeAndGte | SearchKnowledgeAndLt | SearchKnowledgeAndLte | SearchKnowledgeAndIn | SearchKnowledgeAndNin | SearchKnowledgeAndExists;
|
|
130
130
|
}>;
|
|
131
131
|
};
|
|
132
132
|
/**
|
|
133
133
|
* Exists
|
|
134
134
|
*/
|
|
135
|
-
export type
|
|
136
|
-
|
|
135
|
+
export type SearchKnowledge1Exists = {
|
|
136
|
+
exists: boolean;
|
|
137
137
|
};
|
|
138
|
-
export type
|
|
138
|
+
export type SearchKnowledge1KnowledgeNin = string | number | boolean;
|
|
139
139
|
/**
|
|
140
140
|
* Not in
|
|
141
141
|
*/
|
|
142
|
-
export type
|
|
143
|
-
|
|
142
|
+
export type SearchKnowledge1Nin = {
|
|
143
|
+
nin: Array<string | number | boolean>;
|
|
144
144
|
};
|
|
145
|
-
export type
|
|
145
|
+
export type SearchKnowledge1KnowledgeIn = string | number | boolean;
|
|
146
146
|
/**
|
|
147
147
|
* In
|
|
148
148
|
*/
|
|
149
|
-
export type
|
|
150
|
-
|
|
149
|
+
export type SearchKnowledge1In = {
|
|
150
|
+
in: Array<string | number | boolean>;
|
|
151
151
|
};
|
|
152
152
|
/**
|
|
153
153
|
* Less than or equal to
|
|
154
154
|
*/
|
|
155
|
-
export type
|
|
156
|
-
|
|
155
|
+
export type SearchKnowledge1Lte = {
|
|
156
|
+
lte: number;
|
|
157
157
|
};
|
|
158
158
|
/**
|
|
159
159
|
* Less than
|
|
160
160
|
*/
|
|
161
|
-
export type
|
|
162
|
-
|
|
161
|
+
export type SearchKnowledge1Lt = {
|
|
162
|
+
lt: number;
|
|
163
163
|
};
|
|
164
164
|
/**
|
|
165
165
|
* Greater than or equal to
|
|
166
166
|
*/
|
|
167
|
-
export type
|
|
168
|
-
|
|
167
|
+
export type SearchKnowledge1Gte = {
|
|
168
|
+
gte: number;
|
|
169
169
|
};
|
|
170
170
|
export type SearchKnowledge13 = {
|
|
171
|
-
|
|
171
|
+
gt: number;
|
|
172
172
|
};
|
|
173
|
-
export type
|
|
173
|
+
export type SearchKnowledge1KnowledgeNe = string | number | boolean;
|
|
174
174
|
/**
|
|
175
175
|
* Not equal to
|
|
176
176
|
*/
|
|
177
|
-
export type
|
|
178
|
-
|
|
177
|
+
export type SearchKnowledge1Ne = {
|
|
178
|
+
ne: string | number | boolean;
|
|
179
179
|
};
|
|
180
|
-
export type
|
|
180
|
+
export type SearchKnowledge1KnowledgeEq = string | number | boolean;
|
|
181
181
|
/**
|
|
182
182
|
* Equal to
|
|
183
183
|
*/
|
|
184
|
-
export type
|
|
185
|
-
|
|
184
|
+
export type SearchKnowledge1Eq = {
|
|
185
|
+
eq: string | number | boolean;
|
|
186
186
|
};
|
|
187
|
-
export type
|
|
187
|
+
export type FilterBy1 = SearchKnowledge1Eq | SearchKnowledge1Ne | SearchKnowledge13 | SearchKnowledge1Gte | SearchKnowledge1Lt | SearchKnowledge1Lte | SearchKnowledge1In | SearchKnowledge1Nin | SearchKnowledge1Exists;
|
|
188
188
|
/**
|
|
189
|
-
* The filter to apply to the search
|
|
189
|
+
* The metadata filter to apply to the search. Check the [Searching a Knowledge Base](https://dash.readme.com/project/orqai/v2.0/docs/searching-a-knowledge-base) for more information.
|
|
190
190
|
*/
|
|
191
|
-
export type
|
|
192
|
-
[k: string]:
|
|
191
|
+
export type FilterBy = FilterByAnd | FilterByOr | {
|
|
192
|
+
[k: string]: SearchKnowledge1Eq | SearchKnowledge1Ne | SearchKnowledge13 | SearchKnowledge1Gte | SearchKnowledge1Lt | SearchKnowledge1Lte | SearchKnowledge1In | SearchKnowledge1Nin | SearchKnowledge1Exists;
|
|
193
193
|
};
|
|
194
194
|
/**
|
|
195
195
|
* Additional search options
|
|
@@ -225,10 +225,10 @@ export type SearchKnowledgeRequestBody = {
|
|
|
225
225
|
*/
|
|
226
226
|
threshold?: number | undefined;
|
|
227
227
|
/**
|
|
228
|
-
* The filter to apply to the search
|
|
228
|
+
* The metadata filter to apply to the search. Check the [Searching a Knowledge Base](https://dash.readme.com/project/orqai/v2.0/docs/searching-a-knowledge-base) for more information.
|
|
229
229
|
*/
|
|
230
|
-
|
|
231
|
-
[k: string]:
|
|
230
|
+
filterBy?: FilterByAnd | FilterByOr | {
|
|
231
|
+
[k: string]: SearchKnowledge1Eq | SearchKnowledge1Ne | SearchKnowledge13 | SearchKnowledge1Gte | SearchKnowledge1Lt | SearchKnowledge1Lte | SearchKnowledge1In | SearchKnowledge1Nin | SearchKnowledge1Exists;
|
|
232
232
|
} | undefined;
|
|
233
233
|
/**
|
|
234
234
|
* Additional search options
|
|
@@ -265,826 +265,826 @@ export type SearchKnowledgeResponseBody = {
|
|
|
265
265
|
matches: Array<Matches>;
|
|
266
266
|
};
|
|
267
267
|
/** @internal */
|
|
268
|
-
export declare const
|
|
268
|
+
export declare const SearchKnowledgeOrExists$inboundSchema: z.ZodType<SearchKnowledgeOrExists, z.ZodTypeDef, unknown>;
|
|
269
269
|
/** @internal */
|
|
270
|
-
export type
|
|
271
|
-
|
|
270
|
+
export type SearchKnowledgeOrExists$Outbound = {
|
|
271
|
+
exists: boolean;
|
|
272
272
|
};
|
|
273
273
|
/** @internal */
|
|
274
|
-
export declare const
|
|
274
|
+
export declare const SearchKnowledgeOrExists$outboundSchema: z.ZodType<SearchKnowledgeOrExists$Outbound, z.ZodTypeDef, SearchKnowledgeOrExists>;
|
|
275
275
|
/**
|
|
276
276
|
* @internal
|
|
277
277
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
278
278
|
*/
|
|
279
|
-
export declare namespace
|
|
280
|
-
/** @deprecated use `
|
|
281
|
-
const inboundSchema: z.ZodType<
|
|
282
|
-
/** @deprecated use `
|
|
283
|
-
const outboundSchema: z.ZodType<
|
|
284
|
-
/** @deprecated use `
|
|
285
|
-
type Outbound =
|
|
279
|
+
export declare namespace SearchKnowledgeOrExists$ {
|
|
280
|
+
/** @deprecated use `SearchKnowledgeOrExists$inboundSchema` instead. */
|
|
281
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrExists, z.ZodTypeDef, unknown>;
|
|
282
|
+
/** @deprecated use `SearchKnowledgeOrExists$outboundSchema` instead. */
|
|
283
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrExists$Outbound, z.ZodTypeDef, SearchKnowledgeOrExists>;
|
|
284
|
+
/** @deprecated use `SearchKnowledgeOrExists$Outbound` instead. */
|
|
285
|
+
type Outbound = SearchKnowledgeOrExists$Outbound;
|
|
286
286
|
}
|
|
287
|
-
export declare function
|
|
288
|
-
export declare function
|
|
287
|
+
export declare function searchKnowledgeOrExistsToJSON(searchKnowledgeOrExists: SearchKnowledgeOrExists): string;
|
|
288
|
+
export declare function searchKnowledgeOrExistsFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrExists, SDKValidationError>;
|
|
289
289
|
/** @internal */
|
|
290
|
-
export declare const
|
|
290
|
+
export declare const SearchKnowledgeOrKnowledgeNin$inboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeNin, z.ZodTypeDef, unknown>;
|
|
291
291
|
/** @internal */
|
|
292
|
-
export type
|
|
292
|
+
export type SearchKnowledgeOrKnowledgeNin$Outbound = string | number | boolean;
|
|
293
293
|
/** @internal */
|
|
294
|
-
export declare const
|
|
294
|
+
export declare const SearchKnowledgeOrKnowledgeNin$outboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeNin$Outbound, z.ZodTypeDef, SearchKnowledgeOrKnowledgeNin>;
|
|
295
295
|
/**
|
|
296
296
|
* @internal
|
|
297
297
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
298
298
|
*/
|
|
299
|
-
export declare namespace
|
|
300
|
-
/** @deprecated use `
|
|
301
|
-
const inboundSchema: z.ZodType<
|
|
302
|
-
/** @deprecated use `
|
|
303
|
-
const outboundSchema: z.ZodType<
|
|
304
|
-
/** @deprecated use `
|
|
305
|
-
type Outbound =
|
|
299
|
+
export declare namespace SearchKnowledgeOrKnowledgeNin$ {
|
|
300
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeNin$inboundSchema` instead. */
|
|
301
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeNin, z.ZodTypeDef, unknown>;
|
|
302
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeNin$outboundSchema` instead. */
|
|
303
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeNin$Outbound, z.ZodTypeDef, SearchKnowledgeOrKnowledgeNin>;
|
|
304
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeNin$Outbound` instead. */
|
|
305
|
+
type Outbound = SearchKnowledgeOrKnowledgeNin$Outbound;
|
|
306
306
|
}
|
|
307
|
-
export declare function
|
|
308
|
-
export declare function
|
|
307
|
+
export declare function searchKnowledgeOrKnowledgeNinToJSON(searchKnowledgeOrKnowledgeNin: SearchKnowledgeOrKnowledgeNin): string;
|
|
308
|
+
export declare function searchKnowledgeOrKnowledgeNinFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrKnowledgeNin, SDKValidationError>;
|
|
309
309
|
/** @internal */
|
|
310
|
-
export declare const
|
|
310
|
+
export declare const SearchKnowledgeOrNin$inboundSchema: z.ZodType<SearchKnowledgeOrNin, z.ZodTypeDef, unknown>;
|
|
311
311
|
/** @internal */
|
|
312
|
-
export type
|
|
313
|
-
|
|
312
|
+
export type SearchKnowledgeOrNin$Outbound = {
|
|
313
|
+
nin: Array<string | number | boolean>;
|
|
314
314
|
};
|
|
315
315
|
/** @internal */
|
|
316
|
-
export declare const
|
|
316
|
+
export declare const SearchKnowledgeOrNin$outboundSchema: z.ZodType<SearchKnowledgeOrNin$Outbound, z.ZodTypeDef, SearchKnowledgeOrNin>;
|
|
317
317
|
/**
|
|
318
318
|
* @internal
|
|
319
319
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
320
320
|
*/
|
|
321
|
-
export declare namespace
|
|
322
|
-
/** @deprecated use `
|
|
323
|
-
const inboundSchema: z.ZodType<
|
|
324
|
-
/** @deprecated use `
|
|
325
|
-
const outboundSchema: z.ZodType<
|
|
326
|
-
/** @deprecated use `
|
|
327
|
-
type Outbound =
|
|
321
|
+
export declare namespace SearchKnowledgeOrNin$ {
|
|
322
|
+
/** @deprecated use `SearchKnowledgeOrNin$inboundSchema` instead. */
|
|
323
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrNin, z.ZodTypeDef, unknown>;
|
|
324
|
+
/** @deprecated use `SearchKnowledgeOrNin$outboundSchema` instead. */
|
|
325
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrNin$Outbound, z.ZodTypeDef, SearchKnowledgeOrNin>;
|
|
326
|
+
/** @deprecated use `SearchKnowledgeOrNin$Outbound` instead. */
|
|
327
|
+
type Outbound = SearchKnowledgeOrNin$Outbound;
|
|
328
328
|
}
|
|
329
|
-
export declare function
|
|
330
|
-
export declare function
|
|
329
|
+
export declare function searchKnowledgeOrNinToJSON(searchKnowledgeOrNin: SearchKnowledgeOrNin): string;
|
|
330
|
+
export declare function searchKnowledgeOrNinFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrNin, SDKValidationError>;
|
|
331
331
|
/** @internal */
|
|
332
|
-
export declare const
|
|
332
|
+
export declare const SearchKnowledgeOrKnowledgeIn$inboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeIn, z.ZodTypeDef, unknown>;
|
|
333
333
|
/** @internal */
|
|
334
|
-
export type
|
|
334
|
+
export type SearchKnowledgeOrKnowledgeIn$Outbound = string | number | boolean;
|
|
335
335
|
/** @internal */
|
|
336
|
-
export declare const
|
|
336
|
+
export declare const SearchKnowledgeOrKnowledgeIn$outboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeIn$Outbound, z.ZodTypeDef, SearchKnowledgeOrKnowledgeIn>;
|
|
337
337
|
/**
|
|
338
338
|
* @internal
|
|
339
339
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
340
340
|
*/
|
|
341
|
-
export declare namespace
|
|
342
|
-
/** @deprecated use `
|
|
343
|
-
const inboundSchema: z.ZodType<
|
|
344
|
-
/** @deprecated use `
|
|
345
|
-
const outboundSchema: z.ZodType<
|
|
346
|
-
/** @deprecated use `
|
|
347
|
-
type Outbound =
|
|
341
|
+
export declare namespace SearchKnowledgeOrKnowledgeIn$ {
|
|
342
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeIn$inboundSchema` instead. */
|
|
343
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeIn, z.ZodTypeDef, unknown>;
|
|
344
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeIn$outboundSchema` instead. */
|
|
345
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeIn$Outbound, z.ZodTypeDef, SearchKnowledgeOrKnowledgeIn>;
|
|
346
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeIn$Outbound` instead. */
|
|
347
|
+
type Outbound = SearchKnowledgeOrKnowledgeIn$Outbound;
|
|
348
348
|
}
|
|
349
|
-
export declare function
|
|
350
|
-
export declare function
|
|
349
|
+
export declare function searchKnowledgeOrKnowledgeInToJSON(searchKnowledgeOrKnowledgeIn: SearchKnowledgeOrKnowledgeIn): string;
|
|
350
|
+
export declare function searchKnowledgeOrKnowledgeInFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrKnowledgeIn, SDKValidationError>;
|
|
351
351
|
/** @internal */
|
|
352
|
-
export declare const
|
|
352
|
+
export declare const SearchKnowledgeOrIn$inboundSchema: z.ZodType<SearchKnowledgeOrIn, z.ZodTypeDef, unknown>;
|
|
353
353
|
/** @internal */
|
|
354
|
-
export type
|
|
355
|
-
|
|
354
|
+
export type SearchKnowledgeOrIn$Outbound = {
|
|
355
|
+
in: Array<string | number | boolean>;
|
|
356
356
|
};
|
|
357
357
|
/** @internal */
|
|
358
|
-
export declare const
|
|
358
|
+
export declare const SearchKnowledgeOrIn$outboundSchema: z.ZodType<SearchKnowledgeOrIn$Outbound, z.ZodTypeDef, SearchKnowledgeOrIn>;
|
|
359
359
|
/**
|
|
360
360
|
* @internal
|
|
361
361
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
362
362
|
*/
|
|
363
|
-
export declare namespace
|
|
364
|
-
/** @deprecated use `
|
|
365
|
-
const inboundSchema: z.ZodType<
|
|
366
|
-
/** @deprecated use `
|
|
367
|
-
const outboundSchema: z.ZodType<
|
|
368
|
-
/** @deprecated use `
|
|
369
|
-
type Outbound =
|
|
363
|
+
export declare namespace SearchKnowledgeOrIn$ {
|
|
364
|
+
/** @deprecated use `SearchKnowledgeOrIn$inboundSchema` instead. */
|
|
365
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrIn, z.ZodTypeDef, unknown>;
|
|
366
|
+
/** @deprecated use `SearchKnowledgeOrIn$outboundSchema` instead. */
|
|
367
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrIn$Outbound, z.ZodTypeDef, SearchKnowledgeOrIn>;
|
|
368
|
+
/** @deprecated use `SearchKnowledgeOrIn$Outbound` instead. */
|
|
369
|
+
type Outbound = SearchKnowledgeOrIn$Outbound;
|
|
370
370
|
}
|
|
371
|
-
export declare function
|
|
372
|
-
export declare function
|
|
371
|
+
export declare function searchKnowledgeOrInToJSON(searchKnowledgeOrIn: SearchKnowledgeOrIn): string;
|
|
372
|
+
export declare function searchKnowledgeOrInFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrIn, SDKValidationError>;
|
|
373
373
|
/** @internal */
|
|
374
|
-
export declare const
|
|
374
|
+
export declare const SearchKnowledgeOrLte$inboundSchema: z.ZodType<SearchKnowledgeOrLte, z.ZodTypeDef, unknown>;
|
|
375
375
|
/** @internal */
|
|
376
|
-
export type
|
|
377
|
-
|
|
376
|
+
export type SearchKnowledgeOrLte$Outbound = {
|
|
377
|
+
lte: number;
|
|
378
378
|
};
|
|
379
379
|
/** @internal */
|
|
380
|
-
export declare const
|
|
380
|
+
export declare const SearchKnowledgeOrLte$outboundSchema: z.ZodType<SearchKnowledgeOrLte$Outbound, z.ZodTypeDef, SearchKnowledgeOrLte>;
|
|
381
381
|
/**
|
|
382
382
|
* @internal
|
|
383
383
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
384
384
|
*/
|
|
385
|
-
export declare namespace
|
|
386
|
-
/** @deprecated use `
|
|
387
|
-
const inboundSchema: z.ZodType<
|
|
388
|
-
/** @deprecated use `
|
|
389
|
-
const outboundSchema: z.ZodType<
|
|
390
|
-
/** @deprecated use `
|
|
391
|
-
type Outbound =
|
|
385
|
+
export declare namespace SearchKnowledgeOrLte$ {
|
|
386
|
+
/** @deprecated use `SearchKnowledgeOrLte$inboundSchema` instead. */
|
|
387
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrLte, z.ZodTypeDef, unknown>;
|
|
388
|
+
/** @deprecated use `SearchKnowledgeOrLte$outboundSchema` instead. */
|
|
389
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrLte$Outbound, z.ZodTypeDef, SearchKnowledgeOrLte>;
|
|
390
|
+
/** @deprecated use `SearchKnowledgeOrLte$Outbound` instead. */
|
|
391
|
+
type Outbound = SearchKnowledgeOrLte$Outbound;
|
|
392
392
|
}
|
|
393
|
-
export declare function
|
|
394
|
-
export declare function
|
|
393
|
+
export declare function searchKnowledgeOrLteToJSON(searchKnowledgeOrLte: SearchKnowledgeOrLte): string;
|
|
394
|
+
export declare function searchKnowledgeOrLteFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrLte, SDKValidationError>;
|
|
395
395
|
/** @internal */
|
|
396
|
-
export declare const
|
|
396
|
+
export declare const SearchKnowledgeOrLt$inboundSchema: z.ZodType<SearchKnowledgeOrLt, z.ZodTypeDef, unknown>;
|
|
397
397
|
/** @internal */
|
|
398
|
-
export type
|
|
399
|
-
|
|
398
|
+
export type SearchKnowledgeOrLt$Outbound = {
|
|
399
|
+
lt: number;
|
|
400
400
|
};
|
|
401
401
|
/** @internal */
|
|
402
|
-
export declare const
|
|
402
|
+
export declare const SearchKnowledgeOrLt$outboundSchema: z.ZodType<SearchKnowledgeOrLt$Outbound, z.ZodTypeDef, SearchKnowledgeOrLt>;
|
|
403
403
|
/**
|
|
404
404
|
* @internal
|
|
405
405
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
406
406
|
*/
|
|
407
|
-
export declare namespace
|
|
408
|
-
/** @deprecated use `
|
|
409
|
-
const inboundSchema: z.ZodType<
|
|
410
|
-
/** @deprecated use `
|
|
411
|
-
const outboundSchema: z.ZodType<
|
|
412
|
-
/** @deprecated use `
|
|
413
|
-
type Outbound =
|
|
407
|
+
export declare namespace SearchKnowledgeOrLt$ {
|
|
408
|
+
/** @deprecated use `SearchKnowledgeOrLt$inboundSchema` instead. */
|
|
409
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrLt, z.ZodTypeDef, unknown>;
|
|
410
|
+
/** @deprecated use `SearchKnowledgeOrLt$outboundSchema` instead. */
|
|
411
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrLt$Outbound, z.ZodTypeDef, SearchKnowledgeOrLt>;
|
|
412
|
+
/** @deprecated use `SearchKnowledgeOrLt$Outbound` instead. */
|
|
413
|
+
type Outbound = SearchKnowledgeOrLt$Outbound;
|
|
414
414
|
}
|
|
415
|
-
export declare function
|
|
416
|
-
export declare function
|
|
415
|
+
export declare function searchKnowledgeOrLtToJSON(searchKnowledgeOrLt: SearchKnowledgeOrLt): string;
|
|
416
|
+
export declare function searchKnowledgeOrLtFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrLt, SDKValidationError>;
|
|
417
417
|
/** @internal */
|
|
418
|
-
export declare const
|
|
418
|
+
export declare const SearchKnowledgeOrGte$inboundSchema: z.ZodType<SearchKnowledgeOrGte, z.ZodTypeDef, unknown>;
|
|
419
419
|
/** @internal */
|
|
420
|
-
export type
|
|
421
|
-
|
|
420
|
+
export type SearchKnowledgeOrGte$Outbound = {
|
|
421
|
+
gte: number;
|
|
422
422
|
};
|
|
423
423
|
/** @internal */
|
|
424
|
-
export declare const
|
|
424
|
+
export declare const SearchKnowledgeOrGte$outboundSchema: z.ZodType<SearchKnowledgeOrGte$Outbound, z.ZodTypeDef, SearchKnowledgeOrGte>;
|
|
425
425
|
/**
|
|
426
426
|
* @internal
|
|
427
427
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
428
428
|
*/
|
|
429
|
-
export declare namespace
|
|
430
|
-
/** @deprecated use `
|
|
431
|
-
const inboundSchema: z.ZodType<
|
|
432
|
-
/** @deprecated use `
|
|
433
|
-
const outboundSchema: z.ZodType<
|
|
434
|
-
/** @deprecated use `
|
|
435
|
-
type Outbound =
|
|
429
|
+
export declare namespace SearchKnowledgeOrGte$ {
|
|
430
|
+
/** @deprecated use `SearchKnowledgeOrGte$inboundSchema` instead. */
|
|
431
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrGte, z.ZodTypeDef, unknown>;
|
|
432
|
+
/** @deprecated use `SearchKnowledgeOrGte$outboundSchema` instead. */
|
|
433
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrGte$Outbound, z.ZodTypeDef, SearchKnowledgeOrGte>;
|
|
434
|
+
/** @deprecated use `SearchKnowledgeOrGte$Outbound` instead. */
|
|
435
|
+
type Outbound = SearchKnowledgeOrGte$Outbound;
|
|
436
436
|
}
|
|
437
|
-
export declare function
|
|
438
|
-
export declare function
|
|
437
|
+
export declare function searchKnowledgeOrGteToJSON(searchKnowledgeOrGte: SearchKnowledgeOrGte): string;
|
|
438
|
+
export declare function searchKnowledgeOrGteFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrGte, SDKValidationError>;
|
|
439
439
|
/** @internal */
|
|
440
|
-
export declare const
|
|
440
|
+
export declare const SearchKnowledgeOr3$inboundSchema: z.ZodType<SearchKnowledgeOr3, z.ZodTypeDef, unknown>;
|
|
441
441
|
/** @internal */
|
|
442
|
-
export type
|
|
443
|
-
|
|
442
|
+
export type SearchKnowledgeOr3$Outbound = {
|
|
443
|
+
gt: number;
|
|
444
444
|
};
|
|
445
445
|
/** @internal */
|
|
446
|
-
export declare const
|
|
446
|
+
export declare const SearchKnowledgeOr3$outboundSchema: z.ZodType<SearchKnowledgeOr3$Outbound, z.ZodTypeDef, SearchKnowledgeOr3>;
|
|
447
447
|
/**
|
|
448
448
|
* @internal
|
|
449
449
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
450
450
|
*/
|
|
451
|
-
export declare namespace
|
|
452
|
-
/** @deprecated use `
|
|
453
|
-
const inboundSchema: z.ZodType<
|
|
454
|
-
/** @deprecated use `
|
|
455
|
-
const outboundSchema: z.ZodType<
|
|
456
|
-
/** @deprecated use `
|
|
457
|
-
type Outbound =
|
|
451
|
+
export declare namespace SearchKnowledgeOr3$ {
|
|
452
|
+
/** @deprecated use `SearchKnowledgeOr3$inboundSchema` instead. */
|
|
453
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOr3, z.ZodTypeDef, unknown>;
|
|
454
|
+
/** @deprecated use `SearchKnowledgeOr3$outboundSchema` instead. */
|
|
455
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOr3$Outbound, z.ZodTypeDef, SearchKnowledgeOr3>;
|
|
456
|
+
/** @deprecated use `SearchKnowledgeOr3$Outbound` instead. */
|
|
457
|
+
type Outbound = SearchKnowledgeOr3$Outbound;
|
|
458
458
|
}
|
|
459
|
-
export declare function
|
|
460
|
-
export declare function
|
|
459
|
+
export declare function searchKnowledgeOr3ToJSON(searchKnowledgeOr3: SearchKnowledgeOr3): string;
|
|
460
|
+
export declare function searchKnowledgeOr3FromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOr3, SDKValidationError>;
|
|
461
461
|
/** @internal */
|
|
462
|
-
export declare const
|
|
462
|
+
export declare const SearchKnowledgeOrKnowledgeNe$inboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeNe, z.ZodTypeDef, unknown>;
|
|
463
463
|
/** @internal */
|
|
464
|
-
export type
|
|
464
|
+
export type SearchKnowledgeOrKnowledgeNe$Outbound = string | number | boolean;
|
|
465
465
|
/** @internal */
|
|
466
|
-
export declare const
|
|
466
|
+
export declare const SearchKnowledgeOrKnowledgeNe$outboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeNe$Outbound, z.ZodTypeDef, SearchKnowledgeOrKnowledgeNe>;
|
|
467
467
|
/**
|
|
468
468
|
* @internal
|
|
469
469
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
470
470
|
*/
|
|
471
|
-
export declare namespace
|
|
472
|
-
/** @deprecated use `
|
|
473
|
-
const inboundSchema: z.ZodType<
|
|
474
|
-
/** @deprecated use `
|
|
475
|
-
const outboundSchema: z.ZodType<
|
|
476
|
-
/** @deprecated use `
|
|
477
|
-
type Outbound =
|
|
471
|
+
export declare namespace SearchKnowledgeOrKnowledgeNe$ {
|
|
472
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeNe$inboundSchema` instead. */
|
|
473
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeNe, z.ZodTypeDef, unknown>;
|
|
474
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeNe$outboundSchema` instead. */
|
|
475
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeNe$Outbound, z.ZodTypeDef, SearchKnowledgeOrKnowledgeNe>;
|
|
476
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeNe$Outbound` instead. */
|
|
477
|
+
type Outbound = SearchKnowledgeOrKnowledgeNe$Outbound;
|
|
478
478
|
}
|
|
479
|
-
export declare function
|
|
480
|
-
export declare function
|
|
479
|
+
export declare function searchKnowledgeOrKnowledgeNeToJSON(searchKnowledgeOrKnowledgeNe: SearchKnowledgeOrKnowledgeNe): string;
|
|
480
|
+
export declare function searchKnowledgeOrKnowledgeNeFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrKnowledgeNe, SDKValidationError>;
|
|
481
481
|
/** @internal */
|
|
482
|
-
export declare const
|
|
482
|
+
export declare const SearchKnowledgeOrNe$inboundSchema: z.ZodType<SearchKnowledgeOrNe, z.ZodTypeDef, unknown>;
|
|
483
483
|
/** @internal */
|
|
484
|
-
export type
|
|
485
|
-
|
|
484
|
+
export type SearchKnowledgeOrNe$Outbound = {
|
|
485
|
+
ne: string | number | boolean;
|
|
486
486
|
};
|
|
487
487
|
/** @internal */
|
|
488
|
-
export declare const
|
|
488
|
+
export declare const SearchKnowledgeOrNe$outboundSchema: z.ZodType<SearchKnowledgeOrNe$Outbound, z.ZodTypeDef, SearchKnowledgeOrNe>;
|
|
489
489
|
/**
|
|
490
490
|
* @internal
|
|
491
491
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
492
492
|
*/
|
|
493
|
-
export declare namespace
|
|
494
|
-
/** @deprecated use `
|
|
495
|
-
const inboundSchema: z.ZodType<
|
|
496
|
-
/** @deprecated use `
|
|
497
|
-
const outboundSchema: z.ZodType<
|
|
498
|
-
/** @deprecated use `
|
|
499
|
-
type Outbound =
|
|
493
|
+
export declare namespace SearchKnowledgeOrNe$ {
|
|
494
|
+
/** @deprecated use `SearchKnowledgeOrNe$inboundSchema` instead. */
|
|
495
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrNe, z.ZodTypeDef, unknown>;
|
|
496
|
+
/** @deprecated use `SearchKnowledgeOrNe$outboundSchema` instead. */
|
|
497
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrNe$Outbound, z.ZodTypeDef, SearchKnowledgeOrNe>;
|
|
498
|
+
/** @deprecated use `SearchKnowledgeOrNe$Outbound` instead. */
|
|
499
|
+
type Outbound = SearchKnowledgeOrNe$Outbound;
|
|
500
500
|
}
|
|
501
|
-
export declare function
|
|
502
|
-
export declare function
|
|
501
|
+
export declare function searchKnowledgeOrNeToJSON(searchKnowledgeOrNe: SearchKnowledgeOrNe): string;
|
|
502
|
+
export declare function searchKnowledgeOrNeFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrNe, SDKValidationError>;
|
|
503
503
|
/** @internal */
|
|
504
|
-
export declare const
|
|
504
|
+
export declare const SearchKnowledgeOrKnowledgeEq$inboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeEq, z.ZodTypeDef, unknown>;
|
|
505
505
|
/** @internal */
|
|
506
|
-
export type
|
|
506
|
+
export type SearchKnowledgeOrKnowledgeEq$Outbound = string | number | boolean;
|
|
507
507
|
/** @internal */
|
|
508
|
-
export declare const
|
|
508
|
+
export declare const SearchKnowledgeOrKnowledgeEq$outboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeEq$Outbound, z.ZodTypeDef, SearchKnowledgeOrKnowledgeEq>;
|
|
509
509
|
/**
|
|
510
510
|
* @internal
|
|
511
511
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
512
512
|
*/
|
|
513
|
-
export declare namespace
|
|
514
|
-
/** @deprecated use `
|
|
515
|
-
const inboundSchema: z.ZodType<
|
|
516
|
-
/** @deprecated use `
|
|
517
|
-
const outboundSchema: z.ZodType<
|
|
518
|
-
/** @deprecated use `
|
|
519
|
-
type Outbound =
|
|
513
|
+
export declare namespace SearchKnowledgeOrKnowledgeEq$ {
|
|
514
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeEq$inboundSchema` instead. */
|
|
515
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeEq, z.ZodTypeDef, unknown>;
|
|
516
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeEq$outboundSchema` instead. */
|
|
517
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrKnowledgeEq$Outbound, z.ZodTypeDef, SearchKnowledgeOrKnowledgeEq>;
|
|
518
|
+
/** @deprecated use `SearchKnowledgeOrKnowledgeEq$Outbound` instead. */
|
|
519
|
+
type Outbound = SearchKnowledgeOrKnowledgeEq$Outbound;
|
|
520
520
|
}
|
|
521
|
-
export declare function
|
|
522
|
-
export declare function
|
|
521
|
+
export declare function searchKnowledgeOrKnowledgeEqToJSON(searchKnowledgeOrKnowledgeEq: SearchKnowledgeOrKnowledgeEq): string;
|
|
522
|
+
export declare function searchKnowledgeOrKnowledgeEqFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrKnowledgeEq, SDKValidationError>;
|
|
523
523
|
/** @internal */
|
|
524
|
-
export declare const
|
|
524
|
+
export declare const SearchKnowledgeOrEq$inboundSchema: z.ZodType<SearchKnowledgeOrEq, z.ZodTypeDef, unknown>;
|
|
525
525
|
/** @internal */
|
|
526
|
-
export type
|
|
527
|
-
|
|
526
|
+
export type SearchKnowledgeOrEq$Outbound = {
|
|
527
|
+
eq: string | number | boolean;
|
|
528
528
|
};
|
|
529
529
|
/** @internal */
|
|
530
|
-
export declare const
|
|
530
|
+
export declare const SearchKnowledgeOrEq$outboundSchema: z.ZodType<SearchKnowledgeOrEq$Outbound, z.ZodTypeDef, SearchKnowledgeOrEq>;
|
|
531
531
|
/**
|
|
532
532
|
* @internal
|
|
533
533
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
534
534
|
*/
|
|
535
|
-
export declare namespace
|
|
536
|
-
/** @deprecated use `
|
|
537
|
-
const inboundSchema: z.ZodType<
|
|
538
|
-
/** @deprecated use `
|
|
539
|
-
const outboundSchema: z.ZodType<
|
|
540
|
-
/** @deprecated use `
|
|
541
|
-
type Outbound =
|
|
535
|
+
export declare namespace SearchKnowledgeOrEq$ {
|
|
536
|
+
/** @deprecated use `SearchKnowledgeOrEq$inboundSchema` instead. */
|
|
537
|
+
const inboundSchema: z.ZodType<SearchKnowledgeOrEq, z.ZodTypeDef, unknown>;
|
|
538
|
+
/** @deprecated use `SearchKnowledgeOrEq$outboundSchema` instead. */
|
|
539
|
+
const outboundSchema: z.ZodType<SearchKnowledgeOrEq$Outbound, z.ZodTypeDef, SearchKnowledgeOrEq>;
|
|
540
|
+
/** @deprecated use `SearchKnowledgeOrEq$Outbound` instead. */
|
|
541
|
+
type Outbound = SearchKnowledgeOrEq$Outbound;
|
|
542
542
|
}
|
|
543
|
-
export declare function
|
|
544
|
-
export declare function
|
|
543
|
+
export declare function searchKnowledgeOrEqToJSON(searchKnowledgeOrEq: SearchKnowledgeOrEq): string;
|
|
544
|
+
export declare function searchKnowledgeOrEqFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeOrEq, SDKValidationError>;
|
|
545
545
|
/** @internal */
|
|
546
|
-
export declare const
|
|
546
|
+
export declare const SearchKnowledgeFilterByOr$inboundSchema: z.ZodType<SearchKnowledgeFilterByOr, z.ZodTypeDef, unknown>;
|
|
547
547
|
/** @internal */
|
|
548
|
-
export type
|
|
548
|
+
export type SearchKnowledgeFilterByOr$Outbound = SearchKnowledgeOrEq$Outbound | SearchKnowledgeOrNe$Outbound | SearchKnowledgeOr3$Outbound | SearchKnowledgeOrGte$Outbound | SearchKnowledgeOrLt$Outbound | SearchKnowledgeOrLte$Outbound | SearchKnowledgeOrIn$Outbound | SearchKnowledgeOrNin$Outbound | SearchKnowledgeOrExists$Outbound;
|
|
549
549
|
/** @internal */
|
|
550
|
-
export declare const
|
|
550
|
+
export declare const SearchKnowledgeFilterByOr$outboundSchema: z.ZodType<SearchKnowledgeFilterByOr$Outbound, z.ZodTypeDef, SearchKnowledgeFilterByOr>;
|
|
551
551
|
/**
|
|
552
552
|
* @internal
|
|
553
553
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
554
554
|
*/
|
|
555
|
-
export declare namespace
|
|
556
|
-
/** @deprecated use `
|
|
557
|
-
const inboundSchema: z.ZodType<
|
|
558
|
-
/** @deprecated use `
|
|
559
|
-
const outboundSchema: z.ZodType<
|
|
560
|
-
/** @deprecated use `
|
|
561
|
-
type Outbound =
|
|
555
|
+
export declare namespace SearchKnowledgeFilterByOr$ {
|
|
556
|
+
/** @deprecated use `SearchKnowledgeFilterByOr$inboundSchema` instead. */
|
|
557
|
+
const inboundSchema: z.ZodType<SearchKnowledgeFilterByOr, z.ZodTypeDef, unknown>;
|
|
558
|
+
/** @deprecated use `SearchKnowledgeFilterByOr$outboundSchema` instead. */
|
|
559
|
+
const outboundSchema: z.ZodType<SearchKnowledgeFilterByOr$Outbound, z.ZodTypeDef, SearchKnowledgeFilterByOr>;
|
|
560
|
+
/** @deprecated use `SearchKnowledgeFilterByOr$Outbound` instead. */
|
|
561
|
+
type Outbound = SearchKnowledgeFilterByOr$Outbound;
|
|
562
562
|
}
|
|
563
|
-
export declare function
|
|
564
|
-
export declare function
|
|
563
|
+
export declare function searchKnowledgeFilterByOrToJSON(searchKnowledgeFilterByOr: SearchKnowledgeFilterByOr): string;
|
|
564
|
+
export declare function searchKnowledgeFilterByOrFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeFilterByOr, SDKValidationError>;
|
|
565
565
|
/** @internal */
|
|
566
|
-
export declare const
|
|
566
|
+
export declare const FilterByOr$inboundSchema: z.ZodType<FilterByOr, z.ZodTypeDef, unknown>;
|
|
567
567
|
/** @internal */
|
|
568
|
-
export type
|
|
569
|
-
|
|
570
|
-
[k: string]:
|
|
568
|
+
export type FilterByOr$Outbound = {
|
|
569
|
+
or: Array<{
|
|
570
|
+
[k: string]: SearchKnowledgeOrEq$Outbound | SearchKnowledgeOrNe$Outbound | SearchKnowledgeOr3$Outbound | SearchKnowledgeOrGte$Outbound | SearchKnowledgeOrLt$Outbound | SearchKnowledgeOrLte$Outbound | SearchKnowledgeOrIn$Outbound | SearchKnowledgeOrNin$Outbound | SearchKnowledgeOrExists$Outbound;
|
|
571
571
|
}>;
|
|
572
572
|
};
|
|
573
573
|
/** @internal */
|
|
574
|
-
export declare const
|
|
574
|
+
export declare const FilterByOr$outboundSchema: z.ZodType<FilterByOr$Outbound, z.ZodTypeDef, FilterByOr>;
|
|
575
575
|
/**
|
|
576
576
|
* @internal
|
|
577
577
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
578
578
|
*/
|
|
579
|
-
export declare namespace
|
|
580
|
-
/** @deprecated use `
|
|
581
|
-
const inboundSchema: z.ZodType<
|
|
582
|
-
/** @deprecated use `
|
|
583
|
-
const outboundSchema: z.ZodType<
|
|
584
|
-
/** @deprecated use `
|
|
585
|
-
type Outbound =
|
|
579
|
+
export declare namespace FilterByOr$ {
|
|
580
|
+
/** @deprecated use `FilterByOr$inboundSchema` instead. */
|
|
581
|
+
const inboundSchema: z.ZodType<FilterByOr, z.ZodTypeDef, unknown>;
|
|
582
|
+
/** @deprecated use `FilterByOr$outboundSchema` instead. */
|
|
583
|
+
const outboundSchema: z.ZodType<FilterByOr$Outbound, z.ZodTypeDef, FilterByOr>;
|
|
584
|
+
/** @deprecated use `FilterByOr$Outbound` instead. */
|
|
585
|
+
type Outbound = FilterByOr$Outbound;
|
|
586
586
|
}
|
|
587
|
-
export declare function
|
|
588
|
-
export declare function
|
|
587
|
+
export declare function filterByOrToJSON(filterByOr: FilterByOr): string;
|
|
588
|
+
export declare function filterByOrFromJSON(jsonString: string): SafeParseResult<FilterByOr, SDKValidationError>;
|
|
589
589
|
/** @internal */
|
|
590
|
-
export declare const
|
|
590
|
+
export declare const SearchKnowledgeAndExists$inboundSchema: z.ZodType<SearchKnowledgeAndExists, z.ZodTypeDef, unknown>;
|
|
591
591
|
/** @internal */
|
|
592
|
-
export type
|
|
593
|
-
|
|
592
|
+
export type SearchKnowledgeAndExists$Outbound = {
|
|
593
|
+
exists: boolean;
|
|
594
594
|
};
|
|
595
595
|
/** @internal */
|
|
596
|
-
export declare const
|
|
596
|
+
export declare const SearchKnowledgeAndExists$outboundSchema: z.ZodType<SearchKnowledgeAndExists$Outbound, z.ZodTypeDef, SearchKnowledgeAndExists>;
|
|
597
597
|
/**
|
|
598
598
|
* @internal
|
|
599
599
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
600
600
|
*/
|
|
601
|
-
export declare namespace
|
|
602
|
-
/** @deprecated use `
|
|
603
|
-
const inboundSchema: z.ZodType<
|
|
604
|
-
/** @deprecated use `
|
|
605
|
-
const outboundSchema: z.ZodType<
|
|
606
|
-
/** @deprecated use `
|
|
607
|
-
type Outbound =
|
|
601
|
+
export declare namespace SearchKnowledgeAndExists$ {
|
|
602
|
+
/** @deprecated use `SearchKnowledgeAndExists$inboundSchema` instead. */
|
|
603
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndExists, z.ZodTypeDef, unknown>;
|
|
604
|
+
/** @deprecated use `SearchKnowledgeAndExists$outboundSchema` instead. */
|
|
605
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndExists$Outbound, z.ZodTypeDef, SearchKnowledgeAndExists>;
|
|
606
|
+
/** @deprecated use `SearchKnowledgeAndExists$Outbound` instead. */
|
|
607
|
+
type Outbound = SearchKnowledgeAndExists$Outbound;
|
|
608
608
|
}
|
|
609
|
-
export declare function
|
|
610
|
-
export declare function
|
|
609
|
+
export declare function searchKnowledgeAndExistsToJSON(searchKnowledgeAndExists: SearchKnowledgeAndExists): string;
|
|
610
|
+
export declare function searchKnowledgeAndExistsFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndExists, SDKValidationError>;
|
|
611
611
|
/** @internal */
|
|
612
|
-
export declare const
|
|
612
|
+
export declare const SearchKnowledgeAndKnowledgeNin$inboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeNin, z.ZodTypeDef, unknown>;
|
|
613
613
|
/** @internal */
|
|
614
|
-
export type
|
|
614
|
+
export type SearchKnowledgeAndKnowledgeNin$Outbound = string | number | boolean;
|
|
615
615
|
/** @internal */
|
|
616
|
-
export declare const
|
|
616
|
+
export declare const SearchKnowledgeAndKnowledgeNin$outboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeNin$Outbound, z.ZodTypeDef, SearchKnowledgeAndKnowledgeNin>;
|
|
617
617
|
/**
|
|
618
618
|
* @internal
|
|
619
619
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
620
620
|
*/
|
|
621
|
-
export declare namespace
|
|
622
|
-
/** @deprecated use `
|
|
623
|
-
const inboundSchema: z.ZodType<
|
|
624
|
-
/** @deprecated use `
|
|
625
|
-
const outboundSchema: z.ZodType<
|
|
626
|
-
/** @deprecated use `
|
|
627
|
-
type Outbound =
|
|
621
|
+
export declare namespace SearchKnowledgeAndKnowledgeNin$ {
|
|
622
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeNin$inboundSchema` instead. */
|
|
623
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeNin, z.ZodTypeDef, unknown>;
|
|
624
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeNin$outboundSchema` instead. */
|
|
625
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeNin$Outbound, z.ZodTypeDef, SearchKnowledgeAndKnowledgeNin>;
|
|
626
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeNin$Outbound` instead. */
|
|
627
|
+
type Outbound = SearchKnowledgeAndKnowledgeNin$Outbound;
|
|
628
628
|
}
|
|
629
|
-
export declare function
|
|
630
|
-
export declare function
|
|
629
|
+
export declare function searchKnowledgeAndKnowledgeNinToJSON(searchKnowledgeAndKnowledgeNin: SearchKnowledgeAndKnowledgeNin): string;
|
|
630
|
+
export declare function searchKnowledgeAndKnowledgeNinFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndKnowledgeNin, SDKValidationError>;
|
|
631
631
|
/** @internal */
|
|
632
|
-
export declare const
|
|
632
|
+
export declare const SearchKnowledgeAndNin$inboundSchema: z.ZodType<SearchKnowledgeAndNin, z.ZodTypeDef, unknown>;
|
|
633
633
|
/** @internal */
|
|
634
|
-
export type
|
|
635
|
-
|
|
634
|
+
export type SearchKnowledgeAndNin$Outbound = {
|
|
635
|
+
nin: Array<string | number | boolean>;
|
|
636
636
|
};
|
|
637
637
|
/** @internal */
|
|
638
|
-
export declare const
|
|
638
|
+
export declare const SearchKnowledgeAndNin$outboundSchema: z.ZodType<SearchKnowledgeAndNin$Outbound, z.ZodTypeDef, SearchKnowledgeAndNin>;
|
|
639
639
|
/**
|
|
640
640
|
* @internal
|
|
641
641
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
642
642
|
*/
|
|
643
|
-
export declare namespace
|
|
644
|
-
/** @deprecated use `
|
|
645
|
-
const inboundSchema: z.ZodType<
|
|
646
|
-
/** @deprecated use `
|
|
647
|
-
const outboundSchema: z.ZodType<
|
|
648
|
-
/** @deprecated use `
|
|
649
|
-
type Outbound =
|
|
643
|
+
export declare namespace SearchKnowledgeAndNin$ {
|
|
644
|
+
/** @deprecated use `SearchKnowledgeAndNin$inboundSchema` instead. */
|
|
645
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndNin, z.ZodTypeDef, unknown>;
|
|
646
|
+
/** @deprecated use `SearchKnowledgeAndNin$outboundSchema` instead. */
|
|
647
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndNin$Outbound, z.ZodTypeDef, SearchKnowledgeAndNin>;
|
|
648
|
+
/** @deprecated use `SearchKnowledgeAndNin$Outbound` instead. */
|
|
649
|
+
type Outbound = SearchKnowledgeAndNin$Outbound;
|
|
650
650
|
}
|
|
651
|
-
export declare function
|
|
652
|
-
export declare function
|
|
651
|
+
export declare function searchKnowledgeAndNinToJSON(searchKnowledgeAndNin: SearchKnowledgeAndNin): string;
|
|
652
|
+
export declare function searchKnowledgeAndNinFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndNin, SDKValidationError>;
|
|
653
653
|
/** @internal */
|
|
654
|
-
export declare const
|
|
654
|
+
export declare const SearchKnowledgeAndKnowledgeIn$inboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeIn, z.ZodTypeDef, unknown>;
|
|
655
655
|
/** @internal */
|
|
656
|
-
export type
|
|
656
|
+
export type SearchKnowledgeAndKnowledgeIn$Outbound = string | number | boolean;
|
|
657
657
|
/** @internal */
|
|
658
|
-
export declare const
|
|
658
|
+
export declare const SearchKnowledgeAndKnowledgeIn$outboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeIn$Outbound, z.ZodTypeDef, SearchKnowledgeAndKnowledgeIn>;
|
|
659
659
|
/**
|
|
660
660
|
* @internal
|
|
661
661
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
662
662
|
*/
|
|
663
|
-
export declare namespace
|
|
664
|
-
/** @deprecated use `
|
|
665
|
-
const inboundSchema: z.ZodType<
|
|
666
|
-
/** @deprecated use `
|
|
667
|
-
const outboundSchema: z.ZodType<
|
|
668
|
-
/** @deprecated use `
|
|
669
|
-
type Outbound =
|
|
663
|
+
export declare namespace SearchKnowledgeAndKnowledgeIn$ {
|
|
664
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeIn$inboundSchema` instead. */
|
|
665
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeIn, z.ZodTypeDef, unknown>;
|
|
666
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeIn$outboundSchema` instead. */
|
|
667
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeIn$Outbound, z.ZodTypeDef, SearchKnowledgeAndKnowledgeIn>;
|
|
668
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeIn$Outbound` instead. */
|
|
669
|
+
type Outbound = SearchKnowledgeAndKnowledgeIn$Outbound;
|
|
670
670
|
}
|
|
671
|
-
export declare function
|
|
672
|
-
export declare function
|
|
671
|
+
export declare function searchKnowledgeAndKnowledgeInToJSON(searchKnowledgeAndKnowledgeIn: SearchKnowledgeAndKnowledgeIn): string;
|
|
672
|
+
export declare function searchKnowledgeAndKnowledgeInFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndKnowledgeIn, SDKValidationError>;
|
|
673
673
|
/** @internal */
|
|
674
|
-
export declare const
|
|
674
|
+
export declare const SearchKnowledgeAndIn$inboundSchema: z.ZodType<SearchKnowledgeAndIn, z.ZodTypeDef, unknown>;
|
|
675
675
|
/** @internal */
|
|
676
|
-
export type
|
|
677
|
-
|
|
676
|
+
export type SearchKnowledgeAndIn$Outbound = {
|
|
677
|
+
in: Array<string | number | boolean>;
|
|
678
678
|
};
|
|
679
679
|
/** @internal */
|
|
680
|
-
export declare const
|
|
680
|
+
export declare const SearchKnowledgeAndIn$outboundSchema: z.ZodType<SearchKnowledgeAndIn$Outbound, z.ZodTypeDef, SearchKnowledgeAndIn>;
|
|
681
681
|
/**
|
|
682
682
|
* @internal
|
|
683
683
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
684
684
|
*/
|
|
685
|
-
export declare namespace
|
|
686
|
-
/** @deprecated use `
|
|
687
|
-
const inboundSchema: z.ZodType<
|
|
688
|
-
/** @deprecated use `
|
|
689
|
-
const outboundSchema: z.ZodType<
|
|
690
|
-
/** @deprecated use `
|
|
691
|
-
type Outbound =
|
|
685
|
+
export declare namespace SearchKnowledgeAndIn$ {
|
|
686
|
+
/** @deprecated use `SearchKnowledgeAndIn$inboundSchema` instead. */
|
|
687
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndIn, z.ZodTypeDef, unknown>;
|
|
688
|
+
/** @deprecated use `SearchKnowledgeAndIn$outboundSchema` instead. */
|
|
689
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndIn$Outbound, z.ZodTypeDef, SearchKnowledgeAndIn>;
|
|
690
|
+
/** @deprecated use `SearchKnowledgeAndIn$Outbound` instead. */
|
|
691
|
+
type Outbound = SearchKnowledgeAndIn$Outbound;
|
|
692
692
|
}
|
|
693
|
-
export declare function
|
|
694
|
-
export declare function
|
|
693
|
+
export declare function searchKnowledgeAndInToJSON(searchKnowledgeAndIn: SearchKnowledgeAndIn): string;
|
|
694
|
+
export declare function searchKnowledgeAndInFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndIn, SDKValidationError>;
|
|
695
695
|
/** @internal */
|
|
696
|
-
export declare const
|
|
696
|
+
export declare const SearchKnowledgeAndLte$inboundSchema: z.ZodType<SearchKnowledgeAndLte, z.ZodTypeDef, unknown>;
|
|
697
697
|
/** @internal */
|
|
698
|
-
export type
|
|
699
|
-
|
|
698
|
+
export type SearchKnowledgeAndLte$Outbound = {
|
|
699
|
+
lte: number;
|
|
700
700
|
};
|
|
701
701
|
/** @internal */
|
|
702
|
-
export declare const
|
|
702
|
+
export declare const SearchKnowledgeAndLte$outboundSchema: z.ZodType<SearchKnowledgeAndLte$Outbound, z.ZodTypeDef, SearchKnowledgeAndLte>;
|
|
703
703
|
/**
|
|
704
704
|
* @internal
|
|
705
705
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
706
706
|
*/
|
|
707
|
-
export declare namespace
|
|
708
|
-
/** @deprecated use `
|
|
709
|
-
const inboundSchema: z.ZodType<
|
|
710
|
-
/** @deprecated use `
|
|
711
|
-
const outboundSchema: z.ZodType<
|
|
712
|
-
/** @deprecated use `
|
|
713
|
-
type Outbound =
|
|
707
|
+
export declare namespace SearchKnowledgeAndLte$ {
|
|
708
|
+
/** @deprecated use `SearchKnowledgeAndLte$inboundSchema` instead. */
|
|
709
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndLte, z.ZodTypeDef, unknown>;
|
|
710
|
+
/** @deprecated use `SearchKnowledgeAndLte$outboundSchema` instead. */
|
|
711
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndLte$Outbound, z.ZodTypeDef, SearchKnowledgeAndLte>;
|
|
712
|
+
/** @deprecated use `SearchKnowledgeAndLte$Outbound` instead. */
|
|
713
|
+
type Outbound = SearchKnowledgeAndLte$Outbound;
|
|
714
714
|
}
|
|
715
|
-
export declare function
|
|
716
|
-
export declare function
|
|
715
|
+
export declare function searchKnowledgeAndLteToJSON(searchKnowledgeAndLte: SearchKnowledgeAndLte): string;
|
|
716
|
+
export declare function searchKnowledgeAndLteFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndLte, SDKValidationError>;
|
|
717
717
|
/** @internal */
|
|
718
|
-
export declare const
|
|
718
|
+
export declare const SearchKnowledgeAndLt$inboundSchema: z.ZodType<SearchKnowledgeAndLt, z.ZodTypeDef, unknown>;
|
|
719
719
|
/** @internal */
|
|
720
|
-
export type
|
|
721
|
-
|
|
720
|
+
export type SearchKnowledgeAndLt$Outbound = {
|
|
721
|
+
lt: number;
|
|
722
722
|
};
|
|
723
723
|
/** @internal */
|
|
724
|
-
export declare const
|
|
724
|
+
export declare const SearchKnowledgeAndLt$outboundSchema: z.ZodType<SearchKnowledgeAndLt$Outbound, z.ZodTypeDef, SearchKnowledgeAndLt>;
|
|
725
725
|
/**
|
|
726
726
|
* @internal
|
|
727
727
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
728
728
|
*/
|
|
729
|
-
export declare namespace
|
|
730
|
-
/** @deprecated use `
|
|
731
|
-
const inboundSchema: z.ZodType<
|
|
732
|
-
/** @deprecated use `
|
|
733
|
-
const outboundSchema: z.ZodType<
|
|
734
|
-
/** @deprecated use `
|
|
735
|
-
type Outbound =
|
|
729
|
+
export declare namespace SearchKnowledgeAndLt$ {
|
|
730
|
+
/** @deprecated use `SearchKnowledgeAndLt$inboundSchema` instead. */
|
|
731
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndLt, z.ZodTypeDef, unknown>;
|
|
732
|
+
/** @deprecated use `SearchKnowledgeAndLt$outboundSchema` instead. */
|
|
733
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndLt$Outbound, z.ZodTypeDef, SearchKnowledgeAndLt>;
|
|
734
|
+
/** @deprecated use `SearchKnowledgeAndLt$Outbound` instead. */
|
|
735
|
+
type Outbound = SearchKnowledgeAndLt$Outbound;
|
|
736
736
|
}
|
|
737
|
-
export declare function
|
|
738
|
-
export declare function
|
|
737
|
+
export declare function searchKnowledgeAndLtToJSON(searchKnowledgeAndLt: SearchKnowledgeAndLt): string;
|
|
738
|
+
export declare function searchKnowledgeAndLtFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndLt, SDKValidationError>;
|
|
739
739
|
/** @internal */
|
|
740
|
-
export declare const
|
|
740
|
+
export declare const SearchKnowledgeAndGte$inboundSchema: z.ZodType<SearchKnowledgeAndGte, z.ZodTypeDef, unknown>;
|
|
741
741
|
/** @internal */
|
|
742
|
-
export type
|
|
743
|
-
|
|
742
|
+
export type SearchKnowledgeAndGte$Outbound = {
|
|
743
|
+
gte: number;
|
|
744
744
|
};
|
|
745
745
|
/** @internal */
|
|
746
|
-
export declare const
|
|
746
|
+
export declare const SearchKnowledgeAndGte$outboundSchema: z.ZodType<SearchKnowledgeAndGte$Outbound, z.ZodTypeDef, SearchKnowledgeAndGte>;
|
|
747
747
|
/**
|
|
748
748
|
* @internal
|
|
749
749
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
750
750
|
*/
|
|
751
|
-
export declare namespace
|
|
752
|
-
/** @deprecated use `
|
|
753
|
-
const inboundSchema: z.ZodType<
|
|
754
|
-
/** @deprecated use `
|
|
755
|
-
const outboundSchema: z.ZodType<
|
|
756
|
-
/** @deprecated use `
|
|
757
|
-
type Outbound =
|
|
751
|
+
export declare namespace SearchKnowledgeAndGte$ {
|
|
752
|
+
/** @deprecated use `SearchKnowledgeAndGte$inboundSchema` instead. */
|
|
753
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndGte, z.ZodTypeDef, unknown>;
|
|
754
|
+
/** @deprecated use `SearchKnowledgeAndGte$outboundSchema` instead. */
|
|
755
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndGte$Outbound, z.ZodTypeDef, SearchKnowledgeAndGte>;
|
|
756
|
+
/** @deprecated use `SearchKnowledgeAndGte$Outbound` instead. */
|
|
757
|
+
type Outbound = SearchKnowledgeAndGte$Outbound;
|
|
758
758
|
}
|
|
759
|
-
export declare function
|
|
760
|
-
export declare function
|
|
759
|
+
export declare function searchKnowledgeAndGteToJSON(searchKnowledgeAndGte: SearchKnowledgeAndGte): string;
|
|
760
|
+
export declare function searchKnowledgeAndGteFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndGte, SDKValidationError>;
|
|
761
761
|
/** @internal */
|
|
762
|
-
export declare const
|
|
762
|
+
export declare const SearchKnowledgeAnd3$inboundSchema: z.ZodType<SearchKnowledgeAnd3, z.ZodTypeDef, unknown>;
|
|
763
763
|
/** @internal */
|
|
764
|
-
export type
|
|
765
|
-
|
|
764
|
+
export type SearchKnowledgeAnd3$Outbound = {
|
|
765
|
+
gt: number;
|
|
766
766
|
};
|
|
767
767
|
/** @internal */
|
|
768
|
-
export declare const
|
|
768
|
+
export declare const SearchKnowledgeAnd3$outboundSchema: z.ZodType<SearchKnowledgeAnd3$Outbound, z.ZodTypeDef, SearchKnowledgeAnd3>;
|
|
769
769
|
/**
|
|
770
770
|
* @internal
|
|
771
771
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
772
772
|
*/
|
|
773
|
-
export declare namespace
|
|
774
|
-
/** @deprecated use `
|
|
775
|
-
const inboundSchema: z.ZodType<
|
|
776
|
-
/** @deprecated use `
|
|
777
|
-
const outboundSchema: z.ZodType<
|
|
778
|
-
/** @deprecated use `
|
|
779
|
-
type Outbound =
|
|
773
|
+
export declare namespace SearchKnowledgeAnd3$ {
|
|
774
|
+
/** @deprecated use `SearchKnowledgeAnd3$inboundSchema` instead. */
|
|
775
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAnd3, z.ZodTypeDef, unknown>;
|
|
776
|
+
/** @deprecated use `SearchKnowledgeAnd3$outboundSchema` instead. */
|
|
777
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAnd3$Outbound, z.ZodTypeDef, SearchKnowledgeAnd3>;
|
|
778
|
+
/** @deprecated use `SearchKnowledgeAnd3$Outbound` instead. */
|
|
779
|
+
type Outbound = SearchKnowledgeAnd3$Outbound;
|
|
780
780
|
}
|
|
781
|
-
export declare function
|
|
782
|
-
export declare function
|
|
781
|
+
export declare function searchKnowledgeAnd3ToJSON(searchKnowledgeAnd3: SearchKnowledgeAnd3): string;
|
|
782
|
+
export declare function searchKnowledgeAnd3FromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAnd3, SDKValidationError>;
|
|
783
783
|
/** @internal */
|
|
784
|
-
export declare const
|
|
784
|
+
export declare const SearchKnowledgeAndKnowledgeNe$inboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeNe, z.ZodTypeDef, unknown>;
|
|
785
785
|
/** @internal */
|
|
786
|
-
export type
|
|
786
|
+
export type SearchKnowledgeAndKnowledgeNe$Outbound = string | number | boolean;
|
|
787
787
|
/** @internal */
|
|
788
|
-
export declare const
|
|
788
|
+
export declare const SearchKnowledgeAndKnowledgeNe$outboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeNe$Outbound, z.ZodTypeDef, SearchKnowledgeAndKnowledgeNe>;
|
|
789
789
|
/**
|
|
790
790
|
* @internal
|
|
791
791
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
792
792
|
*/
|
|
793
|
-
export declare namespace
|
|
794
|
-
/** @deprecated use `
|
|
795
|
-
const inboundSchema: z.ZodType<
|
|
796
|
-
/** @deprecated use `
|
|
797
|
-
const outboundSchema: z.ZodType<
|
|
798
|
-
/** @deprecated use `
|
|
799
|
-
type Outbound =
|
|
793
|
+
export declare namespace SearchKnowledgeAndKnowledgeNe$ {
|
|
794
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeNe$inboundSchema` instead. */
|
|
795
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeNe, z.ZodTypeDef, unknown>;
|
|
796
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeNe$outboundSchema` instead. */
|
|
797
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeNe$Outbound, z.ZodTypeDef, SearchKnowledgeAndKnowledgeNe>;
|
|
798
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeNe$Outbound` instead. */
|
|
799
|
+
type Outbound = SearchKnowledgeAndKnowledgeNe$Outbound;
|
|
800
800
|
}
|
|
801
|
-
export declare function
|
|
802
|
-
export declare function
|
|
801
|
+
export declare function searchKnowledgeAndKnowledgeNeToJSON(searchKnowledgeAndKnowledgeNe: SearchKnowledgeAndKnowledgeNe): string;
|
|
802
|
+
export declare function searchKnowledgeAndKnowledgeNeFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndKnowledgeNe, SDKValidationError>;
|
|
803
803
|
/** @internal */
|
|
804
|
-
export declare const
|
|
804
|
+
export declare const SearchKnowledgeAndNe$inboundSchema: z.ZodType<SearchKnowledgeAndNe, z.ZodTypeDef, unknown>;
|
|
805
805
|
/** @internal */
|
|
806
|
-
export type
|
|
807
|
-
|
|
806
|
+
export type SearchKnowledgeAndNe$Outbound = {
|
|
807
|
+
ne: string | number | boolean;
|
|
808
808
|
};
|
|
809
809
|
/** @internal */
|
|
810
|
-
export declare const
|
|
810
|
+
export declare const SearchKnowledgeAndNe$outboundSchema: z.ZodType<SearchKnowledgeAndNe$Outbound, z.ZodTypeDef, SearchKnowledgeAndNe>;
|
|
811
811
|
/**
|
|
812
812
|
* @internal
|
|
813
813
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
814
814
|
*/
|
|
815
|
-
export declare namespace
|
|
816
|
-
/** @deprecated use `
|
|
817
|
-
const inboundSchema: z.ZodType<
|
|
818
|
-
/** @deprecated use `
|
|
819
|
-
const outboundSchema: z.ZodType<
|
|
820
|
-
/** @deprecated use `
|
|
821
|
-
type Outbound =
|
|
815
|
+
export declare namespace SearchKnowledgeAndNe$ {
|
|
816
|
+
/** @deprecated use `SearchKnowledgeAndNe$inboundSchema` instead. */
|
|
817
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndNe, z.ZodTypeDef, unknown>;
|
|
818
|
+
/** @deprecated use `SearchKnowledgeAndNe$outboundSchema` instead. */
|
|
819
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndNe$Outbound, z.ZodTypeDef, SearchKnowledgeAndNe>;
|
|
820
|
+
/** @deprecated use `SearchKnowledgeAndNe$Outbound` instead. */
|
|
821
|
+
type Outbound = SearchKnowledgeAndNe$Outbound;
|
|
822
822
|
}
|
|
823
|
-
export declare function
|
|
824
|
-
export declare function
|
|
823
|
+
export declare function searchKnowledgeAndNeToJSON(searchKnowledgeAndNe: SearchKnowledgeAndNe): string;
|
|
824
|
+
export declare function searchKnowledgeAndNeFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndNe, SDKValidationError>;
|
|
825
825
|
/** @internal */
|
|
826
|
-
export declare const
|
|
826
|
+
export declare const SearchKnowledgeAndKnowledgeEq$inboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeEq, z.ZodTypeDef, unknown>;
|
|
827
827
|
/** @internal */
|
|
828
|
-
export type
|
|
828
|
+
export type SearchKnowledgeAndKnowledgeEq$Outbound = string | number | boolean;
|
|
829
829
|
/** @internal */
|
|
830
|
-
export declare const
|
|
830
|
+
export declare const SearchKnowledgeAndKnowledgeEq$outboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeEq$Outbound, z.ZodTypeDef, SearchKnowledgeAndKnowledgeEq>;
|
|
831
831
|
/**
|
|
832
832
|
* @internal
|
|
833
833
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
834
834
|
*/
|
|
835
|
-
export declare namespace
|
|
836
|
-
/** @deprecated use `
|
|
837
|
-
const inboundSchema: z.ZodType<
|
|
838
|
-
/** @deprecated use `
|
|
839
|
-
const outboundSchema: z.ZodType<
|
|
840
|
-
/** @deprecated use `
|
|
841
|
-
type Outbound =
|
|
835
|
+
export declare namespace SearchKnowledgeAndKnowledgeEq$ {
|
|
836
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeEq$inboundSchema` instead. */
|
|
837
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeEq, z.ZodTypeDef, unknown>;
|
|
838
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeEq$outboundSchema` instead. */
|
|
839
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndKnowledgeEq$Outbound, z.ZodTypeDef, SearchKnowledgeAndKnowledgeEq>;
|
|
840
|
+
/** @deprecated use `SearchKnowledgeAndKnowledgeEq$Outbound` instead. */
|
|
841
|
+
type Outbound = SearchKnowledgeAndKnowledgeEq$Outbound;
|
|
842
842
|
}
|
|
843
|
-
export declare function
|
|
844
|
-
export declare function
|
|
843
|
+
export declare function searchKnowledgeAndKnowledgeEqToJSON(searchKnowledgeAndKnowledgeEq: SearchKnowledgeAndKnowledgeEq): string;
|
|
844
|
+
export declare function searchKnowledgeAndKnowledgeEqFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndKnowledgeEq, SDKValidationError>;
|
|
845
845
|
/** @internal */
|
|
846
|
-
export declare const
|
|
846
|
+
export declare const SearchKnowledgeAndEq$inboundSchema: z.ZodType<SearchKnowledgeAndEq, z.ZodTypeDef, unknown>;
|
|
847
847
|
/** @internal */
|
|
848
|
-
export type
|
|
849
|
-
|
|
848
|
+
export type SearchKnowledgeAndEq$Outbound = {
|
|
849
|
+
eq: string | number | boolean;
|
|
850
850
|
};
|
|
851
851
|
/** @internal */
|
|
852
|
-
export declare const
|
|
852
|
+
export declare const SearchKnowledgeAndEq$outboundSchema: z.ZodType<SearchKnowledgeAndEq$Outbound, z.ZodTypeDef, SearchKnowledgeAndEq>;
|
|
853
853
|
/**
|
|
854
854
|
* @internal
|
|
855
855
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
856
856
|
*/
|
|
857
|
-
export declare namespace
|
|
858
|
-
/** @deprecated use `
|
|
859
|
-
const inboundSchema: z.ZodType<
|
|
860
|
-
/** @deprecated use `
|
|
861
|
-
const outboundSchema: z.ZodType<
|
|
862
|
-
/** @deprecated use `
|
|
863
|
-
type Outbound =
|
|
857
|
+
export declare namespace SearchKnowledgeAndEq$ {
|
|
858
|
+
/** @deprecated use `SearchKnowledgeAndEq$inboundSchema` instead. */
|
|
859
|
+
const inboundSchema: z.ZodType<SearchKnowledgeAndEq, z.ZodTypeDef, unknown>;
|
|
860
|
+
/** @deprecated use `SearchKnowledgeAndEq$outboundSchema` instead. */
|
|
861
|
+
const outboundSchema: z.ZodType<SearchKnowledgeAndEq$Outbound, z.ZodTypeDef, SearchKnowledgeAndEq>;
|
|
862
|
+
/** @deprecated use `SearchKnowledgeAndEq$Outbound` instead. */
|
|
863
|
+
type Outbound = SearchKnowledgeAndEq$Outbound;
|
|
864
864
|
}
|
|
865
|
-
export declare function
|
|
866
|
-
export declare function
|
|
865
|
+
export declare function searchKnowledgeAndEqToJSON(searchKnowledgeAndEq: SearchKnowledgeAndEq): string;
|
|
866
|
+
export declare function searchKnowledgeAndEqFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeAndEq, SDKValidationError>;
|
|
867
867
|
/** @internal */
|
|
868
|
-
export declare const
|
|
868
|
+
export declare const SearchKnowledgeFilterByAnd$inboundSchema: z.ZodType<SearchKnowledgeFilterByAnd, z.ZodTypeDef, unknown>;
|
|
869
869
|
/** @internal */
|
|
870
|
-
export type
|
|
870
|
+
export type SearchKnowledgeFilterByAnd$Outbound = SearchKnowledgeAndEq$Outbound | SearchKnowledgeAndNe$Outbound | SearchKnowledgeAnd3$Outbound | SearchKnowledgeAndGte$Outbound | SearchKnowledgeAndLt$Outbound | SearchKnowledgeAndLte$Outbound | SearchKnowledgeAndIn$Outbound | SearchKnowledgeAndNin$Outbound | SearchKnowledgeAndExists$Outbound;
|
|
871
871
|
/** @internal */
|
|
872
|
-
export declare const
|
|
872
|
+
export declare const SearchKnowledgeFilterByAnd$outboundSchema: z.ZodType<SearchKnowledgeFilterByAnd$Outbound, z.ZodTypeDef, SearchKnowledgeFilterByAnd>;
|
|
873
873
|
/**
|
|
874
874
|
* @internal
|
|
875
875
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
876
876
|
*/
|
|
877
|
-
export declare namespace
|
|
878
|
-
/** @deprecated use `
|
|
879
|
-
const inboundSchema: z.ZodType<
|
|
880
|
-
/** @deprecated use `
|
|
881
|
-
const outboundSchema: z.ZodType<
|
|
882
|
-
/** @deprecated use `
|
|
883
|
-
type Outbound =
|
|
877
|
+
export declare namespace SearchKnowledgeFilterByAnd$ {
|
|
878
|
+
/** @deprecated use `SearchKnowledgeFilterByAnd$inboundSchema` instead. */
|
|
879
|
+
const inboundSchema: z.ZodType<SearchKnowledgeFilterByAnd, z.ZodTypeDef, unknown>;
|
|
880
|
+
/** @deprecated use `SearchKnowledgeFilterByAnd$outboundSchema` instead. */
|
|
881
|
+
const outboundSchema: z.ZodType<SearchKnowledgeFilterByAnd$Outbound, z.ZodTypeDef, SearchKnowledgeFilterByAnd>;
|
|
882
|
+
/** @deprecated use `SearchKnowledgeFilterByAnd$Outbound` instead. */
|
|
883
|
+
type Outbound = SearchKnowledgeFilterByAnd$Outbound;
|
|
884
884
|
}
|
|
885
|
-
export declare function
|
|
886
|
-
export declare function
|
|
885
|
+
export declare function searchKnowledgeFilterByAndToJSON(searchKnowledgeFilterByAnd: SearchKnowledgeFilterByAnd): string;
|
|
886
|
+
export declare function searchKnowledgeFilterByAndFromJSON(jsonString: string): SafeParseResult<SearchKnowledgeFilterByAnd, SDKValidationError>;
|
|
887
887
|
/** @internal */
|
|
888
|
-
export declare const
|
|
888
|
+
export declare const FilterByAnd$inboundSchema: z.ZodType<FilterByAnd, z.ZodTypeDef, unknown>;
|
|
889
889
|
/** @internal */
|
|
890
|
-
export type
|
|
891
|
-
|
|
892
|
-
[k: string]:
|
|
890
|
+
export type FilterByAnd$Outbound = {
|
|
891
|
+
and: Array<{
|
|
892
|
+
[k: string]: SearchKnowledgeAndEq$Outbound | SearchKnowledgeAndNe$Outbound | SearchKnowledgeAnd3$Outbound | SearchKnowledgeAndGte$Outbound | SearchKnowledgeAndLt$Outbound | SearchKnowledgeAndLte$Outbound | SearchKnowledgeAndIn$Outbound | SearchKnowledgeAndNin$Outbound | SearchKnowledgeAndExists$Outbound;
|
|
893
893
|
}>;
|
|
894
894
|
};
|
|
895
895
|
/** @internal */
|
|
896
|
-
export declare const
|
|
896
|
+
export declare const FilterByAnd$outboundSchema: z.ZodType<FilterByAnd$Outbound, z.ZodTypeDef, FilterByAnd>;
|
|
897
897
|
/**
|
|
898
898
|
* @internal
|
|
899
899
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
900
900
|
*/
|
|
901
|
-
export declare namespace
|
|
902
|
-
/** @deprecated use `
|
|
903
|
-
const inboundSchema: z.ZodType<
|
|
904
|
-
/** @deprecated use `
|
|
905
|
-
const outboundSchema: z.ZodType<
|
|
906
|
-
/** @deprecated use `
|
|
907
|
-
type Outbound =
|
|
901
|
+
export declare namespace FilterByAnd$ {
|
|
902
|
+
/** @deprecated use `FilterByAnd$inboundSchema` instead. */
|
|
903
|
+
const inboundSchema: z.ZodType<FilterByAnd, z.ZodTypeDef, unknown>;
|
|
904
|
+
/** @deprecated use `FilterByAnd$outboundSchema` instead. */
|
|
905
|
+
const outboundSchema: z.ZodType<FilterByAnd$Outbound, z.ZodTypeDef, FilterByAnd>;
|
|
906
|
+
/** @deprecated use `FilterByAnd$Outbound` instead. */
|
|
907
|
+
type Outbound = FilterByAnd$Outbound;
|
|
908
908
|
}
|
|
909
|
-
export declare function
|
|
910
|
-
export declare function
|
|
909
|
+
export declare function filterByAndToJSON(filterByAnd: FilterByAnd): string;
|
|
910
|
+
export declare function filterByAndFromJSON(jsonString: string): SafeParseResult<FilterByAnd, SDKValidationError>;
|
|
911
911
|
/** @internal */
|
|
912
|
-
export declare const
|
|
912
|
+
export declare const SearchKnowledge1Exists$inboundSchema: z.ZodType<SearchKnowledge1Exists, z.ZodTypeDef, unknown>;
|
|
913
913
|
/** @internal */
|
|
914
|
-
export type
|
|
915
|
-
|
|
914
|
+
export type SearchKnowledge1Exists$Outbound = {
|
|
915
|
+
exists: boolean;
|
|
916
916
|
};
|
|
917
917
|
/** @internal */
|
|
918
|
-
export declare const
|
|
918
|
+
export declare const SearchKnowledge1Exists$outboundSchema: z.ZodType<SearchKnowledge1Exists$Outbound, z.ZodTypeDef, SearchKnowledge1Exists>;
|
|
919
919
|
/**
|
|
920
920
|
* @internal
|
|
921
921
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
922
922
|
*/
|
|
923
|
-
export declare namespace
|
|
924
|
-
/** @deprecated use `
|
|
925
|
-
const inboundSchema: z.ZodType<
|
|
926
|
-
/** @deprecated use `
|
|
927
|
-
const outboundSchema: z.ZodType<
|
|
928
|
-
/** @deprecated use `
|
|
929
|
-
type Outbound =
|
|
923
|
+
export declare namespace SearchKnowledge1Exists$ {
|
|
924
|
+
/** @deprecated use `SearchKnowledge1Exists$inboundSchema` instead. */
|
|
925
|
+
const inboundSchema: z.ZodType<SearchKnowledge1Exists, z.ZodTypeDef, unknown>;
|
|
926
|
+
/** @deprecated use `SearchKnowledge1Exists$outboundSchema` instead. */
|
|
927
|
+
const outboundSchema: z.ZodType<SearchKnowledge1Exists$Outbound, z.ZodTypeDef, SearchKnowledge1Exists>;
|
|
928
|
+
/** @deprecated use `SearchKnowledge1Exists$Outbound` instead. */
|
|
929
|
+
type Outbound = SearchKnowledge1Exists$Outbound;
|
|
930
930
|
}
|
|
931
|
-
export declare function
|
|
932
|
-
export declare function
|
|
931
|
+
export declare function searchKnowledge1ExistsToJSON(searchKnowledge1Exists: SearchKnowledge1Exists): string;
|
|
932
|
+
export declare function searchKnowledge1ExistsFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1Exists, SDKValidationError>;
|
|
933
933
|
/** @internal */
|
|
934
|
-
export declare const
|
|
934
|
+
export declare const SearchKnowledge1KnowledgeNin$inboundSchema: z.ZodType<SearchKnowledge1KnowledgeNin, z.ZodTypeDef, unknown>;
|
|
935
935
|
/** @internal */
|
|
936
|
-
export type
|
|
936
|
+
export type SearchKnowledge1KnowledgeNin$Outbound = string | number | boolean;
|
|
937
937
|
/** @internal */
|
|
938
|
-
export declare const
|
|
938
|
+
export declare const SearchKnowledge1KnowledgeNin$outboundSchema: z.ZodType<SearchKnowledge1KnowledgeNin$Outbound, z.ZodTypeDef, SearchKnowledge1KnowledgeNin>;
|
|
939
939
|
/**
|
|
940
940
|
* @internal
|
|
941
941
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
942
942
|
*/
|
|
943
|
-
export declare namespace
|
|
944
|
-
/** @deprecated use `
|
|
945
|
-
const inboundSchema: z.ZodType<
|
|
946
|
-
/** @deprecated use `
|
|
947
|
-
const outboundSchema: z.ZodType<
|
|
948
|
-
/** @deprecated use `
|
|
949
|
-
type Outbound =
|
|
943
|
+
export declare namespace SearchKnowledge1KnowledgeNin$ {
|
|
944
|
+
/** @deprecated use `SearchKnowledge1KnowledgeNin$inboundSchema` instead. */
|
|
945
|
+
const inboundSchema: z.ZodType<SearchKnowledge1KnowledgeNin, z.ZodTypeDef, unknown>;
|
|
946
|
+
/** @deprecated use `SearchKnowledge1KnowledgeNin$outboundSchema` instead. */
|
|
947
|
+
const outboundSchema: z.ZodType<SearchKnowledge1KnowledgeNin$Outbound, z.ZodTypeDef, SearchKnowledge1KnowledgeNin>;
|
|
948
|
+
/** @deprecated use `SearchKnowledge1KnowledgeNin$Outbound` instead. */
|
|
949
|
+
type Outbound = SearchKnowledge1KnowledgeNin$Outbound;
|
|
950
950
|
}
|
|
951
|
-
export declare function
|
|
952
|
-
export declare function
|
|
951
|
+
export declare function searchKnowledge1KnowledgeNinToJSON(searchKnowledge1KnowledgeNin: SearchKnowledge1KnowledgeNin): string;
|
|
952
|
+
export declare function searchKnowledge1KnowledgeNinFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1KnowledgeNin, SDKValidationError>;
|
|
953
953
|
/** @internal */
|
|
954
|
-
export declare const
|
|
954
|
+
export declare const SearchKnowledge1Nin$inboundSchema: z.ZodType<SearchKnowledge1Nin, z.ZodTypeDef, unknown>;
|
|
955
955
|
/** @internal */
|
|
956
|
-
export type
|
|
957
|
-
|
|
956
|
+
export type SearchKnowledge1Nin$Outbound = {
|
|
957
|
+
nin: Array<string | number | boolean>;
|
|
958
958
|
};
|
|
959
959
|
/** @internal */
|
|
960
|
-
export declare const
|
|
960
|
+
export declare const SearchKnowledge1Nin$outboundSchema: z.ZodType<SearchKnowledge1Nin$Outbound, z.ZodTypeDef, SearchKnowledge1Nin>;
|
|
961
961
|
/**
|
|
962
962
|
* @internal
|
|
963
963
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
964
964
|
*/
|
|
965
|
-
export declare namespace
|
|
966
|
-
/** @deprecated use `
|
|
967
|
-
const inboundSchema: z.ZodType<
|
|
968
|
-
/** @deprecated use `
|
|
969
|
-
const outboundSchema: z.ZodType<
|
|
970
|
-
/** @deprecated use `
|
|
971
|
-
type Outbound =
|
|
965
|
+
export declare namespace SearchKnowledge1Nin$ {
|
|
966
|
+
/** @deprecated use `SearchKnowledge1Nin$inboundSchema` instead. */
|
|
967
|
+
const inboundSchema: z.ZodType<SearchKnowledge1Nin, z.ZodTypeDef, unknown>;
|
|
968
|
+
/** @deprecated use `SearchKnowledge1Nin$outboundSchema` instead. */
|
|
969
|
+
const outboundSchema: z.ZodType<SearchKnowledge1Nin$Outbound, z.ZodTypeDef, SearchKnowledge1Nin>;
|
|
970
|
+
/** @deprecated use `SearchKnowledge1Nin$Outbound` instead. */
|
|
971
|
+
type Outbound = SearchKnowledge1Nin$Outbound;
|
|
972
972
|
}
|
|
973
|
-
export declare function
|
|
974
|
-
export declare function
|
|
973
|
+
export declare function searchKnowledge1NinToJSON(searchKnowledge1Nin: SearchKnowledge1Nin): string;
|
|
974
|
+
export declare function searchKnowledge1NinFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1Nin, SDKValidationError>;
|
|
975
975
|
/** @internal */
|
|
976
|
-
export declare const
|
|
976
|
+
export declare const SearchKnowledge1KnowledgeIn$inboundSchema: z.ZodType<SearchKnowledge1KnowledgeIn, z.ZodTypeDef, unknown>;
|
|
977
977
|
/** @internal */
|
|
978
|
-
export type
|
|
978
|
+
export type SearchKnowledge1KnowledgeIn$Outbound = string | number | boolean;
|
|
979
979
|
/** @internal */
|
|
980
|
-
export declare const
|
|
980
|
+
export declare const SearchKnowledge1KnowledgeIn$outboundSchema: z.ZodType<SearchKnowledge1KnowledgeIn$Outbound, z.ZodTypeDef, SearchKnowledge1KnowledgeIn>;
|
|
981
981
|
/**
|
|
982
982
|
* @internal
|
|
983
983
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
984
984
|
*/
|
|
985
|
-
export declare namespace
|
|
986
|
-
/** @deprecated use `
|
|
987
|
-
const inboundSchema: z.ZodType<
|
|
988
|
-
/** @deprecated use `
|
|
989
|
-
const outboundSchema: z.ZodType<
|
|
990
|
-
/** @deprecated use `
|
|
991
|
-
type Outbound =
|
|
985
|
+
export declare namespace SearchKnowledge1KnowledgeIn$ {
|
|
986
|
+
/** @deprecated use `SearchKnowledge1KnowledgeIn$inboundSchema` instead. */
|
|
987
|
+
const inboundSchema: z.ZodType<SearchKnowledge1KnowledgeIn, z.ZodTypeDef, unknown>;
|
|
988
|
+
/** @deprecated use `SearchKnowledge1KnowledgeIn$outboundSchema` instead. */
|
|
989
|
+
const outboundSchema: z.ZodType<SearchKnowledge1KnowledgeIn$Outbound, z.ZodTypeDef, SearchKnowledge1KnowledgeIn>;
|
|
990
|
+
/** @deprecated use `SearchKnowledge1KnowledgeIn$Outbound` instead. */
|
|
991
|
+
type Outbound = SearchKnowledge1KnowledgeIn$Outbound;
|
|
992
992
|
}
|
|
993
|
-
export declare function
|
|
994
|
-
export declare function
|
|
993
|
+
export declare function searchKnowledge1KnowledgeInToJSON(searchKnowledge1KnowledgeIn: SearchKnowledge1KnowledgeIn): string;
|
|
994
|
+
export declare function searchKnowledge1KnowledgeInFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1KnowledgeIn, SDKValidationError>;
|
|
995
995
|
/** @internal */
|
|
996
|
-
export declare const
|
|
996
|
+
export declare const SearchKnowledge1In$inboundSchema: z.ZodType<SearchKnowledge1In, z.ZodTypeDef, unknown>;
|
|
997
997
|
/** @internal */
|
|
998
|
-
export type
|
|
999
|
-
|
|
998
|
+
export type SearchKnowledge1In$Outbound = {
|
|
999
|
+
in: Array<string | number | boolean>;
|
|
1000
1000
|
};
|
|
1001
1001
|
/** @internal */
|
|
1002
|
-
export declare const
|
|
1002
|
+
export declare const SearchKnowledge1In$outboundSchema: z.ZodType<SearchKnowledge1In$Outbound, z.ZodTypeDef, SearchKnowledge1In>;
|
|
1003
1003
|
/**
|
|
1004
1004
|
* @internal
|
|
1005
1005
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1006
1006
|
*/
|
|
1007
|
-
export declare namespace
|
|
1008
|
-
/** @deprecated use `
|
|
1009
|
-
const inboundSchema: z.ZodType<
|
|
1010
|
-
/** @deprecated use `
|
|
1011
|
-
const outboundSchema: z.ZodType<
|
|
1012
|
-
/** @deprecated use `
|
|
1013
|
-
type Outbound =
|
|
1007
|
+
export declare namespace SearchKnowledge1In$ {
|
|
1008
|
+
/** @deprecated use `SearchKnowledge1In$inboundSchema` instead. */
|
|
1009
|
+
const inboundSchema: z.ZodType<SearchKnowledge1In, z.ZodTypeDef, unknown>;
|
|
1010
|
+
/** @deprecated use `SearchKnowledge1In$outboundSchema` instead. */
|
|
1011
|
+
const outboundSchema: z.ZodType<SearchKnowledge1In$Outbound, z.ZodTypeDef, SearchKnowledge1In>;
|
|
1012
|
+
/** @deprecated use `SearchKnowledge1In$Outbound` instead. */
|
|
1013
|
+
type Outbound = SearchKnowledge1In$Outbound;
|
|
1014
1014
|
}
|
|
1015
|
-
export declare function
|
|
1016
|
-
export declare function
|
|
1015
|
+
export declare function searchKnowledge1InToJSON(searchKnowledge1In: SearchKnowledge1In): string;
|
|
1016
|
+
export declare function searchKnowledge1InFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1In, SDKValidationError>;
|
|
1017
1017
|
/** @internal */
|
|
1018
|
-
export declare const
|
|
1018
|
+
export declare const SearchKnowledge1Lte$inboundSchema: z.ZodType<SearchKnowledge1Lte, z.ZodTypeDef, unknown>;
|
|
1019
1019
|
/** @internal */
|
|
1020
|
-
export type
|
|
1021
|
-
|
|
1020
|
+
export type SearchKnowledge1Lte$Outbound = {
|
|
1021
|
+
lte: number;
|
|
1022
1022
|
};
|
|
1023
1023
|
/** @internal */
|
|
1024
|
-
export declare const
|
|
1024
|
+
export declare const SearchKnowledge1Lte$outboundSchema: z.ZodType<SearchKnowledge1Lte$Outbound, z.ZodTypeDef, SearchKnowledge1Lte>;
|
|
1025
1025
|
/**
|
|
1026
1026
|
* @internal
|
|
1027
1027
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1028
1028
|
*/
|
|
1029
|
-
export declare namespace
|
|
1030
|
-
/** @deprecated use `
|
|
1031
|
-
const inboundSchema: z.ZodType<
|
|
1032
|
-
/** @deprecated use `
|
|
1033
|
-
const outboundSchema: z.ZodType<
|
|
1034
|
-
/** @deprecated use `
|
|
1035
|
-
type Outbound =
|
|
1029
|
+
export declare namespace SearchKnowledge1Lte$ {
|
|
1030
|
+
/** @deprecated use `SearchKnowledge1Lte$inboundSchema` instead. */
|
|
1031
|
+
const inboundSchema: z.ZodType<SearchKnowledge1Lte, z.ZodTypeDef, unknown>;
|
|
1032
|
+
/** @deprecated use `SearchKnowledge1Lte$outboundSchema` instead. */
|
|
1033
|
+
const outboundSchema: z.ZodType<SearchKnowledge1Lte$Outbound, z.ZodTypeDef, SearchKnowledge1Lte>;
|
|
1034
|
+
/** @deprecated use `SearchKnowledge1Lte$Outbound` instead. */
|
|
1035
|
+
type Outbound = SearchKnowledge1Lte$Outbound;
|
|
1036
1036
|
}
|
|
1037
|
-
export declare function
|
|
1038
|
-
export declare function
|
|
1037
|
+
export declare function searchKnowledge1LteToJSON(searchKnowledge1Lte: SearchKnowledge1Lte): string;
|
|
1038
|
+
export declare function searchKnowledge1LteFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1Lte, SDKValidationError>;
|
|
1039
1039
|
/** @internal */
|
|
1040
|
-
export declare const
|
|
1040
|
+
export declare const SearchKnowledge1Lt$inboundSchema: z.ZodType<SearchKnowledge1Lt, z.ZodTypeDef, unknown>;
|
|
1041
1041
|
/** @internal */
|
|
1042
|
-
export type
|
|
1043
|
-
|
|
1042
|
+
export type SearchKnowledge1Lt$Outbound = {
|
|
1043
|
+
lt: number;
|
|
1044
1044
|
};
|
|
1045
1045
|
/** @internal */
|
|
1046
|
-
export declare const
|
|
1046
|
+
export declare const SearchKnowledge1Lt$outboundSchema: z.ZodType<SearchKnowledge1Lt$Outbound, z.ZodTypeDef, SearchKnowledge1Lt>;
|
|
1047
1047
|
/**
|
|
1048
1048
|
* @internal
|
|
1049
1049
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1050
1050
|
*/
|
|
1051
|
-
export declare namespace
|
|
1052
|
-
/** @deprecated use `
|
|
1053
|
-
const inboundSchema: z.ZodType<
|
|
1054
|
-
/** @deprecated use `
|
|
1055
|
-
const outboundSchema: z.ZodType<
|
|
1056
|
-
/** @deprecated use `
|
|
1057
|
-
type Outbound =
|
|
1051
|
+
export declare namespace SearchKnowledge1Lt$ {
|
|
1052
|
+
/** @deprecated use `SearchKnowledge1Lt$inboundSchema` instead. */
|
|
1053
|
+
const inboundSchema: z.ZodType<SearchKnowledge1Lt, z.ZodTypeDef, unknown>;
|
|
1054
|
+
/** @deprecated use `SearchKnowledge1Lt$outboundSchema` instead. */
|
|
1055
|
+
const outboundSchema: z.ZodType<SearchKnowledge1Lt$Outbound, z.ZodTypeDef, SearchKnowledge1Lt>;
|
|
1056
|
+
/** @deprecated use `SearchKnowledge1Lt$Outbound` instead. */
|
|
1057
|
+
type Outbound = SearchKnowledge1Lt$Outbound;
|
|
1058
1058
|
}
|
|
1059
|
-
export declare function
|
|
1060
|
-
export declare function
|
|
1059
|
+
export declare function searchKnowledge1LtToJSON(searchKnowledge1Lt: SearchKnowledge1Lt): string;
|
|
1060
|
+
export declare function searchKnowledge1LtFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1Lt, SDKValidationError>;
|
|
1061
1061
|
/** @internal */
|
|
1062
|
-
export declare const
|
|
1062
|
+
export declare const SearchKnowledge1Gte$inboundSchema: z.ZodType<SearchKnowledge1Gte, z.ZodTypeDef, unknown>;
|
|
1063
1063
|
/** @internal */
|
|
1064
|
-
export type
|
|
1065
|
-
|
|
1064
|
+
export type SearchKnowledge1Gte$Outbound = {
|
|
1065
|
+
gte: number;
|
|
1066
1066
|
};
|
|
1067
1067
|
/** @internal */
|
|
1068
|
-
export declare const
|
|
1068
|
+
export declare const SearchKnowledge1Gte$outboundSchema: z.ZodType<SearchKnowledge1Gte$Outbound, z.ZodTypeDef, SearchKnowledge1Gte>;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* @internal
|
|
1071
1071
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1072
1072
|
*/
|
|
1073
|
-
export declare namespace
|
|
1074
|
-
/** @deprecated use `
|
|
1075
|
-
const inboundSchema: z.ZodType<
|
|
1076
|
-
/** @deprecated use `
|
|
1077
|
-
const outboundSchema: z.ZodType<
|
|
1078
|
-
/** @deprecated use `
|
|
1079
|
-
type Outbound =
|
|
1073
|
+
export declare namespace SearchKnowledge1Gte$ {
|
|
1074
|
+
/** @deprecated use `SearchKnowledge1Gte$inboundSchema` instead. */
|
|
1075
|
+
const inboundSchema: z.ZodType<SearchKnowledge1Gte, z.ZodTypeDef, unknown>;
|
|
1076
|
+
/** @deprecated use `SearchKnowledge1Gte$outboundSchema` instead. */
|
|
1077
|
+
const outboundSchema: z.ZodType<SearchKnowledge1Gte$Outbound, z.ZodTypeDef, SearchKnowledge1Gte>;
|
|
1078
|
+
/** @deprecated use `SearchKnowledge1Gte$Outbound` instead. */
|
|
1079
|
+
type Outbound = SearchKnowledge1Gte$Outbound;
|
|
1080
1080
|
}
|
|
1081
|
-
export declare function
|
|
1082
|
-
export declare function
|
|
1081
|
+
export declare function searchKnowledge1GteToJSON(searchKnowledge1Gte: SearchKnowledge1Gte): string;
|
|
1082
|
+
export declare function searchKnowledge1GteFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1Gte, SDKValidationError>;
|
|
1083
1083
|
/** @internal */
|
|
1084
1084
|
export declare const SearchKnowledge13$inboundSchema: z.ZodType<SearchKnowledge13, z.ZodTypeDef, unknown>;
|
|
1085
1085
|
/** @internal */
|
|
1086
1086
|
export type SearchKnowledge13$Outbound = {
|
|
1087
|
-
|
|
1087
|
+
gt: number;
|
|
1088
1088
|
};
|
|
1089
1089
|
/** @internal */
|
|
1090
1090
|
export declare const SearchKnowledge13$outboundSchema: z.ZodType<SearchKnowledge13$Outbound, z.ZodTypeDef, SearchKnowledge13>;
|
|
@@ -1103,131 +1103,131 @@ export declare namespace SearchKnowledge13$ {
|
|
|
1103
1103
|
export declare function searchKnowledge13ToJSON(searchKnowledge13: SearchKnowledge13): string;
|
|
1104
1104
|
export declare function searchKnowledge13FromJSON(jsonString: string): SafeParseResult<SearchKnowledge13, SDKValidationError>;
|
|
1105
1105
|
/** @internal */
|
|
1106
|
-
export declare const
|
|
1106
|
+
export declare const SearchKnowledge1KnowledgeNe$inboundSchema: z.ZodType<SearchKnowledge1KnowledgeNe, z.ZodTypeDef, unknown>;
|
|
1107
1107
|
/** @internal */
|
|
1108
|
-
export type
|
|
1108
|
+
export type SearchKnowledge1KnowledgeNe$Outbound = string | number | boolean;
|
|
1109
1109
|
/** @internal */
|
|
1110
|
-
export declare const
|
|
1110
|
+
export declare const SearchKnowledge1KnowledgeNe$outboundSchema: z.ZodType<SearchKnowledge1KnowledgeNe$Outbound, z.ZodTypeDef, SearchKnowledge1KnowledgeNe>;
|
|
1111
1111
|
/**
|
|
1112
1112
|
* @internal
|
|
1113
1113
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1114
1114
|
*/
|
|
1115
|
-
export declare namespace
|
|
1116
|
-
/** @deprecated use `
|
|
1117
|
-
const inboundSchema: z.ZodType<
|
|
1118
|
-
/** @deprecated use `
|
|
1119
|
-
const outboundSchema: z.ZodType<
|
|
1120
|
-
/** @deprecated use `
|
|
1121
|
-
type Outbound =
|
|
1115
|
+
export declare namespace SearchKnowledge1KnowledgeNe$ {
|
|
1116
|
+
/** @deprecated use `SearchKnowledge1KnowledgeNe$inboundSchema` instead. */
|
|
1117
|
+
const inboundSchema: z.ZodType<SearchKnowledge1KnowledgeNe, z.ZodTypeDef, unknown>;
|
|
1118
|
+
/** @deprecated use `SearchKnowledge1KnowledgeNe$outboundSchema` instead. */
|
|
1119
|
+
const outboundSchema: z.ZodType<SearchKnowledge1KnowledgeNe$Outbound, z.ZodTypeDef, SearchKnowledge1KnowledgeNe>;
|
|
1120
|
+
/** @deprecated use `SearchKnowledge1KnowledgeNe$Outbound` instead. */
|
|
1121
|
+
type Outbound = SearchKnowledge1KnowledgeNe$Outbound;
|
|
1122
1122
|
}
|
|
1123
|
-
export declare function
|
|
1124
|
-
export declare function
|
|
1123
|
+
export declare function searchKnowledge1KnowledgeNeToJSON(searchKnowledge1KnowledgeNe: SearchKnowledge1KnowledgeNe): string;
|
|
1124
|
+
export declare function searchKnowledge1KnowledgeNeFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1KnowledgeNe, SDKValidationError>;
|
|
1125
1125
|
/** @internal */
|
|
1126
|
-
export declare const
|
|
1126
|
+
export declare const SearchKnowledge1Ne$inboundSchema: z.ZodType<SearchKnowledge1Ne, z.ZodTypeDef, unknown>;
|
|
1127
1127
|
/** @internal */
|
|
1128
|
-
export type
|
|
1129
|
-
|
|
1128
|
+
export type SearchKnowledge1Ne$Outbound = {
|
|
1129
|
+
ne: string | number | boolean;
|
|
1130
1130
|
};
|
|
1131
1131
|
/** @internal */
|
|
1132
|
-
export declare const
|
|
1132
|
+
export declare const SearchKnowledge1Ne$outboundSchema: z.ZodType<SearchKnowledge1Ne$Outbound, z.ZodTypeDef, SearchKnowledge1Ne>;
|
|
1133
1133
|
/**
|
|
1134
1134
|
* @internal
|
|
1135
1135
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1136
1136
|
*/
|
|
1137
|
-
export declare namespace
|
|
1138
|
-
/** @deprecated use `
|
|
1139
|
-
const inboundSchema: z.ZodType<
|
|
1140
|
-
/** @deprecated use `
|
|
1141
|
-
const outboundSchema: z.ZodType<
|
|
1142
|
-
/** @deprecated use `
|
|
1143
|
-
type Outbound =
|
|
1137
|
+
export declare namespace SearchKnowledge1Ne$ {
|
|
1138
|
+
/** @deprecated use `SearchKnowledge1Ne$inboundSchema` instead. */
|
|
1139
|
+
const inboundSchema: z.ZodType<SearchKnowledge1Ne, z.ZodTypeDef, unknown>;
|
|
1140
|
+
/** @deprecated use `SearchKnowledge1Ne$outboundSchema` instead. */
|
|
1141
|
+
const outboundSchema: z.ZodType<SearchKnowledge1Ne$Outbound, z.ZodTypeDef, SearchKnowledge1Ne>;
|
|
1142
|
+
/** @deprecated use `SearchKnowledge1Ne$Outbound` instead. */
|
|
1143
|
+
type Outbound = SearchKnowledge1Ne$Outbound;
|
|
1144
1144
|
}
|
|
1145
|
-
export declare function
|
|
1146
|
-
export declare function
|
|
1145
|
+
export declare function searchKnowledge1NeToJSON(searchKnowledge1Ne: SearchKnowledge1Ne): string;
|
|
1146
|
+
export declare function searchKnowledge1NeFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1Ne, SDKValidationError>;
|
|
1147
1147
|
/** @internal */
|
|
1148
|
-
export declare const
|
|
1148
|
+
export declare const SearchKnowledge1KnowledgeEq$inboundSchema: z.ZodType<SearchKnowledge1KnowledgeEq, z.ZodTypeDef, unknown>;
|
|
1149
1149
|
/** @internal */
|
|
1150
|
-
export type
|
|
1150
|
+
export type SearchKnowledge1KnowledgeEq$Outbound = string | number | boolean;
|
|
1151
1151
|
/** @internal */
|
|
1152
|
-
export declare const
|
|
1152
|
+
export declare const SearchKnowledge1KnowledgeEq$outboundSchema: z.ZodType<SearchKnowledge1KnowledgeEq$Outbound, z.ZodTypeDef, SearchKnowledge1KnowledgeEq>;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* @internal
|
|
1155
1155
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1156
1156
|
*/
|
|
1157
|
-
export declare namespace
|
|
1158
|
-
/** @deprecated use `
|
|
1159
|
-
const inboundSchema: z.ZodType<
|
|
1160
|
-
/** @deprecated use `
|
|
1161
|
-
const outboundSchema: z.ZodType<
|
|
1162
|
-
/** @deprecated use `
|
|
1163
|
-
type Outbound =
|
|
1157
|
+
export declare namespace SearchKnowledge1KnowledgeEq$ {
|
|
1158
|
+
/** @deprecated use `SearchKnowledge1KnowledgeEq$inboundSchema` instead. */
|
|
1159
|
+
const inboundSchema: z.ZodType<SearchKnowledge1KnowledgeEq, z.ZodTypeDef, unknown>;
|
|
1160
|
+
/** @deprecated use `SearchKnowledge1KnowledgeEq$outboundSchema` instead. */
|
|
1161
|
+
const outboundSchema: z.ZodType<SearchKnowledge1KnowledgeEq$Outbound, z.ZodTypeDef, SearchKnowledge1KnowledgeEq>;
|
|
1162
|
+
/** @deprecated use `SearchKnowledge1KnowledgeEq$Outbound` instead. */
|
|
1163
|
+
type Outbound = SearchKnowledge1KnowledgeEq$Outbound;
|
|
1164
1164
|
}
|
|
1165
|
-
export declare function
|
|
1166
|
-
export declare function
|
|
1165
|
+
export declare function searchKnowledge1KnowledgeEqToJSON(searchKnowledge1KnowledgeEq: SearchKnowledge1KnowledgeEq): string;
|
|
1166
|
+
export declare function searchKnowledge1KnowledgeEqFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1KnowledgeEq, SDKValidationError>;
|
|
1167
1167
|
/** @internal */
|
|
1168
|
-
export declare const
|
|
1168
|
+
export declare const SearchKnowledge1Eq$inboundSchema: z.ZodType<SearchKnowledge1Eq, z.ZodTypeDef, unknown>;
|
|
1169
1169
|
/** @internal */
|
|
1170
|
-
export type
|
|
1171
|
-
|
|
1170
|
+
export type SearchKnowledge1Eq$Outbound = {
|
|
1171
|
+
eq: string | number | boolean;
|
|
1172
1172
|
};
|
|
1173
1173
|
/** @internal */
|
|
1174
|
-
export declare const
|
|
1174
|
+
export declare const SearchKnowledge1Eq$outboundSchema: z.ZodType<SearchKnowledge1Eq$Outbound, z.ZodTypeDef, SearchKnowledge1Eq>;
|
|
1175
1175
|
/**
|
|
1176
1176
|
* @internal
|
|
1177
1177
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1178
1178
|
*/
|
|
1179
|
-
export declare namespace
|
|
1180
|
-
/** @deprecated use `
|
|
1181
|
-
const inboundSchema: z.ZodType<
|
|
1182
|
-
/** @deprecated use `
|
|
1183
|
-
const outboundSchema: z.ZodType<
|
|
1184
|
-
/** @deprecated use `
|
|
1185
|
-
type Outbound =
|
|
1179
|
+
export declare namespace SearchKnowledge1Eq$ {
|
|
1180
|
+
/** @deprecated use `SearchKnowledge1Eq$inboundSchema` instead. */
|
|
1181
|
+
const inboundSchema: z.ZodType<SearchKnowledge1Eq, z.ZodTypeDef, unknown>;
|
|
1182
|
+
/** @deprecated use `SearchKnowledge1Eq$outboundSchema` instead. */
|
|
1183
|
+
const outboundSchema: z.ZodType<SearchKnowledge1Eq$Outbound, z.ZodTypeDef, SearchKnowledge1Eq>;
|
|
1184
|
+
/** @deprecated use `SearchKnowledge1Eq$Outbound` instead. */
|
|
1185
|
+
type Outbound = SearchKnowledge1Eq$Outbound;
|
|
1186
1186
|
}
|
|
1187
|
-
export declare function
|
|
1188
|
-
export declare function
|
|
1187
|
+
export declare function searchKnowledge1EqToJSON(searchKnowledge1Eq: SearchKnowledge1Eq): string;
|
|
1188
|
+
export declare function searchKnowledge1EqFromJSON(jsonString: string): SafeParseResult<SearchKnowledge1Eq, SDKValidationError>;
|
|
1189
1189
|
/** @internal */
|
|
1190
|
-
export declare const
|
|
1190
|
+
export declare const FilterBy1$inboundSchema: z.ZodType<FilterBy1, z.ZodTypeDef, unknown>;
|
|
1191
1191
|
/** @internal */
|
|
1192
|
-
export type
|
|
1192
|
+
export type FilterBy1$Outbound = SearchKnowledge1Eq$Outbound | SearchKnowledge1Ne$Outbound | SearchKnowledge13$Outbound | SearchKnowledge1Gte$Outbound | SearchKnowledge1Lt$Outbound | SearchKnowledge1Lte$Outbound | SearchKnowledge1In$Outbound | SearchKnowledge1Nin$Outbound | SearchKnowledge1Exists$Outbound;
|
|
1193
1193
|
/** @internal */
|
|
1194
|
-
export declare const
|
|
1194
|
+
export declare const FilterBy1$outboundSchema: z.ZodType<FilterBy1$Outbound, z.ZodTypeDef, FilterBy1>;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* @internal
|
|
1197
1197
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1198
1198
|
*/
|
|
1199
|
-
export declare namespace
|
|
1200
|
-
/** @deprecated use `
|
|
1201
|
-
const inboundSchema: z.ZodType<
|
|
1202
|
-
/** @deprecated use `
|
|
1203
|
-
const outboundSchema: z.ZodType<
|
|
1204
|
-
/** @deprecated use `
|
|
1205
|
-
type Outbound =
|
|
1199
|
+
export declare namespace FilterBy1$ {
|
|
1200
|
+
/** @deprecated use `FilterBy1$inboundSchema` instead. */
|
|
1201
|
+
const inboundSchema: z.ZodType<FilterBy1, z.ZodTypeDef, unknown>;
|
|
1202
|
+
/** @deprecated use `FilterBy1$outboundSchema` instead. */
|
|
1203
|
+
const outboundSchema: z.ZodType<FilterBy1$Outbound, z.ZodTypeDef, FilterBy1>;
|
|
1204
|
+
/** @deprecated use `FilterBy1$Outbound` instead. */
|
|
1205
|
+
type Outbound = FilterBy1$Outbound;
|
|
1206
1206
|
}
|
|
1207
|
-
export declare function
|
|
1208
|
-
export declare function
|
|
1207
|
+
export declare function filterBy1ToJSON(filterBy1: FilterBy1): string;
|
|
1208
|
+
export declare function filterBy1FromJSON(jsonString: string): SafeParseResult<FilterBy1, SDKValidationError>;
|
|
1209
1209
|
/** @internal */
|
|
1210
|
-
export declare const
|
|
1210
|
+
export declare const FilterBy$inboundSchema: z.ZodType<FilterBy, z.ZodTypeDef, unknown>;
|
|
1211
1211
|
/** @internal */
|
|
1212
|
-
export type
|
|
1213
|
-
[k: string]:
|
|
1212
|
+
export type FilterBy$Outbound = FilterByAnd$Outbound | FilterByOr$Outbound | {
|
|
1213
|
+
[k: string]: SearchKnowledge1Eq$Outbound | SearchKnowledge1Ne$Outbound | SearchKnowledge13$Outbound | SearchKnowledge1Gte$Outbound | SearchKnowledge1Lt$Outbound | SearchKnowledge1Lte$Outbound | SearchKnowledge1In$Outbound | SearchKnowledge1Nin$Outbound | SearchKnowledge1Exists$Outbound;
|
|
1214
1214
|
};
|
|
1215
1215
|
/** @internal */
|
|
1216
|
-
export declare const
|
|
1216
|
+
export declare const FilterBy$outboundSchema: z.ZodType<FilterBy$Outbound, z.ZodTypeDef, FilterBy>;
|
|
1217
1217
|
/**
|
|
1218
1218
|
* @internal
|
|
1219
1219
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1220
1220
|
*/
|
|
1221
|
-
export declare namespace
|
|
1222
|
-
/** @deprecated use `
|
|
1223
|
-
const inboundSchema: z.ZodType<
|
|
1224
|
-
/** @deprecated use `
|
|
1225
|
-
const outboundSchema: z.ZodType<
|
|
1226
|
-
/** @deprecated use `
|
|
1227
|
-
type Outbound =
|
|
1221
|
+
export declare namespace FilterBy$ {
|
|
1222
|
+
/** @deprecated use `FilterBy$inboundSchema` instead. */
|
|
1223
|
+
const inboundSchema: z.ZodType<FilterBy, z.ZodTypeDef, unknown>;
|
|
1224
|
+
/** @deprecated use `FilterBy$outboundSchema` instead. */
|
|
1225
|
+
const outboundSchema: z.ZodType<FilterBy$Outbound, z.ZodTypeDef, FilterBy>;
|
|
1226
|
+
/** @deprecated use `FilterBy$Outbound` instead. */
|
|
1227
|
+
type Outbound = FilterBy$Outbound;
|
|
1228
1228
|
}
|
|
1229
|
-
export declare function
|
|
1230
|
-
export declare function
|
|
1229
|
+
export declare function filterByToJSON(filterBy: FilterBy): string;
|
|
1230
|
+
export declare function filterByFromJSON(jsonString: string): SafeParseResult<FilterBy, SDKValidationError>;
|
|
1231
1231
|
/** @internal */
|
|
1232
1232
|
export declare const SearchOptions$inboundSchema: z.ZodType<SearchOptions, z.ZodTypeDef, unknown>;
|
|
1233
1233
|
/** @internal */
|
|
@@ -1259,8 +1259,8 @@ export type SearchKnowledgeRequestBody$Outbound = {
|
|
|
1259
1259
|
query: string;
|
|
1260
1260
|
top_k?: number | undefined;
|
|
1261
1261
|
threshold?: number | undefined;
|
|
1262
|
-
|
|
1263
|
-
[k: string]:
|
|
1262
|
+
filter_by?: FilterByAnd$Outbound | FilterByOr$Outbound | {
|
|
1263
|
+
[k: string]: SearchKnowledge1Eq$Outbound | SearchKnowledge1Ne$Outbound | SearchKnowledge13$Outbound | SearchKnowledge1Gte$Outbound | SearchKnowledge1Lt$Outbound | SearchKnowledge1Lte$Outbound | SearchKnowledge1In$Outbound | SearchKnowledge1Nin$Outbound | SearchKnowledge1Exists$Outbound;
|
|
1264
1264
|
} | undefined;
|
|
1265
1265
|
search_options?: SearchOptions$Outbound | undefined;
|
|
1266
1266
|
};
|