Cloud Job Moralis CLI

const { default: Moralis } = require(“moralis/types”);

Moralis.Cloud.job(“SomeJob”, (request) => {
const { params, headers, log, message } = request;
message("I just started " + JSON.stringify(params));
return clean(message);
});

function clean(message) {
message(“Job running”);
}

I created job, and run moralis-admin-cli watch-cloud-folder --moralisApiKey **** --moralisApiSecret **** --moralisSubdomain subdomain.moralis.io --autoSave 1
–moralisCloudfolder /cloud/

The output is
ncc: Version 0.29.2
ncc: Compiling file index.js into CJS
Changes Uploaded Correctly

I can’t figure out where is my job

const { default: Moralis } = require(“moralis/types”); - removed , helped

you will have to move to a self hosted server using parse server at some point