Await Moralis.Web3API.token.getAllTokenIds(options);

This was working last night. did I set something wrong?
It was late before I saved an went to sleep.
90: let Items = await Moralis.Web3API.token.getAllTokenIds(options);

async function initializeApp(){
    let currentUser = Moralis.User.current();
    //console.log(currentUser.attributes.ethAddress);
    if(!currentUser){
        currentUser = await Moralis.Web3.authenticate();
    }
    addLogout();

    //web3 = await Moralis.Web3.enable();
    const options = { address: CONTRACT_ADDRESS, chain: "mumbai" };
    let Items = await Moralis.Web3API.token.getAllTokenIds(options);
    let WithMetadata = await fetchItemMetadata(Items.result, currentUser);
...

There was an update to Moralis SDK,
now you have to use this syntax:

Moralis.start({ serverUrl: β€œhttps://fasdmfig.moralishost.com:2053/server”, appId: β€œID” });

kk, replaced this with that and it’s working now, thanks

Moralis.initialize("xxx");
Moralis.serverURL = "xxx";