I'm developing an application in Salesforce that needs to automatically create a custom object during installation, and this object should include a RichTextArea field.I'm using jsforce to handle dynamic object and field creation, but I'm encountering the error: 'RichTextArea' is not a valid value for the enum 'FieldType'.Is there any way to programmatically create a RichTextArea field using the Metadata API, Tooling API, or any other alternative?I would appreciate any suggestions or implementation examples.
```{ fullName: "body__c", label: "Body", type: "RichTextArea", },```