@ibiz-template/model-helper 0.7.26 → 0.7.28-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -17575,7 +17575,7 @@ var ModelHelper = class {
17575
17575
  * @author tony001
17576
17576
  * @date 2024-06-27 17:06:54
17577
17577
  * @param {ModelObject} data
17578
- * @param {('APP' | 'VIEW' | 'CTRL' | 'APPENTITY')} type
17578
+ * @param {('APP' | 'VIEW' | 'CTRL' | 'APPENTITY' | 'APPBIREPORT')} type
17579
17579
  * @return {*} {(Promise<IData | undefined>)}
17580
17580
  */
17581
17581
  async translationModelToDsl(data, type3) {
@@ -17588,6 +17588,8 @@ var ModelHelper = class {
17588
17588
  return this.dsl.control(data);
17589
17589
  case "APPENTITY":
17590
17590
  return this.dsl.appDataEntity(data);
17591
+ case "APPBIREPORT":
17592
+ return this.dsl.appBIReport(data);
17591
17593
  default:
17592
17594
  break;
17593
17595
  }