Open raw images in ACR?

When opening raw images using the default DOM open command, the raw images are opened directly into the Photoshop UI. If there is an XMP file for the image then it will apply those settings when opening.

Is there an option that can be added to the open command so it opens in ACR and to preferrably use the XMP file if it exists?

require('photoshop').app.open(entry);

I’d be interested to know about this too, actually!

I am also interested on this answer.
I tried with batch play but did not get any success.

const descriptors = [
  {
        _obj: 'open',
        dontRecord: false,
        forceNotify: true,
        null: {
          _path: fileToken,
          _kind: 'local',
        },
        as: {
          _obj: 'Adobe Camera Raw',
        },
        _isCommand: true,
        _options: { dialogOptions: 'dontDisplay' },
}];
const options = {
  synchronousExecution: false,
};
await app.batchPlay(descriptors, options);

This code just open image in photoshop
But it works as ActionDescriptors

Thanks in advance