Adds a new search type (SearchType.FEDERATED) to the search service to fetch federated results from the new PPS endpoint. Intended to be used for search prototyping.
Current endpoint service names in response:
Full text: fts
TV: tvs
Radio: rcs
Whisper: whisper
Accessing results:
response.pageElements.fts.hits --> a full raw hits object with totals, returned count, and an array of hits
response.federatedResults.fts --> an array of hits correctly formatted as TextHit, TVClipHit, etc.
Adds a new search type (
SearchType.FEDERATED
) to the search service to fetch federated results from the new PPS endpoint. Intended to be used for search prototyping.Current endpoint service names in response:
fts
tvs
rcs
whisper
Accessing results:
response.pageElements.fts.hits
--> a full rawhits
object with totals, returned count, and an array of hitsresponse.federatedResults.fts
--> an array of hits correctly formatted asTextHit
,TVClipHit
, etc.