pajaydev / ebay-node-api

eBay API Client for node
https://pajaydev.github.io/ebay-node-api
MIT License
132 stars 75 forks source link

findItemsAdvanced outputSelector options are not appearing to work #163

Open jphan88 opened 1 year ago

jphan88 commented 1 year ago

Issue or Enhancement

Steps to reproduce

Hi, I am trying to use the findItemsAdvanced api specifically including outputSelector: "StoreInfo", it doesn't appear like any of the options for outputSelector works. This is my code below: thank you for all your help!

ebay.findItemsAdvanced({
        entriesPerPage: 100,
        keywords: 'keyword',
        outputSelector: 'StoreInfo' ,
        StartTimeFrom: date_from.toISOString(), 
        StartTimeTo: date_to.toISOString()

    }).then((bodyJson) =>

Expected Behavior

Expected to return the storeInfo array in the response object

Actual Behavior

It is absent from the response object