@@ -300,47 +300,3 @@ export class Taxonomy extends Query {
300300 below ( key : string , value : string , levels ?: number ) : Query ;
301301 equalAndBelow ( key : string , value : string , levels ?: number ) : Query ;
302302}
303-
304- export class Variants extends Query {
305- constructor ( ) ;
306-
307- entry_uid : string ;
308- content_type_uid : string ;
309- _query : object ;
310- provider : any ;
311- cachePolicy : number ;
312- queryCachePolicy : number ;
313-
314- only ( field_uid : string ) : this;
315- only ( field_uids : string [ ] ) : this;
316- only ( reference_field_uid :string , field_uid : string ) : this;
317- only ( reference_field_uid :string , field_uids : string [ ] ) : this;
318-
319- except ( field_uid : string ) : this;
320- except ( field_uids : string [ ] ) : this;
321- except ( reference_field_uid :string , field_uid : string ) : this;
322- except ( reference_field_uid :string , field_uids : string [ ] ) : this;
323-
324- setCacheProvider ( provider : object ) : this;
325- setCachePolicy ( policy : number ) : this;
326- includeReference ( val : string [ ] ) : this;
327- includeReference ( ...val : string [ ] ) : this;
328- language ( language_code : string ) : this;
329- addQuery ( key : string , value : string ) : this;
330- includeEmbeddedItems ( ) : this;
331- includeFallback ( ) : this;
332- /**
333- * @deprecated since version 3.3.0
334- */
335- includeSchema ( ) : this;
336- includeReferenceContentTypeUID ( ) : this;
337- includeContentType ( ) : this;
338- /**
339- * @deprecated since version 3.3.0
340- */
341- includeOwner ( ) : this;
342- toJSON ( ) : this;
343- addParam ( key : string , value : any ) : this;
344- fetch ( fetchOptions ?: object ) : Promise < any > ;
345- }
346-
0 commit comments