Skip to content

🚀 API Maker : Release Notes for v1.13.0

⭐ March 2025 ⭐

Changes

  • [FEATURE] : Table selection implemented in ER diagram page. It will load diagram of those selected tables only.
  • [IMPROVEMENT] : API Maker will show schema of deleted or not present table/collections. Very useful for blank databases, it shows schema of all upcoming table/collections.
  • [BUG] : Space should not be allowed in UI page clone.

UI Maker Extension

  • [BUG] : Filter is not working in server side pagination for objectId field because need to filter based on referenced table.
  • [IMPROVEMENT] : setValueInFilterOfTopGrid new method added utils.
  • [IMPROVEMENT] : exportFileName & exportFields support added in csv download.
  • [IMPROVEMENT] : Below two functions support added in utils object.
    /**
     * It will convert array of objects into CSV string<br/>
     * papaUnparseOptions = https://www.papaparse.com/docs#unparse-config-default
     * */
    convertArrayToCSV(dataArr: any[], papaUnparseOptions?: any): string;
    
    /**
     * It will throw file to user for download.<br/>
     * fileContent ex = "Some file content"
     * filename ex. = clients.csv
     * fileType ex. = text/csv
     * */
    download(fileContent: string, filename: string, fileType: string): void;