@gct-paas/core 0.1.4-dev.1 → 0.1.4-dev.10

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.
Files changed (746) hide show
  1. package/dist/index.esm.min.mjs +8101 -0
  2. package/dist/index.min.cjs +386 -1
  3. package/dist/index.system.min.js +386 -1
  4. package/es/constants/core.mjs +0 -1
  5. package/es/constants/editor-register/editor-register.mjs +0 -1
  6. package/es/constants/editor-type/editor-type.d.ts +65 -1
  7. package/es/constants/editor-type/editor-type.mjs +14 -1
  8. package/es/constants/expression-type/BuiltOperators.d.ts +20 -0
  9. package/es/constants/expression-type/BuiltOperators.mjs +149 -0
  10. package/es/constants/expression-type/FunctionKeys.d.ts +1 -0
  11. package/es/constants/expression-type/FunctionKeys.mjs +81 -0
  12. package/es/constants/expression-type/editor.d.ts +8 -0
  13. package/es/constants/expression-type/editor.mjs +4 -0
  14. package/es/constants/expression-type/function.d.ts +7 -0
  15. package/es/constants/expression-type/function.mjs +875 -0
  16. package/es/constants/expression-type/index.d.ts +42 -0
  17. package/es/constants/expression-type/index.mjs +120 -0
  18. package/es/constants/expression-type/modeCfg.d.ts +30 -0
  19. package/es/constants/expression-type/modeCfg.mjs +268 -0
  20. package/es/constants/expression-type/variable.d.ts +12 -0
  21. package/es/constants/expression-type/variable.mjs +42 -0
  22. package/es/constants/form-container-type/form-container-type.mjs +0 -1
  23. package/es/constants/index.d.ts +9 -0
  24. package/es/constants/index.mjs +7 -6
  25. package/es/controller/edit-form/edit-form.controller.mjs +0 -1
  26. package/es/controller/editor/color-editor.controller.mjs +0 -1
  27. package/es/controller/editor/length-unit-editor.controller.mjs +0 -1
  28. package/es/controller/editor-item/editor-item.controller.mjs +0 -1
  29. package/es/controller/form/form.controller.mjs +5 -5
  30. package/es/controller/form-collapse/form-collapse.controller.mjs +4 -3
  31. package/es/controller/form-collapse-pane/form-collapse-pane.controller.mjs +4 -3
  32. package/es/controller/form-edit-item/form-edit-item.controller.d.ts +1 -0
  33. package/es/controller/form-edit-item/form-edit-item.controller.mjs +6 -2
  34. package/es/controller/form-group/form-group.controller.mjs +4 -3
  35. package/es/controller/form-item/form-item.controller.d.ts +1 -0
  36. package/es/controller/form-item/form-item.controller.mjs +7 -3
  37. package/es/controller/form-item-basic/form-item-basic.controller.mjs +3 -2
  38. package/es/controller/form-item-hidden/form-item-hidden.controller.mjs +0 -1
  39. package/es/controller/form-tab/form-tab.controller.mjs +4 -3
  40. package/es/controller/form-tab-pane/form-tab-pane.controller.mjs +4 -3
  41. package/es/controller/gct-form/gct-form.controller.mjs +5 -5
  42. package/es/create-app-vue.mjs +7 -3
  43. package/es/enums/app-designer/index.d.ts +13 -1
  44. package/es/enums/app-designer/index.mjs +8 -2
  45. package/es/enums/appEnum.d.ts +22 -66
  46. package/es/enums/appEnum.mjs +24 -15
  47. package/es/enums/appStateEnum.mjs +0 -1
  48. package/es/enums/authActionEnum.mjs +0 -1
  49. package/es/enums/breakpointEnum.mjs +0 -1
  50. package/es/enums/cacheEnum.mjs +0 -1
  51. package/es/enums/designEnum.d.ts +9 -3
  52. package/es/enums/designEnum.mjs +34 -32
  53. package/es/enums/developer-center/index.d.ts +1 -0
  54. package/es/enums/developer-center/integration.d.ts +4 -0
  55. package/es/enums/developer-center/integration.mjs +7 -0
  56. package/es/enums/exceptionEnum.mjs +0 -1
  57. package/es/enums/expressionEnum.d.ts +130 -0
  58. package/es/enums/expressionEnum.mjs +75 -0
  59. package/es/enums/globalEnum.d.ts +38 -0
  60. package/es/enums/globalEnum.mjs +25 -0
  61. package/es/enums/httpEnum.mjs +0 -1
  62. package/es/enums/index.d.ts +19 -0
  63. package/es/enums/index.mjs +13 -20
  64. package/es/enums/menuEnum.mjs +0 -1
  65. package/es/enums/page-designer/designer.d.ts +23 -3
  66. package/es/enums/page-designer/designer.mjs +90 -6
  67. package/es/enums/page-designer/panel.d.ts +78 -7
  68. package/es/enums/page-designer/panel.mjs +22 -4
  69. package/es/enums/page-designer/toolkit.mjs +0 -1
  70. package/es/enums/page-designer/widget.d.ts +2 -1
  71. package/es/enums/page-designer/widget.mjs +3 -3
  72. package/es/enums/pageEnum.mjs +0 -1
  73. package/es/enums/plugin-enum.mjs +0 -1
  74. package/es/enums/processEnum.d.ts +54 -0
  75. package/es/enums/processEnum.mjs +36 -2
  76. package/es/enums/roleEnum.mjs +0 -1
  77. package/es/enums/sizeEnum.mjs +0 -1
  78. package/es/global/gct/gct.d.ts +39 -30
  79. package/es/global/gct/gct.mjs +49 -34
  80. package/es/hooks/index.d.ts +2 -1
  81. package/es/hooks/use-app-inst/use-app-inst.d.ts +8 -0
  82. package/es/hooks/use-app-inst/use-app-inst.mjs +8 -0
  83. package/es/hooks/use-form/use-form.mjs +0 -1
  84. package/es/hooks/use-gct-form-value/use-gct-form-value.d.ts +1 -1
  85. package/es/hooks/use-gct-form-value/use-gct-form-value.mjs +0 -4
  86. package/es/hooks/use-modal/use-modal.mjs +0 -1
  87. package/es/hooks/use-overlay-scrollbars/use-overlay-scrollbars.d.ts +11 -0
  88. package/es/hooks/use-sub-app-utils/use-sub-app-utils.d.ts +27 -0
  89. package/es/hooks/use-sub-app-utils/use-sub-app-utils.mjs +30 -0
  90. package/es/hooks/useCopyToClipboard.mjs +0 -1
  91. package/es/index.d.ts +6 -8
  92. package/es/index.mjs +94 -46
  93. package/es/interface/controller/form-edit-item/form-edit-item.controller.d.ts +5 -0
  94. package/es/interface/controller/index.d.ts +0 -1
  95. package/es/interface/form/i-editor/i-editor-basic.d.ts +2 -2
  96. package/es/interface/form/i-editor/i-model-field-select-editor.d.ts +18 -0
  97. package/es/interface/form/i-form/i-form-collapse-pane.d.ts +4 -0
  98. package/es/interface/form/i-form/i-form-item-basic.d.ts +1 -1
  99. package/es/interface/form/i-form/i-form-tab-pane.d.ts +4 -0
  100. package/es/interface/form/index.d.ts +1 -0
  101. package/es/interface/i-app-context/i-app-context.d.ts +34 -0
  102. package/es/interface/i-field-code-chain/i-field-code-chain.d.ts +17 -0
  103. package/es/interface/i-global-var/i-global-var.d.ts +15 -0
  104. package/es/interface/i-mobile-home-menu-item/i-mobile-home-menu-item.d.ts +94 -0
  105. package/es/interface/i-pinia-action/i-global-actions.d.ts +7 -4
  106. package/es/interface/i-pinia-getter/i-global-getters.d.ts +1 -5
  107. package/es/interface/i-pinia-state/i-global-state.d.ts +7 -2
  108. package/es/interface/index.d.ts +5 -6
  109. package/es/interface/open-util/i-message-util/i-message-util.d.ts +54 -0
  110. package/es/interface/{i-modal → open-util/i-modal}/i-modal.d.ts +9 -10
  111. package/es/interface/{i-modal-data → open-util/i-modal-data}/i-modal-data.d.ts +6 -0
  112. package/es/interface/open-util/i-modal-options/i-modal-options.d.ts +12 -0
  113. package/es/interface/open-util/i-open-window-options/i-open-window-options.d.ts +59 -0
  114. package/es/interface/open-util/i-overlay-container/i-overlay-container.d.ts +36 -0
  115. package/es/interface/open-util/i-overlay-controller/i-overlay-controller.d.ts +36 -0
  116. package/es/interface/open-util/index.d.ts +7 -0
  117. package/es/interface/state/index.d.ts +0 -1
  118. package/es/locale/index.d.ts +19 -0
  119. package/es/locale/index.mjs +60 -0
  120. package/es/modules/env-manager/env-manager.const.d.ts +14 -0
  121. package/es/modules/env-manager/env-manager.const.mjs +9 -0
  122. package/es/modules/env-manager/env-manager.d.ts +59 -0
  123. package/es/modules/env-manager/env-manager.interface.d.ts +43 -0
  124. package/es/modules/env-manager/env-manager.interface.mjs +8 -0
  125. package/es/modules/env-manager/env-manager.mjs +108 -0
  126. package/es/modules/env-manager/index.d.ts +3 -0
  127. package/es/modules/error-handler/error-handler.const.mjs +1 -30
  128. package/es/modules/error-handler/error-strategy.mjs +4 -2
  129. package/es/modules/error-handler/index.mjs +0 -1
  130. package/es/modules/platform-config/constants/index.d.ts +7 -0
  131. package/es/modules/platform-config/constants/login.const.d.ts +15 -0
  132. package/es/modules/platform-config/constants/login.const.mjs +50 -0
  133. package/es/modules/platform-config/constants/org.const.d.ts +9 -0
  134. package/es/modules/platform-config/constants/org.const.mjs +54 -0
  135. package/es/modules/platform-config/constants/theme.const.d.ts +9 -0
  136. package/es/modules/platform-config/constants/theme.const.mjs +5 -0
  137. package/es/modules/platform-config/constants/watermark.const.d.ts +16 -0
  138. package/es/modules/platform-config/constants/watermark.const.mjs +14 -0
  139. package/es/modules/platform-config/enums/deploy.enum.d.ts +10 -0
  140. package/es/modules/platform-config/enums/deploy.enum.mjs +7 -0
  141. package/es/modules/platform-config/enums/index.d.ts +6 -0
  142. package/es/modules/platform-config/enums/login.enum.d.ts +25 -0
  143. package/es/modules/platform-config/enums/login.enum.mjs +16 -0
  144. package/es/modules/platform-config/enums/platform.enum.d.ts +27 -0
  145. package/es/modules/platform-config/enums/platform.enum.mjs +26 -0
  146. package/es/modules/platform-config/index.d.ts +8 -0
  147. package/es/modules/platform-config/interfaces/global-setting.interface.d.ts +7 -0
  148. package/es/modules/platform-config/interfaces/index.d.ts +7 -0
  149. package/es/modules/platform-config/interfaces/login-config.interface.d.ts +17 -0
  150. package/es/modules/platform-config/interfaces/platform-map.interface.d.ts +8 -0
  151. package/es/modules/platform-config/interfaces/theme-setting.interface.d.ts +30 -0
  152. package/es/modules/platform-config/store.d.ts +221 -0
  153. package/es/modules/platform-config/store.mjs +78 -0
  154. package/es/modules/platform-config/useBasicSetting.d.ts +11 -0
  155. package/es/modules/platform-config/useBasicSetting.mjs +39 -0
  156. package/es/modules/platform-config/useDeploySetting.d.ts +19 -0
  157. package/es/modules/platform-config/useDeploySetting.mjs +27 -0
  158. package/es/modules/platform-config/useLoginSetting.d.ts +15 -0
  159. package/es/modules/platform-config/useLoginSetting.mjs +177 -0
  160. package/es/modules/platform-config/useOrgSetting.d.ts +34 -0
  161. package/es/modules/platform-config/useOrgSetting.mjs +66 -0
  162. package/es/modules/platform-config/useProjectSetting.d.ts +12 -0
  163. package/es/modules/platform-config/useProjectSetting.mjs +11 -0
  164. package/es/modules/platform-config/useSecuritySetting.d.ts +11 -0
  165. package/es/modules/platform-config/useSecuritySetting.mjs +60 -0
  166. package/es/modules/platform-config/useThemeSetting.d.ts +16 -0
  167. package/es/modules/platform-config/useThemeSetting.mjs +64 -0
  168. package/es/modules/platform-config/useWatermarkSetting.d.ts +21 -0
  169. package/es/modules/platform-config/useWatermarkSetting.mjs +26 -0
  170. package/es/modules/user-stores/index.d.ts +3 -0
  171. package/es/modules/user-stores/store/permission.store.d.ts +21 -0
  172. package/es/modules/user-stores/store/permission.store.mjs +38 -0
  173. package/es/modules/user-stores/store/tenant.store.d.ts +9 -0
  174. package/es/modules/user-stores/store/tenant.store.mjs +24 -0
  175. package/es/modules/user-stores/store/user.store.d.ts +154 -0
  176. package/es/modules/user-stores/store/user.store.mjs +108 -0
  177. package/es/modules/user-stores/types/permission.d.ts +1 -0
  178. package/es/modules/user-stores/types/tenant.d.ts +1 -0
  179. package/es/modules/user-stores/types/user.d.ts +14 -0
  180. package/es/register/editor-register/editor-register.d.ts +5 -13
  181. package/es/register/editor-register/editor-register.mjs +8 -17
  182. package/es/register/form-item-register/form-item-register.d.ts +4 -15
  183. package/es/register/form-item-register/form-item-register.mjs +7 -17
  184. package/es/register/index.d.ts +12 -2
  185. package/es/router/index.d.ts +13 -0
  186. package/es/router/index.mjs +31 -0
  187. package/es/setup-app.d.ts +8 -0
  188. package/es/setup-app.mjs +31 -0
  189. package/es/state/form/form.state.mjs +0 -1
  190. package/es/state/form-collapse/form-collapse.state.mjs +0 -1
  191. package/es/state/form-collapse-pane/form-collapse-pane.state.mjs +0 -1
  192. package/es/state/form-edit-item/form-edit-item.state.mjs +0 -1
  193. package/es/state/form-group/form-group.state.mjs +0 -1
  194. package/es/state/form-item/form-item.state.mjs +0 -1
  195. package/es/state/form-item-basic/form-item-basic.state.mjs +0 -1
  196. package/es/state/form-tab/form-tab.state.mjs +0 -1
  197. package/es/state/form-tab-pane/form-tab-pane.state.mjs +0 -1
  198. package/es/state/global-pinia-state/global-pinia-state.d.ts +8 -13
  199. package/es/state/global-pinia-state/global-pinia-state.mjs +35 -9
  200. package/es/store/global-store.d.ts +1 -0
  201. package/es/store/global-store.mjs +38 -9
  202. package/es/store/index.d.ts +2 -3
  203. package/es/store/index.mjs +0 -1
  204. package/es/types/index.d.ts +51 -1
  205. package/es/utils/axios/interceptors.mjs +2 -23
  206. package/es/utils/cache-adapter/cache-adapter.d.ts +2 -0
  207. package/es/utils/cache-adapter/cache-adapter.mjs +59 -0
  208. package/es/utils/deviceFingerprint.d.ts +17 -0
  209. package/es/utils/deviceFingerprint.mjs +73 -0
  210. package/es/utils/dictionary/dictionary.mjs +0 -1
  211. package/es/utils/i18n/index.d.ts +2 -1
  212. package/es/utils/i18n/index.mjs +3 -4
  213. package/es/utils/index.d.ts +20 -3
  214. package/es/utils/is-sort-filed/is-sort-filed.d.ts +10 -0
  215. package/es/utils/is-sort-filed/is-sort-filed.mjs +40 -0
  216. package/es/utils/linked-list/linked-list.d.ts +72 -0
  217. package/es/utils/linked-list/linked-list.mjs +119 -0
  218. package/es/utils/linked-node/linked-node.d.ts +31 -0
  219. package/es/utils/linked-node/linked-node.mjs +32 -0
  220. package/es/utils/lowcode/utils.d.ts +1 -0
  221. package/es/utils/lowcode/utils.mjs +20 -0
  222. package/es/utils/lowcode/validate.d.ts +13 -0
  223. package/es/utils/lowcode/validate.mjs +29 -0
  224. package/es/utils/mitt/mitt.d.ts +1 -0
  225. package/es/utils/mitt/mitt.mjs +5 -0
  226. package/es/utils/model-loader/model-loader.d.ts +118 -0
  227. package/es/utils/model-loader/model-loader.mjs +326 -0
  228. package/es/utils/namespace/namespace.d.ts +8 -0
  229. package/es/utils/namespace/namespace.mjs +4 -2
  230. package/es/utils/openUtil/index.d.ts +2 -0
  231. package/es/utils/openUtil/modal/modal.d.ts +61 -0
  232. package/es/utils/openUtil/modal/modal.mjs +80 -0
  233. package/es/utils/openUtil/overlay-container/overlay-container.d.ts +100 -0
  234. package/es/utils/openUtil/overlay-container/overlay-container.mjs +139 -0
  235. package/es/utils/plugin-static-resource/plugin-static-resource.mjs +1 -2
  236. package/es/utils/props/gct-form-item/gct-form-item.props.d.ts +63 -0
  237. package/es/utils/props/gct-form-item/gct-form-item.props.mjs +66 -0
  238. package/es/utils/props/index.d.ts +1 -0
  239. package/es/utils/style/index.d.ts +16 -0
  240. package/es/utils/style/index.mjs +141 -0
  241. package/es/utils/tools/tools.d.ts +23 -10
  242. package/es/utils/tools/tools.mjs +38 -13
  243. package/es/utils/treeHelper/treeHelper.d.ts +118 -0
  244. package/es/utils/treeHelper/treeHelper.mjs +234 -0
  245. package/es/utils/useUUid.d.ts +41 -0
  246. package/es/utils/useUUid.mjs +93 -0
  247. package/es/utils/util.d.ts +39 -0
  248. package/es/utils/util.mjs +40 -0
  249. package/es/utils/uuid/uuid.d.ts +3 -0
  250. package/es/utils/uuid/uuid.mjs +48 -0
  251. package/es/utils/value-helper/value-helper.d.ts +49 -0
  252. package/es/utils/value-helper/value-helper.mjs +111 -0
  253. package/es/utils/width-install/width-install.mjs +4 -2
  254. package/package.json +35 -33
  255. package/es/_virtual/_commonjsHelpers.mjs +0 -44
  256. package/es/_virtual/index.mjs +0 -7
  257. package/es/controller/index.mjs +0 -17
  258. package/es/enums/page-designer/index.mjs +0 -6
  259. package/es/global/index.mjs +0 -3
  260. package/es/hooks/index.mjs +0 -7
  261. package/es/hooks/use-namespace/use-namespace.d.ts +0 -9
  262. package/es/hooks/use-namespace/use-namespace.mjs +0 -9
  263. package/es/interface/controller/edit-form/edit-form.controller.mjs +0 -1
  264. package/es/interface/controller/editor/i-color-editor.controller.mjs +0 -1
  265. package/es/interface/controller/editor/i-length-unit-editor.controller.mjs +0 -1
  266. package/es/interface/controller/editor-item/editor-item.controller.mjs +0 -1
  267. package/es/interface/controller/form/form.controller.mjs +0 -3
  268. package/es/interface/controller/form-collapse/form-collapse.controller.mjs +0 -1
  269. package/es/interface/controller/form-collapse-pane/form-collapse-pane.controller.mjs +0 -1
  270. package/es/interface/controller/form-edit-item/form-edit-item.controller.mjs +0 -1
  271. package/es/interface/controller/form-group/form-group.controller.mjs +0 -1
  272. package/es/interface/controller/form-hidden-item/form-hidden-item.controller.mjs +0 -1
  273. package/es/interface/controller/form-item/form-item.controller.mjs +0 -1
  274. package/es/interface/controller/form-item-basic/form-item-basic.controller.mjs +0 -1
  275. package/es/interface/controller/form-tab/form-tab.controller.mjs +0 -1
  276. package/es/interface/controller/form-tab-pane/form-tab-pane.controller.mjs +0 -1
  277. package/es/interface/controller/i-designer-controller.d.ts +0 -116
  278. package/es/interface/controller/i-designer-controller.mjs +0 -1
  279. package/es/interface/controller/index.mjs +0 -1
  280. package/es/interface/events/form/i-form.event.mjs +0 -1
  281. package/es/interface/events/index.mjs +0 -1
  282. package/es/interface/form/i-editor/i-check-switch.mjs +0 -3
  283. package/es/interface/form/i-editor/i-checkbox-editor.mjs +0 -3
  284. package/es/interface/form/i-editor/i-color-editor.mjs +0 -3
  285. package/es/interface/form/i-editor/i-editor-basic.mjs +0 -1
  286. package/es/interface/form/i-editor/i-icon-select-editor.mjs +0 -3
  287. package/es/interface/form/i-editor/i-info-editor.mjs +0 -3
  288. package/es/interface/form/i-editor/i-length-unit-editor.mjs +0 -3
  289. package/es/interface/form/i-editor/i-number-editor.mjs +0 -3
  290. package/es/interface/form/i-editor/i-picker-editor.mjs +0 -3
  291. package/es/interface/form/i-editor/i-radio-editor.mjs +0 -3
  292. package/es/interface/form/i-editor/i-select-editor.mjs +0 -3
  293. package/es/interface/form/i-editor/i-span-editor.mjs +0 -3
  294. package/es/interface/form/i-editor/i-switch-editor.mjs +0 -3
  295. package/es/interface/form/i-editor/i-text-editor.mjs +0 -3
  296. package/es/interface/form/i-editor/i-textarea-editor.mjs +0 -3
  297. package/es/interface/form/i-form/i-edit-form.mjs +0 -1
  298. package/es/interface/form/i-form/i-form-collapse-pane.mjs +0 -1
  299. package/es/interface/form/i-form/i-form-collapse.mjs +0 -1
  300. package/es/interface/form/i-form/i-form-container.mjs +0 -1
  301. package/es/interface/form/i-form/i-form-edit-item.mjs +0 -1
  302. package/es/interface/form/i-form/i-form-group-container.mjs +0 -1
  303. package/es/interface/form/i-form/i-form-group.mjs +0 -1
  304. package/es/interface/form/i-form/i-form-hidden-item.mjs +0 -1
  305. package/es/interface/form/i-form/i-form-item-basic.mjs +0 -1
  306. package/es/interface/form/i-form/i-form-item.mjs +0 -1
  307. package/es/interface/form/i-form/i-form-tab-pane.mjs +0 -1
  308. package/es/interface/form/i-form/i-form-tab.mjs +0 -1
  309. package/es/interface/form/i-form/i-form.mjs +0 -1
  310. package/es/interface/form/index.mjs +0 -1
  311. package/es/interface/hooks/i-designer-hooks.d.ts +0 -26
  312. package/es/interface/hooks/i-designer-hooks.mjs +0 -3
  313. package/es/interface/hooks/index.d.ts +0 -1
  314. package/es/interface/hooks/index.mjs +0 -1
  315. package/es/interface/i-dictionary/i-dictionary-item.mjs +0 -1
  316. package/es/interface/i-dictionary/i-dictionary.mjs +0 -1
  317. package/es/interface/i-http-response/i-http-response.d.ts +0 -29
  318. package/es/interface/i-http-response/i-http-response.mjs +0 -1
  319. package/es/interface/i-import-style-map/i-import-style-map.mjs +0 -1
  320. package/es/interface/i-message-util/i-message-util.d.ts +0 -78
  321. package/es/interface/i-message-util/i-message-util.mjs +0 -1
  322. package/es/interface/i-modal/i-modal.mjs +0 -3
  323. package/es/interface/i-modal-data/i-modal-data.mjs +0 -1
  324. package/es/interface/i-pinia-action/i-global-actions.mjs +0 -1
  325. package/es/interface/i-pinia-getter/i-global-getters.mjs +0 -1
  326. package/es/interface/i-pinia-state/i-global-state.mjs +0 -1
  327. package/es/interface/index.mjs +0 -1
  328. package/es/interface/layout/i-flex-layout/i-flex-container.mjs +0 -1
  329. package/es/interface/layout/i-flex-layout/i-flex-item.mjs +0 -1
  330. package/es/interface/layout/i-grid-layout/i-grid-container.mjs +0 -1
  331. package/es/interface/layout/i-grid-layout/i-grid-item-span.mjs +0 -1
  332. package/es/interface/layout/i-grid-layout/i-grid-item.mjs +0 -1
  333. package/es/interface/layout/i-layout-basis/i-layout-container-basis.mjs +0 -1
  334. package/es/interface/layout/index.mjs +0 -1
  335. package/es/interface/low-code-types/index.d.ts +0 -4
  336. package/es/interface/low-code-types/index.mjs +0 -5
  337. package/es/interface/low-code-types/modal-types.d.ts +0 -67
  338. package/es/interface/low-code-types/modal-types.mjs +0 -3
  339. package/es/interface/low-code-types/model/index.d.ts +0 -5338
  340. package/es/interface/low-code-types/model/index.mjs +0 -1
  341. package/es/interface/low-code-types/schema/index.d.ts +0 -12
  342. package/es/interface/low-code-types/schema/index.mjs +0 -1
  343. package/es/interface/low-code-types/widget-basic-types.d.ts +0 -667
  344. package/es/interface/low-code-types/widget-basic-types.mjs +0 -3
  345. package/es/interface/provider/i-editor-provider/i-editor-provider.mjs +0 -1
  346. package/es/interface/provider/i-form-item-provider/i-form-item-provider.mjs +0 -1
  347. package/es/interface/provider/i-provider-basic/i-provider-basic.mjs +0 -1
  348. package/es/interface/provider/index.mjs +0 -1
  349. package/es/interface/state/form/form.state.mjs +0 -1
  350. package/es/interface/state/form-collapse/form-collapse.state.mjs +0 -1
  351. package/es/interface/state/form-collapse-pane/form-collapse-pane.state.mjs +0 -1
  352. package/es/interface/state/form-edit-item/form-edit-item.state.mjs +0 -1
  353. package/es/interface/state/form-group/form-group.state.mjs +0 -1
  354. package/es/interface/state/form-hidden-item/form-hidden-item.state.mjs +0 -1
  355. package/es/interface/state/form-item/form-item.state.mjs +0 -1
  356. package/es/interface/state/form-item-basic/form-item-basic.state.mjs +0 -1
  357. package/es/interface/state/form-tab/form-tab.state.mjs +0 -1
  358. package/es/interface/state/form-tab-pane/form-tab-pane.state.mjs +0 -1
  359. package/es/interface/state/i-designer-state.d.ts +0 -27
  360. package/es/interface/state/i-designer-state.mjs +0 -1
  361. package/es/interface/state/index.mjs +0 -1
  362. package/es/interface/style/i-border.mjs +0 -1
  363. package/es/interface/style/i-font.mjs +0 -1
  364. package/es/interface/style/i-margin.mjs +0 -1
  365. package/es/interface/style/i-padding.mjs +0 -1
  366. package/es/interface/style/i-position.mjs +0 -1
  367. package/es/interface/style/i-spacing.mjs +0 -1
  368. package/es/interface/style/index.mjs +0 -1
  369. package/es/modules/error-handler/error-handler.interface.mjs +0 -1
  370. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/_virtual/_commonjsHelpers.mjs +0 -44
  371. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/_virtual/index.mjs +0 -7
  372. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/base/apaas-base.service.mjs +0 -12
  373. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/index.mjs +0 -3
  374. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/_virtual/_commonjsHelpers.mjs +0 -44
  375. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/_virtual/index.mjs +0 -7
  376. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/enums/httpEnum.mjs +0 -63
  377. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/enums/index.mjs +0 -3
  378. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/index.mjs +0 -9
  379. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.mjs +0 -541
  380. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/service/base.service.mjs +0 -68
  381. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/service/index.mjs +0 -3
  382. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/types/index.mjs +0 -1
  383. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/utils/axios/axios.mjs +0 -74
  384. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/utils/index.mjs +0 -3
  385. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/@gct-paas_base@0.1.4-dev.1/node_modules/@gct-paas/base/es/utils/tools/tools.mjs +0 -18
  386. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.mjs +0 -541
  387. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/api.service.mjs +0 -90
  388. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/app-branch.service.mjs +0 -34
  389. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/app-global-settings.service.mjs +0 -30
  390. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/app-granted-user.service.mjs +0 -38
  391. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/app-org.service.mjs +0 -46
  392. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/app-publish-log.service.mjs +0 -34
  393. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/app-state.service.mjs +0 -14
  394. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/app-user.service.mjs +0 -46
  395. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/approval-log.service.mjs +0 -34
  396. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/audit-log.service.mjs +0 -38
  397. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/basic-config.service.mjs +0 -38
  398. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/biz-event.service.mjs +0 -34
  399. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/biz-process-definition-version.service.mjs +0 -42
  400. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/biz-process-definition.service.mjs +0 -34
  401. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/biz-service-crud.service.mjs +0 -46
  402. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/biz-service.service.mjs +0 -26
  403. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/bom.service.mjs +0 -14
  404. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/category-relation.service.mjs +0 -38
  405. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/category.service.mjs +0 -46
  406. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/chat.service.mjs +0 -14
  407. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/code-ts.service.mjs +0 -14
  408. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/commit-log.service.mjs +0 -62
  409. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/common-info-card.service.mjs +0 -42
  410. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/control-config.service.mjs +0 -38
  411. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/customer-complaint.service.mjs +0 -42
  412. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/dashboard.service.mjs +0 -38
  413. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/data-model.service.mjs +0 -50
  414. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/data-source.service.mjs +0 -18
  415. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/data-trace.service.mjs +0 -42
  416. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/designer-common.service.mjs +0 -62
  417. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/designer-lock.service.mjs +0 -30
  418. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/designer-operate-log.service.mjs +0 -14
  419. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/devops.service.mjs +0 -18
  420. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/dify-chat.service.mjs +0 -18
  421. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/doc-control-started.service.mjs +0 -22
  422. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/doc-control-task-done.service.mjs +0 -22
  423. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/doc-control-task-todo.service.mjs +0 -30
  424. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/doc-control.service.mjs +0 -18
  425. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/doc-outline.service.mjs +0 -58
  426. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/document.service.mjs +0 -70
  427. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/edhr-instance-relation.service.mjs +0 -26
  428. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/edhr-instance-search-history.service.mjs +0 -18
  429. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/edhr-instance.service.mjs +0 -51
  430. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/edhr-tmpl.service.mjs +0 -58
  431. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/ele-search.service.mjs +0 -14
  432. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/enum-model-field.service.mjs +0 -38
  433. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/enum-model.service.mjs +0 -46
  434. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/event-log.service.mjs +0 -26
  435. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/event.service.mjs +0 -34
  436. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/excel-tmpl.service.mjs +0 -62
  437. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/excel.service.mjs +0 -18
  438. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/field-meta.service.mjs +0 -71
  439. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/field.service.mjs +0 -14
  440. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/file-resource.service.mjs +0 -22
  441. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/file-task.service.mjs +0 -22
  442. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/file.service.mjs +0 -18
  443. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/formRelate.service.mjs +0 -46
  444. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/front-operate-log.service.mjs +0 -14
  445. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/global-method.service.mjs +0 -38
  446. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/i18n-info.service.mjs +0 -34
  447. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/index.mjs +0 -306
  448. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/instance-relation.service.mjs +0 -34
  449. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/ipaas.service.mjs +0 -14
  450. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/job-log.service.mjs +0 -22
  451. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/job.service.mjs +0 -46
  452. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/js-engine.service.mjs +0 -22
  453. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/label-log.service.mjs +0 -34
  454. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/label.service.mjs +0 -98
  455. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/login-log.service.mjs +0 -14
  456. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/medPro.service.mjs +0 -18
  457. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/menu-config.service.mjs +0 -38
  458. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/merge-log.service.mjs +0 -30
  459. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/message-record.service.mjs +0 -30
  460. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/message-setting.service.mjs +0 -18
  461. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/message-tmpl.service.mjs +0 -46
  462. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/mobile-homepage.service.mjs +0 -46
  463. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/mobile-page.service.mjs +0 -42
  464. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/model-comprehensive.service.mjs +0 -133
  465. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/model-data.service.mjs +0 -35
  466. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/model-meta.service.mjs +0 -111
  467. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/model-method.service.mjs +0 -42
  468. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/model.service.mjs +0 -14
  469. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/online-form-change-history.service.mjs +0 -14
  470. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/online-form-instance.service.mjs +0 -122
  471. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/online-form-log.service.mjs +0 -14
  472. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/online-form-tmpl-log.service.mjs +0 -34
  473. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/online-form-tmpl.service.mjs +0 -94
  474. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/online-form.service.mjs +0 -30
  475. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/online.service.mjs +0 -22
  476. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/openapi.service.mjs +0 -42
  477. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/page-designer-log.service.mjs +0 -34
  478. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/permission.service.mjs +0 -34
  479. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/plat.service.mjs +0 -30
  480. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/pm-process-definition-version.service.mjs +0 -46
  481. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/pm-process-definition.service.mjs +0 -34
  482. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/pm-process-engine.service.mjs +0 -78
  483. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/print-designer.service.mjs +0 -26
  484. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/print-log.service.mjs +0 -18
  485. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/print.service.mjs +0 -26
  486. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-approval-log.service.mjs +0 -38
  487. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-approve-user.service.mjs +0 -34
  488. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-definition-version.service.mjs +0 -38
  489. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-definition.service.mjs +0 -43
  490. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-engine.service.mjs +0 -34
  491. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-event.service.mjs +0 -34
  492. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-graph.service.mjs +0 -14
  493. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-instance-relation-.service.mjs +0 -34
  494. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-instance.service.mjs +0 -34
  495. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-message-user.service.mjs +0 -34
  496. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-node-definition.service.mjs +0 -34
  497. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-path-user.service.mjs +0 -34
  498. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-path.service.mjs +0 -18
  499. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-task-done.service.mjs +0 -14
  500. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-task-todo.service.mjs +0 -18
  501. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process-version.service.mjs +0 -34
  502. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/process.service.mjs +0 -30
  503. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/processTest.service.mjs +0 -38
  504. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/product-release.service.mjs +0 -22
  505. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/publish-log.service.mjs +0 -46
  506. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/regexp.service.mjs +0 -34
  507. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/report-data-set.service.mjs +0 -50
  508. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/report-data.service.mjs +0 -22
  509. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/report.service.mjs +0 -70
  510. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/role-permission.service.mjs +0 -26
  511. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/role.service.mjs +0 -34
  512. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/script-assistant.service.mjs +0 -18
  513. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/script-version-log.service.mjs +0 -26
  514. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/script-version.service.mjs +0 -38
  515. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/script.service.mjs +0 -38
  516. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/service-orchestration-version-log.service.mjs +0 -30
  517. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/service-orchestration-version.service.mjs +0 -38
  518. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/service-orchestration.service.mjs +0 -38
  519. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/sign-history.service.mjs +0 -34
  520. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/sign-log.service.mjs +0 -18
  521. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/signature.service.mjs +0 -18
  522. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/sql-view-model.service.mjs +0 -30
  523. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/sql-view.service.mjs +0 -14
  524. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/stash.service.mjs +0 -30
  525. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/sub-model-process.service.mjs +0 -14
  526. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/sys-config.service.mjs +0 -34
  527. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/system-var.service.mjs +0 -46
  528. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/trace-log-details.service.mjs +0 -50
  529. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/trace-log.service.mjs +0 -38
  530. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/trace-mainline-ext.service.mjs +0 -34
  531. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/trace-mainline.service.mjs +0 -34
  532. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/trace-setting.service.mjs +0 -26
  533. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/user-group-relation.service.mjs +0 -26
  534. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/user-group.service.mjs +0 -42
  535. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/view-model.service.mjs +0 -67
  536. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/wash.service.mjs +0 -18
  537. package/es/node_modules/.pnpm/@gct-paas_api-apaas@0.0.2-dev.0/node_modules/@gct-paas/api-apaas/es/service/webpage.service.mjs +0 -62
  538. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/_virtual/_commonjsHelpers.mjs +0 -44
  539. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/_virtual/index.mjs +0 -7
  540. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/base/platform-base.service.mjs +0 -11
  541. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/index.mjs +0 -3
  542. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.mjs +0 -541
  543. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/agent.service.mjs +0 -34
  544. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/api.service.mjs +0 -179
  545. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/apk.service.mjs +0 -42
  546. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/app-member.service.mjs +0 -42
  547. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/app-setting.service.mjs +0 -42
  548. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/app.service.mjs +0 -138
  549. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/assets.service.mjs +0 -39
  550. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/attachmentResourceTransfer.service.mjs +0 -14
  551. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/audit-log.service.mjs +0 -34
  552. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/bi-data-set.service.mjs +0 -38
  553. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/bi-file-dataset-config.service.mjs +0 -38
  554. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/bi-file.service.mjs +0 -14
  555. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/bi-share.service.mjs +0 -34
  556. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/buildEnshrineCompLibrary.service.mjs +0 -14
  557. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/category.service.mjs +0 -54
  558. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/clearLogLogin.service.mjs +0 -14
  559. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/clearLogOperate.service.mjs +0 -14
  560. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/clearTempDir.service.mjs +0 -14
  561. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/copyFilter.service.mjs +0 -14
  562. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/dashboard.service.mjs +0 -38
  563. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/data-source.service.mjs +0 -54
  564. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/data-trace.service.mjs +0 -42
  565. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/database.service.mjs +0 -58
  566. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/dataset-log.service.mjs +0 -34
  567. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/dataset.service.mjs +0 -66
  568. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/datasource-devops.service.mjs +0 -34
  569. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/datasource-move-data.service.mjs +0 -34
  570. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/datasource-move-detail.service.mjs +0 -34
  571. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/datasource-move.service.mjs +0 -38
  572. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteCompInfo.service.mjs +0 -14
  573. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteCompInfoType.service.mjs +0 -14
  574. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteCsvDatasource.service.mjs +0 -14
  575. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteEchartTheme.service.mjs +0 -14
  576. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteEnshrineComp.service.mjs +0 -14
  577. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteEnshrineCompGroup.service.mjs +0 -14
  578. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteFilter.service.mjs +0 -14
  579. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteLogOperateById.service.mjs +0 -14
  580. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteMapGeoJson.service.mjs +0 -14
  581. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deleteNotUseDir.service.mjs +0 -14
  582. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deletePageSnapshoot.service.mjs +0 -14
  583. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deletePageTemplate.service.mjs +0 -14
  584. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deletePnResource.service.mjs +0 -14
  585. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/deletePnResourceGroup.service.mjs +0 -14
  586. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/exportTemplate.service.mjs +0 -38
  587. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/external-message.service.mjs +0 -34
  588. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/file-task.service.mjs +0 -38
  589. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/file.service.mjs +0 -26
  590. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/front-release.service.mjs +0 -14
  591. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAdCodeByAliasName.service.mjs +0 -14
  592. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAllCompInfo.service.mjs +0 -14
  593. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAllCompInfoByTypeId.service.mjs +0 -14
  594. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAllCompInfoType.service.mjs +0 -14
  595. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAllCsvDatasource.service.mjs +0 -14
  596. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAllEchartTheme.service.mjs +0 -14
  597. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAllEnshrineCompGroups.service.mjs +0 -14
  598. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAllFilter.service.mjs +0 -14
  599. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAllPageTemplate.service.mjs +0 -14
  600. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getAttachmentInfoByPage.service.mjs +0 -14
  601. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getCompInfoById.service.mjs +0 -14
  602. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getCompInfoByPage.service.mjs +0 -14
  603. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getCompInfoTypeById.service.mjs +0 -14
  604. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getCompInfoTypeByPage.service.mjs +0 -14
  605. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getContentToArray.service.mjs +0 -14
  606. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getCsvDatasourceById.service.mjs +0 -14
  607. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getCsvDatasourceByName.service.mjs +0 -14
  608. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getCsvDatasourceByPage.service.mjs +0 -14
  609. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getDesignerData.service.mjs +0 -14
  610. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getEchartThemeById.service.mjs +0 -14
  611. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getEchartThemeByPage.service.mjs +0 -14
  612. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getEnshrineCompByPage.service.mjs +0 -14
  613. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getEnshrineCompGroupById.service.mjs +0 -14
  614. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getEnshrineCompGroupByPage.service.mjs +0 -14
  615. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getFilterById.service.mjs +0 -14
  616. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getGeoJsonByAdCode.service.mjs +0 -14
  617. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getLayoutItemObjById.service.mjs +0 -14
  618. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getLogLoginByPage.service.mjs +0 -14
  619. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getMapBaseInfoByLevel.service.mjs +0 -14
  620. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getMapGeoJsonById.service.mjs +0 -14
  621. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getMapGeoJsonByPage.service.mjs +0 -14
  622. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getMyAllPnResourceGroup.service.mjs +0 -14
  623. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getMyEchartThemes.service.mjs +0 -14
  624. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getMyPnResourceByPage.service.mjs +0 -14
  625. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getMyShareCustomCompByPage.service.mjs +0 -14
  626. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageSnapshootByEnabled.service.mjs +0 -14
  627. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageSnapshootById.service.mjs +0 -14
  628. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageSnapshootsByPageId.service.mjs +0 -14
  629. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageTemplateById.service.mjs +0 -14
  630. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageTemplateByPage.service.mjs +0 -14
  631. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageTemplateForCreatePageForm.service.mjs +0 -14
  632. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageTemplateLayout.service.mjs +0 -14
  633. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageTemplateThemeJson.service.mjs +0 -14
  634. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPageTotalCount.service.mjs +0 -14
  635. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPnLogOperateByPage.service.mjs +0 -14
  636. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getPnResourceGroupById.service.mjs +0 -14
  637. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getProjectTotalCount.service.mjs +0 -14
  638. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getShareCustomCompById.service.mjs +0 -14
  639. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getShareCustomCompByPage.service.mjs +0 -14
  640. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/getSysEchartThemes.service.mjs +0 -14
  641. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/httpQuery.service.mjs +0 -14
  642. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/i18n-config.service.mjs +0 -18
  643. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/i18n-info.service.mjs +0 -34
  644. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/importCompInfoJson.service.mjs +0 -14
  645. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/importTemplate.service.mjs +0 -38
  646. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/index.mjs +0 -362
  647. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/internal-message.service.mjs +0 -34
  648. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/invoke-log.service.mjs +0 -22
  649. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/knowledge-base-chunk.service.mjs +0 -34
  650. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/knowledge-base-doc.service.mjs +0 -34
  651. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/knowledge-base.service.mjs +0 -34
  652. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/ldap.service.mjs +0 -14
  653. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/license-unbind-log.service.mjs +0 -14
  654. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/license.service.mjs +0 -70
  655. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/login-log.service.mjs +0 -14
  656. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/login.service.mjs +0 -30
  657. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/manager.service.mjs +0 -18
  658. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/message-setting.service.mjs +0 -50
  659. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/minio-file.service.mjs +0 -18
  660. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/model-provider.service.mjs +0 -34
  661. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/model.service.mjs +0 -34
  662. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/nav-menu.service.mjs +0 -46
  663. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/nav-page.service.mjs +0 -38
  664. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/openapi-group.service.mjs +0 -34
  665. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/openapi-key-grant.service.mjs +0 -38
  666. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/org-user-picker.service.mjs +0 -18
  667. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/org.service.mjs +0 -54
  668. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/parseCsvOrExcel.service.mjs +0 -14
  669. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/permission.service.mjs +0 -30
  670. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/plat.service.mjs +0 -86
  671. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/plugin-version.service.mjs +0 -34
  672. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/plugin.service.mjs +0 -54
  673. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/pm-process-delegate-detail.service.mjs +0 -34
  674. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/pm-process-delegate.service.mjs +0 -34
  675. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/pm-process-instance.service.mjs +0 -38
  676. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/pm-task-done.service.mjs +0 -38
  677. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/pm-task-todo.service.mjs +0 -38
  678. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/pn-page.service.mjs +0 -34
  679. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/pn-project.service.mjs +0 -62
  680. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/print-log.service.mjs +0 -26
  681. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/print-resource.service.mjs +0 -54
  682. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/regexp.service.mjs +0 -34
  683. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/released.service.mjs +0 -22
  684. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/resourceTransferToPage.service.mjs +0 -14
  685. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/role-permission.service.mjs +0 -26
  686. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/role.service.mjs +0 -46
  687. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveCompInfo.service.mjs +0 -14
  688. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveCompInfoType.service.mjs +0 -14
  689. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveCsvDatasource.service.mjs +0 -14
  690. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveEchartTheme.service.mjs +0 -14
  691. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveEnshrineComp.service.mjs +0 -14
  692. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveEnshrineCompGroup.service.mjs +0 -14
  693. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveFilter.service.mjs +0 -14
  694. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveMapGeoJson.service.mjs +0 -14
  695. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/savePageSnapshoot.service.mjs +0 -14
  696. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/savePageTemplate.service.mjs +0 -14
  697. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/savePnResourceGroup.service.mjs +0 -14
  698. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/saveShareCustomComp.service.mjs +0 -14
  699. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/searchEnshrineComp.service.mjs +0 -14
  700. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/seat-message.service.mjs +0 -14
  701. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/seat.service.mjs +0 -38
  702. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/setPageSnapshootEnabled.service.mjs +0 -14
  703. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/setPageSnapshootEnabledByPageId.service.mjs +0 -14
  704. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/shortcut.service.mjs +0 -26
  705. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/sign-log.service.mjs +0 -38
  706. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/sms.service.mjs +0 -18
  707. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/started-process.service.mjs +0 -26
  708. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/task-delegate.service.mjs +0 -42
  709. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/task-done.service.mjs +0 -26
  710. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/task-todo.service.mjs +0 -26
  711. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/tenant-developer.service.mjs +0 -42
  712. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/tenant.service.mjs +0 -75
  713. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/toggleEnabled.service.mjs +0 -14
  714. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/uncompressLogOperateLayoutStr.service.mjs +0 -14
  715. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/uploadFiles.service.mjs +0 -38
  716. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/user-extra.service.mjs +0 -34
  717. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/user-info-log.service.mjs +0 -34
  718. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/user-password-history.service.mjs +0 -34
  719. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/user.service.mjs +0 -66
  720. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/workbench-component-relation.service.mjs +0 -46
  721. package/es/node_modules/.pnpm/@gct-paas_api-platform@0.0.2-dev.0/node_modules/@gct-paas/api-platform/es/service/workbench-component.service.mjs +0 -34
  722. package/es/node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.mjs +0 -541
  723. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/hook/async-series-hook/async-series-hook.mjs +0 -73
  724. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/hook/index.mjs +0 -2
  725. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/hook/sync-series-hook/sync-series-hook.mjs +0 -100
  726. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/index.mjs +0 -2
  727. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/array/array.mjs +0 -47
  728. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/index.mjs +0 -5
  729. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/object/object.mjs +0 -24
  730. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/qx-event/qx-event.mjs +0 -94
  731. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/qx-event-emitter/qx-event-emitter.mjs +0 -146
  732. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/type-util/type-util.mjs +0 -149
  733. package/es/node_modules/.pnpm/qx-util@0.4.8/node_modules/qx-util/out/utils/util/util.mjs +0 -227
  734. package/es/provider/i-designer-provider/i-designer-provider.d.ts +0 -102
  735. package/es/provider/i-designer-provider/i-designer-provider.mjs +0 -1
  736. package/es/provider/index.d.ts +0 -1
  737. package/es/provider/index.mjs +0 -1
  738. package/es/register/designer-register/designer-register.d.ts +0 -53
  739. package/es/register/designer-register/designer-register.mjs +0 -69
  740. package/es/register/index.mjs +0 -6
  741. package/es/register/render-register/render-register.d.ts +0 -59
  742. package/es/register/render-register/render-register.mjs +0 -65
  743. package/es/state/index.mjs +0 -12
  744. package/es/utils/index.mjs +0 -9
  745. package/es/utils/plugin-pkg-util/plugin-pkg-util.d.ts +0 -96
  746. package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +0 -262
@@ -1 +1,386 @@
1
- System.register(["vue-i18n","axios","qs","lodash-es","@gct-paas/core","pinia","vue"],(function(g,Cc){"use strict";var re,le,ie,$,k,ae,ue,oe,ce,ge,he,x,de,H,G,X,K,pe;return{setters:[i=>{re=i.createI18n},i=>{le=i.default},i=>{ie=i.default},i=>{$=i.mergeWith,k=i.cloneDeep,ae=i.unionWith,ue=i.isEqual},i=>{oe=i.BaseService},i=>{ce=i.defineStore,ge=i.createPinia,he=i.setActivePinia},i=>{x=i.reactive,de=i.onUnmounted,H=i.inject,G=i.computed,X=i.getCurrentInstance,K=i.ref,pe=i.watch}],execute:(function(){g({copyTextToClipboard:Ve,createAppVue:wc,default:He,getPathQuery:nc,getTenant:tc,getTimezone:rc,getToken:Yo,install:He,isDef:Ke,setTenant:sc,setToken:ec,t:Vo,useCopyToClipboard:bc,useEditFormController:ac,useForm:Ge,useFormController:uc,useFormItemController:oc,useGctFormValue:Sc,useGctFormValueByText:mc,useModal:Ic,useNamespace:Ac,widthEditorInstall:lc});function i(s,e,t){return(e=We(e))in s?Object.defineProperty(s,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):s[e]=t,s}function Xe(s,e){if(typeof s!="object"||!s)return s;var t=s[Symbol.toPrimitive];if(t!==void 0){var n=t.call(s,e);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(s)}function We(s){var e=Xe(s,"string");return typeof e=="symbol"?e:e+""}var ye=(s=>(s.JSON="application/json;charset=UTF-8",s.FORM_URLENCODED="application/x-www-form-urlencoded;charset=UTF-8",s.FORM_DATA="multipart/form-data;charset=UTF-8",s))(ye||{});function je(s){return s&&s.__esModule&&Object.prototype.hasOwnProperty.call(s,"default")?s.default:s}var W,_e;function ze(){if(_e)return W;_e=1;function s(u){if(typeof u!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(u))}function e(u,r){for(var l="",o=0,c=-1,d=0,a,p=0;p<=u.length;++p){if(p<u.length)a=u.charCodeAt(p);else{if(a===47)break;a=47}if(a===47){if(!(c===p-1||d===1))if(c!==p-1&&d===2){if(l.length<2||o!==2||l.charCodeAt(l.length-1)!==46||l.charCodeAt(l.length-2)!==46){if(l.length>2){var _=l.lastIndexOf("/");if(_!==l.length-1){_===-1?(l="",o=0):(l=l.slice(0,_),o=l.length-1-l.lastIndexOf("/")),c=p,d=0;continue}}else if(l.length===2||l.length===1){l="",o=0,c=p,d=0;continue}}r&&(l.length>0?l+="/..":l="..",o=2)}else l.length>0?l+="/"+u.slice(c+1,p):l=u.slice(c+1,p),o=p-c-1;c=p,d=0}else a===46&&d!==-1?++d:d=-1}return l}function t(u,r){var l=r.dir||r.root,o=r.base||(r.name||"")+(r.ext||"");return l?l===r.root?l+o:l+u+o:o}var n={resolve:function(){for(var r="",l=!1,o,c=arguments.length-1;c>=-1&&!l;c--){var d;c>=0?d=arguments[c]:(o===void 0&&(o=process.cwd()),d=o),s(d),d.length!==0&&(r=d+"/"+r,l=d.charCodeAt(0)===47)}return r=e(r,!l),l?r.length>0?"/"+r:"/":r.length>0?r:"."},normalize:function(r){if(s(r),r.length===0)return".";var l=r.charCodeAt(0)===47,o=r.charCodeAt(r.length-1)===47;return r=e(r,!l),r.length===0&&!l&&(r="."),r.length>0&&o&&(r+="/"),l?"/"+r:r},isAbsolute:function(r){return s(r),r.length>0&&r.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var r,l=0;l<arguments.length;++l){var o=arguments[l];s(o),o.length>0&&(r===void 0?r=o:r+="/"+o)}return r===void 0?".":n.normalize(r)},relative:function(r,l){if(s(r),s(l),r===l||(r=n.resolve(r),l=n.resolve(l),r===l))return"";for(var o=1;o<r.length&&r.charCodeAt(o)===47;++o);for(var c=r.length,d=c-o,a=1;a<l.length&&l.charCodeAt(a)===47;++a);for(var p=l.length,_=p-a,S=d<_?d:_,v=-1,f=0;f<=S;++f){if(f===S){if(_>S){if(l.charCodeAt(a+f)===47)return l.slice(a+f+1);if(f===0)return l.slice(a+f)}else d>S&&(r.charCodeAt(o+f)===47?v=f:f===0&&(v=0));break}var A=r.charCodeAt(o+f),P=l.charCodeAt(a+f);if(A!==P)break;A===47&&(v=f)}var I="";for(f=o+v+1;f<=c;++f)(f===c||r.charCodeAt(f)===47)&&(I.length===0?I+="..":I+="/..");return I.length>0?I+l.slice(a+v):(a+=v,l.charCodeAt(a)===47&&++a,l.slice(a))},_makeLong:function(r){return r},dirname:function(r){if(s(r),r.length===0)return".";for(var l=r.charCodeAt(0),o=l===47,c=-1,d=!0,a=r.length-1;a>=1;--a)if(l=r.charCodeAt(a),l===47){if(!d){c=a;break}}else d=!1;return c===-1?o?"/":".":o&&c===1?"//":r.slice(0,c)},basename:function(r,l){if(l!==void 0&&typeof l!="string")throw new TypeError('"ext" argument must be a string');s(r);var o=0,c=-1,d=!0,a;if(l!==void 0&&l.length>0&&l.length<=r.length){if(l.length===r.length&&l===r)return"";var p=l.length-1,_=-1;for(a=r.length-1;a>=0;--a){var S=r.charCodeAt(a);if(S===47){if(!d){o=a+1;break}}else _===-1&&(d=!1,_=a+1),p>=0&&(S===l.charCodeAt(p)?--p===-1&&(c=a):(p=-1,c=_))}return o===c?c=_:c===-1&&(c=r.length),r.slice(o,c)}else{for(a=r.length-1;a>=0;--a)if(r.charCodeAt(a)===47){if(!d){o=a+1;break}}else c===-1&&(d=!1,c=a+1);return c===-1?"":r.slice(o,c)}},extname:function(r){s(r);for(var l=-1,o=0,c=-1,d=!0,a=0,p=r.length-1;p>=0;--p){var _=r.charCodeAt(p);if(_===47){if(!d){o=p+1;break}continue}c===-1&&(d=!1,c=p+1),_===46?l===-1?l=p:a!==1&&(a=1):l!==-1&&(a=-1)}return l===-1||c===-1||a===0||a===1&&l===c-1&&l===o+1?"":r.slice(l,c)},format:function(r){if(r===null||typeof r!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof r);return t("/",r)},parse:function(r){s(r);var l={root:"",dir:"",base:"",ext:"",name:""};if(r.length===0)return l;var o=r.charCodeAt(0),c=o===47,d;c?(l.root="/",d=1):d=0;for(var a=-1,p=0,_=-1,S=!0,v=r.length-1,f=0;v>=d;--v){if(o=r.charCodeAt(v),o===47){if(!S){p=v+1;break}continue}_===-1&&(S=!1,_=v+1),o===46?a===-1?a=v:f!==1&&(f=1):a!==-1&&(f=-1)}return a===-1||_===-1||f===0||f===1&&a===_-1&&a===p+1?_!==-1&&(p===0&&c?l.base=l.name=r.slice(1,_):l.base=l.name=r.slice(p,_)):(p===0&&c?(l.name=r.slice(1,a),l.base=r.slice(1,_)):(l.name=r.slice(p,a),l.base=r.slice(p,_)),l.ext=r.slice(a,_)),p>0?l.dir=r.slice(0,p-1):c&&(l.dir="/"),l},sep:"/",delimiter:":",win32:null,posix:null};return n.posix=n,W=n,W}var qe=ze(),L=je(qe),Je=require("../internals/export"),Qe=require("../internals/array-includes").includes,Ze=require("../internals/fails"),Ye=require("../internals/add-to-unscopables"),et=Ze(function(){return!Array(1).includes()});Je({target:"Array",proto:!0,forced:et},{includes:function(e){return Qe(this,e,arguments.length>1?arguments[1]:void 0)}}),Ye("includes");function tt(s,e){return $(k(s),e,(t,n)=>{if(typeof t=="object"&&typeof n=="object")return $(k(t),n,(u,r)=>Array.isArray(u)?ae(u,r,ue):void 0)})}const fe=le.create();class E{static use(e){e(fe)}static get(e,t={},n={},u={}){return this.request(e,t,n,{...u,method:"GET"})}static post(e,t={},n={},u={}){return this.request(e,t,n,{...u,method:"POST"})}static put(e,t={},n={},u={}){return this.request(e,t,n,{...u,method:"PUT"})}static delete(e,t={},n={},u={}){return this.request(e,t,n,{...u,method:"DELETE"})}static options(e,t={},n={},u={}){return this.request(e,t,n,{...u,method:"OPTIONS"})}static patch(e,t={},n={},u={}){return this.request(e,t,n,{...u,method:"PATCH"})}static head(e,t={},n={},u={}){return this.request(e,t,n,{...u,method:"HEAD"})}static async request(e,t,n,u={}){if(n){const l=ie.stringify(n,{arrayFormat:"brackets"});l&&(e.includes("?")?e+=`&${l}`:e+=`?${l}`)}const r=await fe.request(tt({url:e,data:JSON.stringify(t||{}),params:n,timeout:120*1e3,headers:{"Content-Type":ye.JSON}},u));if(r.status>=200&&r.status<300)return r.data;throw r}}class st{constructor(e){this.url=e}_put(e,t,n,u){return E.put(n?.id?L.join(this.url,e,n?.id):L.join(this.url,e),t||{},n||{},u)}_get(e,t,n,u){return E.get(L.join(this.url,e),t||{},n||{},u)}_delete(e,t,n,u){return E.delete(L.join(this.url,e),t||{},n||{},u)}_post(e,t,n,u){return E.post(L.join(this.url,e),t||{},n||{},u)}_options(e,t,n,u){return E.options(L.join(this.url,e),t||{},n||{},u)}_patch(e,t,n,u){return E.patch(L.join(this.url,e),t||{},n||{},u)}_head(e,t,n,u){return E.head(L.join(this.url,e),t||{},n||{},u)}}function nt(s){return s&&s.__esModule&&Object.prototype.hasOwnProperty.call(s,"default")?s.default:s}var j,ve;function rt(){if(ve)return j;ve=1;function s(u){if(typeof u!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(u))}function e(u,r){for(var l="",o=0,c=-1,d=0,a,p=0;p<=u.length;++p){if(p<u.length)a=u.charCodeAt(p);else{if(a===47)break;a=47}if(a===47){if(!(c===p-1||d===1))if(c!==p-1&&d===2){if(l.length<2||o!==2||l.charCodeAt(l.length-1)!==46||l.charCodeAt(l.length-2)!==46){if(l.length>2){var _=l.lastIndexOf("/");if(_!==l.length-1){_===-1?(l="",o=0):(l=l.slice(0,_),o=l.length-1-l.lastIndexOf("/")),c=p,d=0;continue}}else if(l.length===2||l.length===1){l="",o=0,c=p,d=0;continue}}r&&(l.length>0?l+="/..":l="..",o=2)}else l.length>0?l+="/"+u.slice(c+1,p):l=u.slice(c+1,p),o=p-c-1;c=p,d=0}else a===46&&d!==-1?++d:d=-1}return l}function t(u,r){var l=r.dir||r.root,o=r.base||(r.name||"")+(r.ext||"");return l?l===r.root?l+o:l+u+o:o}var n={resolve:function(){for(var r="",l=!1,o,c=arguments.length-1;c>=-1&&!l;c--){var d;c>=0?d=arguments[c]:(o===void 0&&(o=process.cwd()),d=o),s(d),d.length!==0&&(r=d+"/"+r,l=d.charCodeAt(0)===47)}return r=e(r,!l),l?r.length>0?"/"+r:"/":r.length>0?r:"."},normalize:function(r){if(s(r),r.length===0)return".";var l=r.charCodeAt(0)===47,o=r.charCodeAt(r.length-1)===47;return r=e(r,!l),r.length===0&&!l&&(r="."),r.length>0&&o&&(r+="/"),l?"/"+r:r},isAbsolute:function(r){return s(r),r.length>0&&r.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var r,l=0;l<arguments.length;++l){var o=arguments[l];s(o),o.length>0&&(r===void 0?r=o:r+="/"+o)}return r===void 0?".":n.normalize(r)},relative:function(r,l){if(s(r),s(l),r===l||(r=n.resolve(r),l=n.resolve(l),r===l))return"";for(var o=1;o<r.length&&r.charCodeAt(o)===47;++o);for(var c=r.length,d=c-o,a=1;a<l.length&&l.charCodeAt(a)===47;++a);for(var p=l.length,_=p-a,S=d<_?d:_,v=-1,f=0;f<=S;++f){if(f===S){if(_>S){if(l.charCodeAt(a+f)===47)return l.slice(a+f+1);if(f===0)return l.slice(a+f)}else d>S&&(r.charCodeAt(o+f)===47?v=f:f===0&&(v=0));break}var A=r.charCodeAt(o+f),P=l.charCodeAt(a+f);if(A!==P)break;A===47&&(v=f)}var I="";for(f=o+v+1;f<=c;++f)(f===c||r.charCodeAt(f)===47)&&(I.length===0?I+="..":I+="/..");return I.length>0?I+l.slice(a+v):(a+=v,l.charCodeAt(a)===47&&++a,l.slice(a))},_makeLong:function(r){return r},dirname:function(r){if(s(r),r.length===0)return".";for(var l=r.charCodeAt(0),o=l===47,c=-1,d=!0,a=r.length-1;a>=1;--a)if(l=r.charCodeAt(a),l===47){if(!d){c=a;break}}else d=!1;return c===-1?o?"/":".":o&&c===1?"//":r.slice(0,c)},basename:function(r,l){if(l!==void 0&&typeof l!="string")throw new TypeError('"ext" argument must be a string');s(r);var o=0,c=-1,d=!0,a;if(l!==void 0&&l.length>0&&l.length<=r.length){if(l.length===r.length&&l===r)return"";var p=l.length-1,_=-1;for(a=r.length-1;a>=0;--a){var S=r.charCodeAt(a);if(S===47){if(!d){o=a+1;break}}else _===-1&&(d=!1,_=a+1),p>=0&&(S===l.charCodeAt(p)?--p===-1&&(c=a):(p=-1,c=_))}return o===c?c=_:c===-1&&(c=r.length),r.slice(o,c)}else{for(a=r.length-1;a>=0;--a)if(r.charCodeAt(a)===47){if(!d){o=a+1;break}}else c===-1&&(d=!1,c=a+1);return c===-1?"":r.slice(o,c)}},extname:function(r){s(r);for(var l=-1,o=0,c=-1,d=!0,a=0,p=r.length-1;p>=0;--p){var _=r.charCodeAt(p);if(_===47){if(!d){o=p+1;break}continue}c===-1&&(d=!1,c=p+1),_===46?l===-1?l=p:a!==1&&(a=1):l!==-1&&(a=-1)}return l===-1||c===-1||a===0||a===1&&l===c-1&&l===o+1?"":r.slice(l,c)},format:function(r){if(r===null||typeof r!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof r);return t("/",r)},parse:function(r){s(r);var l={root:"",dir:"",base:"",ext:"",name:""};if(r.length===0)return l;var o=r.charCodeAt(0),c=o===47,d;c?(l.root="/",d=1):d=0;for(var a=-1,p=0,_=-1,S=!0,v=r.length-1,f=0;v>=d;--v){if(o=r.charCodeAt(v),o===47){if(!S){p=v+1;break}continue}_===-1&&(S=!1,_=v+1),o===46?a===-1?a=v:f!==1&&(f=1):a!==-1&&(f=-1)}return a===-1||_===-1||f===0||f===1&&a===_-1&&a===p+1?_!==-1&&(p===0&&c?l.base=l.name=r.slice(1,_):l.base=l.name=r.slice(p,_)):(p===0&&c?(l.name=r.slice(1,a),l.base=r.slice(1,_)):(l.name=r.slice(p,a),l.base=r.slice(p,_)),l.ext=r.slice(a,_)),p>0?l.dir=r.slice(0,p-1):c&&(l.dir="/"),l},sep:"/",delimiter:":",win32:null,posix:null};return n.posix=n,j=n,j}var lt=rt(),it=nt(lt);class y extends st{constructor(e){super(it.join("/gct-apaas/api",e))}}class at extends y{constructor(){super("app-branch")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ut extends y{constructor(){super("app-global-settings")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ot extends y{constructor(){super("app-granted-user")}async post(e,t={}){return this._post("",e,null,t)}async postBatch(e,t={}){return this._post("batch",e,null,t)}async getGrantedStatistic(e={}){return this._get("grantedStatistic",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getRemoveAndTransfer(e,t={}){return this._get("removeAndTransfer",null,e,t)}async getUngranted(e={}){return this._get("ungranted/list",null,null,e)}}class ct extends y{constructor(){super("app-org")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async postTransferAndDelete(e,t={}){return this._post("transferAndDelete",e,null,t)}async postUser(e,t={}){return this._post("user/update",e,null,t)}async getUser(e,t={}){return this._get("user/page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class gt extends y{constructor(){super("app-publish-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ht extends y{constructor(){super("app-state")}async getDraft(e={}){return this._get("draft",null,null,e)}}class dt extends y{constructor(){super("app-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",e,null,t)}async putDisable(e,t={}){return this._put("disable",null,e,t)}async putEnable(e,t={}){return this._put("enable",null,e,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postRemove(e,t={}){return this._post("remove",e,null,t)}async postReset(e,t={}){return this._post("reset/default/signPwd",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class pt extends y{constructor(){super("approval-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let yt=class extends y{constructor(){super("audit-log")}async postExport(e,t={}){return this._post("export",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getModules(e={}){return this._get("modules",null,null,e)}async getOperateTypes(e,t={}){return this._get("operateTypes",null,e,t)}async getOperators(e={}){return this._get("operators",null,null,e)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async postSave(e,t={}){return this._post("save",e,null,t)}};class _t extends y{constructor(){super("basic-config")}async post(e,t={}){return this._post("",e,null,t)}async getAiRagEnabled(e={}){return this._get("aiRagEnabled",null,null,e)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async postGlobal(e,t={}){return this._post("global",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postTheme(e,t={}){return this._post("theme",e,null,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}}class ft extends y{constructor(){super("biz-event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class vt extends y{constructor(){super("biz-process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async deleteDeleteCategory(e,t={}){return this._delete("deleteCategory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class St extends y{constructor(){super("biz-process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy/{id}",null,null,e)}async postDeploy(e,t={}){return this._post("deploy",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveAndDeploy(e,t={}){return this._post("saveAndDeploy",e,null,t)}async getId(e,t={}){return this._get("",null,e,t)}}class mt extends y{constructor(){super("biz-service-crud")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getDataModel(e={}){return this._get("data-model/list",null,null,e)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getViewModel(e,t={}){return this._get("view-model/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class It extends y{constructor(){super("biz-service")}async getModelKey(e,t={}){return this._get("{modelKey}/{bsKey}",null,e,t)}async postModelKey(e,t={}){return this._post("{modelKey}/{bsKey}",null,e,t)}async putModelKey(e,t={}){return this._put("{modelKey}/{bsKey}",null,e,t)}async deleteModelKey(e,t={}){return this._delete("{modelKey}/{bsKey}",null,e,t)}}class At extends y{constructor(){super("bom")}async postImport(e={}){return this._post("import",null,null,e)}}let bt=class extends y{constructor(){super("category")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getGetListRdoOrNdo(e,t={}){return this._get("getListRdoOrNdo",null,e,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListComplete(e,t={}){return this._get("listComplete",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}};class Tt extends y{constructor(){super("category-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Lt extends y{constructor(){super("chat")}async postImportExcel(e,t={}){return this._post("importExcel",null,e,t)}}class Rt extends y{constructor(){super("code-ts")}async getList(e={}){return this._get("list",null,null,e)}}class Et extends y{constructor(){super("commit-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getCanPublishProdReleaseTagList(e={}){return this._get("canPublishProdReleaseTagList",null,null,e)}async getCanReleaseTagList(e={}){return this._get("canReleaseTagList",null,null,e)}async postCommit(e,t={}){return this._post("commit",e,null,t)}async getGetLatestCommit(e={}){return this._get("getLatestCommit",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getRelease(e,t={}){return this._get("release/page/list",null,e,t)}async getViewDetail(e,t={}){return this._get("viewDetail",null,e,t)}async getViewDraft(e={}){return this._get("viewDraft",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class wt extends y{constructor(){super("common-info-card")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetById(e,t={}){return this._get("getById",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postList(e,t={}){return this._post("list",e,null,t)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async postUpdateName(e,t={}){return this._post("updateName",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Ct extends y{constructor(){super("control-config")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getCategory(e,t={}){return this._get("category/list",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getSpecial(e,t={}){return this._get("special/page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Dt extends y{constructor(){super("customer-complaint")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getSync(e={}){return this._get("sync",null,null,e)}async getUpdateFeishu(e,t={}){return this._get("updateFeishu",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let Pt=class extends y{constructor(){super("dashboard")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMove(e,t={}){return this._post("move",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}};class Ot extends y{constructor(){super("data-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getBizService(e,t={}){return this._get("biz-service/{modelKey}/{bsKey}",null,e,t)}async postBizService(e,t={}){return this._post("biz-service/{modelKey}/{bsKey}",null,e,t)}async putBizService(e,t={}){return this._put("biz-service/{modelKey}/{bsKey}",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service/{modelKey}/{bsKey}",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let Nt=class extends y{constructor(){super("data-source")}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postSelect(e,t={}){return this._post("select",e,null,t)}},Mt=class extends y{constructor(){super("data-trace")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postExport(e,t={}){return this._post("export",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getOperators(e={}){return this._get("operators",null,null,e)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}};class Bt extends y{constructor(){super("designer-common")}async getEnumModelField(e,t={}){return this._get("enumModelField/list",null,e,t)}async getGetApp(e={}){return this._get("getApp",null,null,e)}async getGetCanBeUsedOrg(e={}){return this._get("getCanBeUsedOrg",null,null,e)}async getGetCanBeUsedOrgUser(e,t={}){return this._get("getCanBeUsedOrgUser",null,e,t)}async getGetUserGroupUser(e,t={}){return this._get("getUserGroupUser",null,e,t)}async getGetVisibleOrg(e={}){return this._get("getVisibleOrg",null,null,e)}async getGetVisibleOrgUser(e,t={}){return this._get("getVisibleOrgUser",null,e,t)}async getGetVisibleUser(e={}){return this._get("getVisibleUser",null,null,e)}async getGetVisibleUserAndVisibleOrgUser(e,t={}){return this._get("getVisibleUserAndVisibleOrgUser",null,e,t)}async getListUserByIds(e,t={}){return this._get("listUserByIds",null,e,t)}async getTableEntityModel(e,t={}){return this._get("table-entity-model/list",null,e,t)}async postUpload(e={}){return this._post("upload/label/image",null,null,e)}async getUser(e={}){return this._get("user/info",null,null,e)}}class Ut extends y{constructor(){super("designer-lock")}async postCancelOccupyPage(e,t={}){return this._post("cancelOccupyPage",e,null,t)}async getGetPageOccupyMsg(e,t={}){return this._get("getPageOccupyMsg",null,e,t)}async postLockPage(e,t={}){return this._post("lockPage",e,null,t)}async postOccupyPage(e,t={}){return this._post("occupyPage",e,null,t)}async postUnLockPage(e,t={}){return this._post("unLockPage",e,null,t)}}class kt extends y{constructor(){super("designer-operate-log")}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class xt extends y{constructor(){super("devops")}async getListAllDigitsFields(e={}){return this._get("listAllDigitsFields",null,null,e)}async postUpdateDigits(e,t={}){return this._post("updateDigits",e,null,t)}}class Gt extends y{constructor(){super("dify-chat")}async postAsyncDocument(e,t={}){return this._post("asyncDocument",e,null,t)}async postChat(e,t={}){return this._post("chat",e,null,t)}}class Kt extends y{constructor(){super("doc-control-started")}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class Vt extends y{constructor(){super("doc-control-task-done")}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class Ft extends y{constructor(){super("doc-control-task-todo")}async getAllUser(e,t={}){return this._get("all-user/page/list",null,e,t)}async getCount(e={}){return this._get("count",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class $t extends y{constructor(){super("doc-control")}async postProcess(e,t={}){return this._post("process/return",e,null,t)}async getProcess(e,t={}){return this._get("process/startProcess",null,e,t)}}class Ht extends y{constructor(){super("doc-outline")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByInstance(e,t={}){return this._get("listByInstance",null,e,t)}async getListByRefId(e,t={}){return this._get("listByRefId",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getSheet(e,t={}){return this._get("sheet",null,e,t)}async getSheetByInstance(e,t={}){return this._get("sheetByInstance",null,e,t)}async getSheetByRefId(e,t={}){return this._get("sheetByRefId",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Xt extends y{constructor(){super("document")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e,t={}){return this._post("copy",e,null,t)}async postCopyVersion(e,t={}){return this._post("copyVersion/{id}",e,null,t)}async putDesign(e,t={}){return this._put("design/{id}",e,null,t)}async getDocumentDataClean(e={}){return this._get("documentDataClean",null,null,e)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById/{id}",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Wt extends y{constructor(){super("edhr-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByMaterialNo(e,t={}){return this._get("findByMaterialNo",null,e,t)}async getFindMaterialNo(e,t={}){return this._get("findMaterialNo",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getReverse(e,t={}){return this._get("reverse/page/list",null,e,t)}async getRunning(e,t={}){return this._get("running/page",null,e,t)}async putUpdateInstanceStatusById4Archived(e={}){return this._put("updateInstanceStatusById4Archived/{id}",null,null,e)}}class jt extends y{constructor(){super("edhr-instance-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e,t={}){return this._get("list/tree",null,e,t)}async getListChild(e,t={}){return this._get("listChild",null,e,t)}}class zt extends y{constructor(){super("edhr-instance-search-history")}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}}class qt extends y{constructor(){super("edhr-tmpl")}async postControl(e,t={}){return this._post("control",e,null,t)}async postCopy(e={}){return this._post("copy/{id}",null,null,e)}async postCopyVersion(e,t={}){return this._post("copyVersion/{id}",e,null,t)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async deleteRemoveById(e,t={}){return this._delete("removeById",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async putSetDefault(e={}){return this._put("setDefault/{id}",null,null,e)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById/{id}",e,null,t)}}class Jt extends y{constructor(){super("ele-search")}async getSearchByKey(e,t={}){return this._get("searchByKey",null,e,t)}}class Qt extends y{constructor(){super("enum-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postSubmitWithFields(e,t={}){return this._post("submitWithFields",e,null,t)}async putUpdateIconState(e,t={}){return this._put("updateIconState/{id}",e,null,t)}async putUpdateTextState(e,t={}){return this._put("updateTextState/{id}",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Zt extends y{constructor(){super("enum-model-field")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Yt extends y{constructor(){super("event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class es extends y{constructor(){super("event-log")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class ts extends y{constructor(){super("excel-tmpl")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postConfig(e,t={}){return this._post("config",e,null,t)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async getDownloadPlat(e={}){return this._get("download-plat/{id}",null,null,e)}async getDownload(e={}){return this._get("download/{id}",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInit(e,t={}){return this._get("init/tmpl",null,e,t)}async postInit(e,t,n={}){return this._post("init/tmpl",t,e,n)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postV1(e,t={}){return this._post("v1/config",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ss extends y{constructor(){super("excel")}async getData(e,t={}){return this._get("data/report",null,e,t)}async postData(e,t={}){return this._post("data/validate",null,e,t)}}class ns extends y{constructor(){super("field-meta")}async delete(e,t={}){return this._delete("",null,e,t)}async postComplete(e={}){return this._post("complete/dataVersion",null,null,e)}async putDecimal(e={}){return this._put("decimal/digits/all/{digits}",null,null,e)}async postFunc(e,t={}){return this._post("func/check",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListConditionField(e,t={}){return this._get("listConditionField",null,e,t)}async postMove(e,t={}){return this._post("move",e,null,t)}async getPage(e,t={}){return this._get("page/getRecycledList",null,e,t)}async putPage(e={}){return this._put("page/recycledRestore/{fieldId}",null,null,e)}async postPreview(e,t={}){return this._post("preview",e,null,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async putUnique(e={}){return this._put("unique/constraint/add/{modelKey}/{fieldKey}/{type}",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class rs extends y{constructor(){super("field")}async deleteRemove(e,t={}){return this._delete("remove",null,e,t)}}class ls extends y{constructor(){super("file-resource")}async postBase64Upload(e,t={}){return this._post("base64Upload",e,null,t)}async postList(e,t={}){return this._post("list",e,null,t)}async postUpload(e,t={}){return this._post("upload",null,e,t)}}let is=class extends y{constructor(){super("file-task")}async getStart(e={}){return this._get("start",null,null,e)}async postStatus(e,t={}){return this._post("status",e,null,t)}async postSubmit(e,t={}){return this._post("submit",e,null,t)}},as=class extends y{constructor(){super("file")}async postPdf(e,t={}){return this._post("pdf/encode",null,e,t)}async postUpload(e,t={}){return this._post("upload/image",null,e,t)}};class us extends y{constructor(){super("formRelate")}async getCategory(e,t={}){return this._get("category",null,e,t)}async postCategory(e,t={}){return this._post("category",e,null,t)}async deleteCategory(e,t={}){return this._delete("category",null,e,t)}async putCategory(e,t={}){return this._put("category/{id}",e,null,t)}async deleteDeleteCategory(e,t={}){return this._delete("deleteCategory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllCategory(e,t={}){return this._get("listAllCategory",null,e,t)}async getListAllVersion(e,t={}){return this._get("listAllVersion",null,e,t)}async getPage(e,t={}){return this._get("page/listFormNoChild",null,e,t)}}class os extends y{constructor(){super("front-operate-log")}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class cs extends y{constructor(){super("global-method")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getCurrentTime(e={}){return this._get("currentTime",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let gs=class extends y{constructor(){super("i18n-info")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getLang(e,t={}){return this._get("lang/download",null,e,t)}async postLang(e,t={}){return this._post("lang/upload",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}};class hs extends y{constructor(){super("instance-relation")}async postBind(e,t={}){return this._post("bind",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async deleteUnbind(e,t={}){return this._delete("unbind",null,e,t)}async putUpdateTitle(e,t={}){return this._put("updateTitle",null,e,t)}}class ds extends y{constructor(){super("ipaas")}async postWebhook(e,t={}){return this._post("webhook",e,null,t)}}class ps extends y{constructor(){super("job")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCron(e,t={}){return this._post("cron/valid",e,null,t)}async postExec(e,t={}){return this._post("exec",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putStatus(e,t={}){return this._put("status/{id}",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ys extends y{constructor(){super("job-log")}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class _s extends y{constructor(){super("js-engine")}async getExec(e,t={}){return this._get("exec/{key}",null,e,t)}async postExec(e,t={}){return this._post("exec/{key}",null,e,t)}async postExecute(e,t={}){return this._post("execute",e,null,t)}}class fs extends y{constructor(){super("label")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e,t={}){return this._post("copy",e,null,t)}async postCopyVersion(e,t={}){return this._post("copyVersion/{id}",e,null,t)}async getEntity(e={}){return this._get("entity/update/datetime/sql",null,null,e)}async getExecute(e={}){return this._get("execute",null,null,e)}async getExport(e,t={}){return this._get("export",null,e,t)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async postImport(e={}){return this._post("import",null,null,e)}async postLabelDuplicateNameCheck(e,t={}){return this._post("labelDuplicateNameCheck",e,null,t)}async getLabelParentDataClean(e={}){return this._get("labelParentDataClean",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListFont(e={}){return this._get("listFont",null,null,e)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async getTest(e,t={}){return this._get("test",null,e,t)}async putUpdateDesigner(e,t={}){return this._put("updateDesigner",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById/{id}",e,null,t)}async postXmlSetting(e,t={}){return this._post("xmlSetting",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class vs extends y{constructor(){super("label-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let Ss=class extends y{constructor(){super("login-log")}async postUserLoginLogPage(e,t={}){return this._post("userLoginLogPage",e,null,t)}};class ms extends y{constructor(){super("medPro")}async postModelMeta(e,t={}){return this._post("modelMeta/dataAssociation",e,null,t)}async getModelMeta(e,t={}){return this._get("modelMeta/modelDataAssociation",null,e,t)}}class Is extends y{constructor(){super("menu-config")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getAvailable(e,t={}){return this._get("available/list",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMove(e,t={}){return this._post("move",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class As extends y{constructor(){super("merge-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class bs extends y{constructor(){super("message-record")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}let Ts=class extends y{constructor(){super("message-setting")}async getFindAllByType(e,t={}){return this._get("findAllByType",null,e,t)}async postSendMessageByType(e,t={}){return this._post("sendMessageByType",e,null,t)}};class Ls extends y{constructor(){super("message-tmpl")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getListByModelKey(e,t={}){return this._get("listByModelKey",null,e,t)}async putOpened(e,t={}){return this._put("opened",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postProcessSend(e,t={}){return this._post("processSend",e,null,t)}async postSend(e,t={}){return this._post("send",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Rs extends y{constructor(){super("mobile-homepage")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSelected(e={}){return this._get("getSelected",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postSelect(e,t={}){return this._post("select",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson/{id}",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Es extends y{constructor(){super("mobile-page")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopyById(e,t={}){return this._post("copyById/{id}",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson/{id}",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ws extends y{constructor(){super("model-comprehensive")}async deleteBizServiceApi(e,t={}){return this._delete("biz-service-api",null,e,t)}async getBizServiceApi(e,t={}){return this._get("biz-service-api/list/{modelCategory}",null,e,t)}async putBizServiceApi(e,t={}){return this._put("biz-service-api/{id}",e,null,t)}async postBizServiceApi(e,t={}){return this._post("biz-service-api/{modelCategory}",e,null,t)}async postBizService(e,t={}){return this._post("biz-service/{modelCategory}/{modelKey}/{bsKey}",null,e,t)}async getBizService(e,t={}){return this._get("biz-service/{modelCategory}/{modelKey}/{bsKey}",null,e,t)}async putBizService(e,t={}){return this._put("biz-service/{modelCategory}/{modelKey}/{bsKey}",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service/{modelCategory}/{modelKey}/{bsKey}",null,e,t)}async getEnum(e,t={}){return this._get("enum/info/{modelCategory}",null,e,t)}async postExport(e,t={}){return this._post("export/{modelCategory}/{modelKey}/{tmplKey}",null,e,t)}async getField(e,t={}){return this._get("field/list/{modelCategory}",null,e,t)}async getMethod(e,t={}){return this._get("method/list/{modelCategory}",null,e,t)}async getModel(e={}){return this._get("model/system",null,null,e)}async postQueryAllModelDataAndDrillData(e,t={}){return this._post("queryAllModelDataAndDrillData",e,null,t)}async postQueryFieldValueByRefChainData(e,t={}){return this._post("queryFieldValueByRefChainData/{modelCategory}",e,null,t)}async postQueryModelDataAndDrillData(e,t={}){return this._post("queryModelDataAndDrillData",e,null,t)}async postQueryRefChainData(e,t={}){return this._post("queryRefChainData/{modelCategory}",e,null,t)}async postQueryRefData(e,t={}){return this._post("queryRefData/{modelCategory}",e,null,t)}async postQueryRefDataById(e,t={}){return this._post("queryRefDataById/{modelCategory}",e,null,t)}async postQueryRefDataByIds(e,t={}){return this._post("queryRefDataByIds/{modelCategory}",e,null,t)}async postQuerySearchRefChainData(e,t={}){return this._post("querySearchRefChainData",e,null,t)}async getSubModel(e,t={}){return this._get("sub-model/list",null,e,t)}}class Cs extends y{constructor(){super("model-data")}async postAllModelLiquibaseSoftDeleteDataClean(e={}){return this._post("allModelLiquibaseSoftDeleteDataClean",null,null,e)}async postAllModelSoftDeleteDataClean(e={}){return this._post("allModelSoftDeleteDataClean",null,null,e)}async getCheckFieldValueExist(e,t={}){return this._get("checkFieldValueExist",null,e,t)}async postQueryRefData(e,t={}){return this._post("queryRefData",e,null,t)}async postSingleModelSoftDeleteDataClean(e,t={}){return this._post("singleModelSoftDeleteDataClean",null,e,t)}}class Ds extends y{constructor(){super("model-meta")}async delete(e,t={}){return this._delete("",null,e,t)}async getAgg(e,t={}){return this._get("agg/model",null,e,t)}async getBy(e,t={}){return this._get("by/keys",null,e,t)}async putConstant(e,t={}){return this._put("constant/{modelKey}",e,null,t)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async putDisplay(e={}){return this._put("display/{modelKey}/{fieldKey}",null,null,e)}async getEr(e={}){return this._get("er",null,null,e)}async getFindAllByTypeIn(e,t={}){return this._get("findAllByTypeIn",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListAll(e={}){return this._get("list-all",null,null,e)}async getListAllModelAndFieldByName(e,t={}){return this._get("listAllModelAndFieldByName",null,e,t)}async getListMasterModel(e,t={}){return this._get("listMasterModel",null,e,t)}async getListModelReferencedBy(e,t={}){return this._get("listModelReferencedBy",null,e,t)}async getListSlaveModel(e,t={}){return this._get("listSlaveModel",null,e,t)}async getPage(e,t={}){return this._get("page/getRecycledList",null,e,t)}async putPage(e={}){return this._put("page/recycledRestore/{modelKey}",null,null,e)}async getPermissionEnabled(e,t={}){return this._get("permission-enabled/list",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async putSupportMessage(e={}){return this._put("support-message/{modelKey}/{enabled}",null,null,e)}async getSupportProcess(e={}){return this._get("support-process",null,null,e)}async getTranslateModelFieldExp(e,t={}){return this._get("translateModelFieldExp",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}async putModelKey(e={}){return this._put("{modelKey}/{enabled}",null,null,e)}}class Ps extends y{constructor(){super("model-method")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getDataModel(e={}){return this._get("data-model/list",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getViewModel(e={}){return this._get("view-model/list",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}let Os=class extends y{constructor(){super("model")}async deleteRemove(e,t={}){return this._delete("remove",null,e,t)}};class Ns extends y{constructor(){super("online-form-change-history")}async getList(e,t={}){return this._get("list",null,e,t)}}class Ms extends y{constructor(){super("online-form-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getAppendix(e,t={}){return this._get("appendix/form/list",null,e,t)}async getDataIds(e,t={}){return this._get("dataIds",null,e,t)}async getFindByMaterialNoAndDocOutlineId(e,t={}){return this._get("findByMaterialNoAndDocOutlineId",null,e,t)}async getFindByOfTmplIdAndEdhrInstanceId(e,t={}){return this._get("findByOfTmplIdAndEdhrInstanceId",null,e,t)}async getFindByTmplIdAndMaterialNo(e,t={}){return this._get("findByTmplIdAndMaterialNo",null,e,t)}async getFindOfTaskBySerialNo4Change(e,t={}){return this._get("findOfTaskBySerialNo4Change",null,e,t)}async getFindPage4EdhrInstance(e,t={}){return this._get("findPage4EdhrInstance",null,e,t)}async getFindRelationInfoById(e,t={}){return this._get("findRelationInfoById",null,e,t)}async getForm(e,t={}){return this._get("form/page/list",null,e,t)}async getGetOne(e,t={}){return this._get("getOne",null,e,t)}async getGetRelatedProduct(e,t={}){return this._get("getRelatedProduct",null,e,t)}async getInfo(e,t={}){return this._get("info/byRecordNo",null,e,t)}async postInfos(e={}){return this._post("infos",null,null,e)}async postInsert4Edhr(e,t={}){return this._post("insert4Edhr",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postRefresh(e,t={}){return this._post("refresh/snapshot",null,e,t)}async getRelate(e,t={}){return this._get("relate/form/page/list",null,e,t)}async postRelated(e,t={}){return this._post("related/inst/unbind",e,null,t)}async deleteRelated(e,t={}){return this._delete("related/inst/remove",null,e,t)}async getReverse(e,t={}){return this._get("reverse/trace/page/list",null,e,t)}async postTask(e,t,n={}){return this._post("task/page/list",t,e,n)}async deleteTask(e={}){return this._delete("task/remove/{ofInstId}",null,null,e)}async getTask(e={}){return this._get("task/resend/{ofInstId}",null,null,e)}async putTask(e,t={}){return this._put("task/{id}",e,null,t)}async getTrace(e,t={}){return this._get("trace/page/list",null,e,t)}async putUpdateDescription(e,t={}){return this._put("updateDescription",e,null,t)}}class Bs extends y{constructor(){super("online-form-log")}async getList(e,t={}){return this._get("list",null,e,t)}}class Us extends y{constructor(){super("online-form-tmpl-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ks extends y{constructor(){super("online-form-tmpl")}async postCopy(e={}){return this._post("copy/{id}",null,null,e)}async postCopyVersion(e,t={}){return this._post("copyVersion/{id}",e,null,t)}async getFormModels(e={}){return this._get("formModels/{id}",null,null,e)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async postInfos(e,t={}){return this._post("infos",e,null,t)}async getListBaseAndProcessForm(e,t={}){return this._get("listBaseAndProcessForm",null,e,t)}async getListOnlineFormModels(e,t={}){return this._get("listOnlineFormModels",null,e,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getModel(e={}){return this._get("model/{id}",null,null,e)}async postRelease(e,t,n={}){return this._post("release",t,e,n)}async deleteRemoveById(e,t={}){return this._delete("removeById",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveField(e,t={}){return this._post("saveField",e,null,t)}async postSaveOperation(e,t={}){return this._post("saveOperation",e,null,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async putSetDefault(e={}){return this._put("setDefault/{id}",null,null,e)}async getStash(e,t={}){return this._get("stash",null,e,t)}async putStash(e,t={}){return this._put("stash/{id}",e,null,t)}async putUpdateDesigner(e,t={}){return this._put("updateDesigner/{id}",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById/{id}",e,null,t)}}class xs extends y{constructor(){super("online-form")}async postBase(e,t={}){return this._post("base/submit",e,null,t)}async postBiz(e,t={}){return this._post("biz/bizServiceSummary",e,null,t)}async getDataInit(e={}){return this._get("data-init/protocol/list",null,null,e)}async postProcess(e,t={}){return this._post("process/submit",e,null,t)}async postStash(e,t={}){return this._post("stash",e,null,t)}}class Gs extends y{constructor(){super("online")}async getClients(e,t={}){return this._get("clients",null,e,t)}async getExit(e,t={}){return this._get("exit",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class Ks extends y{constructor(){super("openapi")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetApiInfo(e,t={}){return this._get("getApiInfo",null,e,t)}async getGetApiInfos(e={}){return this._get("getApiInfos",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Vs extends y{constructor(){super("page-designer-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let Fs=class extends y{constructor(){super("permission")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}},$s=class extends y{constructor(){super("plat")}async postApp(e,t={}){return this._post("app/global",e,null,t)}async getApp(e={}){return this._get("app/global/info",null,null,e)}async postBase(e,t={}){return this._post("base",e,null,t)}async postOrg(e,t={}){return this._post("org",e,null,t)}async postSecurity(e,t={}){return this._post("security",e,null,t)}};class Hs extends y{constructor(){super("pm-process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllProcHasPublishedVersion(e,t={}){return this._get("listAllProcHasPublishedVersion",null,e,t)}async getPage(e,t={}){return this._get("page/listByPage",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Xs extends y{constructor(){super("pm-process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy/{id}",null,null,e)}async postDeploy(e,t={}){return this._post("deploy",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveAndDeploy(e,t={}){return this._post("saveAndDeploy",e,null,t)}async postUpdateProcessUser(e,t={}){return this._post("updateProcessUser",e,null,t)}async getId(e,t={}){return this._get("",null,e,t)}}class Ws extends y{constructor(){super("pm-process-engine")}async postApprove(e,t={}){return this._post("approve",e,null,t)}async getHiTask(e,t={}){return this._get("hi-task/extension",null,e,t)}async getInitialTask(e,t={}){return this._get("initial-task/extension",null,e,t)}async getListAllAssignees(e={}){return this._get("listAllAssignees",null,null,e)}async getListAllInitiators(e={}){return this._get("listAllInitiators",null,null,e)}async getModel(e,t={}){return this._get("model",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postProcExecute(e,t={}){return this._post("procExecute",e,null,t)}async getProcInstExtension(e,t={}){return this._get("procInstExtension",null,e,t)}async postReassign(e,t={}){return this._post("reassign",e,null,t)}async postRefuse(e,t={}){return this._post("refuse",e,null,t)}async postReject(e,t={}){return this._post("reject",e,null,t)}async postResubmit(e,t={}){return this._post("resubmit",e,null,t)}async postStartProcInst(e,t={}){return this._post("startProcInst",e,null,t)}async getTask(e,t={}){return this._get("task/extension",null,e,t)}async postTerminate(e,t={}){return this._post("terminate",e,null,t)}async postWithdraw(e,t={}){return this._post("withdraw",e,null,t)}}class js extends y{constructor(){super("print-designer")}async deleteCategory(e,t={}){return this._delete("category",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllVersion(e,t={}){return this._get("listAllVersion",null,e,t)}async getRdo(e,t={}){return this._get("rdo/page/list",null,e,t)}}let zs=class extends y{constructor(){super("print-log")}async postPage(e,t={}){return this._post("page/list",e,null,t)}async postPatchwork(e,t={}){return this._post("patchwork",e,null,t)}};class qs extends y{constructor(){super("print")}async postGenerateZplCode(e,t={}){return this._post("generateZplCode",e,null,t)}async postLabelBackEndPrint(e,t={}){return this._post("labelBackEndPrint",e,null,t)}async getPrintDropdownList(e={}){return this._get("printDropdownList",null,null,e)}async postSendPrintData(e,t={}){return this._post("sendPrintData",e,null,t)}}class Js extends y{constructor(){super("process")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Qs extends y{constructor(){super("process-approval-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getApproveHistory(e,t={}){return this._get("approveHistory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Zs extends y{constructor(){super("process-approve-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Ys extends y{constructor(){super("process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postInitProcessAndProcessVersion(e={}){return this._post("initProcessAndProcessVersion/{type}",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class en extends y{constructor(){super("process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy/{id}",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async postPublish(e={}){return this._post("publish/{id}",null,null,e)}async getId(e,t={}){return this._get("",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class tn extends y{constructor(){super("process-engine")}async postExecute(e,t={}){return this._post("execute",e,null,t)}async getHiTask(e,t={}){return this._get("hi-task/extension",null,e,t)}async getInitialTask(e,t={}){return this._get("initial-task/extension",null,e,t)}async getModel(e,t={}){return this._get("model",null,e,t)}async postReassignment(e,t={}){return this._post("reassignment",e,null,t)}async getTask(e,t={}){return this._get("task/extension",null,e,t)}}class sn extends y{constructor(){super("process-event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class nn extends y{constructor(){super("process-graph")}async getGraphInfo(e,t={}){return this._get("graphInfo",null,e,t)}}class rn extends y{constructor(){super("process-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ln extends y{constructor(){super("process-instance-relation-")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class an extends y{constructor(){super("process-message-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class un extends y{constructor(){super("process-node-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class on extends y{constructor(){super("process-path-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class cn extends y{constructor(){super("process-path")}async getFindAllByOfInstanceId(e,t={}){return this._get("findAllByOfInstanceId",null,e,t)}async getFindAllByTmplId(e,t={}){return this._get("findAllByTmplId",null,e,t)}}class gn extends y{constructor(){super("process-task-done")}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class hn extends y{constructor(){super("process-task-todo")}async getAllUser(e,t={}){return this._get("all-user/page/list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class dn extends y{constructor(){super("process-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postActivate(e={}){return this._post("activate/{id}",null,null,e)}async putDeploy(e,t={}){return this._put("deploy",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}}class pn extends y{constructor(){super("processTest")}async getCompleteTask(e,t={}){return this._get("completeTask",null,e,t)}async getDeploy(e,t={}){return this._get("deploy",null,e,t)}async getReadXml(e,t={}){return this._get("readXml",null,e,t)}async getSignal(e,t={}){return this._get("signal",null,e,t)}async getStart(e,t={}){return this._get("start",null,e,t)}async getUpdateVar(e,t={}){return this._get("updateVar",null,e,t)}async getWithdraw(e,t={}){return this._get("withdraw",null,e,t)}}class yn extends y{constructor(){super("product-release")}async getGetProductReleaseByMaterialNo(e,t={}){return this._get("getProductReleaseByMaterialNo",null,e,t)}async getGetProductReleaseForm(e,t={}){return this._get("getProductReleaseForm",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class _n extends y{constructor(){super("publish-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCreateRelease(e,t={}){return this._post("createRelease",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postPublishToProd(e,t={}){return this._post("publishToProd",e,null,t)}async postPublishToTest(e,t={}){return this._post("publishToTest",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let fn=class extends y{constructor(){super("regexp")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}};class vn extends y{constructor(){super("report")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDeploy(e,t={}){return this._post("deploy",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfos(e,t={}){return this._get("infos",null,e,t)}async getList(e={}){return this._get("list/type",null,null,e)}async getListModelReport(e,t={}){return this._get("listModelReport",null,e,t)}async getListSystemModelFields(e,t={}){return this._get("listSystemModelFields",null,e,t)}async getListSystemModels(e={}){return this._get("listSystemModels",null,null,e)}async putMove(e,t={}){return this._put("move",e,null,t)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async putUndeploy(e={}){return this._put("undeploy/{id}",null,null,e)}async getUser(e={}){return this._get("user/permission/{id}",null,null,e)}async postView(e,t={}){return this._post("view/page/list",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Sn extends y{constructor(){super("report-data-set")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGenSql(e,t={}){return this._get("genSql",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postListByPage4DataSet(e,t={}){return this._post("listByPage4DataSet",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postPreview(e,t={}){return this._post("preview",e,null,t)}async postUpdateName(e,t={}){return this._post("updateName",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class mn extends y{constructor(){super("report-data")}async postListByPage(e,t={}){return this._post("listByPage",e,null,t)}async postListByPage4Cross(e,t={}){return this._post("listByPage4Cross",e,null,t)}async postListStatistic(e,t={}){return this._post("listStatistic",e,null,t)}}let In=class extends y{constructor(){super("role")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t={}){return this._put("",null,e,t)}},An=class extends y{constructor(){super("role-permission")}async post(e,t={}){return this._post("",e,null,t)}async postBulk(e,t={}){return this._post("bulk",e,null,t)}async getMenu(e,t={}){return this._get("menu/list",null,e,t)}async postRemove(e,t={}){return this._post("remove",e,null,t)}};class bn extends y{constructor(){super("script")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoByKey(e,t={}){return this._get("infoByKey",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Tn extends y{constructor(){super("script-assistant")}async getRag(e={}){return this._get("rag",null,null,e)}async postScriptComplete(e,t={}){return this._post("scriptComplete",e,null,t)}}class Ln extends y{constructor(){super("script-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putSetVersionActive(e,t={}){return this._put("setVersionActive",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Rn extends y{constructor(){super("script-version-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class En extends y{constructor(){super("service-orchestration")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoByKey(e,t={}){return this._get("infoByKey",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class wn extends y{constructor(){super("service-orchestration-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putSetVersionActive(e,t={}){return this._put("setVersionActive",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Cn extends y{constructor(){super("service-orchestration-version-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class Dn extends y{constructor(){super("sign-history")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let Pn=class extends y{constructor(){super("sign-log")}async postOperators(e,t={}){return this._post("operators",e,null,t)}async postPage(e,t={}){return this._post("page/list",e,null,t)}};class On extends y{constructor(){super("signature")}async postGetSignatureImage(e,t={}){return this._post("getSignatureImage",e,null,t)}async postGetSignatureUploadOrWriteImage(e,t={}){return this._post("getSignatureUploadOrWriteImage",e,null,t)}}class Nn extends y{constructor(){super("sql-view-model")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Mn extends y{constructor(){super("sql-view")}async postBizService(e,t={}){return this._post("biz-service/{modelKey}/{bsKey}",null,e,t)}}class Bn extends y{constructor(){super("stash")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByClientKey(e,t={}){return this._get("findByClientKey",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Un extends y{constructor(){super("sub-model-process")}async postAllSubModelDataClean(e={}){return this._post("allSubModelDataClean",null,null,e)}}class kn extends y{constructor(){super("sys-config")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class xn extends y{constructor(){super("system-var")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSystemVarByKeys(e,t={}){return this._get("getSystemVarByKeys",null,e,t)}async getGetVarByKeys(e,t={}){return this._get("getVarByKeys",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getListSystemVarCache(e={}){return this._get("listSystemVarCache",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Gn extends y{constructor(){super("trace-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByTraceId(e,t={}){return this._get("findByTraceId",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Kn extends y{constructor(){super("trace-log-details")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postAppDataTrace(e,t={}){return this._post("app-data-trace/page/list",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoTree(e,t={}){return this._get("infoTree",null,e,t)}async getInfoTreeById(e,t={}){return this._get("infoTreeById",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getOperators(e={}){return this._get("operators",null,null,e)}async getPage(e,t={}){return this._get("page/listByRecodeId",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Vn extends y{constructor(){super("trace-mainline")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Fn extends y{constructor(){super("trace-mainline-ext")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class $n extends y{constructor(){super("trace-setting")}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getTreeByModelKey(e,t={}){return this._get("treeByModelKey",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Hn extends y{constructor(){super("user-group")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getSearch(e,t={}){return this._get("search",null,e,t)}async getUser(e={}){return this._get("user/role/permission/list",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Xn extends y{constructor(){super("user-group-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postBatch(e,t={}){return this._post("batch",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Wn extends y{constructor(){super("view-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getBizService(e,t={}){return this._get("biz-service/{modelKey}/{bsKey}",null,e,t)}async postBizService(e,t={}){return this._post("biz-service/{modelKey}/{bsKey}",null,e,t)}async putBizService(e,t={}){return this._put("biz-service/{modelKey}/{bsKey}",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service/{modelKey}/{bsKey}",null,e,t)}async getField(e,t={}){return this._get("field/info",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getSql(e,t={}){return this._get("sql",null,e,t)}async putSupportMessage(e={}){return this._put("support-message/{modelKey}/{enabled}",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class jn extends y{constructor(){super("wash")}async getWashDictLabelField(e={}){return this._get("washDictLabelField",null,null,e)}async getWashEdhrAndOfInst(e={}){return this._get("washEdhrAndOfInst",null,null,e)}}class zn extends y{constructor(){super("webpage")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCancelOccupyWebPage(e,t={}){return this._post("cancelOccupyWebPage",e,null,t)}async postCopyById(e,t={}){return this._post("copyById/{id}",e,null,t)}async postGetWebPageOccupyMsg(e,t={}){return this._post("getWebPageOccupyMsg",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postLockWebPage(e,t={}){return this._post("lockWebPage",e,null,t)}async postOccupyWebPage(e,t={}){return this._post("occupyWebPage",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postUnLockWebPage(e,t={}){return this._post("unLockWebPage",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson/{id}",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}let qn=class extends y{constructor(){super("api")}async postApp(e,t,n={}){return this._post("app/visible/menu",t,e,n)}async getApp(e,t={}){return this._get("app/report/infos",null,e,t)}async deleteApp(e,t={}){return this._delete("app/dropTestDb",null,e,t)}async postAuditLog(e,t={}){return this._post("audit-log/save",e,null,t)}async getAuditLog(e,t={}){return this._get("audit-log/operators",null,e,t)}async postDatamove(e,t={}){return this._post("datamove/execute",e,null,t)}async postDatasource(e,t,n={}){return this._post("datasource/column-format",t,e,n)}async getDatasource(e={}){return this._get("datasource/info",null,null,e)}async postEdhr(e,t={}){return this._post("edhr/test/transferAllWorkItem",e,null,t)}async getIe(e,t={}){return this._get("ie/data/report",null,e,t)}async postModelComprehensive(e,t={}){return this._post("model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",null,e,t)}async getModelComprehensive(e,t={}){return this._get("model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",null,e,t)}async putModelComprehensive(e,t={}){return this._put("model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",null,e,t)}async deleteModelComprehensive(e,t={}){return this._delete("model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",null,e,t)}async getProcess(e={}){return this._get("process/list/all",null,null,e)}},Jn=class{constructor(){i(this,"appBranch",new at),i(this,"appGlobalSettings",new ut),i(this,"appGrantedUser",new ot),i(this,"appOrg",new ct),i(this,"appPublishLog",new gt),i(this,"appState",new ht),i(this,"appUser",new dt),i(this,"approvalLog",new pt),i(this,"auditLog",new yt),i(this,"basicConfig",new _t),i(this,"bizEvent",new ft),i(this,"bizProcessDefinition",new vt),i(this,"bizProcessDefinitionVersion",new St),i(this,"bizServiceCrud",new mt),i(this,"bizService",new It),i(this,"bom",new At),i(this,"category",new bt),i(this,"categoryRelation",new Tt),i(this,"chat",new Lt),i(this,"codeTs",new Rt),i(this,"commitLog",new Et),i(this,"commonInfoCard",new wt),i(this,"controlConfig",new Ct),i(this,"customerComplaint",new Dt),i(this,"dashboard",new Pt),i(this,"dataModel",new Ot),i(this,"dataSource",new Nt),i(this,"dataTrace",new Mt),i(this,"designerCommon",new Bt),i(this,"designerLock",new Ut),i(this,"designerOperateLog",new kt),i(this,"devops",new xt),i(this,"difyChat",new Gt),i(this,"docControlStarted",new Kt),i(this,"docControlTaskDone",new Vt),i(this,"docControlTaskTodo",new Ft),i(this,"docControl",new $t),i(this,"docOutline",new Ht),i(this,"document",new Xt),i(this,"edhrInstance",new Wt),i(this,"edhrInstanceRelation",new jt),i(this,"edhrInstanceSearchHistory",new zt),i(this,"edhrTmpl",new qt),i(this,"eleSearch",new Jt),i(this,"enumModel",new Qt),i(this,"enumModelField",new Zt),i(this,"event",new Yt),i(this,"eventLog",new es),i(this,"excelTmpl",new ts),i(this,"excel",new ss),i(this,"fieldMeta",new ns),i(this,"field",new rs),i(this,"fileResource",new ls),i(this,"fileTask",new is),i(this,"file",new as),i(this,"formRelate",new us),i(this,"frontOperateLog",new os),i(this,"globalMethod",new cs),i(this,"i18NInfo",new gs),i(this,"instanceRelation",new hs),i(this,"ipaas",new ds),i(this,"job",new ps),i(this,"jobLog",new ys),i(this,"jsEngine",new _s),i(this,"label",new fs),i(this,"labelLog",new vs),i(this,"loginLog",new Ss),i(this,"medPro",new ms),i(this,"menuConfig",new Is),i(this,"mergeLog",new As),i(this,"messageRecord",new bs),i(this,"messageSetting",new Ts),i(this,"messageTmpl",new Ls),i(this,"mobileHomepage",new Rs),i(this,"mobilePage",new Es),i(this,"modelComprehensive",new ws),i(this,"modelData",new Cs),i(this,"modelMeta",new Ds),i(this,"modelMethod",new Ps),i(this,"model",new Os),i(this,"onlineFormChangeHistory",new Ns),i(this,"onlineFormInstance",new Ms),i(this,"onlineFormLog",new Bs),i(this,"onlineFormTmplLog",new Us),i(this,"onlineFormTmpl",new ks),i(this,"onlineForm",new xs),i(this,"online",new Gs),i(this,"openapi",new Ks),i(this,"pageDesignerLog",new Vs),i(this,"permission",new Fs),i(this,"plat",new $s),i(this,"pmProcessDefinition",new Hs),i(this,"pmProcessDefinitionVersion",new Xs),i(this,"pmProcessEngine",new Ws),i(this,"printDesigner",new js),i(this,"printLog",new zs),i(this,"print",new qs),i(this,"process",new Js),i(this,"processApprovalLog",new Qs),i(this,"processApproveUser",new Zs),i(this,"processDefinition",new Ys),i(this,"processDefinitionVersion",new en),i(this,"processEngine",new tn),i(this,"processEvent",new sn),i(this,"processGraph",new nn),i(this,"processInstance",new rn),i(this,"processInstanceRelation",new ln),i(this,"processMessageUser",new an),i(this,"processNodeDefinition",new un),i(this,"processPathUser",new on),i(this,"processPath",new cn),i(this,"processTaskDone",new gn),i(this,"processTaskTodo",new hn),i(this,"processVersion",new dn),i(this,"processTest",new pn),i(this,"productRelease",new yn),i(this,"publishLog",new _n),i(this,"regexp",new fn),i(this,"report",new vn),i(this,"reportDataSet",new Sn),i(this,"reportData",new mn),i(this,"role",new In),i(this,"rolePermission",new An),i(this,"script",new bn),i(this,"scriptAssistant",new Tn),i(this,"scriptVersion",new Ln),i(this,"scriptVersionLog",new Rn),i(this,"serviceOrchestration",new En),i(this,"serviceOrchestrationVersion",new wn),i(this,"serviceOrchestrationVersionLog",new Cn),i(this,"signHistory",new Dn),i(this,"signLog",new Pn),i(this,"signature",new On),i(this,"sqlViewModel",new Nn),i(this,"sqlView",new Mn),i(this,"stash",new Bn),i(this,"subModelProcess",new Un),i(this,"sysConfig",new kn),i(this,"systemVar",new xn),i(this,"traceLog",new Gn),i(this,"traceLogDetails",new Kn),i(this,"traceMainline",new Vn),i(this,"traceMainlineExt",new Fn),i(this,"traceSetting",new $n),i(this,"userGroup",new Hn),i(this,"userGroupRelation",new Xn),i(this,"viewModel",new Wn),i(this,"wash",new jn),i(this,"webpage",new zn),i(this,"api",new qn)}};function Qn(s){return s&&s.__esModule&&Object.prototype.hasOwnProperty.call(s,"default")?s.default:s}var z,Se;function Zn(){if(Se)return z;Se=1;function s(u){if(typeof u!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(u))}function e(u,r){for(var l="",o=0,c=-1,d=0,a,p=0;p<=u.length;++p){if(p<u.length)a=u.charCodeAt(p);else{if(a===47)break;a=47}if(a===47){if(!(c===p-1||d===1))if(c!==p-1&&d===2){if(l.length<2||o!==2||l.charCodeAt(l.length-1)!==46||l.charCodeAt(l.length-2)!==46){if(l.length>2){var _=l.lastIndexOf("/");if(_!==l.length-1){_===-1?(l="",o=0):(l=l.slice(0,_),o=l.length-1-l.lastIndexOf("/")),c=p,d=0;continue}}else if(l.length===2||l.length===1){l="",o=0,c=p,d=0;continue}}r&&(l.length>0?l+="/..":l="..",o=2)}else l.length>0?l+="/"+u.slice(c+1,p):l=u.slice(c+1,p),o=p-c-1;c=p,d=0}else a===46&&d!==-1?++d:d=-1}return l}function t(u,r){var l=r.dir||r.root,o=r.base||(r.name||"")+(r.ext||"");return l?l===r.root?l+o:l+u+o:o}var n={resolve:function(){for(var r="",l=!1,o,c=arguments.length-1;c>=-1&&!l;c--){var d;c>=0?d=arguments[c]:(o===void 0&&(o=process.cwd()),d=o),s(d),d.length!==0&&(r=d+"/"+r,l=d.charCodeAt(0)===47)}return r=e(r,!l),l?r.length>0?"/"+r:"/":r.length>0?r:"."},normalize:function(r){if(s(r),r.length===0)return".";var l=r.charCodeAt(0)===47,o=r.charCodeAt(r.length-1)===47;return r=e(r,!l),r.length===0&&!l&&(r="."),r.length>0&&o&&(r+="/"),l?"/"+r:r},isAbsolute:function(r){return s(r),r.length>0&&r.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var r,l=0;l<arguments.length;++l){var o=arguments[l];s(o),o.length>0&&(r===void 0?r=o:r+="/"+o)}return r===void 0?".":n.normalize(r)},relative:function(r,l){if(s(r),s(l),r===l||(r=n.resolve(r),l=n.resolve(l),r===l))return"";for(var o=1;o<r.length&&r.charCodeAt(o)===47;++o);for(var c=r.length,d=c-o,a=1;a<l.length&&l.charCodeAt(a)===47;++a);for(var p=l.length,_=p-a,S=d<_?d:_,v=-1,f=0;f<=S;++f){if(f===S){if(_>S){if(l.charCodeAt(a+f)===47)return l.slice(a+f+1);if(f===0)return l.slice(a+f)}else d>S&&(r.charCodeAt(o+f)===47?v=f:f===0&&(v=0));break}var A=r.charCodeAt(o+f),P=l.charCodeAt(a+f);if(A!==P)break;A===47&&(v=f)}var I="";for(f=o+v+1;f<=c;++f)(f===c||r.charCodeAt(f)===47)&&(I.length===0?I+="..":I+="/..");return I.length>0?I+l.slice(a+v):(a+=v,l.charCodeAt(a)===47&&++a,l.slice(a))},_makeLong:function(r){return r},dirname:function(r){if(s(r),r.length===0)return".";for(var l=r.charCodeAt(0),o=l===47,c=-1,d=!0,a=r.length-1;a>=1;--a)if(l=r.charCodeAt(a),l===47){if(!d){c=a;break}}else d=!1;return c===-1?o?"/":".":o&&c===1?"//":r.slice(0,c)},basename:function(r,l){if(l!==void 0&&typeof l!="string")throw new TypeError('"ext" argument must be a string');s(r);var o=0,c=-1,d=!0,a;if(l!==void 0&&l.length>0&&l.length<=r.length){if(l.length===r.length&&l===r)return"";var p=l.length-1,_=-1;for(a=r.length-1;a>=0;--a){var S=r.charCodeAt(a);if(S===47){if(!d){o=a+1;break}}else _===-1&&(d=!1,_=a+1),p>=0&&(S===l.charCodeAt(p)?--p===-1&&(c=a):(p=-1,c=_))}return o===c?c=_:c===-1&&(c=r.length),r.slice(o,c)}else{for(a=r.length-1;a>=0;--a)if(r.charCodeAt(a)===47){if(!d){o=a+1;break}}else c===-1&&(d=!1,c=a+1);return c===-1?"":r.slice(o,c)}},extname:function(r){s(r);for(var l=-1,o=0,c=-1,d=!0,a=0,p=r.length-1;p>=0;--p){var _=r.charCodeAt(p);if(_===47){if(!d){o=p+1;break}continue}c===-1&&(d=!1,c=p+1),_===46?l===-1?l=p:a!==1&&(a=1):l!==-1&&(a=-1)}return l===-1||c===-1||a===0||a===1&&l===c-1&&l===o+1?"":r.slice(l,c)},format:function(r){if(r===null||typeof r!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof r);return t("/",r)},parse:function(r){s(r);var l={root:"",dir:"",base:"",ext:"",name:""};if(r.length===0)return l;var o=r.charCodeAt(0),c=o===47,d;c?(l.root="/",d=1):d=0;for(var a=-1,p=0,_=-1,S=!0,v=r.length-1,f=0;v>=d;--v){if(o=r.charCodeAt(v),o===47){if(!S){p=v+1;break}continue}_===-1&&(S=!1,_=v+1),o===46?a===-1?a=v:f!==1&&(f=1):a!==-1&&(f=-1)}return a===-1||_===-1||f===0||f===1&&a===_-1&&a===p+1?_!==-1&&(p===0&&c?l.base=l.name=r.slice(1,_):l.base=l.name=r.slice(p,_)):(p===0&&c?(l.name=r.slice(1,a),l.base=r.slice(1,_)):(l.name=r.slice(p,a),l.base=r.slice(p,_)),l.ext=r.slice(a,_)),p>0?l.dir=r.slice(0,p-1):c&&(l.dir="/"),l},sep:"/",delimiter:":",win32:null,posix:null};return n.posix=n,z=n,z}var Yn=Zn(),er=Qn(Yn);class h extends oe{constructor(e){super(er.join("/gct-platform/api",e))}}class tr extends h{constructor(){super("agent")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class sr extends h{constructor(){super("apk")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetActiveApp(e={}){return this._get("getActiveApp",null,null,e)}async getGetIp(e={}){return this._get("getIp",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postUpload(e={}){return this._post("upload/apk",null,null,e)}async putId(e,t={}){return this._put("",null,e,t)}}class nr extends h{constructor(){super("app")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async putAppCleanUp(e={}){return this._put("appCleanUp/{id}",null,null,e)}async putAppRestore(e={}){return this._put("appRestore/{id}/{userId}",null,null,e)}async getCheckAppMaintainerInTenant(e={}){return this._get("checkAppMaintainerInTenant/{appId}",null,null,e)}async postCreateBranch(e,t={}){return this._post("createBranch/{appId}",e,null,t)}async getDatamove(e={}){return this._get("datamove/apps",null,null,e)}async putDisable(e={}){return this._put("disable/{id}",null,null,e)}async putEnable(e={}){return this._put("enable/{id}",null,null,e)}async getFieldMeta(e,t={}){return this._get("field-meta/list",null,e,t)}async getGetAppCount(e,t={}){return this._get("getAppCount/{tenantId}",null,e,t)}async getGetCurrentBranch(e={}){return this._get("getCurrentBranch/{appId}",null,null,e)}async getGetLatestCommit(e,t={}){return this._get("getLatestCommit/{appId}",null,e,t)}async getGetMobileDbFileUrl(e={}){return this._get("getMobileDbFileUrl/{appId}",null,null,e)}async postImportVersion(e,t={}){return this._post("importVersion/{appId}",e,null,t)}async getImportVersionPreview(e,t={}){return this._get("importVersionPreview/{appId}",null,e,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getListBranch(e={}){return this._get("listBranch/{appId}",null,null,e)}async getMerge(e,t={}){return this._get("merge/page/list/{appId}",null,e,t)}async postMerge(e,t={}){return this._post("merge/{appId}",e,null,t)}async getMergePreview(e,t={}){return this._get("mergePreview/{appId}",null,e,t)}async getModelMeta(e,t={}){return this._get("model-meta/list",null,e,t)}async getPage(e,t={}){return this._get("page/listReleasedApp",null,e,t)}async getPublishLogInfo(e,t={}){return this._get("publishLogInfo/{appId}",null,e,t)}async getPublishLogPageList(e,t={}){return this._get("publishLogPageList/{appId}",null,e,t)}async getReport(e,t={}){return this._get("report/infos",null,e,t)}async postRevert(e,t={}){return this._post("revert/{appId}",e,null,t)}async postSwitchBranch(e,t={}){return this._post("switchBranch/{appId}",e,null,t)}async getTenant(e,t={}){return this._get("tenant/role/{roles}/apps/count",null,e,t)}async postUpload(e={}){return this._post("upload/appPkg",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class rr extends h{constructor(){super("app-member")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postListMulti(e={}){return this._post("list-multi",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putTransfer(e={}){return this._put("transfer/{id}/{targetUserId}",null,null,e)}async putId(e,t={}){return this._put("",null,e,t)}}class lr extends h{constructor(){super("app-setting")}async delete(e,t={}){return this._delete("",null,e,t)}async getCheckAppUserAdmin(e,t={}){return this._get("checkAppUserAdmin",null,e,t)}async getCheckAppUserVisibility(e,t={}){return this._get("checkAppUserVisibility",null,e,t)}async deleteDeveloper(e,t={}){return this._delete("developer/delete",null,e,t)}async postDeveloper(e={}){return this._post("developer/saveSettingBatch",null,null,e)}async getInfoByAppId(e,t={}){return this._get("infoByAppId",null,e,t)}async postSaveSetting(e,t={}){return this._post("saveSetting",e,null,t)}async postSaveSettingBatch(e={}){return this._post("saveSettingBatch",null,null,e)}}class ir extends h{constructor(){super("assets")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMove(e={}){return this._post("move/{assetId}/category/{categoryId}",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postUpload(e={}){return this._post("upload/{categoryId}",null,null,e)}}class ar extends h{constructor(){super("audit-log")}async postExport(e,t={}){return this._post("export",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getModules(e={}){return this._get("modules",null,null,e)}async getOperateTypes(e={}){return this._get("operateTypes",null,null,e)}async getOperators(e={}){return this._get("operators",null,null,e)}async postPage(e,t={}){return this._post("page/list",e,null,t)}}class ur extends h{constructor(){super("bi-data-set")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postPreview(e,t={}){return this._post("preview",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class or extends h{constructor(){super("bi-file-dataset-config")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getListDatasetid(e,t={}){return this._get("list-datasetid",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class cr extends h{constructor(){super("bi-file")}async postUpload(e,t={}){return this._post("upload",null,e,t)}}class gr extends h{constructor(){super("bi-share")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class hr extends h{constructor(){super("category")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postAddDefaultCusComp(e={}){return this._post("addDefaultCusComp",null,null,e)}async deleteDeleteDatasetCategory(e,t={}){return this._delete("deleteDatasetCategory",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListDatasetCategory(e,t={}){return this._get("listDatasetCategory",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postSaveDatasetCategory(e,t={}){return this._post("saveDatasetCategory",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class dr extends h{constructor(){super("dashboard")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMove(e,t={}){return this._post("move",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class pr extends h{constructor(){super("data-source")}async post(e,t={}){return this._post("",e,null,t)}async put(e,t={}){return this._put("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async putEnabled(e,t={}){return this._put("enabled",e,null,t)}async postExecuteUpdate(e,t={}){return this._post("executeUpdate",e,null,t)}async getFindById(e,t={}){return this._get("findById",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postQueryData(e,t={}){return this._post("queryData",null,e,t)}async postSql(e,t={}){return this._post("sql/column/information",e,null,t)}async postTestConnect(e,t={}){return this._post("testConnect",e,null,t)}}class yr extends h{constructor(){super("data-trace")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postExport(e,t={}){return this._post("export",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getOperators(e={}){return this._get("operators",null,null,e)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class _r extends h{constructor(){super("database")}async postAddDatabase(e,t={}){return this._post("addDatabase",e,null,t)}async getColumn(e,t={}){return this._get("column/information",null,e,t)}async getDb(e,t={}){return this._get("db/information",null,e,t)}async postGetDatabaseByPage(e,t={}){return this._post("getDatabaseByPage",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async deleteRemoveDatabase(e,t={}){return this._delete("removeDatabase",null,e,t)}async postRunSql(e,t={}){return this._post("runSql",e,null,t)}async getTable(e,t={}){return this._get("table/information",null,e,t)}async postTestDatabaseConn(e,t={}){return this._post("testDatabaseConn",e,null,t)}async putUpdateDatabase(e,t={}){return this._put("updateDatabase",e,null,t)}async getView(e,t={}){return this._get("view/information",null,e,t)}}class fr extends h{constructor(){super("dataset")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getChangeCategory(e,t={}){return this._get("change-category",null,e,t)}async getColumnValue(e,t={}){return this._get("column-value",null,e,t)}async putEncode(e,t={}){return this._put("encode",null,e,t)}async postGenColumn(e,t,n={}){return this._post("gen-column",t,e,n)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoNoHeader(e,t={}){return this._get("infoNoHeader",null,e,t)}async getList(e,t={}){return this._get("list/keys",null,e,t)}async getListCategoryDataset(e,t={}){return this._get("list-category-dataset",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postRunScript(e,t={}){return this._post("runScript",e,null,t)}async postRunScriptNoHeader(e,t={}){return this._post("runScriptNoHeader",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class vr extends h{constructor(){super("dataset-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Sr extends h{constructor(){super("datasource-devops")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postList(e,t={}){return this._post("list",e,null,t)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class mr extends h{constructor(){super("datasource-move")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postMove(e,t={}){return this._post("move",e,null,t)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Ir extends h{constructor(){super("datasource-move-data")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Ar extends h{constructor(){super("datasource-move-detail")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class br extends h{constructor(){super("external-message")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Tr extends h{constructor(){super("file-task")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postBatch(e,t={}){return this._post("batch/download",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Lr extends h{constructor(){super("file")}async postDataPreview(e,t={}){return this._post("data-preview",e,null,t)}async postUploadCommon(e={}){return this._post("upload-common",null,null,e)}async postUploadDataset(e={}){return this._post("upload-dataset",null,null,e)}async postUpload(e,t={}){return this._post("upload/image",null,e,t)}}class Rr extends h{constructor(){super("front-release")}async getCleanCache(e={}){return this._get("cleanCache",null,null,e)}}class Er extends h{constructor(){super("i18n-config")}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class wr extends h{constructor(){super("i18n-info")}async delete(e,t={}){return this._delete("",null,e,t)}async postExternal(e={}){return this._post("external/lang/sync",null,null,e)}async getLang(e,t={}){return this._get("lang/download",null,e,t)}async postLang(e,t={}){return this._post("lang/upload",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}}class Cr extends h{constructor(){super("internal-message")}async post(e,t={}){return this._post("",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putRead(e={}){return this._put("read/{id}",null,null,e)}async getUnread(e={}){return this._get("unread/count",null,null,e)}}class Dr extends h{constructor(){super("invoke-log")}async getExport(e,t={}){return this._get("export",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class Pr extends h{constructor(){super("knowledge-base")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Or extends h{constructor(){super("knowledge-base-chunk")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Nr extends h{constructor(){super("knowledge-base-doc")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Mr extends h{constructor(){super("ldap")}async postUpload(e={}){return this._post("upload/certificate",null,null,e)}}class Br extends h{constructor(){super("license-unbind-log")}async post(e,t={}){return this._post("",e,null,t)}}class Ur extends h{constructor(){super("license")}async getActivate(e,t={}){return this._get("activate",null,e,t)}async postActivates(e,t={}){return this._post("activates",null,e,t)}async postActivatesOffline(e,t={}){return this._post("activatesOffline",null,e,t)}async getCheckLicense(e={}){return this._get("checkLicense",null,null,e)}async getClients(e,t={}){return this._get("clients",null,e,t)}async getGetAppBasicInfo(e,t={}){return this._get("getAppBasicInfo",null,e,t)}async getGetExpireMsg(e,t={}){return this._get("getExpireMsg",null,e,t)}async getGetUsers(e,t={}){return this._get("getUsers",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getShareTag(e,t={}){return this._get("shareTag",null,e,t)}async getSourceTag(e,t={}){return this._get("sourceTag",null,e,t)}async getUnbind(e,t={}){return this._get("unbind",null,e,t)}async getUninstall(e={}){return this._get("uninstall",null,null,e)}async getVerify(e={}){return this._get("verify",null,null,e)}}class kr extends h{constructor(){super("login-log")}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class xr extends h{constructor(){super("login")}async postCheckApp(e,t={}){return this._post("checkApp",e,null,t)}async postSendMsg(e,t={}){return this._post("sendMsg",e,null,t)}async postSign(e,t={}){return this._post("sign",e,null,t)}async getSignOut(e,t={}){return this._get("signOut",null,e,t)}async getUserAppAuth(e,t={}){return this._get("userAppAuth",null,e,t)}}class Gr extends h{constructor(){super("manager")}async getPlat(e,t={}){return this._get("plat/page/list",null,e,t)}async getTenant(e,t={}){return this._get("tenant/page/list",null,e,t)}}class Kr extends h{constructor(){super("message-setting")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetTypeCount(e={}){return this._get("getTypeCount",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMqtt(e,t={}){return this._post("mqtt/send",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postSendEmailMessage(e,t={}){return this._post("sendEmailMessage",e,null,t)}async postSendMessage(e,t={}){return this._post("sendMessage",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Vr extends h{constructor(){super("minio-file")}async postBase64Upload(e,t={}){return this._post("base64Upload",e,null,t)}async getDownload(e,t={}){return this._get("download",null,e,t)}}class Fr extends h{constructor(){super("model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class $r extends h{constructor(){super("model-provider")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Hr extends h{constructor(){super("nav-menu")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSelected(e={}){return this._get("getSelected",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postSelect(e,t={}){return this._post("select",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson/{id}",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Xr extends h{constructor(){super("nav-page")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson/{id}",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Wr extends h{constructor(){super("openapi-group")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info/page/list",null,e,t)}async getList(e,t={}){return this._get("list/download",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class jr extends h{constructor(){super("openapi-key-grant")}async post(e={}){return this._post("",null,null,e)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getOpenapi(e={}){return this._get("openapi/tenantList",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class zr extends h{constructor(){super("org")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async postInputCheck(e,t={}){return this._post("inputCheck",e,null,t)}async getList(e={}){return this._get("list",null,null,e)}async postOrgHavePersonCheck(e,t={}){return this._post("orgHavePersonCheck",e,null,t)}async postTransferAndDelete(e,t={}){return this._post("transferAndDelete",e,null,t)}async postUser(e,t={}){return this._post("user/update",e,null,t)}async getUser(e,t={}){return this._get("user/page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class qr extends h{constructor(){super("org-user-picker")}async getManagement(e,t={}){return this._get("management/user/listByIds",null,e,t)}async getTenant(e,t={}){return this._get("tenant/management/user/listByIds",null,e,t)}}class Jr extends h{constructor(){super("permission")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Qr extends h{constructor(){super("plat")}async getApp(e={}){return this._get("app/global/info/{appId}",null,null,e)}async postApp(e,t={}){return this._post("app/global/{appId}",e,null,t)}async postBase(e,t={}){return this._post("base",e,null,t)}async postDingtalk(e,t={}){return this._post("dingtalk",e,null,t)}async postEmail(e,t={}){return this._post("email",e,null,t)}async postFeishu(e,t={}){return this._post("feishu",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postLogin(e,t={}){return this._post("login",e,null,t)}async postOrg(e,t={}){return this._post("org",e,null,t)}async postSecurity(e,t={}){return this._post("security",e,null,t)}async postTheme(e,t={}){return this._post("theme",e,null,t)}async postUploadCertFile(e={}){return this._post("uploadCertFile",null,null,e)}async postUserRole(e,t={}){return this._post("user-role/reset",e,null,t)}async deleteUserRole(e,t={}){return this._delete("user-role",null,e,t)}async getUser(e={}){return this._get("user/field",null,null,e)}async getVersion(e={}){return this._get("version",null,null,e)}async postWatermark(e,t={}){return this._post("watermark",e,null,t)}async postWxwork(e,t={}){return this._post("wxwork",e,null,t)}}class Zr extends h{constructor(){super("plugin")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCancelUpload(e,t={}){return this._post("cancelUpload",e,null,t)}async putDeleteCategory(e,t={}){return this._put("deleteCategory",e,null,t)}async getGetImages(e,t={}){return this._get("getImages",null,e,t)}async postGetTenantCompList(e,t={}){return this._post("getTenantCompList",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async postUploadZip(e,t={}){return this._post("uploadZip",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Yr extends h{constructor(){super("plugin-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postList(e,t={}){return this._post("list",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class el extends h{constructor(){super("pm-process-delegate")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class tl extends h{constructor(){super("pm-process-delegate-detail")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class sl extends h{constructor(){super("pm-process-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class nl extends h{constructor(){super("pm-task-done")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class rl extends h{constructor(){super("pm-task-todo")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ll extends h{constructor(){super("pn-page")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class il extends h{constructor(){super("pn-project")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getChangeCategory(e,t={}){return this._get("change-category",null,e,t)}async postCopy(e,t={}){return this._post("copy",e,null,t)}async getExport(e,t={}){return this._get("export",null,e,t)}async postImport(e,t={}){return this._post("import",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoNoHeader(e,t={}){return this._get("infoNoHeader",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postRelease(e,t={}){return this._post("release",e,null,t)}async postSavePage(e,t={}){return this._post("savePage",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class al extends h{constructor(){super("print-log")}async post(e,t={}){return this._post("",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}}class ul extends h{constructor(){super("print-resource")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetIpAddressStatus(e,t={}){return this._get("getIpAddressStatus",null,e,t)}async getGetPrintCount(e={}){return this._get("getPrintCount",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByMacAddress(e,t={}){return this._get("listByMacAddress",null,e,t)}async postPrintTest(e={}){return this._post("printTest",null,null,e)}async postSendPrintData(e,t={}){return this._post("sendPrintData",e,null,t)}async putUpdateRemark(e,t={}){return this._put("updateRemark/{id}",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ol extends h{constructor(){super("regexp")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class cl extends h{constructor(){super("released")}async deleteApp(e,t={}){return this._delete("app/deletePublishedAppByTestId",null,e,t)}async putApp(e={}){return this._put("app/enable/{appId}",null,null,e)}async getApp(e,t={}){return this._get("app/publishedApp/list",null,e,t)}}class gl extends h{constructor(){super("role-permission")}async getPlat(e,t={}){return this._get("plat/list",null,e,t)}async postPlat(e,t={}){return this._post("plat/single",e,null,t)}async getTenant(e,t={}){return this._get("tenant/list",null,e,t)}async postTenant(e,t={}){return this._post("tenant/single",e,null,t)}}class hl extends h{constructor(){super("role")}async getList(e={}){return this._get("list",null,null,e)}async postPlat(e,t={}){return this._post("plat",e,null,t)}async deletePlat(e,t={}){return this._delete("plat",null,e,t)}async getPlat(e,t={}){return this._get("plat/page/list",null,e,t)}async putPlat(e={}){return this._put("plat/{id}/{enabled}",null,null,e)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}async deleteTenant(e,t={}){return this._delete("tenant",null,e,t)}async getTenant(e,t={}){return this._get("tenant/page/list",null,e,t)}async putTenant(e={}){return this._put("tenant/{id}/{enabled}",null,null,e)}}class dl extends h{constructor(){super("seat-message")}async getClose(e={}){return this._get("close",null,null,e)}}class pl extends h{constructor(){super("seat")}async getApp(e={}){return this._get("app/getVisibleUser",null,null,e)}async postApp(e,t={}){return this._post("app/getVisibleOrgUser",e,null,t)}async postAuth(e={}){return this._post("auth",null,null,e)}async getListAuthed(e,t={}){return this._get("listAuthed",null,e,t)}async getListNotAuth(e,t={}){return this._get("listNotAuth",null,e,t)}async postRemoveAuth(e,t={}){return this._post("removeAuth",null,e,t)}async getTotalinfos(e={}){return this._get("totalinfos",null,null,e)}}class yl extends h{constructor(){super("shortcut")}async postMenu(e={}){return this._post("menu/saveBatch",null,null,e)}async deleteMenu(e,t={}){return this._delete("menu",null,e,t)}async getMenu(e,t={}){return this._get("menu/page/list",null,e,t)}async putMenu(e,t={}){return this._put("menu/{id}",e,null,t)}}class _l extends h{constructor(){super("sign-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postOperators(e,t={}){return this._post("operators",e,null,t)}async postPage(e,t={}){return this._post("page/list",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class fl extends h{constructor(){super("sms")}async postGetSignsAndTemplates(e,t={}){return this._post("getSignsAndTemplates",e,null,t)}async postSendMsg(e,t={}){return this._post("sendMsg",e,null,t)}}class vl extends h{constructor(){super("started-process")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class Sl extends h{constructor(){super("task-delegate")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCancel(e={}){return this._post("cancel/{id}",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class ml extends h{constructor(){super("task-done")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class Il extends h{constructor(){super("task-todo")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class Al extends h{constructor(){super("tenant-developer")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postRemoveAndHandover(e,t={}){return this._post("RemoveAndHandover",e,null,t)}async getGetUserMaintainerApp(e,t={}){return this._get("getUserMaintainerApp",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class bl extends h{constructor(){super("tenant")}async putDisable(e={}){return this._put("disable/{id}",null,null,e)}async putEnable(e={}){return this._put("enable/{id}",null,null,e)}async getGetTenantIdByAppId(e,t={}){return this._get("getTenantIdByAppId",null,e,t)}async getGetTencentByDomain(e,t={}){return this._get("getTencentByDomain",null,e,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async postManagement(e,t={}){return this._post("management/user/reset/default/signPwd",e,null,t)}async deleteManagement(e,t={}){return this._delete("management/user",e,null,t)}async getManagement(e,t={}){return this._get("management/user/page/list",null,e,t)}async putManagement(e,t={}){return this._put("management/user/{id}",e,null,t)}async putUpdateDomain(e,t={}){return this._put("updateDomain/{id}",e,null,t)}async postUserRole(e,t={}){return this._post("user-role/reset",e,null,t)}async deleteUserRole(e,t={}){return this._delete("user-role",null,e,t)}async getUser(e={}){return this._get("user/info",null,null,e)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Tl extends h{constructor(){super("user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e={}){return this._get("info/{id}",null,null,e)}async getInfoByIds(e,t={}){return this._get("infoByIds",null,e,t)}async getLast(e={}){return this._get("last/reset/pwd",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByTenantId(e,t={}){return this._get("listByTenantId",null,e,t)}async postOrg(e,t={}){return this._post("org/tenant/tmpl4App",e,null,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async postPlat(e,t={}){return this._post("plat/tmpl",e,null,t)}async postReset(e,t={}){return this._post("reset/pwd",e,null,t)}async postSettings(e,t={}){return this._post("settings",e,null,t)}async postTenant(e,t={}){return this._post("tenant/tmpl4App",e,null,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Ll extends h{constructor(){super("user-extra")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Rl extends h{constructor(){super("user-info-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class El extends h{constructor(){super("user-password-history")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class wl extends h{constructor(){super("workbench-component")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Cl extends h{constructor(){super("workbench-component-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page/list",null,e,t)}async putUpdatePositionJson(e,t={}){return this._put("updatePositionJson",e,null,t)}async putWorkbenchComponentActive(e,t={}){return this._put("workbenchComponentActive/{id}",null,e,t)}async putId(e,t,n={}){return this._put("",t,e,n)}}class Dl extends h{constructor(){super("clearTempDir")}async post(e={}){return this._post("",null,null,e)}}class Pl extends h{constructor(){super("deleteNotUseDir")}async post(e={}){return this._post("",null,null,e)}}class Ol extends h{constructor(){super("getAttachmentInfoByPage")}async post(e,t={}){return this._post("",e,null,t)}}class Nl extends h{constructor(){super("deleteCompInfo")}async delete(e,t={}){return this._delete("",null,e,t)}}class Ml extends h{constructor(){super("deleteCompInfoType")}async delete(e,t={}){return this._delete("",null,e,t)}}class Bl extends h{constructor(){super("getAllCompInfo")}async get(e={}){return this._get("",null,null,e)}}class Ul extends h{constructor(){super("getAllCompInfoByTypeId")}async get(e,t={}){return this._get("",null,e,t)}}class kl extends h{constructor(){super("getAllCompInfoType")}async get(e={}){return this._get("",null,null,e)}}class xl extends h{constructor(){super("getCompInfoById")}async get(e,t={}){return this._get("",null,e,t)}}class Gl extends h{constructor(){super("getCompInfoByPage")}async post(e,t={}){return this._post("",e,null,t)}}class Kl extends h{constructor(){super("getCompInfoTypeById")}async get(e,t={}){return this._get("",null,e,t)}}class Vl extends h{constructor(){super("getCompInfoTypeByPage")}async post(e,t={}){return this._post("",e,null,t)}}class Fl extends h{constructor(){super("importCompInfoJson")}async post(e,t={}){return this._post("",e,null,t)}}class $l extends h{constructor(){super("saveCompInfo")}async post(e,t={}){return this._post("",e,null,t)}}class Hl extends h{constructor(){super("saveCompInfoType")}async post(e,t={}){return this._post("",e,null,t)}}class Xl extends h{constructor(){super("deleteCsvDatasource")}async delete(e,t={}){return this._delete("",null,e,t)}}class Wl extends h{constructor(){super("getAllCsvDatasource")}async get(e,t={}){return this._get("",null,e,t)}}class jl extends h{constructor(){super("getContentToArray")}async get(e,t={}){return this._get("",null,e,t)}}class zl extends h{constructor(){super("getCsvDatasourceById")}async get(e,t={}){return this._get("",null,e,t)}}class ql extends h{constructor(){super("getCsvDatasourceByName")}async get(e,t={}){return this._get("",null,e,t)}}class Jl extends h{constructor(){super("getCsvDatasourceByPage")}async post(e,t={}){return this._post("",e,null,t)}}class Ql extends h{constructor(){super("parseCsvOrExcel")}async get(e,t={}){return this._get("",null,e,t)}}class Zl extends h{constructor(){super("saveCsvDatasource")}async post(e,t={}){return this._post("",e,null,t)}}class Yl extends h{constructor(){super("getDesignerData")}async get(e,t={}){return this._get("",null,e,t)}}class ei extends h{constructor(){super("deleteEchartTheme")}async delete(e,t={}){return this._delete("",null,e,t)}}class ti extends h{constructor(){super("getAllEchartTheme")}async get(e={}){return this._get("",null,null,e)}}class si extends h{constructor(){super("getEchartThemeById")}async get(e,t={}){return this._get("",null,e,t)}}class ni extends h{constructor(){super("getEchartThemeByPage")}async post(e,t={}){return this._post("",e,null,t)}}class ri extends h{constructor(){super("getMyEchartThemes")}async get(e={}){return this._get("",null,null,e)}}class li extends h{constructor(){super("getSysEchartThemes")}async get(e={}){return this._get("",null,null,e)}}class ii extends h{constructor(){super("saveEchartTheme")}async post(e,t={}){return this._post("",e,null,t)}}class ai extends h{constructor(){super("buildEnshrineCompLibrary")}async get(e={}){return this._get("",null,null,e)}}class ui extends h{constructor(){super("deleteEnshrineComp")}async delete(e,t={}){return this._delete("",null,e,t)}}class oi extends h{constructor(){super("deleteEnshrineCompGroup")}async delete(e,t={}){return this._delete("",null,e,t)}}class ci extends h{constructor(){super("getAllEnshrineCompGroups")}async get(e={}){return this._get("",null,null,e)}}class gi extends h{constructor(){super("getEnshrineCompByPage")}async post(e,t={}){return this._post("",e,null,t)}}class hi extends h{constructor(){super("getEnshrineCompGroupById")}async get(e,t={}){return this._get("",null,e,t)}}class di extends h{constructor(){super("getEnshrineCompGroupByPage")}async post(e,t={}){return this._post("",e,null,t)}}class pi extends h{constructor(){super("getLayoutItemObjById")}async get(e,t={}){return this._get("",null,e,t)}}class yi extends h{constructor(){super("saveEnshrineComp")}async post(e,t={}){return this._post("",e,null,t)}}class _i extends h{constructor(){super("saveEnshrineCompGroup")}async post(e,t={}){return this._post("",e,null,t)}}class fi extends h{constructor(){super("searchEnshrineComp")}async post(e,t={}){return this._post("",e,null,t)}}class vi extends h{constructor(){super("api")}async getAgent(e,t={}){return this._get("agent/scriptAgent",null,e,t)}async getApaasUtils(e,t={}){return this._get("apaas-utils/searchAllOrgOrUser",null,e,t)}async postAppGrantedUser(e,t,n={}){return this._post("app-granted-user/batch",t,e,n)}async getAppGrantedUser(e,t={}){return this._get("app-granted-user/ungranted/list",null,e,t)}async getAppSetting(e,t={}){return this._get("app-setting/infoByAppId",null,e,t)}async getApp(e,t={}){return this._get("app/user/page/list",null,e,t)}async postApp(e,t={}){return this._post("app/user/save-list",null,e,t)}async deleteApp(e,t,n={}){return this._delete("app/user",t,e,n)}async putApp(e,t={}){return this._put("app/user/{id}",e,null,t)}async getDataSource(e,t={}){return this._get("data-source/type",null,e,t)}async postDataSource(e,t,n={}){return this._post("data-source/select",t,e,n)}async postFileTask(e,t={}){return this._post("file-task/submit",e,null,t)}async getKnowledgeBase(e,t={}){return this._get("knowledge-base/findByIds",null,e,t)}async postLoginLog(e,t={}){return this._post("login-log/userLoginLogPage",e,null,t)}async getModel(e,t={}){return this._get("model/info",null,e,t)}async getMsg(e,t={}){return this._get("msg/findAllByType",null,e,t)}async postMsg(e,t={}){return this._post("msg/sendMessage",e,null,t)}async postOpenapiGroup(e,t={}){return this._post("openapi-group",e,null,t)}async putOpenapiGroup(e,t={}){return this._put("openapi-group/opened",null,e,t)}async putOpenapiKeyGrant(e,t={}){return this._put("openapi-key-grant/updateApi",null,e,t)}async getOrgUserPicker(e,t={}){return this._get("org-user-picker/app/listUserByIds",null,e,t)}async postOrgUserPicker(e,t={}){return this._post("org-user-picker/app/getVisibleOrgUser",e,null,t)}async postOrg(e={}){return this._post("org/principals",null,null,e)}async getOrg(e={}){return this._get("org/listAll",null,null,e)}async getPlat(e={}){return this._get("plat/app/global/info/{appId}",null,null,e)}async postPlat(e,t={}){return this._post("plat/security",e,null,t)}async postPrintLog(e,t={}){return this._post("print-log/page/list",e,null,t)}async getPrint(e,t={}){return this._get("print/exchangePrinterName",null,e,t)}async postPrint(e,t={}){return this._post("print/sendPrintData",e,null,t)}async deleteRegexp(e,t={}){return this._delete("regexp/delete",null,e,t)}async getRegexp(e,t={}){return this._get("regexp/page/list",null,e,t)}async postRegexp(e,t={}){return this._post("regexp/save",e,null,t)}async putRegexp(e,t={}){return this._put("regexp/update/{id}",e,null,t)}async postReportData(e,t={}){return this._post("report-data/list",e,null,t)}async getReportData(e,t={}){return this._get("report-data/project-info",null,e,t)}async postReportDetail(e,t={}){return this._post("report-detail/listStatistic",e,null,t)}async postSignLog(e,t={}){return this._post("signLog/page/list",e,null,t)}async getTenant(e,t={}){return this._get("tenant/org/list",null,e,t)}async postTenant(e,t={}){return this._post("tenant/userSyncFromThirdParty",e,null,t)}async getUser(e,t={}){return this._get("user/org/principal",null,e,t)}async postUser(e,t={}){return this._post("user/org/principals",null,e,t)}}class Si extends h{constructor(){super("copyFilter")}async post(e,t={}){return this._post("",e,null,t)}}class mi extends h{constructor(){super("deleteFilter")}async delete(e,t={}){return this._delete("",null,e,t)}}class Ii extends h{constructor(){super("getAllFilter")}async get(e={}){return this._get("",null,null,e)}}class Ai extends h{constructor(){super("getFilterById")}async get(e,t={}){return this._get("",null,e,t)}}class bi extends h{constructor(){super("saveFilter")}async post(e,t={}){return this._post("",e,null,t)}}class Ti extends h{constructor(){super("httpQuery")}async post(e,t={}){return this._post("",e,null,t)}}class Li extends h{constructor(){super("clearLogLogin")}async post(e={}){return this._post("",null,null,e)}}class Ri extends h{constructor(){super("getLogLoginByPage")}async post(e,t={}){return this._post("",e,null,t)}}class Ei extends h{constructor(){super("clearLogOperate")}async post(e={}){return this._post("",null,null,e)}}class wi extends h{constructor(){super("deleteLogOperateById")}async delete(e,t={}){return this._delete("",null,e,t)}}class Ci extends h{constructor(){super("getPnLogOperateByPage")}async post(e,t={}){return this._post("",e,null,t)}}class Di extends h{constructor(){super("uncompressLogOperateLayoutStr")}async post(e,t={}){return this._post("",e,null,t)}}class Pi extends h{constructor(){super("deleteMapGeoJson")}async delete(e,t={}){return this._delete("",null,e,t)}}class Oi extends h{constructor(){super("getAdCodeByAliasName")}async get(e,t={}){return this._get("",null,e,t)}}class Ni extends h{constructor(){super("getGeoJsonByAdCode")}async get(e,t={}){return this._get("",null,e,t)}}class Mi extends h{constructor(){super("getMapBaseInfoByLevel")}async get(e,t={}){return this._get("",null,e,t)}}class Bi extends h{constructor(){super("getMapGeoJsonById")}async get(e,t={}){return this._get("",null,e,t)}}class Ui extends h{constructor(){super("getMapGeoJsonByPage")}async post(e,t={}){return this._post("",e,null,t)}}class ki extends h{constructor(){super("saveMapGeoJson")}async post(e,t={}){return this._post("",e,null,t)}}class xi extends h{constructor(){super("deletePageSnapshoot")}async delete(e,t={}){return this._delete("",null,e,t)}}class Gi extends h{constructor(){super("getPageSnapshootByEnabled")}async get(e,t={}){return this._get("",null,e,t)}}class Ki extends h{constructor(){super("getPageSnapshootById")}async get(e,t={}){return this._get("",null,e,t)}}class Vi extends h{constructor(){super("getPageSnapshootsByPageId")}async get(e,t={}){return this._get("",null,e,t)}}class Fi extends h{constructor(){super("savePageSnapshoot")}async post(e,t={}){return this._post("",e,null,t)}}class $i extends h{constructor(){super("setPageSnapshootEnabled")}async post(e,t={}){return this._post("",e,null,t)}}class Hi extends h{constructor(){super("setPageSnapshootEnabledByPageId")}async post(e,t={}){return this._post("",e,null,t)}}class Xi extends h{constructor(){super("attachmentResourceTransfer")}async post(e,t={}){return this._post("",e,null,t)}}class Wi extends h{constructor(){super("deletePageTemplate")}async delete(e,t={}){return this._delete("",null,e,t)}}class ji extends h{constructor(){super("exportTemplate")}async get(e,t={}){return this._get("",null,e,t)}async head(e,t={}){return this._head("",null,e,t)}async post(e,t={}){return this._post("",null,e,t)}async put(e,t={}){return this._put("",null,e,t)}async delete(e,t={}){return this._delete("",null,e,t)}async options(e,t={}){return this._options("",null,e,t)}async patch(e,t={}){return this._patch("",null,e,t)}}class zi extends h{constructor(){super("getAllPageTemplate")}async get(e={}){return this._get("",null,null,e)}}class qi extends h{constructor(){super("getPageTemplateById")}async get(e,t={}){return this._get("",null,e,t)}}class Ji extends h{constructor(){super("getPageTemplateByPage")}async post(e,t={}){return this._post("",e,null,t)}}class Qi extends h{constructor(){super("getPageTemplateForCreatePageForm")}async post(e,t={}){return this._post("",e,null,t)}}class Zi extends h{constructor(){super("getPageTemplateLayout")}async get(e,t={}){return this._get("",null,e,t)}}class Yi extends h{constructor(){super("getPageTemplateThemeJson")}async get(e,t={}){return this._get("",null,e,t)}}class ea extends h{constructor(){super("importTemplate")}async get(e={}){return this._get("",null,null,e)}async head(e={}){return this._head("",null,null,e)}async post(e={}){return this._post("",null,null,e)}async put(e={}){return this._put("",null,null,e)}async delete(e={}){return this._delete("",null,null,e)}async options(e={}){return this._options("",null,null,e)}async patch(e={}){return this._patch("",null,null,e)}}class ta extends h{constructor(){super("savePageTemplate")}async post(e,t={}){return this._post("",e,null,t)}}class sa extends h{constructor(){super("toggleEnabled")}async post(e,t={}){return this._post("",e,null,t)}}class na extends h{constructor(){super("deletePnResource")}async delete(e,t={}){return this._delete("",null,e,t)}}class ra extends h{constructor(){super("deletePnResourceGroup")}async delete(e,t={}){return this._delete("",null,e,t)}}class la extends h{constructor(){super("getMyAllPnResourceGroup")}async get(e={}){return this._get("",null,null,e)}}class ia extends h{constructor(){super("getMyPnResourceByPage")}async post(e,t={}){return this._post("",e,null,t)}}class aa extends h{constructor(){super("getPnResourceGroupById")}async get(e,t={}){return this._get("",null,e,t)}}class ua extends h{constructor(){super("resourceTransferToPage")}async post(e,t={}){return this._post("",e,null,t)}}class oa extends h{constructor(){super("savePnResourceGroup")}async post(e,t={}){return this._post("",e,null,t)}}class ca extends h{constructor(){super("uploadFiles")}async get(e,t={}){return this._get("",null,e,t)}async head(e,t={}){return this._head("",null,e,t)}async post(e,t={}){return this._post("",null,e,t)}async put(e,t={}){return this._put("",null,e,t)}async delete(e,t={}){return this._delete("",null,e,t)}async options(e,t={}){return this._options("",null,e,t)}async patch(e,t={}){return this._patch("",null,e,t)}}class ga extends h{constructor(){super("getMyShareCustomCompByPage")}async post(e,t={}){return this._post("",e,null,t)}}class ha extends h{constructor(){super("getShareCustomCompById")}async get(e,t={}){return this._get("",null,e,t)}}class da extends h{constructor(){super("getShareCustomCompByPage")}async post(e,t={}){return this._post("",e,null,t)}}class pa extends h{constructor(){super("saveShareCustomComp")}async post(e,t={}){return this._post("",e,null,t)}}class ya extends h{constructor(){super("getPageTotalCount")}async get(e={}){return this._get("",null,null,e)}}class _a extends h{constructor(){super("getProjectTotalCount")}async get(e={}){return this._get("",null,null,e)}}class fa{constructor(){i(this,"agent",new tr),i(this,"apk",new sr),i(this,"app",new nr),i(this,"appMember",new rr),i(this,"appSetting",new lr),i(this,"assets",new ir),i(this,"auditLog",new ar),i(this,"biDataSet",new ur),i(this,"biFileDatasetConfig",new or),i(this,"biFile",new cr),i(this,"biShare",new gr),i(this,"category",new hr),i(this,"dashboard",new dr),i(this,"dataSource",new pr),i(this,"dataTrace",new yr),i(this,"database",new _r),i(this,"dataset",new fr),i(this,"datasetLog",new vr),i(this,"datasourceDevops",new Sr),i(this,"datasourceMove",new mr),i(this,"datasourceMoveData",new Ir),i(this,"datasourceMoveDetail",new Ar),i(this,"externalMessage",new br),i(this,"fileTask",new Tr),i(this,"file",new Lr),i(this,"frontRelease",new Rr),i(this,"i18NConfig",new Er),i(this,"i18NInfo",new wr),i(this,"internalMessage",new Cr),i(this,"invokeLog",new Dr),i(this,"knowledgeBase",new Pr),i(this,"knowledgeBaseChunk",new Or),i(this,"knowledgeBaseDoc",new Nr),i(this,"ldap",new Mr),i(this,"licenseUnbindLog",new Br),i(this,"license",new Ur),i(this,"loginLog",new kr),i(this,"login",new xr),i(this,"manager",new Gr),i(this,"messageSetting",new Kr),i(this,"minioFile",new Vr),i(this,"model",new Fr),i(this,"modelProvider",new $r),i(this,"navMenu",new Hr),i(this,"navPage",new Xr),i(this,"openapiGroup",new Wr),i(this,"openapiKeyGrant",new jr),i(this,"org",new zr),i(this,"orgUserPicker",new qr),i(this,"permission",new Jr),i(this,"plat",new Qr),i(this,"plugin",new Zr),i(this,"pluginVersion",new Yr),i(this,"pmProcessDelegate",new el),i(this,"pmProcessDelegateDetail",new tl),i(this,"pmProcessInstance",new sl),i(this,"pmTaskDone",new nl),i(this,"pmTaskTodo",new rl),i(this,"pnPage",new ll),i(this,"pnProject",new il),i(this,"printLog",new al),i(this,"printResource",new ul),i(this,"regexp",new ol),i(this,"released",new cl),i(this,"rolePermission",new gl),i(this,"role",new hl),i(this,"seatMessage",new dl),i(this,"seat",new pl),i(this,"shortcut",new yl),i(this,"signLog",new _l),i(this,"sms",new fl),i(this,"startedProcess",new vl),i(this,"taskDelegate",new Sl),i(this,"taskDone",new ml),i(this,"taskTodo",new Il),i(this,"tenantDeveloper",new Al),i(this,"tenant",new bl),i(this,"user",new Tl),i(this,"userExtra",new Ll),i(this,"userInfoLog",new Rl),i(this,"userPasswordHistory",new El),i(this,"workbenchComponent",new wl),i(this,"workbenchComponentRelation",new Cl),i(this,"clearTempDir",new Dl),i(this,"deleteNotUseDir",new Pl),i(this,"getAttachmentInfoByPage",new Ol),i(this,"deleteCompInfo",new Nl),i(this,"deleteCompInfoType",new Ml),i(this,"getAllCompInfo",new Bl),i(this,"getAllCompInfoByTypeId",new Ul),i(this,"getAllCompInfoType",new kl),i(this,"getCompInfoById",new xl),i(this,"getCompInfoByPage",new Gl),i(this,"getCompInfoTypeById",new Kl),i(this,"getCompInfoTypeByPage",new Vl),i(this,"importCompInfoJson",new Fl),i(this,"saveCompInfo",new $l),i(this,"saveCompInfoType",new Hl),i(this,"deleteCsvDatasource",new Xl),i(this,"getAllCsvDatasource",new Wl),i(this,"getContentToArray",new jl),i(this,"getCsvDatasourceById",new zl),i(this,"getCsvDatasourceByName",new ql),i(this,"getCsvDatasourceByPage",new Jl),i(this,"parseCsvOrExcel",new Ql),i(this,"saveCsvDatasource",new Zl),i(this,"getDesignerData",new Yl),i(this,"deleteEchartTheme",new ei),i(this,"getAllEchartTheme",new ti),i(this,"getEchartThemeById",new si),i(this,"getEchartThemeByPage",new ni),i(this,"getMyEchartThemes",new ri),i(this,"getSysEchartThemes",new li),i(this,"saveEchartTheme",new ii),i(this,"buildEnshrineCompLibrary",new ai),i(this,"deleteEnshrineComp",new ui),i(this,"deleteEnshrineCompGroup",new oi),i(this,"getAllEnshrineCompGroups",new ci),i(this,"getEnshrineCompByPage",new gi),i(this,"getEnshrineCompGroupById",new hi),i(this,"getEnshrineCompGroupByPage",new di),i(this,"getLayoutItemObjById",new pi),i(this,"saveEnshrineComp",new yi),i(this,"saveEnshrineCompGroup",new _i),i(this,"searchEnshrineComp",new fi),i(this,"api",new vi),i(this,"copyFilter",new Si),i(this,"deleteFilter",new mi),i(this,"getAllFilter",new Ii),i(this,"getFilterById",new Ai),i(this,"saveFilter",new bi),i(this,"httpQuery",new Ti),i(this,"clearLogLogin",new Li),i(this,"getLogLoginByPage",new Ri),i(this,"clearLogOperate",new Ei),i(this,"deleteLogOperateById",new wi),i(this,"getPnLogOperateByPage",new Ci),i(this,"uncompressLogOperateLayoutStr",new Di),i(this,"deleteMapGeoJson",new Pi),i(this,"getAdCodeByAliasName",new Oi),i(this,"getGeoJsonByAdCode",new Ni),i(this,"getMapBaseInfoByLevel",new Mi),i(this,"getMapGeoJsonById",new Bi),i(this,"getMapGeoJsonByPage",new Ui),i(this,"saveMapGeoJson",new ki),i(this,"deletePageSnapshoot",new xi),i(this,"getPageSnapshootByEnabled",new Gi),i(this,"getPageSnapshootById",new Ki),i(this,"getPageSnapshootsByPageId",new Vi),i(this,"savePageSnapshoot",new Fi),i(this,"setPageSnapshootEnabled",new $i),i(this,"setPageSnapshootEnabledByPageId",new Hi),i(this,"attachmentResourceTransfer",new Xi),i(this,"deletePageTemplate",new Wi),i(this,"exportTemplate",new ji),i(this,"getAllPageTemplate",new zi),i(this,"getPageTemplateById",new qi),i(this,"getPageTemplateByPage",new Ji),i(this,"getPageTemplateForCreatePageForm",new Qi),i(this,"getPageTemplateLayout",new Zi),i(this,"getPageTemplateThemeJson",new Yi),i(this,"importTemplate",new ea),i(this,"savePageTemplate",new ta),i(this,"toggleEnabled",new sa),i(this,"deletePnResource",new na),i(this,"deletePnResourceGroup",new ra),i(this,"getMyAllPnResourceGroup",new la),i(this,"getMyPnResourceByPage",new ia),i(this,"getPnResourceGroupById",new aa),i(this,"resourceTransferToPage",new ua),i(this,"savePnResourceGroup",new oa),i(this,"uploadFiles",new ca),i(this,"getMyShareCustomCompByPage",new ga),i(this,"getShareCustomCompById",new ha),i(this,"getShareCustomCompByPage",new da),i(this,"saveShareCustomComp",new pa),i(this,"getPageTotalCount",new ya),i(this,"getProjectTotalCount",new _a)}}const Dc=g("SIDE_BAR_MINI_WIDTH",48),Pc=g("SIDE_BAR_SHOW_TIT_MINI_WIDTH",80);var va=g("ContentEnum",(s=>(s.FULL="full",s.FIXED="fixed",s))(va||{})),Sa=g("ThemeEnum",(s=>(s.DARK="dark",s.LIGHT="light",s))(Sa||{})),ma=g("SettingButtonPositionEnum",(s=>(s.AUTO="auto",s.HEADER="header",s.FIXED="fixed",s))(ma||{})),Ia=g("SessionTimeoutProcessingEnum",(s=>(s[s.ROUTE_JUMP=0]="ROUTE_JUMP",s[s.PAGE_COVERAGE=1]="PAGE_COVERAGE",s))(Ia||{})),Aa=g("PermissionModeEnum",(s=>(s.ROLE="ROLE",s.BACK="BACK",s.ROUTE_MAPPING="ROUTE_MAPPING",s.PLATFORM_ROLE="PLATFORM_ROLE",s))(Aa||{})),ba=g("RouterTransitionEnum",(s=>(s.ZOOM_FADE="zoom-fade",s.ZOOM_OUT="zoom-out",s.FADE_SIDE="fade-slide",s.FADE="fade",s.FADE_BOTTOM="fade-bottom",s.FADE_SCALE="fade-scale",s))(ba||{})),me=g("ProjectName",(s=>(s.PORTAL="portal",s.BACKEND_MANAGEMENT="backend-management",s.DEVELOPER_CENTER="developer-center",s.TENANT_CENTER="tenant-center",s.APP_DESIGNER="app-designer",s.PAGE_DESIGNER="page-designer",s.WEB_RENDER="web-render",s.MOBILE_RENDER="mobile-render",s))(me||{})),Ta=g("FIELD_TYPE_CATEGORY",(s=>(s.ALL="field_type_all",s.BASIC="field_type_basic",s.LOGIC="field_type_logic",s.TRACE="field_type_trace",s))(Ta||{})),m=g("FIELD_TYPE",(s=>(s.PRIMARY_KEY="primary_key",s.ASSOCIATED_PRIMARY_KEY="associated_primary_key",s.TEXT="text",s.LONG_TEXT="long_text",s.INTEGER="integer",s.LONG="long",s.DOUBLE="double",s.DECIMAL="decimal",s.BOOLEAN="boolean",s.DATE="date",s.TIME="time",s.DATE_TIME="date_time",s.IMAGE="image",s.ATTACHMENT="attachment",s.SERIAL="serial_number",s.MASTERSLAVE="master_slave",s.USER="user",s.USER_MULTI="user_multi",s.ORG="org",s.ORG_MULTI="org_multi",s.ENUM="enum",s.ENUM_MULTI="enum_multi",s.OPTION="option",s.OPTION_MULTI="option_multi",s.REF="ref",s.REF_MULTI="ref_multi",s.RDO_REF="rdo_ref",s.EXPRESSION="expression",s.EXPRESSION_CONDITION="expression_condition",s.AGG="agg",s.ESOP="esop",s.TRANSACTION="transaction",s.LABEL_TEMPLATE="label_template",s.LABEL_TEMPLATE_REF="label_template_ref",s.DOCUMENT_TEMPLATE="document_template",s.SERIALRULE="serial_number_rule",s.PRINTER="printer",s.MESSAGE_TMPL="message_tmpl",s.RANGE_USER="range_user",s.SIGNATURE="electronic_signature",s.ONLINE_FORM_TEMPLATE="online_form_tmpl",s.E_DHR_TEMPLATE="edhr_tmpl",s.ONLINE_FORM="online_form",s.DATA_TABLE_FORMULA="data_table_formula",s.READONLYCMP="readonlycmp",s.MATERIAL_NO="material_no",s.PRODUCT="product",s.DEVICE="device",s.Biz_Process="biz_process",s))(m||{})),La=g("FIELD_TYPE_BASIC",(s=>(s.TEXT="text",s.LONG_TEXT="long_text",s.INTEGER="integer",s.LONG="long",s.DOUBLE="double",s.DECIMAL="decimal",s.BOOLEAN="boolean",s.DATE="date",s.TIME="time",s.DATE_TIME="date_time",s))(La||{})),Ra=g("FIELD_TYPE_LOGIC",(s=>(s.IMAGE="image",s.ATTACHMENT="attachment",s.SERIAL="serial_number",s.MASTERSLAVE="master_slave",s.USER="user",s.USER_MULTI="user_multi",s.ORG="org",s.ORG_MULTI="org_multi",s.ENUM="enum",s.ENUM_MULTI="enum_multi",s.OPTION="option",s.OPTION_MULTI="option_multi",s.REF="ref",s.REF_MULTI="ref_multi",s.RDO_REF="rdo_ref",s.EXPRESSION="expression",s.EXPRESSION_CONDITION="expression_condition",s.AGG="agg",s.ESOP="esop",s.TRANSACTION="transaction",s.LABEL_TEMPLATE="label_template",s.LABEL_TEMPLATE_REF="label_template_ref",s.DOCUMENT_TEMPLATE="document_template",s.SERIALRULE="serial_number_rule",s.PRINTER="printer",s.MESSAGE_TMPL="message_tmpl",s.RANGE_USER="range_user",s.SIGNATURE="electronic_signature",s.ONLINE_FORM_TEMPLATE="online_form_tmpl",s.E_DHR_TEMPLATE="edhr_tmpl",s.ONLINE_FORM="online_form",s.Biz_Process="biz_process",s))(Ra||{})),Ea=g("FIELD_TYPE_TRACE",(s=>(s.MATERIAL_NO="material_no",s.PRODUCT="product",s.DEVICE="device",s))(Ea||{}));const Oc=g("FieldTypeToJs",{attachment:"string",boolean:"boolean",date:"string",date_time:"string",decimal:"number",double:"number",enum:"string",enum_multi:"string",image:"string",integer:"number",long:"number",long_text:"string",master_slave:"string",org:"string",org_multi:"string",rdo_ref:"string",ref:"string",ref_multi:"string",serial_number:"string",text:"string",time:"string",user:"string",user_multi:"string",expression:"string",expression_condition:"string",agg:"number",esop:"string",serial_number_rule:"string",label_template:"string",label_template_ref:"string",document_template:"string",transaction:"string",printer:"string",message_tmpl:"string",range_user:"string",primary_key:"string",associated_primary_key:"string",readonlycmp:"string",material_no:"string",product:"string",device:"string",option:"string",option_multi:"string",electronic_signature:"string",online_form_tmpl:"string",edhr_tmpl:"string",online_form:"string",data_table_formula:"string",biz_process:"string"});var wa=g("CreateType",(s=>(s.SYSTEM="SYSTEM",s.USER_DEFINED="USER_DEFINED",s.BUILTIN="BUILTIN",s.CUSTOM="CUSTOM",s.PROCESS="PROCESS",s))(wa||{})),Ca=g("MenuType",(s=>(s.CATALOG="CATALOG",s.STANDARD="STANDARD",s.LINK="LINK",s))(Ca||{})),Da=g("OpenMode",(s=>(s.PRESENT="PRESENT",s.IFRAME="IFRAME",s.NEW="NEW",s))(Da||{})),Pa=g("MaterialEnum",(s=>(s.MaterialFormField="formField",s.MaterialTableField="tableField",s.MaterialEmbedTableField="embedTableField",s.MaterialSubTableField="subTableField",s.MaterialSubTableModalField="subTableModalField",s.cardListFormField="cardList",s.MaterialTableSelectField="tableSelectField",s.DescriptionsFormField="descriptions",s))(Pa||{}));const Nc=g("FieldIconMap",{primary_key:"icon-id",text:"icon-wenben1",long_text:"icon-changwenben",integer:"icon-zhengshu",long:"icon-changzhengshu",decimal:"icon-jingduxiaoshu1",double:"icon-xiaoshu",boolean:"icon-buer",date:"icon-riqi1",time:"icon-shijian1",date_time:"icon-riqishijian",user:"icon-renyuanguanlian",org:"icon-bumenguanlian",user_multi:"icon-renyuanduoxuan",org_multi:"icon-bumenduoxuan",image:"icon-tupian1",attachment:"icon-fujian1",serial_number:"icon-xuliehao",master_slave:"icon-zhuziguanlian",enum:"icon-meijuguanlian",ref:"icon-moxingguanlian",rdo_ref:"icon-RDOmoxingguanlian",enum_multi:"icon-meijuguanlianduoxuan",option:"icon-meijuguanlian",option_multi:"icon-meijuguanlianduoxuan",ref_multi:"icon-moxingduoxuan",expression:"icon-gongshiziduan",expression_condition:"icon-gongshiziduan",agg:"icon-huizong",esop:"icon-E-SOP",transaction:"icon-ziduan1",serial_number_rule:"icon-ziduan1",printer:"icon-dayinanniu",message_tmpl:"icon-xiaoximoban",range_user:"icon-fanweirenyuan",label_template_ref:"icon-biaoqianmoban",document_template:"icon-danjumoban",electronic_signature:"icon-qianming1",online_form_tmpl:"icon-zaixianbiaodanmoban",edhr_tmpl:"icon-edhr",online_form:"icon-zaixianbiaodan",data_table_formula:"icon-gongshiziduan",readonlycmp:"icon-wenben1",tenant:"icon-id",associated_primary_key:"icon-id",material_no:"icon-field-material-no",product:"icon-field-product",device:"icon-field-device",biz_process:"icon-jichengzhongxin1"});var Oa=g("AggTypes",(s=>(s.COUNT="COUNT",s.SUM="SUM",s.MAX="MAX",s.MIN="MIN",s.AVG="AVG",s))(Oa||{})),Na=g("NodesConfigTypeEnum",(s=>(s.SPEC="spec",s.SUB_WORKFLOW="sub_workflow",s))(Na||{})),Ma=g("selectionTypeEnums",(s=>(s.None="none",s.SingleChoice="gct_radio",s.MultipleChoice="checkbox",s))(Ma||{})),Ba=g("UniqueConstraintType",(s=>(s.NONE="NONE",s.GLOBAL="GLOBAL",s.LEVEL="LEVEL",s.LOGIC="LOGIC",s))(Ba||{})),Ua=g("MessageType",(s=>(s.ALL="all",s.UNREAD="unread",s))(Ua||{})),ka=g("WorkbenchType",(s=>(s.TEST="myTestApp",s.QUICK="quickAccess",s.MY="myApp",s))(ka||{})),xa=g("PersonalCenterType",(s=>(s.PROFILE="profile",s.GENDER="gender",s.ENTERPRISE="enterprise",s))(xa||{})),Ga=g("GENDER_TYPE",(s=>(s.FEMALE="female",s.MALE="male",s.PRIVARY="privary",s))(Ga||{})),Ka=g("TODO_TYPE",(s=>(s.TODO="todo",s.APPLICATION="application",s.DONE="done",s.DELEGATE="delegate",s))(Ka||{}));const Mc=g("SHOW_FIELDTYPES",[m.TEXT,m.LONG_TEXT,m.LONG,m.INTEGER,m.DECIMAL,m.DOUBLE,m.SERIAL]);var Va=g("UserServiceType",(s=>(s.SCRIPT_SERVICE="SCRIPT_SERVICE",s.SQL_SERVICE="SQL_SERVICE",s.SO_SERVICE="SO_SERVICE",s.BUILTIN_SERVICE="SYS_BUILTIN",s))(Va||{})),Fa=g("EntityModelCategoryEnum",(s=>(s.ENTITY="entity",s.DATA="data",s.VIEW="view",s))(Fa||{})),$a=g("EntityModelTypeEnum",(s=>(s.BASE="BASE",s.NDO="NDO",s.RDO="RDO",s.TREE="TREE",s.DYNAMIC_FORM="DYNAMIC_FORM",s.WORKFLOW="WORKFLOW",s.TRANSACTION="TRANSACTION",s))($a||{})),Ha=g("FieldDefaultValueTypeEnum",(s=>(s.NONE="NONE",s.FIXED="FIXED",s.SYS_VAR="SYS_VAR",s))(Ha||{})),Xa=g("FieldSysVarDefaultValueEnum",(s=>(s.NULL="",s.SYS_DATE="SYS_DATE",s.SYS_TIME="SYS_TIME",s.SYS_DATE_TIME="SYS_DATE_TIME",s.CURRENT_USER="CURRENT_USER",s.CURRENT_ORG="CURRENT_ORG",s))(Xa||{})),Wa=g("scriptTypeEnum",(s=>(s.EVENT="event",s.BUSINESSSERVICE="businessService",s.TIMER="timer",s))(Wa||{})),ja=g("PanelEnum",(s=>(s.PAGE="page",s.HISTORY="history",s.GLOBAL="global",s.WIDGET="widget",s.CHANGE_DESIGN="changeDesign",s))(ja||{})),za=g("Postion",(s=>(s.STATIC="static",s.RELATIVE="relative",s.ABSOLUTE="absolute",s.FIXED="fixed",s.STICKY="sticky",s))(za||{})),qa=g("BorderStyle",(s=>(s.NONE="none",s.SOLID="solid",s.DOTTED="dotted",s.DASHED="dashed",s.DOUBLE="double",s))(qa||{})),Ja=g("TextAlign",(s=>(s.LEFT="left",s.CENTER="center",s.RIGHT="right",s.JUSTIFY="justify",s))(Ja||{})),Qa=g("TextDecoration",(s=>(s.LINETHROUGH="line-through",s.UNDERLINE="underline",s.NONE="none",s))(Qa||{})),Za=g("EventCategory",(s=>(s.INNER="inner",s.JS="js",s.LO="lo",s))(Za||{})),Ya=g("PropGroup",(s=>(s.BASIC="basic",s.ADVANCED="advance",s.DISPLAY="display",s.LABEL="label",s.VUE3="vue3",s.FIELD="field",s.DATA="data",s.OTHER="other",s.LIST="list",s.Table="table",s.SUBMIT_RULE="submitRule",s.LISTDATA="listdata",s.SHOW="show",s.FIELD_CONFIG="fieldConfig",s.FORM_CONFIG="formConfig",s.FIELD_LAYOUT="FieldLayout",s.TABLESELECT_CONFIG="tableSelect",s.GENRADIO="genRadio",s.GENCHECKBOX="genCheckbox",s.GENSWITCH="genSwitch",s.OPTIONS="options",s.COLLAPSE="collapse",s.IFRAME="iframe",s.FILECOLLECT="fileCollect",s.CARDLIST="cardList",s.BUTTON="button",s.Button="Button",s.ButtonShow="ButtonShow",s.ButtonStyle="ButtonStyle",s.LISTBUTTON="listButton",s.MODAL="modal",s.MODALWIDTH="modalWidth",s.MODALHEIGHT="modalHeight",s.MODALTITLECONFIG="modalTitleConfig",s.SEARCH="search",s.QUERY="query",s.INPUT_CONFIG="inputConfig",s.DATALINKAGE="dataLinkage",s.PERMISSION="permission",s.DATASOURCE="dataSource",s.VALIDATERULE="validaterule",s.TEXT="text",s.GRID_CONFIG="gridConfig",s.COL_CONFIG="colConfig",s.COMPONENTDEPENDENCY="componentDependency",s.GENIMAGE="genImage",s.DATARANGE="dataRange",s.OPERATOR_CONFIG="operatorConfig",s.BUSINESS_CONFIG="businessConfig",s))(Ya||{})),eu=g("StyleGroup",(s=>(s.LAYOUT="layout",s.STYLE="style",s.BACKGROUND="background",s.MARGIN="margin",s.BORDER="border",s.HEADER="header",s))(eu||{})),tu=g("tagEnum",(s=>(s.TAG="tag",s.PROGRESS="progress",s))(tu||{})),su=g("TagTypeEnum",(s=>(s.RADIUS="radius",s.LINEAR_RADIUS="linear_radius",s.BIG_RADIUS="big_radius",s.LINEAR_BIG_RADIUS="linear_big_radius",s.DASHED_RADIUS="dashed_radius",s.STATUS="status",s))(su||{})),nu=g("ProgressTypeEnum",(s=>(s.CIRCLE="circle",s.LINE="line",s))(nu||{})),ru=g("DisplayType",(s=>(s.RULE="rule",s.CONFIG="config",s))(ru||{})),lu=g("GLOBAL_VAR_TYPE",(s=>(s.STRING="string",s.NUMBER="number",s.BOOLEAN="boolean",s.OBJECT="object",s.ARRAY="array",s.NULL="NULL",s.DATE="date",s.DATETIME="datetime",s.TIME="time",s))(lu||{})),iu=g("GLOBAL_TYPE",(s=>(s.MODAL="modal",s.EVENT="event",s.VAR="var",s))(iu||{})),au=g("COLUMNS_TYPE",(s=>(s.LEFT="left",s.CENTER="center",s.RIGHT="right",s.TOP="top",s.BOTTOM="bottom",s))(au||{})),uu=g("INNER_EVENT",(s=>(s.CLOSE_MODAL="__CLOSEMODAL__",s.OPEN_MODAL="__OPENMODAL__",s.REFRESH_TABLE="__REFRESHTABLE__",s))(uu||{})),ou=g("SUB_TABLE_EDIT_MODE",(s=>(s.INLINE="inline",s.MODAL="modal",s))(ou||{})),cu=g("SUB_TABLE_OPE_EVENT_TYPE_INLINE",(s=>(s.DELETE="delete",s.COPY="copy",s))(cu||{})),gu=g("SUB_TABLE_OPE_EVENT_TYPE",(s=>(s.DELETE="delete",s.EDIT="edit",s.COPY="copy",s))(gu||{})),hu=g("VERIFICATIONCONDITIONS_TYPE",(s=>(s.JS="js",s))(hu||{})),du=g("ASSIGNMENTSTRATEGY_ENUM",(s=>(s.alwaysCover="alwaysCover",s.notCovered="notCovered",s))(du||{})),pu=g("Dependency_ENUM",(s=>(s.HIDDEN="hidden",s.READONLY="readonly",s.DISABLED="disabled",s.REQUIRED="required",s.ASSIGNMENT="assignment",s))(pu||{})),yu=g("ToolkitEnum",(s=>(s.OUTLINE="OUTLINE",s.WIDGETS="WIDGETS",s.FIELD="FIELD",s.MODAL="MODAL",s.JS="JS",s.CSS="CSS",s.TEMPLATE="TEMPLATE",s.LO="LO",s))(yu||{})),_u=g("CategoryTypeEnum",(s=>(s.FORM="form",s.LAYOUT="layout",s.ADVANCED="advanced",s.DATA="data",s.BUTTON="button",s.RDO="rdo",s.KIT="kit",s.PROCESS="process",s))(_u||{})),V=g("Platform",(s=>(s.WEB="web",s.MOBILE="mobile",s))(V||{})),fu=g("BuiltinType",(s=>(s.MODAL="modal",s.MODAL_BODY="modalBody",s.MODAL_FOOTER="modalFooter",s.BottomButtonContainer="bottom-button-container",s))(fu||{})),vu=g("DateRangeEnums",(s=>(s.WEEK_NOW="sys.pageDesigner.dateRange.weekNow",s.MONTH_NOW="sys.pageDesigner.dateRange.monthNow",s.QUARTER_NOW="sys.pageDesigner.dateRange.quarterNow",s.YEAR_NOW="sys.pageDesigner.dateRange.yearNow",s.WEEk_BEFORE="sys.pageDesigner.dateRange.weekBefore",s.MONTH_BEFORE="sys.pageDesigner.dateRange.monthBefore",s.QUARTER_BEFORE="sys.pageDesigner.dateRange.quarterBefore",s.YEAR_BEFORE="sys.pageDesigner.dateRange.yearBefore",s.DATE_BEFORE="sys.pageDesigner.dateRange.dateBefore",s.DATE_AFTER="sys.pageDesigner.dateRange.dateAfter",s))(vu||{})),Su=g("SelectPickerEnums",(s=>(s.DROPDOWN_SELECTION="dropdownSelection",s.TREE_SELECTION="treeSelection",s.MODAL_BOX_SELECTION="modalBoxSelection",s))(Su||{})),mu=g("CURRENCY_ENUM",(s=>(s["¥"]="¥",s.$="$",s.S$="S$",s))(mu||{})),Iu=g("TIMETYPE_ENUM",(s=>(s.d="d",s["d:h"]="d:h",s["d:h:m"]="d:h:m",s["d:h:m:s"]="d:h:m:s",s.h="h",s["h:m"]="h:m",s["h:m:s"]="h:m:s",s.m="m",s["m:s"]="m:s",s.s="s",s))(Iu||{})),Au=g("TIMETYPE_LANG_ENUM",(s=>(s.d="days",s["d:h"]="dayhour",s["d:h:m"]="dayhourminute",s["d:h:m:s"]="dayhourminutesecond",s.h="hour",s["h:m"]="hourminute",s["h:m:s"]="hourminutesecond",s.m="minute",s["m:s"]="minutesecond",s.s="seconds",s))(Au||{})),bu=g("CURRENCY_LANG_ENUM",(s=>(s["¥"]="chMoney",s.$="usMoney",s.S$="sgpMoney",s))(bu||{})),Tu=g("RowSelectionTypeEnums",(s=>(s.SingleChoice="radio",s.MultipleChoice="checkbox",s))(Tu||{})),Lu=g("StatisticalMethodEnums",(s=>(s.Current="current",s.Whole="whole",s))(Lu||{})),Ru=g("PrintModeEnums",(s=>(s.Local="local",s.Server="server",s.PREVIEW_PRINT="PreviewPrint",s.DIRECT_PRINTING="DirectPrinting",s))(Ru||{})),Eu=g("openWindowEnums",(s=>(s.OPEN="open",s.APPROVE="linkApprove",s))(Eu||{})),wu=g("KeyMode",(s=>(s.SYSTEM="system",s.TRANSACTION="transaction",s))(wu||{})),Cu=g("TransactionMode",(s=>(s.CURRENT="current",s.REFERENCE="reference",s))(Cu||{})),Du=g("DisplayEnums",(s=>(s.BLOCK="block",s.INLINE_BLOCK="inline-block",s))(Du||{})),Pu=g("ButtonColorType",(s=>(s.DEFAULT="default",s.LINK="link",s))(Pu||{})),Ou=g("ButtonColorTheme",(s=>(s.DEFAULT="default",s.PRIMARY="primary",s.ERROR="error",s.WARNING="warning",s.SUCCESS="success",s))(Ou||{})),Nu=g("ButtonStyle",(s=>(s.ORDINARY="ordinary",s.SQUARE="square",s))(Nu||{})),Mu=g("ButtonSize",(s=>(s.SMALL="small",s.DEFAULT="middle",s.LARGE="large",s))(Mu||{})),Bu=g("ButtonTypeGroup",(s=>(s.TEXT="TEXT",s.ICON_TEXT="ICON_TEXT",s.ICON="ICON",s))(Bu||{})),Uu=g("ButtonType",(s=>(s.PRIMARY="primary",s.DEFAULT="default",s.DASHED="dashed",s.LINK="link",s))(Uu||{})),ku=g("ButtonType_vant",(s=>(s.PRIMARY="primary",s.DANGER="danger",s.DEFAULT="default",s))(ku||{}));const Bc=g("ButtonGroupType",{TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0}],ICON_TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0,hasIcon:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0,hasIcon:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0,hasIcon:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0,hasIcon:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0,hasIcon:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0,hasIcon:!0}],ICON:[{type:"primary",hasIcon:!0},{type:"default",hasIcon:!0},{type:"primary",danger:!0,hasIcon:!0},{type:"default",danger:!0,hasIcon:!0},{type:"dashed",hasIcon:!0},{type:"link",hasIcon:!0}]});var xu=g("operateSysEnums",(s=>(s.COLUMNDELETE="columnDelete",s.COLUMNLINK="columnLink",s.COPY="copy",s.VERSION_COPY="version_copy",s.VERSION_CREATE="version_create",s.DETAILS="details",s.EDIT="edit",s.USAGEINFORMATION="usageInformation",s.MODELINGTRACEABILITY="modelingTraceability",s.IMPORT="import",s.EXPORT="export",s.BATCHDELETE="batchDelete",s.SUBMIT="submit",s.RESET="reset",s.EXCUTE="excute",s.LABEL_PRINT="label_print",s.DOCUMENT_PRINT="document_print",s.EXAMINE_AND_APPROVE="examineAndApprove",s))(xu||{})),Gu=g("TableSearchTypeEnum",(s=>(s.NONE="none",s.EMBEDDED="embedded",s.EXTERNAL="external",s))(Gu||{})),Ku=g("TableTypeEnum",(s=>(s.DEFAULT="default",s.EMBED="embed",s.SUB="sub",s))(Ku||{})),Vu=g("TableEditingMethodEnum",(s=>(s.DEFAULTEDITING="defaultEditing",s.CLICKTOENTEREDITING="clickToEnterEditing",s))(Vu||{})),Fu=g("WidgetInScopeEnum",(s=>(s.GCT="gct",s.GCT_MODAL="gct-modal",s.GCT_SUB_TABLE_MODAL="gct-sub-table-modal",s))(Fu||{})),$u=g("ListTreeSearchTypeEnum",(s=>(s.ALL="ALL",s.SEARCH="SEARCH",s.SEARCHALL="SEARCHALL",s.LEVEL="LEVEL",s.CHILDREN="CHILDREN",s))($u||{})),Hu=g("DatasourceTypeEnum",(s=>(s.REALTIMEDATASOURCE="realTimeDataSource",s.SERVICEDATASOURCE="serviceDataSource",s))(Hu||{})),Xu=g("SignatureTypeEnum",(s=>(s.SIGNATURE_ONLY="signature_only",s.SIGNATURE_DATE="signature_date",s.SIGNATURE_DATETIME="signature_datetime",s))(Xu||{})),Wu=g("ResetRuleType",(s=>(s.WIPE_DATA="wipe_data",s.REFRESHDATA="refresh_data",s))(Wu||{})),ju=g("SCOPE",(s=>(s.PAGE="page",s.MODAL="modal",s))(ju||{})),zu=g("FormComponents",(s=>(s.RdoInput="rdo-input",s.Input="input",s.ElectronicSignature="electronic-signature",s.UseinfoButton="useinfo-button",s.ModelingButton="modeling-button",s.ImportButton="gc-import-button",s.ExportButton="gc-export-button",s.DocumentPrintButton="document-print-button",s.SubmitButton="submit-button",s.BatchDeleteButton="batchdelete-button",s.CustomButton="custom-button",s.TableLinkButton="table-link-button",s.TableInfoButton="table-info-button",s.TableApproveButton="table-approve-button",s.OpeButton="ope-button",s.ResetButton="reset-button",s.RdoSaveButton="rdo-save-button",s.LabelPrintButton="labelprint-button",s.ProcessButton="process-button",s.ProcessApproveButton="process-approve-button",s.CreateButton="create-button",s.DeleteButton="delete-button",s.CopyButton="copy-button",s.RefreshButton="refresh-button",s.CreateVersionButton="create-version-button",s.CopyVersionButton="copy-version-button",s.Checkbox="checkbox",s.DataTable="data-table",s.TreeTable="tree-table",s.DataTableColumn="data-table-column",s.RefDataTable="ref-data-table",s.DataList="data-list",s.RdoDataList="rdo-data-list",s.DataTableOpe="data-table-ope",s.DataTableFormula="data-table-formula",s.Datepicker="datepicker",s.DateTimepicker="datetimepicker",s.Department="department",s.Form="form",s.RdoForm="rdo-form",s.RdoTable="rdo-table",s.MedProRdoForm="medprordo-form",s.MedProRdoTable="medprordo-table",s.FormProcess="form-process",s.Inputmoney="inputmoney",s.Inputnumber="inputnumber",s.InputDouble="inputdouble",s.Radio="radio",s.Select="select",s.RdoSelect="rdo-select",s.Switch="switch",s.Textarea="textarea",s.Timepicker="timepicker",s.Userpicker="userpicker",s.Search="search",s.SelectSearch="select-search",s.QuickSearch="quick-search",s.LayoutContainer="layout-container",s.ButtonContainer="button-container",s.ButtonProcessContainer="button-process-container",s.BottomButtonContainer="bottom-button-container",s.Grid="grid",s.GridCol="grid-col",s.Tabs="tabs",s.TabPane="tab-pane",s.LeftRightColumns="left-right-columns",s.TopBottomColumns="top-bottom-columns",s.LeftLayoutThree="left-layout-three",s.TopLayoutThree="top-layout-three",s.UploadFile="upload-file",s.UploadImage="upload-image",s.SubTable="sub-table",s.SubTableOpe="sub-table-ope",s.SubTableAddBtn="sub-table-add-button",s.SubTableCopyBtn="sub-table-copy-button",s.SubTableEditBtn="sub-table-edit-button",s.SubTableDeleteBtn="sub-table-delete-button",s.LinkPageBtn="link-page-button",s.Collapse="collapse",s.CardList="card-list",s.CardHeaderLeft="card-header-left",s.CardHeaderRight="card-header-right",s.CardContent="card-content",s.CardOpeBtn="card-ope-btn",s.BaseButton="base-button",s.ReadonlyCmp="readonlycmp",s.TableSelect="table-select",s.GenCheckbox="gen-checkbox",s.GenRadio="gen-radio",s.GenSwitch="gen-switch",s.WorkflowNodes="workflow-nodes",s.WorkflowNodeModal="workflow-node-modal",s.ESOP="e-sop",s.EXPRESSION="expression",s.ExpressionCondition="expression-condition",s.AGG="agg",s.DynamicFormType="dynamic-form-type",s.DynamicFormValue="dynamic-form-value",s.DynamicFormOpts="dynamic-form-options",s.DynamicFormShowType="dynamic-form-show-type",s.DynamicTable="dynamic-table",s.Transaction="transaction",s.SerialRule="serial-rule",s.LabelTemplate="label-template",s.LabelTemplateRef="label-template-ref",s.DocumentTemplate="document-template",s.Wacom="wacom",s.Text="text",s.CustomField="custom-field",s.Printer="printer",s.Descriptions="descriptions",s.RangeUser="range-user",s.GenImage="gen-image",s.TestButton="test-button",s.Iframe="iframe",s.ExcuteButton="medproexcute-button",s.SubDataTable="sub-data-table",s.Signature="signature",s.OnlineForm="online-form",s.TmplTreeSelect="tmpl-tree-select",s.Boolean="boolean",s.BizProcess="biz-process",s.ApprovalHistory="approval-history",s.FlowDiagram="flow-diagram",s))(zu||{})),qu=g("SearchComponents",(s=>(s.SearchInput="SearchInput",s.SearchNumberInput="SearchNumberInput",s.SearchStringNumberInput="SearchStringNumberInput",s.SearchSwitch="SearchSwitch",s.SearchDate="SearchDate",s.SearchDateTime="SearchDateTime",s.SearchTime="SearchTime",s.SearchSelect="SearchSelect",s.SearchRdoSelect="SearchRdoSelect",s.SearchTransaction="SearchTransaction",s.SearchTmplTreeSelect="SearchTmplTreeSelect",s.SearchPrinter="SearchPrinter",s.SearchBizProcess="SearchBizProcess",s))(qu||{})),Ju=g("tableColumnWidthEnum",(s=>(s.ATUO="selfAdaption",s.ENUMERATION="fixed",s.PERCENTAGE="percentage",s))(Ju||{})),Qu=g("controlConfigEnum",(s=>(s.NULL="NULL",s.STRING="空字符串",s.ZERO="0",s))(Qu||{})),Zu=g("statisticalMethodEnum",(s=>(s.TOTAL="total",s.AVERAGE="average",s))(Zu||{})),Yu=g("fixedAlignENUM",(s=>(s.RIGHT="right",s.NONE="",s.LEFT="left",s))(Yu||{})),eo=g("tableColumnTypeEnum",(s=>(s.COLUMN_TEXT="COLUMN_TEXT",s.COLUMN_NUMBER="COLUMN_NUMBER",s.COLUMNTEXT_DATA="COLUMNTEXT_DATA",s.COLUMNTEXT_REF="COLUMNTEXT_REF",s.COLUMNTEXT_ENUM="COLUMNTEXT_ENUM",s.COLUMNTEXT_ORG="COLUMNTEXT_ORG",s.COLUMNTEXT_USER="COLUMNTEXT_USER",s.COLUMNTEXT_BOOLEAN="COLUMNTEXT_BOOLEAN",s.COLUMNTEXT_IMAGE="COLUMNTEXT_IMAGE",s))(eo||{})),to=g("tabsTypeENUM",(s=>(s.LINE="line",s.CARD="card",s.TEXt="text",s.CAPSULE="capsule",s.CUSTOM="custom",s))(to||{})),so=g("sortTypeEnum",(s=>(s.ASC="asc",s.DESC="desc",s))(so||{})),no=g("BindCmpStyleEnum",(s=>(s.CMP_TEXT="TEXT",s.CMP_TEXTAREA="TEXTAREA",s.CMP_ELECTRONICSIGNATURE="ELECTRONICSIGNATURE",s.CMP_BOOLEAN="BOOLEAN",s.CMP_SELECT_LIST="SELECT_LIST",s.CMP_RADIO="RADIO",s.CMP_CHECKBOX="CHECKBOX",s.CMP_DROPDOWN_SELECT="dropdownSelection",s.CMP_MODAL="modalBoxSelection",s.CMP_TREE_SELECTION="treeSelection",s.CMP_NUMBER="NUMBER",s.CMP_CURRENCY="CURRENCY",s.CMP_TIME="TIME",s))(no||{}));const Uc=g("Ch_BindCmpStyleEnum",{TEXT:"sys.pageDesigner.bindCmpStyle.bindText",TEXTAREA:"sys.pageDesigner.bindCmpStyle.bindTextarea",ELECTRONICSIGNATURE:"sys.pageDesigner.bindCmpStyle.electronicSignature",BOOLEAN:"sys.pageDesigner.bindCmpStyle.bindBoolean",SELECT_LIST:"sys.pageDesigner.bindCmpStyle.bindSelectList",RADIO:"sys.pageDesigner.bindCmpStyle.bindRadio",CHECKBOX:"sys.pageDesigner.bindCmpStyle.bindCheckbox",dropdownSelection:"sys.pageDesigner.bindCmpStyle.bindDropdownSelect",modalBoxSelection:"sys.pageDesigner.bindCmpStyle.bindModal",treeSelection:"sys.pageDesigner.bindCmpStyle.bindTreeSelection",NUMBER:"sys.pageDesigner.bindCmpStyle.bindNumber",CURRENCY:"sys.pageDesigner.bindCmpStyle.bindCurrency",TIME:"sys.pageDesigner.bindCmpStyle.bindTime"});var ro=g("BindCmpStyleTypeEnum",(s=>(s.BindText="bindText",s.BindLongText="BindLongText",s.BindBool="bindBool",s.BindPerson="bindPerson",s.BindDept="bindDept",s.BindLink="bindLink",s.BindMulti="bindMulti",s.BindNum="bindNum",s.BindDecimal="bindDecimal",s))(ro||{}));const kc=g("transformBindCmp2CmpType",{TEXT:"input",TEXTAREA:"textarea",ELECTRONICSIGNATURE:"electronic-signature",SELECT_LIST:"select",RADIO:"radio",CHECKBOX:"checkbox"}),xc=g("bindCmpStyleMap",{bindText:["TEXT","TEXTAREA"],BindLongText:["TEXT","TEXTAREA","ELECTRONICSIGNATURE"],bindBool:["BOOLEAN","SELECT_LIST","RADIO","CHECKBOX"],bindPerson:["dropdownSelection","modalBoxSelection"],bindDept:["treeSelection","modalBoxSelection"],bindLink:["SELECT_LIST","RADIO"],bindMulti:["SELECT_LIST","CHECKBOX"],bindNum:["NUMBER","CURRENCY","TIME"],bindDecimal:["NUMBER","CURRENCY"]});var lo=g("buttonShowType",(s=>(s.FOLD_ALL="foldAll",s.FOLD_PART="foldPart",s))(lo||{}));const Gc=g("searchListByFieldType",[m.BOOLEAN,m.DATE,m.DATE_TIME,m.DECIMAL,m.DOUBLE,m.ENUM,m.ENUM_MULTI,m.INTEGER,m.LONG,m.LONG_TEXT,m.TEXT,m.USER_MULTI,m.USER,m.TIME,m.REF_MULTI,m.REF,m.RDO_REF,m.ORG_MULTI,m.ORG,m.AGG,m.EXPRESSION,m.SERIAL,m.ONLINE_FORM_TEMPLATE,m.E_DHR_TEMPLATE,m.PRINTER,m.LABEL_TEMPLATE_REF,m.Biz_Process,m.DOCUMENT_TEMPLATE]);var io=g("AppPublishStateEnum",(s=>(s.SUCCESS="SUCCESS",s.FAILURE="FAILURE",s.PREPARING="PREPARING",s.EVENTING="EVENTING",s.PROCESSIING="PROCESSIING",s.DEPLOYING="DEPLOYING",s))(io||{})),ao=g("BasicAction",(s=>(s.Insert="Insert",s.Update="Update",s.Delete="Delete",s.Import="Import",s.Export="Export",s.Setting="Setting",s.Download="Download",s.Test="Test",s.Design="Design",s.Add="Add",s))(ao||{})),uo=g("CustomAction",(s=>(s.ResetPassword="ResetPassword",s.PermissionSetting="PermissionSetting",s.RemoveAndHandover="RemoveAndHandover",s.CategoryManagement="CategoryManagement",s.BaiscSetting="BaiscSetting",s.WatermarkSetting="WatermarkSetting",s.SecuritySetting="SecuritySetting",s.LoginSetting="LoginSetting",s.ThemeSetting="ThemeSetting",s.OrganizationSetting="OrganizationSetting",s.ApkSetting="ApkSetting",s.DevelopIconManagement="DevelopIconManagement",s.DevelopImageManagement="DevelopImageManagement",s.Reprint="Reprint",s.ViewTask="ViewTask",s.ManualTrigger="ManualTrigger",s.Setting="Setting",s.Terminate="Terminate",s.Reassign="Reassign",s.Log="Log",s.Moving="Moving",s.EnableDisable="EnableDisable",s))(uo||{}));const Kc=g("DefaultActions",["Insert","Update","Delete"]),Vc=g("PlatformSettingActions",["BaiscSetting","WatermarkSetting","SecuritySetting","LoginSetting","ThemeSetting","OrganizationSetting","ApkSetting"]);var oo=g("sizeEnum",(s=>(s.XS="XS",s.SM="SM",s.MD="MD",s.LG="LG",s.XL="XL",s.XXL="XXL",s))(oo||{})),co=g("screenEnum",(s=>(s[s.XS=480]="XS",s[s.SM=576]="SM",s[s.MD=768]="MD",s[s.LG=992]="LG",s[s.XL=1200]="XL",s[s.XXL=1600]="XXL",s))(co||{}));const O=g("screenMap",new Map);O.set("XS",480),O.set("SM",576),O.set("MD",768),O.set("LG",992),O.set("XL",1200),O.set("XXL",1600);const go=g("TIMEZONE_KEY","TIMEZONE__"),Fc=g("TENANT_KEY","TENANT__"),$c=g("TOKEN_KEY","TOKEN__"),Hc=g("LOCALE_KEY","LOCALE__"),Xc=g("LOCALE_LIST_KEY","LOCALE__LIST"),Wc=g("LOCAL_I18N_TRANSLATE","LOCAL_I18N_TRANSLATE"),jc=g("USER_INFO_KEY","USER__INFO__"),zc=g("ROLES_KEY","ROLES__KEY__"),qc=g("PROJ_CFG_KEY","PROJ__CFG__KEY__"),Jc=g("LOCK_INFO_KEY","LOCK__INFO__KEY__"),Qc=g("MULTIPLE_TABS_KEY","MULTIPLE_TABS__KEY__"),Zc=g("APP_DARK_MODE_KEY_","__APP__DARK__MODE__"),Yc=g("APP_LOCAL_CACHE_KEY","COMMON__LOCAL__KEY__"),eg=g("APP_SESSION_CACHE_KEY","COMMON__SESSION__KEY__"),tg=g("DESIGNER_SESSION_CACHE_KEY","DESIGNER_SESSION_CACHE_KEY");var ho=g("CacheTypeEnum",(s=>(s[s.SESSION=0]="SESSION",s[s.LOCAL=1]="LOCAL",s))(ho||{})),po=g("SEARCH_SEVICE",(s=>(s.EQ="eq",s.IEQ="iEq",s.NE="ne",s.INE="ine",s.GT="gt",s.GE="ge",s.LT="lt",s.LE="le",s.ISNULL="isNull",s.ISNOTNULL="isNotNull",s.LIKE="like",s.ILIKE="iLike",s.NOTLIKE="notLike",s.NOTILIKE="iNotLike",s.LEFTLIKE="leftLike",s.ILEFTLIKE="iLeftLike",s.RIGHTLIKE="rightLike",s.IRIGHTLIKE="iRightLike",s.IN="in",s.NOTIN="notIn",s.CONTAINANY="containAny",s.CONTAINALL="containAll",s.RANGE="range",s.ORANGE="oRange",s.LORANGE="loRange",s.RORANGE="roRange",s.VERSIONIN="versionIn",s))(po||{}));const sg=g("notSingleArr",["in","notIn","containAny","containAll","versionIn"]);var yo=g("AGLINE_ENUMS",(s=>(s.LEFT="left",s.CENTER="center",s.RIGHT="right",s.BETWEEN="between",s))(yo||{}));const ng=g("presetColor",["#DBDBDB","#FFE4E4","#D1D1D1","#838383","#838383","#FFEECB","#D8E3FF","#FF8888","#FF8888","#0DAA9C","#3370FF"]);var _o=g("ButtonOpeEnum",(s=>(s[s.SINGLELINE=0]="SINGLELINE",s[s.HEAD=1]="HEAD",s[s.BATCH=2]="BATCH",s[s.SINGLELINE_RDO=3]="SINGLELINE_RDO",s))(_o||{})),fo=g("RdoButtonOpeEnum",(s=>(s[s.parentVersion=0]="parentVersion",s[s.childVersion=1]="childVersion",s))(fo||{})),vo=g("ExceptionEnum",(s=>(s[s.PAGE_NOT_ACCESS=403]="PAGE_NOT_ACCESS",s[s.PAGE_NOT_FOUND=404]="PAGE_NOT_FOUND",s[s.ERROR=500]="ERROR",s[s.NET_WORK_ERROR=1e4]="NET_WORK_ERROR",s[s.PAGE_NOT_DATA=10100]="PAGE_NOT_DATA",s))(vo||{})),b=g("ErrorTypeEnum",(s=>(s.VUE="vue",s.SCRIPT="script",s.RESOURCE="resource",s.AJAX="ajax",s.PROMISE="promise",s))(b||{})),So=g("ResultEnum",(s=>(s[s.SUCCESS=200]="SUCCESS",s[s.ERROR=-1]="ERROR",s[s.TIMEOUT=401]="TIMEOUT",s.TYPE="success",s))(So||{})),mo=g("RequestEnum",(s=>(s.GET="GET",s.POST="POST",s.PUT="PUT",s.DELETE="DELETE",s))(mo||{})),Io=g("ContentTypeEnum",(s=>(s.JSON="application/json;charset=UTF-8",s.FORM_URLENCODED="application/x-www-form-urlencoded;charset=UTF-8",s.FORM_DATA="multipart/form-data;charset=UTF-8",s))(Io||{})),Ao=g("BizServiceEnum",(s=>(s.submit="post",s.listByIds="get",s.getone="post",s.listAll="post",s.listByPage="post",s.listTree="post",s.save="post",s.saveOrUpdate="post",s.saveBatch="post",s.importData="post",s.exportData="post",s.remove="post",s.removeById="delete",s.removeByIds="delete",s.update="put",s.updateById="put",s.updateByIds="put",s.rdoSave="post",s.rdoListAll="post",s.rdoListByPage="post",s.rdoListVersionById="get",s.rdoSaveVersion="post",s.rdoSaveBatch="post",s.rdoUpdateVersionById="put",s.rdoRemoveVersionById="delete",s.rdoRemoveById="delete",s.rdoGetVersionById="get",s.getOne="post",s.rdoGetVersionByRefId="post",s.getById="get",s.rdoListAllVersion="post",s.rdoRefListByPage="post",s.export="post",s.import="post",s.rdoExport="post",s.rdoImport="post",s.biz_search="post",s))(Ao||{})),bo=g("MenuTypeEnum",(s=>(s.SIDEBAR="sidebar",s.MIX_SIDEBAR="mix-sidebar",s.MIX="mix",s.TOP_MENU="top-menu",s))(bo||{})),To=g("TriggerEnum",(s=>(s.NONE="NONE",s.FOOTER="FOOTER",s.HEADER="HEADER",s))(To||{})),Lo=g("MenuModeEnum",(s=>(s.VERTICAL="vertical",s.HORIZONTAL="horizontal",s.VERTICAL_RIGHT="vertical-right",s.INLINE="inline",s))(Lo||{})),Ro=g("MenuSplitTyeEnum",(s=>(s[s.NONE=0]="NONE",s[s.TOP=1]="TOP",s[s.LEFT=2]="LEFT",s))(Ro||{})),Eo=g("TopMenuAlignEnum",(s=>(s.CENTER="center",s.START="start",s.END="end",s))(Eo||{})),wo=g("MixSidebarTriggerEnum",(s=>(s.HOVER="hover",s.CLICK="click",s))(wo||{})),Co=g("PageEnum",(s=>(s.BASE_LOGIN="/login",s.BASE_TENANT="/tenant",s.BASE_HOME="/home",s.USER_CENTER="/user-center",s.PROCESS_CENTER="/process",s.MESSAGE_CENTER="/message",s.ERROR_PAGE="/exception",s.ERROR_LOG_PAGE="/error-log/list",s.USER_CENTER_PWD="/user-center/password",s))(Co||{})),Do=g("RoleEnum",(s=>(s.SUPER="super",s.TEST="test",s))(Do||{})),Po=g("SizeEnum",(s=>(s.DEFAULT="default",s.SMALL="small",s.LARGE="large",s))(Po||{})),Oo=g("ProcessStatusEnum",(s=>(s.APPROVING="APPROVING",s.COMPLETED="COMPLETED",s.REFUSED="REFUSED",s.REJECTED="REJECTED",s.TERMINATED="TERMINATED",s.WITHDRAWN="WITHDRAWN",s))(Oo||{}));const rg=g("ch_ProcessStatusMap",{APPROVING:"sys.process.status.approving",COMPLETED:"sys.process.status.completed",REFUSED:"sys.process.status.refused",REJECTED:"sys.process.status.rejected",TERMINATED:"sys.process.status.terminated",WITHDRAWN:"sys.process.status.withdrawn"});var No=g("ExamineAndApproveStateEnum",(s=>(s.MY_APPLICATION="myApplication",s.MY_AGENT="myAgent",s.MY_DONE="myDone",s.MY_CUSTOM="myCustom",s.MY_CUSTOM_Modal="myCustomModal",s))(No||{})),U=g("PluginModeEnum",(s=>(s.DESIGN="design",s.WEB="web",s.MOBILE="mobile",s))(U||{}));class Ie{projectName=me.PORTAL;tenantId="";lang="zh-CN";appInfo={}}g("GlobalPiniaState",Ie);class q{loaded=!1;isNew=!0;loading=!1;destroyed=!1;data={}}g("FormState",q);class R{disabled=!1;readonly=!1;visible=!0;keepalive=!1;destroyed=!1}g("FormItemBasicState",R);class Ae extends R{}g("FormCollapsePaneState",Ae);class be extends R{}g("FormCollapseState",be);class Te extends R{activePane=""}g("FormTabState",Te);class Le extends R{}g("FormTabPaneState",Le);class J extends R{label="";value=null;options=[]}g("FormEditItemState",J);class Re extends R{expand=!0}g("FormGroupState",Re);class Ee extends J{}g("FormItemState",Ee);const Mo=ce("global-store",{state(){return new Ie},getters:{getAppInfo(){return this.appInfo}},actions:{getAppInfo(){return this.appInfo},setProjectName(s){this.$state.projectName=s},setTenantId(s){this.$state.tenantId=s},setLang(s){this.$state.lang=s}}});class we{pinia=ge();store;constructor(){he(this.pinia),this.store=Mo()}}g("GlobalStoreUtil",we);function Bo(s){if(s instanceof Array)s&&s.length>0&&s.splice(0,s.length);else if(s instanceof Object&&s)for(const e in s)Object.prototype.hasOwnProperty.call(s,e)&&delete s[e]}class Uo{constructor(){this.map=new Map,this.maxListeners=100}setMaxListeners(e){this.maxListeners=e}getSize(e){return this.map.has(e)?this.map.get(e).length:0}addListener(e,t){if(t instanceof Function){this.map.has(e)||this.map.set(e,[]);const n=this.map.get(e);if(n.length<this.maxListeners)n.push(t);else throw new Error(`事件监听已达最大上限[${this.maxListeners}],无法新增监听!`)}}removeListener(e,t){if(this.map.has(e)){const n=this.map.get(e);if(n.length>0){for(let u=0;u<n.length;u++)if(n[u]===t){n.splice(u,1);break}}}}emit(e,...t){this.map.has(e)&&this.map.get(e).forEach(u=>{u(...t)})}async asyncEmit(e,...t){if(this.map.has(e)){const u=this.map.get(e).map(r=>r(...t));return Promise.all(u)}return[]}reset(){this.map.forEach(e=>{Bo(e)}),this.map.clear()}}class Ce{constructor(e){this.e=new Uo,this.e.setMaxListeners(e||300)}getSize(e){return this.e.getSize(e)}on(e,t){this.e.addListener(e,t)}off(e,t){this.e.removeListener(e,t)}emit(e,...t){this.e.emit(e,...t)}asyncEmit(e,...t){return this.e.asyncEmit(e,...t)}reset(){this.e.reset()}}const{toString:ko}=Object.prototype;function xo(s){return Ko(s)==="function"}const Go={"[object Boolean]":"boolean","[object Number]":"number","[object String]":"string","[object Function]":"function","[object Array]":"array","[object Date]":"date","[object RegExp]":"regExp","[object Undefined]":"undefined","[object Null]":"null","[object Object]":"object","[object Set]":"set","[object Map]":"map","[object WeakMap]":"weakmap"};function Ko(s){return Go[ko.call(s)]}function Q(s,e,t=0,n=!1,u="/"){let r="";if(n&&!/^(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)$/.test(location.hostname)){const o=location.hostname;o.indexOf(".")!==o.lastIndexOf(".")&&(r=`;domain=${o.substring(o.indexOf("."),o.length)}`)}if(t!==0){const l=t*24*60*60*1e3,o=new Date(new Date().getTime()+l);document.cookie=`${s}=${escape(e)};path=${u};expires=${o.toUTCString()}${r}`}else document.cookie=`${s}=${escape(e)};path=${u}${r}`}function De(s,e){Q(s,"",-1,e)}function Pe(s){const e=new RegExp(`(^| )${s}=([^;]*)(;|$)`),t=document.cookie.match(e);return t&&t.length>1?unescape(t[2]):null}class F{constructor(){this.items=[]}get size(){return this.items.length}callSync(e,...t){const n=e||Object.create({});let u;for(let r=0;r<this.items.length;r++){const l=this.items[r];if(l.fn&&(u=l.fn(n,...t)),u===null){console.warn(`因${l.fn?l.fn.name:null}方法返回值为「null」,钩子中断执行。`,l);break}}return n}tap(e){if(e&&xo(e)){const t={mode:"sync"};t.fn=e,this.items.push(t)}}removeTap(e){if(e)for(let t=0;t<this.items.length;t++){const n=this.items[t];e===n.fn&&this.items.splice(t,1)}}clear(){this.items=[]}}class Z{map=new Map;providers=new Map;hooks={register:new F,unregister:new F};register(e,t){this.map.set(e,t);const n=t();this.providers.set(e,n),this.hooks.register.callSync(null,e,n)}unregister(e){this.map.delete(e);const t=this.providers.get(e);t&&(this.hooks.unregister.callSync(null,e,t),this.providers.delete(e))}getProvider(e){return this.providers.get(e)}getKeys(){return Array.from(this.map.keys())}getProviders(){return Array.from(this.providers.values())}}g("DesignerRegister",Z);class N{static editors=new Map;static providers=new Map;static register(e,t){N.editors.set(e,t)}static unregister(e){N.editors.delete(e)}static get(e){if(this.providers.has(e))return this.providers.get(e);const t=N.editors.get(e);if(t){const n=t();return this.providers.set(e,n),n}return null}}g("EditorRegister",N);class M{static items=new Map;static register(e,t){M.items.set(e,t)}static unregister(e){M.items.delete(e)}static create(e){const t=M.items.get(e);return t?t():null}}g("FormItemRegister",M);class Y{map=new Map;hooks={register:new F,unregister:new F};register(e,t){this.map.set(e,t),this.hooks.register.callSync(null,e,t)}unregister(e){this.map.delete(e),this.hooks.unregister.callSync(null,e)}get(e){return this.map.get(e)}keys(){return Array.from(this.map.keys())}}g("RenderRegister",Y);class Oe{configs=new Map;cache=new Map;getConfig(e){return this.configs.get(e)}register(e){this.configs.set(e.tag,e),e.items&&this.cache.set(e.tag,e.items)}unregister(e){this.configs.delete(e),this.cache.delete(e)}get(e){return this.cache.get(e)||[]}async asyncGet(e,t){const n=this.configs.get(e);return n?n.mode==="static"?this.getByConfig(n):n.mode==="async"?this.cache.has(e)?this.cache.get(e)||[]:this.asyncGetByConfig(n,t):[]:[]}getByConfig(e){return e.items||[]}async asyncGetByConfig(e,t={}){if(e.fetch){const n=await e.fetch(t||{});if(n){const[u,r]=e.keys||["name","id"];return this.deepFormat(n,u,r)}}return[]}deepFormat(e,t,n){return e.map(u=>{const r={label:u[t],value:u[n]};return u.children&&u.children.length>0&&(r.options=this.deepFormat(u.children,t,n)),r})}}g("DictionaryUtil",Oe);function Vo(s,e){return _gct.i18n.global.t(s,e)}var Ne=g("EditorRegisterConst",(s=>(s.PREFIX="EDITOR___",s))(Ne||{})),Fo=g("EditorType",(s=>(s.LENGTH_UNIT="length-unit",s.COLOR="color",s.SPAN="span",s.TEXT="text",s.NUMBER="number",s.INFO="info",s.SELECT="select",s.RADIO="radio",s.PICKER="picker",s.I18N="i18n",s.TEXTAREA="textarea",s.DATE_RANGE="date-range",s.SWITCH="switch",s.CHECK_SWITCH="check-switch",s.ICON_SELECT="icon-select",s.CHECKBOX="checkbox",s))(Fo||{})),$o=g("EditorTypeOld",(s=>(s.LENGTH_UNIT="length-unit-editor",s.COLOR="color-editor",s.SPAN="span-editor",s.TEXT="text-editor",s.NUMBER="number-editor",s.INFO="info-editor",s.SELECT="select-editor",s.MODEL_SELECT="model-editor",s.Field_SELECT="field-editor",s.RADIO="radio-editor",s.PICKER="picker-editor",s.I18N="i18n-editor",s.TEXTAREA="textarea-editor",s.DATE_RANGE="date-range-editor",s.SWITCH="switch-editor",s.CHECK_SWITCH="check-switch-editor",s.ICON_SELECT="icon-select-editor",s.CHECKBOX="checkbox-editor",s.BORDER="border-editor",s.BORDER_RADIUS="border-radius-editor",s.ALIGN="align-editor",s.FONT_STYLE="font-style-editor",s.POSITION="position-editor",s.SPACING="spacing-editor",s.MARGIN="margin-editor",s))($o||{})),Ho=g("FormContainerType",(s=>(s.FORM_TITLE_GROUP="form-title-group",s))(Ho||{}));const B=g("CoreConst",{TOKEN:"gct-token",TENANT:"gct-tenant"}),Xo=g("STYLE_NAMESPACE_TAG","gct"),Wo=g("PLUGIN_BASE_URL","/minio"),jo="is-";function w(s,e,t,n,u){let r=`${s}-${e}`;return t&&(r+=`-${t}`),n&&(r+=`__${n}`),u&&(r+=`--${u}`),r}class Me{constructor(e,t){this.block=e,this.namespace=t||Xo}namespace;b(e=""){return w(this.namespace,this.block,e,"","")}e(e){return e?w(this.namespace,this.block,"",e,""):""}m(e){return e?w(this.namespace,this.block,"","",e):""}be(e,t){return e&&t?w(this.namespace,this.block,e,t,""):""}em(e,t){return e&&t?w(this.namespace,this.block,"",e,t):""}bm(e,t){return e&&t?w(this.namespace,this.block,e,"",t):""}bem(e,t,n){return e&&t&&n?w(this.namespace,this.block,e,t,n):""}is(e,t){return e&&t?`${jo}${e}`:""}cssVar(e){const t={};for(const n in e)e[n]&&(t[this.cssVarName(n)]=e[n]);return t}cssVarBlock(e){const t={};for(const n in e)e[n]&&(t[this.cssVarBlockName(n)]=e[n]);return t}cssVarName(e){return`--${this.namespace}-${e}`}cssVarBlockName(e){return`--${this.namespace}-${this.block}-${e}`}}g("Namespace",Me);function zo(s){return s&&s.__esModule&&Object.prototype.hasOwnProperty.call(s,"default")?s.default:s}var ee,Be;function qo(){if(Be)return ee;Be=1;function s(u){if(typeof u!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(u))}function e(u,r){for(var l="",o=0,c=-1,d=0,a,p=0;p<=u.length;++p){if(p<u.length)a=u.charCodeAt(p);else{if(a===47)break;a=47}if(a===47){if(!(c===p-1||d===1))if(c!==p-1&&d===2){if(l.length<2||o!==2||l.charCodeAt(l.length-1)!==46||l.charCodeAt(l.length-2)!==46){if(l.length>2){var _=l.lastIndexOf("/");if(_!==l.length-1){_===-1?(l="",o=0):(l=l.slice(0,_),o=l.length-1-l.lastIndexOf("/")),c=p,d=0;continue}}else if(l.length===2||l.length===1){l="",o=0,c=p,d=0;continue}}r&&(l.length>0?l+="/..":l="..",o=2)}else l.length>0?l+="/"+u.slice(c+1,p):l=u.slice(c+1,p),o=p-c-1;c=p,d=0}else a===46&&d!==-1?++d:d=-1}return l}function t(u,r){var l=r.dir||r.root,o=r.base||(r.name||"")+(r.ext||"");return l?l===r.root?l+o:l+u+o:o}var n={resolve:function(){for(var r="",l=!1,o,c=arguments.length-1;c>=-1&&!l;c--){var d;c>=0?d=arguments[c]:(o===void 0&&(o=process.cwd()),d=o),s(d),d.length!==0&&(r=d+"/"+r,l=d.charCodeAt(0)===47)}return r=e(r,!l),l?r.length>0?"/"+r:"/":r.length>0?r:"."},normalize:function(r){if(s(r),r.length===0)return".";var l=r.charCodeAt(0)===47,o=r.charCodeAt(r.length-1)===47;return r=e(r,!l),r.length===0&&!l&&(r="."),r.length>0&&o&&(r+="/"),l?"/"+r:r},isAbsolute:function(r){return s(r),r.length>0&&r.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var r,l=0;l<arguments.length;++l){var o=arguments[l];s(o),o.length>0&&(r===void 0?r=o:r+="/"+o)}return r===void 0?".":n.normalize(r)},relative:function(r,l){if(s(r),s(l),r===l||(r=n.resolve(r),l=n.resolve(l),r===l))return"";for(var o=1;o<r.length&&r.charCodeAt(o)===47;++o);for(var c=r.length,d=c-o,a=1;a<l.length&&l.charCodeAt(a)===47;++a);for(var p=l.length,_=p-a,S=d<_?d:_,v=-1,f=0;f<=S;++f){if(f===S){if(_>S){if(l.charCodeAt(a+f)===47)return l.slice(a+f+1);if(f===0)return l.slice(a+f)}else d>S&&(r.charCodeAt(o+f)===47?v=f:f===0&&(v=0));break}var A=r.charCodeAt(o+f),P=l.charCodeAt(a+f);if(A!==P)break;A===47&&(v=f)}var I="";for(f=o+v+1;f<=c;++f)(f===c||r.charCodeAt(f)===47)&&(I.length===0?I+="..":I+="/..");return I.length>0?I+l.slice(a+v):(a+=v,l.charCodeAt(a)===47&&++a,l.slice(a))},_makeLong:function(r){return r},dirname:function(r){if(s(r),r.length===0)return".";for(var l=r.charCodeAt(0),o=l===47,c=-1,d=!0,a=r.length-1;a>=1;--a)if(l=r.charCodeAt(a),l===47){if(!d){c=a;break}}else d=!1;return c===-1?o?"/":".":o&&c===1?"//":r.slice(0,c)},basename:function(r,l){if(l!==void 0&&typeof l!="string")throw new TypeError('"ext" argument must be a string');s(r);var o=0,c=-1,d=!0,a;if(l!==void 0&&l.length>0&&l.length<=r.length){if(l.length===r.length&&l===r)return"";var p=l.length-1,_=-1;for(a=r.length-1;a>=0;--a){var S=r.charCodeAt(a);if(S===47){if(!d){o=a+1;break}}else _===-1&&(d=!1,_=a+1),p>=0&&(S===l.charCodeAt(p)?--p===-1&&(c=a):(p=-1,c=_))}return o===c?c=_:c===-1&&(c=r.length),r.slice(o,c)}else{for(a=r.length-1;a>=0;--a)if(r.charCodeAt(a)===47){if(!d){o=a+1;break}}else c===-1&&(d=!1,c=a+1);return c===-1?"":r.slice(o,c)}},extname:function(r){s(r);for(var l=-1,o=0,c=-1,d=!0,a=0,p=r.length-1;p>=0;--p){var _=r.charCodeAt(p);if(_===47){if(!d){o=p+1;break}continue}c===-1&&(d=!1,c=p+1),_===46?l===-1?l=p:a!==1&&(a=1):l!==-1&&(a=-1)}return l===-1||c===-1||a===0||a===1&&l===c-1&&l===o+1?"":r.slice(l,c)},format:function(r){if(r===null||typeof r!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof r);return t("/",r)},parse:function(r){s(r);var l={root:"",dir:"",base:"",ext:"",name:""};if(r.length===0)return l;var o=r.charCodeAt(0),c=o===47,d;c?(l.root="/",d=1):d=0;for(var a=-1,p=0,_=-1,S=!0,v=r.length-1,f=0;v>=d;--v){if(o=r.charCodeAt(v),o===47){if(!S){p=v+1;break}continue}_===-1&&(S=!1,_=v+1),o===46?a===-1?a=v:f!==1&&(f=1):a!==-1&&(f=-1)}return a===-1||_===-1||f===0||f===1&&a===_-1&&a===p+1?_!==-1&&(p===0&&c?l.base=l.name=r.slice(1,_):l.base=l.name=r.slice(p,_)):(p===0&&c?(l.name=r.slice(1,a),l.base=r.slice(1,_)):(l.name=r.slice(p,a),l.base=r.slice(p,_)),l.ext=r.slice(a,_)),p>0?l.dir=r.slice(0,p-1):c&&(l.dir="/"),l},sep:"/",delimiter:":",win32:null,posix:null};return n.posix=n,ee=n,ee}var Jo=qo();const te=zo(Jo);class Qo{static cache=new Map;static cacheModules=new Map;static module=new Map;static async loadPluginConfig(e,t,n=[]){const u=`${e}-${t}-${n.join("_")}`;if(this.cache.has(u))return this.cache.get(u);const r={client:t===V.WEB?"WEB":"MOBILE"};n.length>0&&(r.tag=n.join(","));const o=(await _gct.api.platform.plugin.postGetTenantCompList(r)).data;return o.length>0&&this.cache.set(u,o),o}static async loadPlugins(e,t=[]){const n={};if(t.length>0){const u=t.map(l=>{const o=te.join(Wo,l.url,"dist");return{imports:{[l.key]:`${o}/${e}.system.min.js?version=${l.version}`},styles:{[l.key]:`${o}/${e}.min.css?version=${l.version}`}}}),r=[];u.forEach(l=>{System.addImportMap(l),l.imports&&Object.keys(l.imports).forEach(o=>{const c=async()=>{try{const d=await System.import(o);n[o]=d,this.module.set(o,d)}catch(d){console.error(d)}};r.push(c())})}),await Promise.all(r)}return n}static async loadPlugin(e,t,n){n=["common",...n];const u=`${e}-${t}-${n.join("_")}`;try{const r=await this.loadPluginConfig(e,t,n);if(!this.cacheModules.has(u)){const l=[];r.forEach(c=>{c.plugins&&l.push(...c.plugins)});const o=await this.loadPlugins(e,l);this.cacheModules.set(u,o)}return[r,this.cacheModules.get(u)]}catch(r){console.error(r)}return[[],{}]}static async loadDesignPlugin(e,t,n=[]){try{const u=await this.loadPlugin(U.DESIGN,t,n),[r,l]=u;return r.forEach(o=>{o.plugins.forEach(d=>{const a=l[d.key];if(!a){console.error(`${d.key} 插件加载失败,请检查插件配置是否正确`);return}if(t===V.WEB){const p=a.web??a.default;p&&_gct.register.designer.web.register(d.key,()=>new p)}else{const p=a.mobile??a.default;p&&_gct.register.designer.mobile.register(d.key,()=>new p)}})}),u}catch(u){console.error(u)}return[[],{}]}static async loadDesignDeletedPlugins(e,t=[]){try{const n=await this.loadPlugins(U.DESIGN,t);t.forEach(u=>{const r=n[u.key];if(!r){console.error(`${u.key} 插件加载失败,请检查插件配置是否正确`);return}if(e===V.WEB){const l=r.web??r.default;l&&_gct.register.designer.web.register(u.key,()=>new l)}else{const l=r.mobile??r.default;l&&_gct.register.designer.mobile.register(u.key,()=>new l)}})}catch(n){console.error(n)}}static async loadMobilePlugin(e=[]){try{const t=await this.loadPlugins(U.MOBILE,e);e.forEach(n=>{if(!t[n.key]){console.error(`${n.key} 插件加载失败,请检查插件配置是否正确`);return}_gct.register.render.mobile.register(n.key,t[n.key].default)})}catch(t){console.error(t)}}static async loadWebPlugin(e=[]){try{const t=await this.loadPlugins(U.WEB,e);e.forEach(n=>{if(!t[n.key]){console.error(`${n.key} 插件加载失败,请检查插件配置是否正确`);return}_gct.register.render.web.register(n.key,t[n.key].default)})}catch(t){console.error(t)}}}g("PluginPgkUtil",Qo);class Zo{constructor(e,t=!1){this.isDev=t,this.url=new URL(e),this.baseDir=te.dirname(this.url.pathname)}baseDir;url;dir(e){return this.isDev===!0?e:this.url.origin+te.resolve(this.baseDir,e)}}g("PluginStaticResource",Zo);function Yo(){return Pe(B.TOKEN)}function ec(s){s?Q(B.TOKEN,s,7,!0):De(B.TOKEN,!0)}function tc(){return Pe(B.TENANT)}function sc(s){s?Q(B.TENANT,s,7,!0):De(B.TENANT,!0)}function nc(){const s=location.pathname.replace("/src/projects","").split("/");return{aid:s[2],pid:s[3]}}const lg=g("isMobile",(()=>{const s=navigator.userAgent,e=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/,t=window.innerWidth<=768,n="ontouchstart"in window||navigator.maxTouchPoints>0;return e.test(s)||t&&n})());function rc(){return localStorage.getItem(go)||"UTC+08:00"}function lc(s,e,t,n){return{install(u){s&&e&&_gct.register.editor.register(Ne.PREFIX+s,e),t&&u.component(n??t.name,t)}}}class Ue{i18n=re({});storeUtil=new we;store=this.storeUtil.store;message;dictionary=new Oe;register={designer:{mobile:new Z,web:new Z},render:{mobile:new Y,web:new Y},editor:N,formItem:M};api={apaas:new Jn,platform:new fa};t(e,t){return this.i18n.global.t(e,t)}}g("GctGlobal",Ue);class ke{constructor(e){this.model=e,this.init()}evt=new Ce;state=new q;item={};provider={};context={};params={};fields=[];modelMap={};init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent(),this.calcState()}initEvent(){}calcState(){}initFormItems(e){e.forEach(t=>{let n=null;if((t.type==="item"||t.type==="hidden")&&(this.fields.push(t.name),this.modelMap[t.name]=t),t.type==="item"&&(n=_gct.register.formItem.create(`${t.type}___${t.editor.type}___${t.name}`),n||(n=_gct.register.formItem.create(`${t.type}___${t.editor.type}`))),n||(n=_gct.register.formItem.create(t.type)),!n){console.error(`未找到表单项提供者:${t.type}`,t);return}if(this.provider[t.name]=n,t.type==="item"){const u=t;this.item[u.name]=n.createController(this,u)}else if(t.type==="hidden"){const u=t;this.item[u.name]=n.createController(this,u)}else if(t.type==="container"||t.container){const u=t;this.item[t.name]=n.createController(this,u),u.children&&this.initFormItems(u.children)}})}calcHidden(){Object.keys(this.item).forEach(t=>{const n=this.item[t];if(n.model.hidden){const u=n.model.hidden(this,n,this.state.data);u!=null&&(n.state.visible=!u)}})}getData(){const e={};return this.fields.forEach(t=>{const n=this.item[t];n&&(n.state.visible===!0||n.model.type==="hidden")&&(e[n.key]=n.value)}),e}resetData(){this.fields.forEach(e=>{const t=this.item[e];t&&t.reset()})}async load(){try{if(!this.model.loadRequest)return{};this.state.loading=!0;const e=await this.model.loadRequest({id:this.context.id});return this.fields.forEach(t=>{const n=this.item[t];n&&(n.value=e[n.key]),n.defaultValue()}),this.state.loaded=!0,e}finally{this.state.loading=!1}}destroy(){this.state.destroyed=!0,this.evt.reset(),this.fields.forEach(e=>{const t=this.item[e];t&&t.destroy()})}validate(){return Promise.resolve(!0)}validateItem(e){return Promise.resolve(!0)}loaded(){this.calcHidden(),this.fields.forEach(e=>{this.item[e].defaultValue()}),this.calcState()}mounted(){}}g("GctFormController",ke);class ic extends ke{initEvent(){super.initEvent(),this.evt.on("change",(e,t,n)=>{if(this.model.watch){const r=this.model.watch[e];r&&r(this,t,n)}const u=this.item[e];u&&u.model.watch&&u.model.watch(this,u,t,n),t!=n&&this.calcHidden(),this.model.autosave===!0&&this.state.loading===!1&&this.autoSave()})}autoSave(){return this.save()}save(){const e=this.getData();return this.state.isNew===!0&&this.model.newRequest?this.model.newRequest(e):this.model.updateRequest?this.model.updateRequest({id:this.context.id},e):Promise.resolve(e)}}g("EditFormController",ic);function ac(s){const e=s();return e.state=x(e.state),de(()=>e.destroy()),e}class se{model;constructor(e){this.model=e}}g("EditorController",se);class xe{constructor(e){this.model=e,this.init()}evt=new Ce;context={};params={};state=new q;item={};provider={};load(){throw new Error("Method not implemented.")}loaded(){throw new Error("Method not implemented.")}destroy(){throw new Error("Method not implemented.")}validate(){throw new Error("Method not implemented.")}validateItem(e){throw new Error("Method not implemented.")}mounted(){throw new Error("Method not implemented.")}init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent()}initEvent(){}initFormItems(e){e.forEach(t=>{let n=null;if(t.type==="item"&&(n=_gct.register.formItem.create(`${t.type}___${t.editor.type}___${t.name}`),n||(n=_gct.register.formItem.create(`${t.type}___${t.editor.type}`))),n||(n=_gct.register.formItem.create(t.type)),!n){console.error(`未找到表单项提供者:${t.type}`,t);return}if(this.provider[t.name]=n,t.type==="item"){const u=t;this.item[u.name]=n.createController(this,t)}else if(t.type==="container"){const u=t;this.item[t.name]=n.createController(this,t),u.children&&this.initFormItems(u.children)}})}getData(){return{}}resetData(){Object.keys(this.state.data).forEach(t=>{const n=this.state.data[t];n&&(typeof n=="object"?Array.isArray(n)?this.state.data[t]=[]:this.state.data[t]={}:this.state.data[t]=null)})}}g("FormController",xe);function uc(s){const e=new xe(s);return e.state=x(e.state),e}class C{constructor(e,t){this.form=e,this.model=t,this.init()}state=this.crateItemState();get data(){return this.form.state.data}init(){}destroy(){this.state.destroyed=!0}crateItemState(){return new R}}g("FormItemBasicController",C);function oc(s){const e=s();return e.state=x(e.state),e}class cc extends C{type="collapse-pane";crateItemState(){return new Ae}}g("FormCollapsePaneController",cc);class gc extends C{type="collapse";crateItemState(){return new be}}g("FormCollapseController",gc);class hc extends C{type="tab";crateItemState(){return new Te}}g("FormTabController",hc);class dc extends C{type="tab-pane";crateItemState(){return new Le}}g("FormTabPaneController",dc);class pc extends C{type="group";crateItemState(){return new Re}}g("FormGroupController",pc);class ne extends C{get key(){return this.model.field??this.model.name}get value(){return this.form.state.data[this.key]}set value(e){const t=k(this.form.state.data[this.key]);this.form.state.data[this.key]=e,this.form.evt.emit("change",this.key,e,t),this.state.value=e}get editorValue(){return this.model.fields?this.model.fields.map(e=>this.form.item[e].value):this.value}set editorValue(e){this.model.fields?this.model.fields.forEach((t,n)=>{this.form.item[t].value=e?.[n]}):this.value=e}init(){if(super.init(),this.model.type!=="hidden"){const{editor:e}=this.model;this.state.readonly=e.readonly,e.disabled!=null&&(this.state.disabled=e.disabled)}if(this.model.dictionary){const{mode:e}=this.model.dictionary;e==="static"&&(this.state.options=this.model.dictionary.items||[])}}defaultValue(){this.form.state.data[this.key]===void 0&&this.model.defaultValue!==void 0&&(this.form.state.data[this.key]=this.model.defaultValue)}reset(){this.model.defaultValue!==void 0?this.value=this.model.defaultValue:this.value=void 0}crateItemState(){return new J}}g("FormEditItemController",ne);class yc extends ne{type="item";async loadDictionary(e){if(this.state.options.length>0)return this.state.options;this.state.options=[],this.state.loading=!0;try{return this.model.dictionary?this.state.options=await _gct.dictionary.asyncGetByConfig(this.model.dictionary,e):this.model.dictionaryTag&&(this.state.options=await _gct.dictionary.asyncGet(this.model.dictionaryTag,e)),this.state.options}finally{this.state.loading=!1}}clearDictionary(){this.state.options=[]}crateItemState(){return new Ee}}g("FormItemController",yc);class _c extends ne{type="hidden"}g("FormHiddenItemController",_c);class fc extends se{}g("LengthUnitEditorController",fc);class vc extends se{}g("ColorEditorController",vc);function Ge(){return H("formController")}function Sc(s){let e=null;if(s){const n=Ge().item[s];n&&(e=G({get(){return n.value},set(u){typeof u=="string"&&(u=u.trim()),!(typeof u!="object"&&n.value==u)&&(n.value=u)}}))}else{let t=X().proxy;const n=t.$props,u=t.$emit;e=G({get:()=>n.value,set:r=>{typeof r=="string"&&(r=r.trim()),!(typeof r!="object"&&n.value==r)&&u("update:value",r)}}),t=null}return e}function mc(s,e){let t=X().proxy;const n=t.$props,u=t.$emit,r=s?s.length:0,l=e?e.length:0,o=G({get:()=>{if(!n.value)return"";let c=n.value;return r>0&&c.startsWith(s)&&(c=c.substring(r)),l>0&&c.endsWith(e)&&(c=c.substring(0,c.length-l)),c},set:c=>{if(n.value===c)return;if(typeof c=="string"&&(c=c.trim()),c==""){u("update:value","");return}let d=c;r>0&&(d=s+d),l>0&&(d=d+e),u("update:value",d)}});return t=null,o}function Ic(s){const e=H("modal");return e&&s&&(e.ok=s),e}function Ac(s){return new Me(s)}function Ke(s){return typeof s<"u"}function bc(s){const e=K(s||""),t=K(!1),n=K(!1);return pe(e,u=>{Ke(u)&&(n.value=!0,t.value=Ve(u))},{immediate:!!s,flush:"sync"}),{clipboardRef:e,isSuccessRef:t,copiedRef:n}}function Ve(s,{target:e=document.body}={}){const t=document.createElement("textarea"),n=document.activeElement;t.value=s,t.setAttribute("readonly",""),t.style.contain="strict",t.style.position="absolute",t.style.left="-9999px",t.style.fontSize="12pt";const u=document.getSelection();let r;u&&u.rangeCount>0&&(r=u.getRangeAt(0)),e.append(t),t.select(),t.selectionStart=0,t.selectionEnd=s.length;let l=!1;try{l=document.execCommand("copy")}catch(o){throw new Error(o)}return t.remove(),r&&u&&(u.removeAllRanges(),u.addRange(r)),n&&n.focus(),l}const D={UNAUTHORIZED:401,FORBIDDEN:403,NOT_FOUND:404,INTERNAL_SERVER_ERROR:500,BAD_GATEWAY:502,SERVICE_UNAVAILABLE:503,GATEWAY_TIMEOUT:504};class Tc{handle(e){console.error(e)}}class Lc{handle(e){console.error(e)}}class Rc{handle(e){if(e.type===b.AJAX){new Fe().handle(e);return}console.error(e)}}class Fe{handle(e){const t=this._extractStatusCode(e.message);if(t)switch(t){case D.UNAUTHORIZED:this._handleUnauthorized();break;case D.FORBIDDEN:this._handleForbidden();break;case D.NOT_FOUND:this._handleNotFound();break;case D.INTERNAL_SERVER_ERROR:case D.BAD_GATEWAY:case D.SERVICE_UNAVAILABLE:case D.GATEWAY_TIMEOUT:this._handleServerError(t);break;default:this._handleGenericHttpError(e);break}else this._handleGenericHttpError(e)}_extractStatusCode(e){const t=e.match(/HTTP\s+(\d{3})|Business\s+Error\s+\[(\d+)\]/);return t?parseInt(t[1]||t[2],10):null}_handleGenericHttpError(e){e.message.includes("Business Error")?console.debug("Handling business error:",e.message):e.message.includes("Network")?console.debug("Handling network error:",e.message):console.debug("Handling HTTP error:",e.message)}_handleUnauthorized(){console.warn("Unauthorized access, redirecting to login...")}_handleForbidden(){console.warn("Access forbidden")}_handleNotFound(){console.warn("Resource not found")}_handleServerError(e){console.warn(`Server error: ${e}`)}}class $e{static _strategies=new Map;static init(){this.registerStrategy(b.SCRIPT,new Tc),this.registerStrategy(b.VUE,new Lc),this.registerStrategy(b.PROMISE,new Rc),this.registerStrategy(b.AJAX,new Fe)}static getStrategy(e){return this._strategies.get(e)}static registerStrategy(e,t){this._strategies.set(e,t)}}class T{static _instance;constructor(){this._initializeStrategies()}static getInstance(){return T._instance||(T._instance=new T),T._instance}static init(){T.getInstance()}static handleVueError(e,t,n){const u={type:b.VUE,message:`Vue Error: ${e.message} | Info: ${n}`,stack:e.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(u)}static reportError(e,t=b.SCRIPT){const n={type:t,message:e.message,stack:e.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(n)}_initializeStrategies(){$e.init()}_processError(e){$e.getStrategy(e.type)?.handle(e)}}async function Ec(s){T.init(),s.config.errorHandler=(e,t,n)=>{T.handleVueError(e,t,n)},s.config.warnHandler=(e,t,n)=>{console.warn(`Vue Warning: ${e}`),n&&console.warn("Trace:",n)},window.addEventListener("error",e=>{T.reportError(new Error(e.message),b.SCRIPT)}),window.addEventListener("unhandledrejection",e=>{T.reportError(e.reason,b.PROMISE)})}async function wc(s){await Ec(s)}function He(){if(window._gct){console.warn("核心包已安装,请勿重复安装!");return}console.info("核心包安装成功!"),window._gct=new Ue}})}}));
1
+ System.register(["pinia","qs","lodash-es","vue","axios","vue-i18n","vue-router","@gct-paas/api"],(function(o,Kl){"use strict";var Q,ft,ht,ue,pe,Y,ve,gt,Et,De,fe,D,mt,Tt,At,j,M,C,ae,he,Me,ge,ye,Rt,bt,St,It,Nt,Ot,Lt,Ce;return{setters:[R=>{Q=R.defineStore,ft=R.createPinia,ht=R.setActivePinia},R=>{ue=R.default},R=>{pe=R.isEmpty,Y=R.cloneDeep,ve=R.mergeWith,gt=R.unionWith,Et=R.isEqual,De=R.omit,fe=R.has},R=>{D=R.reactive,mt=R.createApp,Tt=R.h,At=R.nextTick,j=R.isRef,M=R.computed,C=R.ref,ae=R.watch,he=R.unref,Me=R.onUnmounted,ge=R.inject,ye=R.getCurrentInstance,Rt=R.shallowRef,bt=R.onMounted},R=>{St=R.AxiosHeaders},R=>{It=R.createI18n},R=>{Nt=R.createRouter,Ot=R.createWebHashHistory},R=>{Lt=R.HttpUtil,Ce=R.api}],execute:(function(){o({afterFieldSet:os,afterValueSet:ss,buildItemRules:Da,buildShortUUID:as,buildUUID:rs,cacheFnReturn:us,computedEx:ds,copyTextToClipboard:Kn,createAppVue:Bl,deepMerge:ns,emitFieldSet:cs,gctFormItemEditorProps:qa,genUrl:Un,getDeviceFingerprint:Qe,getPageIdentification:Cn,getTenant:zt,getTimezone:Qt,getToken:me,interceptors:tn,isDef:jn,isSortFiled:Mc,openWindow:Dc,parseMatrixParams:qt,parseValueUnit:ls,setTenant:es,setToken:xt,setupApp:kl,setupErrorHandler:Zn,setupI18n:Hn,stringifyMatrixParams:is,useAppInst:tl,useCopyToClipboard:cl,useEditFormController:Xc,useForm:Yn,useFormController:Yc,useFormItemController:jc,useGctFormValue:nl,useGctFormValueByText:il,useIFrameProps:al,useModal:rl,useNamespace:Ha,useUUid:yc,useWuJieBus:ol,useWuJieProps:sl,widthEditorInstall:fs});const R=o("SIDE_BAR_MINI_WIDTH",48),$l=o("SIDE_BAR_SHOW_TIT_MINI_WIDTH",80);var qn=o("ContentEnum",(e=>(e.FULL="full",e.FIXED="fixed",e))(qn||{})),ei=o("ThemeEnum",(e=>(e.DARK="dark",e.LIGHT="light",e))(ei||{})),ti=o("SettingButtonPositionEnum",(e=>(e.AUTO="auto",e.HEADER="header",e.FIXED="fixed",e))(ti||{})),ni=o("SessionTimeoutProcessingEnum",(e=>(e[e.ROUTE_JUMP=0]="ROUTE_JUMP",e[e.PAGE_COVERAGE=1]="PAGE_COVERAGE",e))(ni||{})),ii=o("PermissionModeEnum",(e=>(e.ROLE="ROLE",e.BACK="BACK",e.ROUTE_MAPPING="ROUTE_MAPPING",e.PLATFORM_ROLE="PLATFORM_ROLE",e))(ii||{})),ri=o("RouterTransitionEnum",(e=>(e.ZOOM_FADE="zoom-fade",e.ZOOM_OUT="zoom-out",e.FADE_SIDE="fade-slide",e.FADE="fade",e.FADE_BOTTOM="fade-bottom",e.FADE_SCALE="fade-scale",e))(ri||{})),_t=o("ProjectName",(e=>(e.PORTAL="portal",e.BACKEND_MANAGEMENT="backend-management",e.DEVELOPER_CENTER="developer-center",e.TENANT_CENTER="tenant-center",e.APP_DESIGNER="app-designer",e.PAGE_DESIGNER="page-designer",e.WEB_RENDER="web-render",e.MOBILE_RENDER="mobile-render",e))(_t||{})),ai=o("FIELD_TYPE_CATEGORY",(e=>(e.ALL="field_type_all",e.BASIC="field_type_basic",e.LOGIC="field_type_logic",e.TRACE="field_type_trace",e))(ai||{})),h=o("FIELD_TYPE",(e=>(e.PRIMARY_KEY="primary_key",e.ASSOCIATED_PRIMARY_KEY="associated_primary_key",e.TEXT="text",e.LONG_TEXT="long_text",e.INTEGER="integer",e.LONG="long",e.DOUBLE="double",e.DECIMAL="decimal",e.BOOLEAN="boolean",e.DATE="date",e.TIME="time",e.DATE_TIME="date_time",e.IMAGE="image",e.ATTACHMENT="attachment",e.SERIAL="serial_number",e.MASTERSLAVE="master_slave",e.USER="user",e.USER_MULTI="user_multi",e.ORG="org",e.ORG_MULTI="org_multi",e.ENUM="enum",e.ENUM_MULTI="enum_multi",e.OPTION="option",e.OPTION_MULTI="option_multi",e.REF="ref",e.REF_MULTI="ref_multi",e.RDO_REF="rdo_ref",e.EXPRESSION="expression",e.EXPRESSION_CONDITION="expression_condition",e.AGG="agg",e.ESOP="esop",e.TRANSACTION="transaction",e.LABEL_TEMPLATE="label_template",e.LABEL_TEMPLATE_REF="label_template_ref",e.DOCUMENT_TEMPLATE="document_template",e.SERIALRULE="serial_number_rule",e.PRINTER="printer",e.MESSAGE_TMPL="message_tmpl",e.RANGE_USER="range_user",e.SIGNATURE="electronic_signature",e.ONLINE_FORM_TEMPLATE="online_form_tmpl",e.E_DHR_TEMPLATE="edhr_tmpl",e.ONLINE_FORM="online_form",e.DATA_TABLE_FORMULA="data_table_formula",e.READONLYCMP="readonlycmp",e.MATERIAL_NO="material_no",e.PRODUCT="product",e.DEVICE="device",e.Biz_Process="biz_process",e.TENANT="tenant",e))(h||{})),si=o("FIELD_TYPE_BASIC",(e=>(e.TEXT="text",e.LONG_TEXT="long_text",e.INTEGER="integer",e.LONG="long",e.DOUBLE="double",e.DECIMAL="decimal",e.BOOLEAN="boolean",e.DATE="date",e.TIME="time",e.DATE_TIME="date_time",e))(si||{})),oi=o("FIELD_TYPE_LOGIC",(e=>(e.IMAGE="image",e.ATTACHMENT="attachment",e.SERIAL="serial_number",e.MASTERSLAVE="master_slave",e.USER="user",e.USER_MULTI="user_multi",e.ORG="org",e.ORG_MULTI="org_multi",e.ENUM="enum",e.ENUM_MULTI="enum_multi",e.OPTION="option",e.OPTION_MULTI="option_multi",e.REF="ref",e.REF_MULTI="ref_multi",e.RDO_REF="rdo_ref",e.EXPRESSION="expression",e.EXPRESSION_CONDITION="expression_condition",e.AGG="agg",e.ESOP="esop",e.TRANSACTION="transaction",e.LABEL_TEMPLATE="label_template",e.LABEL_TEMPLATE_REF="label_template_ref",e.DOCUMENT_TEMPLATE="document_template",e.SERIALRULE="serial_number_rule",e.PRINTER="printer",e.MESSAGE_TMPL="message_tmpl",e.RANGE_USER="range_user",e.SIGNATURE="electronic_signature",e.ONLINE_FORM_TEMPLATE="online_form_tmpl",e.E_DHR_TEMPLATE="edhr_tmpl",e.ONLINE_FORM="online_form",e.Biz_Process="biz_process",e))(oi||{})),ci=o("FIELD_TYPE_TRACE",(e=>(e.MATERIAL_NO="material_no",e.PRODUCT="product",e.DEVICE="device",e))(ci||{}));const Zl=o("FieldTypeToJs",{attachment:"string",boolean:"boolean",date:"string",date_time:"string",decimal:"number",double:"number",enum:"string",enum_multi:"string",image:"string",integer:"number",long:"number",long_text:"string",master_slave:"string",org:"string",org_multi:"string",rdo_ref:"string",ref:"string",ref_multi:"string",serial_number:"string",text:"string",time:"string",user:"string",user_multi:"string",expression:"string",expression_condition:"string",agg:"number",esop:"string",serial_number_rule:"string",label_template:"string",label_template_ref:"string",document_template:"string",transaction:"string",printer:"string",message_tmpl:"string",range_user:"string",primary_key:"string",associated_primary_key:"string",readonlycmp:"string",material_no:"string",product:"string",device:"string",option:"string",option_multi:"string",electronic_signature:"string",online_form_tmpl:"string",edhr_tmpl:"string",online_form:"string",data_table_formula:"string",biz_process:"string",tenant:"string"});var li=o("CreateType",(e=>(e.SYSTEM="SYSTEM",e.USER_DEFINED="USER_DEFINED",e.BUILTIN="BUILTIN",e.CUSTOM="CUSTOM",e.PROCESS="PROCESS",e))(li||{})),di=o("MenuType",(e=>(e.CATALOG="CATALOG",e.STANDARD="STANDARD",e.LINK="LINK",e))(di||{})),ui=o("OpenMode",(e=>(e.PRESENT="PRESENT",e.IFRAME="IFRAME",e.NEW="NEW",e))(ui||{})),fi=o("MaterialEnum",(e=>(e.MaterialFormField="formField",e.MaterialTableField="tableField",e.MaterialEmbedTableField="embedTableField",e.MaterialSubTableField="subTableField",e.MaterialSubTableModalField="subTableModalField",e.cardListFormField="cardList",e.MaterialTableSelectField="tableSelectField",e.DescriptionsFormField="descriptions",e))(fi||{}));const Jl=o("FieldIconMap",{primary_key:"icon-id",text:"icon-wenben1",long_text:"icon-changwenben",integer:"icon-zhengshu",long:"icon-changzhengshu",decimal:"icon-jingduxiaoshu1",double:"icon-xiaoshu",boolean:"icon-buer",date:"icon-riqi1",time:"icon-shijian1",date_time:"icon-riqishijian",user:"icon-renyuanguanlian",org:"icon-bumenguanlian",user_multi:"icon-renyuanduoxuan",org_multi:"icon-bumenduoxuan",image:"icon-tupian1",attachment:"icon-fujian1",serial_number:"icon-xuliehao",master_slave:"icon-zhuziguanlian",enum:"icon-meijuguanlian",ref:"icon-moxingguanlian",rdo_ref:"icon-RDOmoxingguanlian",enum_multi:"icon-meijuguanlianduoxuan",option:"icon-meijuguanlian",option_multi:"icon-meijuguanlianduoxuan",ref_multi:"icon-moxingduoxuan",expression:"icon-gongshiziduan",expression_condition:"icon-gongshiziduan",agg:"icon-huizong",esop:"icon-E-SOP",transaction:"icon-ziduan1",serial_number_rule:"icon-ziduan1",printer:"icon-dayinanniu",message_tmpl:"icon-xiaoximoban",range_user:"icon-fanweirenyuan",label_template:"icon-biaoqianmoban",label_template_ref:"icon-biaoqianmoban",document_template:"icon-danjumoban",electronic_signature:"icon-qianming1",online_form_tmpl:"icon-zaixianbiaodanmoban",edhr_tmpl:"icon-edhr",online_form:"icon-zaixianbiaodan",data_table_formula:"icon-gongshiziduan",readonlycmp:"icon-wenben1",tenant:"icon-id",associated_primary_key:"icon-id",material_no:"icon-field-material-no",product:"icon-field-product",device:"icon-field-device",biz_process:"icon-jichengzhongxin1"});var hi=o("AggTypes",(e=>(e.COUNT="COUNT",e.SUM="SUM",e.MAX="MAX",e.MIN="MIN",e.AVG="AVG",e))(hi||{})),gi=o("NodesConfigTypeEnum",(e=>(e.SPEC="spec",e.SUB_WORKFLOW="sub_workflow",e))(gi||{})),Ei=o("selectionTypeEnums",(e=>(e.None="none",e.SingleChoice="gct_radio",e.MultipleChoice="checkbox",e))(Ei||{})),mi=o("UniqueConstraintType",(e=>(e.NONE="NONE",e.GLOBAL="GLOBAL",e.LEVEL="LEVEL",e.LOGIC="LOGIC",e))(mi||{}));const xl=o("MessageType",{ALL:"all",UNREAD:"unread"}),zl=o("WorkbenchType",{TEST:"myTestApp",QUICK:"quickAccess",MY:"myApp"});var Ti=o("PersonalCenterType",(e=>(e.PROFILE="profile",e.GENDER="gender",e.ENTERPRISE="enterprise",e))(Ti||{})),Ai=o("GENDER_TYPE",(e=>(e.FEMALE="female",e.MALE="male",e.PRIVARY="privary",e))(Ai||{})),Ri=o("TODO_TYPE",(e=>(e.TODO="todo",e.APPLICATION="application",e.DONE="done",e.DELEGATE="delegate",e))(Ri||{})),bi=o("CARD_TRIGGER_ENUM",(e=>(e.HOVER="hover",e.CLICK="click",e))(bi||{}));const Ql=o("SHOW_FIELDTYPES",[h.TEXT,h.LONG_TEXT,h.LONG,h.INTEGER,h.DECIMAL,h.DOUBLE,h.SERIAL]);var Si=o("UserServiceType",(e=>(e.SCRIPT_SERVICE="SCRIPT_SERVICE",e.SQL_SERVICE="SQL_SERVICE",e.SO_SERVICE="SO_SERVICE",e.BUILTIN_SERVICE="SYS_BUILTIN",e))(Si||{})),pt=o("EntityModelCategoryEnum",(e=>(e.ENTITY="entity",e.DATA="data",e.VIEW="view",e.FORM="form",e.DATA_SET="dataSet",e))(pt||{})),Ii=o("EntityModelTypeEnum",(e=>(e.BASE="BASE",e.NDO="NDO",e.RDO="RDO",e.TREE="TREE",e.DYNAMIC_FORM="DYNAMIC_FORM",e.WORKFLOW="WORKFLOW",e.TRANSACTION="TRANSACTION",e))(Ii||{})),Ni=o("FieldDefaultValueTypeEnum",(e=>(e.NONE="NONE",e.FIXED="FIXED",e.SYS_VAR="SYS_VAR",e))(Ni||{})),Oi=o("FieldSysVarDefaultValueEnum",(e=>(e.NULL="",e.SYS_DATE="SYS_DATE",e.SYS_TIME="SYS_TIME",e.SYS_DATE_TIME="SYS_DATE_TIME",e.CURRENT_USER="CURRENT_USER",e.CURRENT_ORG="CURRENT_ORG",e))(Oi||{})),Li=o("scriptTypeEnum",(e=>(e.EVENT="event",e.BUSINESSSERVICE="businessService",e.TIMER="timer",e))(Li||{})),_i=o("pageLayoutModeEnum",(e=>(e.SHOW_BOX_SCROLL="showBoxScroll",e.SHOW_ALL_DATA="showAllData",e))(_i||{})),pi=o("PanelEnum",(e=>(e.PAGE="page",e.HISTORY="history",e.GLOBAL="global",e.WIDGET="widget",e.CHANGE_DESIGN="changeDesign",e))(pi||{})),vi=o("Postion",(e=>(e.STATIC="static",e.RELATIVE="relative",e.ABSOLUTE="absolute",e.FIXED="fixed",e.STICKY="sticky",e))(vi||{})),Di=o("BorderStyle",(e=>(e.NONE="none",e.SOLID="solid",e.DOTTED="dotted",e.DASHED="dashed",e.DOUBLE="double",e))(Di||{})),Mi=o("TextAlign",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.JUSTIFY="justify",e))(Mi||{})),yi=o("TextDecoration",(e=>(e.LINETHROUGH="line-through",e.UNDERLINE="underline",e.NONE="none",e))(yi||{})),Ci=o("EventCategory",(e=>(e.INNER="inner",e.JS="js",e))(Ci||{})),Ui=o("PropGroup",(e=>(e.BASIC="basic",e.ADVANCED="advance",e.DISPLAY="display",e.LABEL="label",e.FIELD="field",e.DATA="data",e.OTHER="other",e.LIST="list",e.Table="table",e.SUBMIT_RULE="submitRule",e.LISTDATA="listdata",e.SHOW="show",e.FIELD_CONFIG="fieldConfig",e.FORM_CONFIG="formConfig",e.FIELD_LAYOUT="FieldLayout",e.LEFT_RIGHT_COLUMNS="leftRightColumns",e.TABLESELECT_CONFIG="tableSelect",e.GENRADIO="genRadio",e.GENCHECKBOX="genCheckbox",e.GENSWITCH="genSwitch",e.OPTIONS="options",e.COLLAPSE="collapse",e.SPACE_OCCUPATION="spaceOccupation",e.DIVIDER="divider",e.IFRAME="iframe",e.FILECOLLECT="fileCollect",e.CARDLIST="cardList",e.BUTTON="button",e.Button="Button",e.ButtonShow="ButtonShow",e.ButtonStyle="ButtonStyle",e.LISTBUTTON="listButton",e.MODAL="modal",e.MODALWIDTH="modalWidth",e.MODALHEIGHT="modalHeight",e.MODALTITLECONFIG="modalTitleConfig",e.SEARCH="search",e.QUERY="query",e.INPUT_CONFIG="inputConfig",e.DATALINKAGE="dataLinkage",e.PERMISSION="permission",e.DATASOURCE="dataSource",e.VALIDATERULE="validaterule",e.TEXT="text",e.GRID_CONFIG="gridConfig",e.COL_CONFIG="colConfig",e.COMPONENTDEPENDENCY="componentDependency",e.GENIMAGE="genImage",e.DATARANGE="dataRange",e.OPERATOR_CONFIG="operatorConfig",e.BUSINESS_CONFIG="businessConfig",e.Vue3="Vue3",e.TREE_CONFIG="treeConfig",e.CARDDISPLAY="cardDisplay",e))(Ui||{})),Pi=o("StyleGroup",(e=>(e.LAYOUT="layout",e.STYLE="style",e.BACKGROUND="background",e.MARGIN="margin",e.BORDER="border",e.HEADER="header",e.SHOW_PROP="showProp",e))(Pi||{})),wi=o("tagEnum",(e=>(e.TAG="tag",e.PROGRESS="progress",e))(wi||{})),Fi=o("TagTypeEnum",(e=>(e.RADIUS="radius",e.LINEAR_RADIUS="linear_radius",e.BIG_RADIUS="big_radius",e.LINEAR_BIG_RADIUS="linear_big_radius",e.DASHED_RADIUS="dashed_radius",e.STATUS="status",e))(Fi||{})),Gi=o("DisplayTagTypeEnum",(e=>(e.RADIUS="radius",e.BIG_RADIUS="big_radius",e.STATUS="status",e.SURFACE_RADIUS="surface_radius",e.SURFACE_BIG_RADIUS="surface_big_radius",e.SURFACE_STATUS="surface_status",e.LINE_RADIUS="line_radius",e.LINE_BIG_RADIUS="line_big_radius",e.LINE_DASHED_RADIUS="line_dashed_radius",e.LINE_STATUS="line_status",e))(Gi||{})),Bi=o("ProgressTypeEnum",(e=>(e.CIRCLE="circle",e.LINE="line",e))(Bi||{})),ki=o("DisplayType",(e=>(e.RULE="rule",e.CONFIG="config",e))(ki||{})),Hi=o("GLOBAL_VAR_TYPE",(e=>(e.STRING="string",e.NUMBER="number",e.BOOLEAN="boolean",e.OBJECT="object",e.ARRAY="array",e.NULL="NULL",e.DATE="date",e.DATETIME="datetime",e.TIME="time",e.VAR="var",e))(Hi||{})),Wi=o("GLOBAL_TYPE",(e=>(e.MODAL="modal",e.EVENT="event",e.VAR="var",e))(Wi||{})),Vi=o("COLUMNS_TYPE",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.TOP="top",e.BOTTOM="bottom",e))(Vi||{})),Xi=o("INNER_EVENT",(e=>(e.CLOSE_MODAL="__CLOSEMODAL__",e.OPEN_MODAL="__OPENMODAL__",e.REFRESH_TABLE="__REFRESHTABLE__",e))(Xi||{})),Yi=o("SUB_TABLE_EDIT_MODE",(e=>(e.INLINE="inline",e.MODAL="modal",e))(Yi||{})),ji=o("SUB_TABLE_OPE_EVENT_TYPE_INLINE",(e=>(e.DELETE="delete",e.COPY="copy",e))(ji||{})),Ki=o("SUB_TABLE_OPE_EVENT_TYPE",(e=>(e.DELETE="delete",e.EDIT="edit",e.COPY="copy",e))(Ki||{})),$i=o("VERIFICATIONCONDITIONS_TYPE",(e=>(e.JS="js",e))($i||{})),Zi=o("ASSIGNMENTSTRATEGY_ENUM",(e=>(e.alwaysCover="alwaysCover",e.notCovered="notCovered",e))(Zi||{})),Ji=o("Dependency_ENUM",(e=>(e.HIDDEN="hidden",e.READONLY="readonly",e.DISABLED="disabled",e.REQUIRED="required",e.ASSIGNMENT="assignment",e))(Ji||{})),xi=o("ToolkitEnum",(e=>(e.OUTLINE="OUTLINE",e.WIDGETS="WIDGETS",e.FIELD="FIELD",e.MODAL="MODAL",e.JS="JS",e.CSS="CSS",e.TEMPLATE="TEMPLATE",e.LO="LO",e))(xi||{})),zi=o("CategoryTypeEnum",(e=>(e.FORM="form",e.LAYOUT="layout",e.ADVANCED="advanced",e.DATA="data",e.BUTTON="button",e.RDO="rdo",e.KIT="kit",e.PROCESS="process",e))(zi||{})),vt=o("Platform",(e=>(e.WEB="web",e.MOBILE="mobile",e.PAD="pad",e))(vt||{})),Qi=o("BuiltinType",(e=>(e.MODAL="modal",e.MODAL_BODY="modalBody",e.MODAL_FOOTER="modalFooter",e.BottomButtonContainer="bottom-button-container",e))(Qi||{})),qi=o("DateRangeEnums",(e=>(e.WEEK_NOW="sys.pageDesigner.dateRange.weekNow",e.MONTH_NOW="sys.pageDesigner.dateRange.monthNow",e.QUARTER_NOW="sys.pageDesigner.dateRange.quarterNow",e.YEAR_NOW="sys.pageDesigner.dateRange.yearNow",e.WEEk_BEFORE="sys.pageDesigner.dateRange.weekBefore",e.MONTH_BEFORE="sys.pageDesigner.dateRange.monthBefore",e.QUARTER_BEFORE="sys.pageDesigner.dateRange.quarterBefore",e.YEAR_BEFORE="sys.pageDesigner.dateRange.yearBefore",e.DATE_BEFORE="sys.pageDesigner.dateRange.dateBefore",e.DATE_AFTER="sys.pageDesigner.dateRange.dateAfter",e))(qi||{})),er=o("SelectPickerEnums",(e=>(e.DROPDOWN_SELECTION="dropdownSelection",e.TREE_SELECTION="treeSelection",e.MODAL_BOX_SELECTION="modalBoxSelection",e))(er||{})),tr=o("CURRENCY_ENUM",(e=>(e["¥"]="¥",e.$="$",e.S$="S$",e))(tr||{})),nr=o("TIMETYPE_ENUM",(e=>(e.d="d",e["d:h"]="d:h",e["d:h:m"]="d:h:m",e["d:h:m:s"]="d:h:m:s",e.h="h",e["h:m"]="h:m",e["h:m:s"]="h:m:s",e.m="m",e["m:s"]="m:s",e.s="s",e))(nr||{})),ir=o("TIMETYPE_LANG_ENUM",(e=>(e.d="days",e["d:h"]="dayhour",e["d:h:m"]="dayhourminute",e["d:h:m:s"]="dayhourminutesecond",e.h="hour",e["h:m"]="hourminute",e["h:m:s"]="hourminutesecond",e.m="minute",e["m:s"]="minutesecond",e.s="seconds",e))(ir||{})),rr=o("CURRENCY_LANG_ENUM",(e=>(e["¥"]="chMoney",e.$="usMoney",e.S$="sgpMoney",e))(rr||{})),ar=o("RowSelectionTypeEnums",(e=>(e.SingleChoice="radio",e.MultipleChoice="checkbox",e))(ar||{})),sr=o("StatisticalMethodEnums",(e=>(e.Current="current",e.Whole="whole",e))(sr||{})),or=o("PrintModeEnums",(e=>(e.Local="local",e.Server="server",e.PREVIEW_PRINT="PreviewPrint",e.DIRECT_PRINTING="DirectPrinting",e))(or||{})),cr=o("openWindowEnums",(e=>(e.OPEN="open",e.APPROVE="linkApprove",e))(cr||{})),lr=o("KeyMode",(e=>(e.SYSTEM="system",e.TRANSACTION="transaction",e))(lr||{})),dr=o("TransactionMode",(e=>(e.CURRENT="current",e.REFERENCE="reference",e))(dr||{})),ur=o("DisplayEnums",(e=>(e.BLOCK="block",e.INLINE_BLOCK="inline-block",e))(ur||{})),fr=o("ButtonColorType",(e=>(e.DEFAULT="default",e.LINK="link",e))(fr||{})),hr=o("ButtonColorTheme",(e=>(e.DEFAULT="default",e.PRIMARY="primary",e.ERROR="error",e.WARNING="warning",e.SUCCESS="success",e))(hr||{})),gr=o("ButtonStyle",(e=>(e.ORDINARY="ordinary",e.SQUARE="square",e))(gr||{})),Er=o("ButtonSize",(e=>(e.SMALL="small",e.DEFAULT="middle",e.LARGE="large",e))(Er||{})),mr=o("ButtonTypeGroup",(e=>(e.TEXT="TEXT",e.ICON_TEXT="ICON_TEXT",e.ICON="ICON",e))(mr||{})),Tr=o("ButtonType",(e=>(e.PRIMARY="primary",e.DEFAULT="default",e.DASHED="dashed",e.LINK="link",e))(Tr||{})),Ar=o("ButtonType_vant",(e=>(e.PRIMARY="primary",e.DANGER="danger",e.DEFAULT="default",e))(Ar||{}));const ql=o("ButtonGroupType",{TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0}],ICON_TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0,hasIcon:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0,hasIcon:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0,hasIcon:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0,hasIcon:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0,hasIcon:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0,hasIcon:!0}],ICON:[{type:"primary",hasIcon:!0},{type:"default",hasIcon:!0},{type:"primary",danger:!0,hasIcon:!0},{type:"default",danger:!0,hasIcon:!0},{type:"dashed",hasIcon:!0},{type:"link",hasIcon:!0}]});var Rr=o("operateSysEnums",(e=>(e.COLUMNDELETE="columnDelete",e.COLUMNLINK="columnLink",e.COPY="copy",e.VERSION_COPY="version_copy",e.VERSION_CREATE="version_create",e.DETAILS="details",e.EDIT="edit",e.USAGEINFORMATION="usageInformation",e.MODELINGTRACEABILITY="modelingTraceability",e.IMPORT="import",e.EXPORT="export",e.BATCHDELETE="batchDelete",e.SUBMIT="submit",e.RESET="reset",e.EXCUTE="excute",e.LABEL_PRINT="label_print",e.DOCUMENT_PRINT="document_print",e.EXAMINE_AND_APPROVE="examineAndApprove",e))(Rr||{})),br=o("TableSearchTypeEnum",(e=>(e.NONE="none",e.EMBEDDED="embedded",e.EXTERNAL="external",e))(br||{})),Sr=o("TableTypeEnum",(e=>(e.DEFAULT="default",e.EMBED="embed",e.SUB="sub",e))(Sr||{})),Ir=o("TableEditingMethodEnum",(e=>(e.DEFAULTEDITING="defaultEditing",e.CLICKTOENTEREDITING="clickToEnterEditing",e))(Ir||{})),Nr=o("WidgetInScopeEnum",(e=>(e.GCT="gct",e.GCT_MODAL="gct-modal",e.GCT_SUB_TABLE_MODAL="gct-sub-table-modal",e))(Nr||{})),Or=o("ListTreeSearchTypeEnum",(e=>(e.ALL="ALL",e.SEARCH="SEARCH",e.SEARCHALL="SEARCHALL",e.LEVEL="LEVEL",e.CHILDREN="CHILDREN",e))(Or||{})),Lr=o("DatasourceTypeEnum",(e=>(e.REALTIMEDATASOURCE="realTimeDataSource",e.SERVICEDATASOURCE="serviceDataSource",e))(Lr||{})),_r=o("SignatureTypeEnum",(e=>(e.SIGNATURE_ONLY="signature_only",e.SIGNATURE_DATE="signature_date",e.SIGNATURE_DATETIME="signature_datetime",e))(_r||{})),pr=o("ResetRuleType",(e=>(e.WIPE_DATA="wipe_data",e.REFRESHDATA="refresh_data",e))(pr||{})),vr=o("SCOPE",(e=>(e.PAGE="page",e.MODAL="modal",e))(vr||{})),Dr=o("FormComponents",(e=>(e.RdoInput="rdo-input",e.Input="input",e.ElectronicSignature="electronic-signature",e.UseinfoButton="useinfo-button",e.ModelingButton="modeling-button",e.ImportButton="gc-import-button",e.ExportButton="gc-export-button",e.DocumentPrintButton="document-print-button",e.SubmitButton="submit-button",e.BatchDeleteButton="batchdelete-button",e.CustomButton="custom-button",e.TableLinkButton="table-link-button",e.TableInfoButton="table-info-button",e.TableApproveButton="table-approve-button",e.OpeButton="ope-button",e.ResetButton="reset-button",e.RdoSaveButton="rdo-save-button",e.LabelPrintButton="labelprint-button",e.ProcessButton="process-button",e.ProcessApproveButton="process-approve-button",e.CreateButton="create-button",e.DeleteButton="delete-button",e.CopyButton="copy-button",e.RefreshButton="refresh-button",e.CreateVersionButton="create-version-button",e.CopyVersionButton="copy-version-button",e.Checkbox="checkbox",e.DataTable="data-table",e.DataVTable="data-v-table",e.TreeTable="tree-table",e.DataTableColumn="data-table-column",e.RefDataTable="ref-data-table",e.DataList="data-list",e.RdoDataList="rdo-data-list",e.DataTableOpe="data-table-ope",e.DataTableFormula="data-table-formula",e.Datepicker="datepicker",e.DateTimepicker="datetimepicker",e.Department="department",e.Form="form",e.RdoForm="rdo-form",e.RdoTable="rdo-table",e.MedProRdoForm="medprordo-form",e.MedProRdoTable="medprordo-table",e.FormProcess="form-process",e.Inputmoney="inputmoney",e.Inputnumber="inputnumber",e.InputDouble="inputdouble",e.Radio="radio",e.Select="select",e.RdoSelect="rdo-select",e.Switch="switch",e.Textarea="textarea",e.Timepicker="timepicker",e.Userpicker="userpicker",e.Search="search",e.SelectSearch="select-search",e.QuickSearch="quick-search",e.LayoutContainer="layout-container",e.ButtonContainer="button-container",e.ButtonProcessContainer="button-process-container",e.BottomButtonContainer="bottom-button-container",e.Grid="grid",e.GridCol="grid-col",e.Tabs="tabs",e.TabPane="tab-pane",e.LeftRightColumns="left-right-columns",e.TopBottomColumns="top-bottom-columns",e.LeftLayoutThree="left-layout-three",e.TopLayoutThree="top-layout-three",e.UploadFile="upload-file",e.UploadImage="upload-image",e.SubTable="sub-table",e.SubTableOpe="sub-table-ope",e.SubTableAddBtn="sub-table-add-button",e.SubTableCopyBtn="sub-table-copy-button",e.SubTableEditBtn="sub-table-edit-button",e.SubTableDeleteBtn="sub-table-delete-button",e.LinkPageBtn="link-page-button",e.Collapse="collapse",e.SpaceOccupation="space-occupation",e.Divider="divider",e.CardList="card-list",e.CardHeaderLeft="card-header-left",e.CardHeaderRight="card-header-right",e.CardContent="card-content",e.CardOpeBtn="card-ope-btn",e.BaseButton="base-button",e.ReadonlyCmp="readonlycmp",e.TableSelect="table-select",e.GenCheckbox="gen-checkbox",e.GenRadio="gen-radio",e.GenSwitch="gen-switch",e.WorkflowNodes="workflow-nodes",e.WorkflowNodeModal="workflow-node-modal",e.ESOP="e-sop",e.EXPRESSION="expression",e.ExpressionCondition="expression-condition",e.AGG="agg",e.DynamicFormType="dynamic-form-type",e.DynamicFormValue="dynamic-form-value",e.DynamicFormOpts="dynamic-form-options",e.DynamicFormShowType="dynamic-form-show-type",e.DynamicTable="dynamic-table",e.Transaction="transaction",e.SerialRule="serial-rule",e.LabelTemplate="label-template",e.LabelTemplateRef="label-template-ref",e.DocumentTemplate="document-template",e.Wacom="wacom",e.Text="text",e.CustomField="custom-field",e.Printer="printer",e.Descriptions="descriptions",e.RangeUser="range-user",e.GenImage="gen-image",e.TestButton="test-button",e.Iframe="iframe",e.ExcuteButton="medproexcute-button",e.SubDataTable="sub-data-table",e.Signature="signature",e.OnlineForm="online-form",e.TmplTreeSelect="tmpl-tree-select",e.Boolean="boolean",e.BizProcess="biz-process",e.ApprovalHistory="approval-history",e.FlowDiagram="flow-diagram",e.CustomCode="custom-code",e.ApprovalProcess="approval-process",e))(Dr||{})),Mr=o("SearchComponents",(e=>(e.SearchInput="SearchInput",e.SearchNumberInput="SearchNumberInput",e.SearchStringNumberInput="SearchStringNumberInput",e.SearchSwitch="SearchSwitch",e.SearchDate="SearchDate",e.SearchDateTime="SearchDateTime",e.SearchTime="SearchTime",e.SearchSelect="SearchSelect",e.SearchUserSelect="SearchUserSelect",e.SearchRdoSelect="SearchRdoSelect",e.SearchTransaction="SearchTransaction",e.SearchTmplTreeSelect="SearchTmplTreeSelect",e.SearchPrinter="SearchPrinter",e.SearchBizProcess="SearchBizProcess",e.SearchSelectRangUser="SearchSelectRangUser",e.SearchSelectDepartment="SearchSelectDepartment",e))(Mr||{})),yr=o("tableColumnWidthEnum",(e=>(e.AUTO_PARENT_BOX="AutoParentBox",e.ATUO="selfAdaption",e.ENUMERATION="fixed",e.PERCENTAGE="percentage",e))(yr||{})),Cr=o("controlConfigEnum",(e=>(e.NULL="NULL",e.STRING="空字符串",e.ZERO="0",e))(Cr||{})),Ur=o("statisticalMethodEnum",(e=>(e.TOTAL="total",e.AVERAGE="average",e))(Ur||{})),Pr=o("fixedAlignENUM",(e=>(e.RIGHT="right",e.NONE="",e.LEFT="left",e))(Pr||{})),wr=o("tableColumnTypeEnum",(e=>(e.COLUMN_TEXT="COLUMN_TEXT",e.COLUMN_NUMBER="COLUMN_NUMBER",e.COLUMNTEXT_DATA="COLUMNTEXT_DATA",e.COLUMNTEXT_REF="COLUMNTEXT_REF",e.COLUMNTEXT_ENUM="COLUMNTEXT_ENUM",e.COLUMNTEXT_ORG="COLUMNTEXT_ORG",e.COLUMNTEXT_USER="COLUMNTEXT_USER",e.COLUMNTEXT_BOOLEAN="COLUMNTEXT_BOOLEAN",e.COLUMNTEXT_IMAGE="COLUMNTEXT_IMAGE",e))(wr||{})),Fr=o("tabsTypeENUM",(e=>(e.LINE="line",e.CARD="card",e.TEXt="text",e.CAPSULE="capsule",e.CUSTOM="custom",e))(Fr||{})),Gr=o("sortTypeEnum",(e=>(e.ASC="asc",e.DESC="desc",e))(Gr||{})),Br=o("BindCmpStyleEnum",(e=>(e.CMP_TEXT="TEXT",e.CMP_TEXTAREA="TEXTAREA",e.CMP_ELECTRONICSIGNATURE="ELECTRONICSIGNATURE",e.CMP_BOOLEAN="BOOLEAN",e.CMP_SELECT_LIST="SELECT_LIST",e.CMP_RADIO="RADIO",e.CMP_CHECKBOX="CHECKBOX",e.CMP_DROPDOWN_SELECT="dropdownSelection",e.CMP_MODAL="modalBoxSelection",e.CMP_TREE_SELECTION="treeSelection",e.CMP_NUMBER="NUMBER",e.CMP_CURRENCY="CURRENCY",e.CMP_TIME="TIME",e))(Br||{}));const ed=o("Ch_BindCmpStyleEnum",{TEXT:"sys.pageDesigner.bindCmpStyle.bindText",TEXTAREA:"sys.pageDesigner.bindCmpStyle.bindTextarea",ELECTRONICSIGNATURE:"sys.pageDesigner.bindCmpStyle.electronicSignature",BOOLEAN:"sys.pageDesigner.bindCmpStyle.bindBoolean",SELECT_LIST:"sys.pageDesigner.bindCmpStyle.bindSelectList",RADIO:"sys.pageDesigner.bindCmpStyle.bindRadio",CHECKBOX:"sys.pageDesigner.bindCmpStyle.bindCheckbox",dropdownSelection:"sys.pageDesigner.bindCmpStyle.bindDropdownSelect",modalBoxSelection:"sys.pageDesigner.bindCmpStyle.bindModal",treeSelection:"sys.pageDesigner.bindCmpStyle.bindTreeSelection",NUMBER:"sys.pageDesigner.bindCmpStyle.bindNumber",CURRENCY:"sys.pageDesigner.bindCmpStyle.bindCurrency",TIME:"sys.pageDesigner.bindCmpStyle.bindTime"});var kr=o("BindCmpStyleTypeEnum",(e=>(e.BindText="bindText",e.BindLongText="BindLongText",e.BindBool="bindBool",e.BindPerson="bindPerson",e.BindDept="bindDept",e.BindLink="bindLink",e.BindMulti="bindMulti",e.BindNum="bindNum",e.BindDecimal="bindDecimal",e))(kr||{}));const td=o("transformBindCmp2CmpType",{TEXT:"input",TEXTAREA:"textarea",ELECTRONICSIGNATURE:"electronic-signature",SELECT_LIST:"select",RADIO:"radio",CHECKBOX:"checkbox"}),nd=o("bindCmpStyleMap",{bindText:["TEXT","TEXTAREA"],BindLongText:["TEXT","TEXTAREA","ELECTRONICSIGNATURE"],bindBool:["BOOLEAN","SELECT_LIST","RADIO","CHECKBOX"],bindPerson:["dropdownSelection","modalBoxSelection"],bindDept:["treeSelection","modalBoxSelection"],bindLink:["SELECT_LIST","RADIO"],bindMulti:["SELECT_LIST","CHECKBOX"],bindNum:["NUMBER","CURRENCY","TIME"],bindDecimal:["NUMBER","CURRENCY"]});var Hr=o("buttonShowType",(e=>(e.FOLD_ALL="foldAll",e.FOLD_PART="foldPart",e))(Hr||{}));const id=o("searchListByFieldType",[h.BOOLEAN,h.DATE,h.DATE_TIME,h.DECIMAL,h.DOUBLE,h.ENUM,h.ENUM_MULTI,h.INTEGER,h.LONG,h.LONG_TEXT,h.TEXT,h.USER_MULTI,h.USER,h.TIME,h.REF_MULTI,h.REF,h.RDO_REF,h.ORG_MULTI,h.ORG,h.SERIAL,h.ONLINE_FORM_TEMPLATE,h.E_DHR_TEMPLATE,h.PRINTER,h.LABEL_TEMPLATE_REF,h.Biz_Process,h.DOCUMENT_TEMPLATE,h.TRANSACTION,h.RANGE_USER,h.MESSAGE_TMPL]),rd=o("mobileSearchListByFieldType",[h.BOOLEAN,h.DATE,h.DATE_TIME,h.DECIMAL,h.DOUBLE,h.ENUM,h.ENUM_MULTI,h.INTEGER,h.LONG,h.LONG_TEXT,h.TEXT,h.USER_MULTI,h.USER,h.TIME,h.REF_MULTI,h.REF,h.RDO_REF,h.ORG_MULTI,h.ORG,h.SERIAL,h.ONLINE_FORM_TEMPLATE,h.E_DHR_TEMPLATE,h.PRINTER,h.LABEL_TEMPLATE_REF,h.Biz_Process,h.DOCUMENT_TEMPLATE,h.TRANSACTION,h.MESSAGE_TMPL]),ad=o("padSearchListByFieldType",[h.BOOLEAN,h.DATE,h.DATE_TIME,h.DECIMAL,h.DOUBLE,h.ENUM,h.ENUM_MULTI,h.INTEGER,h.LONG,h.LONG_TEXT,h.TEXT,h.USER_MULTI,h.USER,h.TIME,h.REF_MULTI,h.REF,h.RDO_REF,h.ORG_MULTI,h.ORG,h.SERIAL,h.PRINTER,h.LABEL_TEMPLATE_REF,h.TRANSACTION]);var Wr=o("SCOPEINFO",(e=>(e.FIELD_LIST="fieldList",e.FIELD_FORM="fieldForm",e))(Wr||{})),Vr=o("PrintResourceEnum",(e=>(e.CLIENT_PRINT="CLIENT_PRINT",e.INTERNET_PRINT="INTERNET_PRINT",e))(Vr||{})),Xr=o("AppPublishStateEnum",(e=>(e.SUCCESS="SUCCESS",e.FAILURE="FAILURE",e.PREPARING="PREPARING",e.EVENTING="EVENTING",e.PROCESSIING="PROCESSIING",e.DEPLOYING="DEPLOYING",e))(Xr||{})),Yr=o("BasicAction",(e=>(e.Insert="Insert",e.Update="Update",e.Delete="Delete",e.Import="Import",e.Export="Export",e.Setting="Setting",e.Download="Download",e.Test="Test",e.Design="Design",e.Add="Add",e))(Yr||{})),jr=o("CustomAction",(e=>(e.ResetPassword="ResetPassword",e.PermissionSetting="PermissionSetting",e.RemoveAndHandover="RemoveAndHandover",e.CategoryManagement="CategoryManagement",e.BaiscSetting="BaiscSetting",e.WatermarkSetting="WatermarkSetting",e.SecuritySetting="SecuritySetting",e.LoginSetting="LoginSetting",e.ThemeSetting="ThemeSetting",e.OrganizationSetting="OrganizationSetting",e.ApkSetting="ApkSetting",e.DevelopIconManagement="DevelopIconManagement",e.DevelopImageManagement="DevelopImageManagement",e.Reprint="Reprint",e.ViewTask="ViewTask",e.ManualTrigger="ManualTrigger",e.Setting="Setting",e.Terminate="Terminate",e.Reassign="Reassign",e.Log="Log",e.Moving="Moving",e.EnableDisable="EnableDisable",e))(jr||{}));const sd=o("DefaultActions",["Insert","Update","Delete"]),od=o("PlatformSettingActions",["BaiscSetting","WatermarkSetting","SecuritySetting","LoginSetting","ThemeSetting","OrganizationSetting","ApkSetting"]);var Kr=o("sizeEnum",(e=>(e.XS="XS",e.SM="SM",e.MD="MD",e.LG="LG",e.XL="XL",e.XXL="XXL",e))(Kr||{})),$r=o("screenEnum",(e=>(e[e.XS=480]="XS",e[e.SM=576]="SM",e[e.MD=768]="MD",e[e.LG=992]="LG",e[e.XL=1200]="XL",e[e.XXL=1600]="XXL",e))($r||{}));const q=o("screenMap",new Map);q.set("XS",480),q.set("SM",576),q.set("MD",768),q.set("LG",992),q.set("XL",1200),q.set("XXL",1600);const Zr=o("TIMEZONE_KEY","TIMEZONE__"),cd=o("TENANT_KEY","TENANT__"),ld=o("TOKEN_KEY","TOKEN__"),dd=o("LOCALE_KEY","LOCALE__"),ud=o("LOCALE_LIST_KEY","LOCALE__LIST"),fd=o("LOCAL_I18N_TRANSLATE","LOCAL_I18N_TRANSLATE"),hd=o("USER_INFO_KEY","USER__INFO__"),gd=o("ROLES_KEY","ROLES__KEY__"),Ed=o("PROJ_CFG_KEY","PROJ__CFG__KEY__"),md=o("LOCK_INFO_KEY","LOCK__INFO__KEY__"),Td=o("MULTIPLE_TABS_KEY","MULTIPLE_TABS__KEY__"),Ad=o("APP_DARK_MODE_KEY_","__APP__DARK__MODE__"),Rd=o("APP_LOCAL_CACHE_KEY","COMMON__LOCAL__KEY__"),bd=o("APP_SESSION_CACHE_KEY","COMMON__SESSION__KEY__"),Sd=o("DESIGNER_SESSION_CACHE_KEY","DESIGNER_SESSION_CACHE_KEY");var Jr=o("CacheTypeEnum",(e=>(e[e.SESSION=0]="SESSION",e[e.LOCAL=1]="LOCAL",e))(Jr||{})),xr=o("SEARCH_SERVICE",(e=>(e.EQ="eq",e.IEQ="iEq",e.NE="ne",e.INE="ine",e.GT="gt",e.GE="ge",e.LT="lt",e.LE="le",e.ISNULL="isNull",e.ISNOTNULL="isNotNull",e.LIKE="like",e.ILIKE="iLike",e.NOTLIKE="notLike",e.NOTILIKE="iNotLike",e.LEFTLIKE="leftLike",e.ILEFTLIKE="iLeftLike",e.RIGHTLIKE="rightLike",e.IRIGHTLIKE="iRightLike",e.IN="in",e.NOTIN="notIn",e.CONTAINANY="containAny",e.CONTAINALL="containAll",e.RANGE="range",e.ORANGE="oRange",e.LORANGE="loRange",e.RORANGE="roRange",e.VERSIONIN="versionIn",e.VERSIONNOTIN="versionNotIn",e.VERSIONEQ="versionEq",e.VERSIONNE="versionNe",e))(xr||{}));const Id=o("notSingleArr",["in","notIn","containAny","containAll","versionIn"]);var zr=o("AGLINE_ENUMS",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.BETWEEN="between",e))(zr||{}));const Nd=o("presetColor",["#DBDBDB","#FFE4E4","#D1D1D1","#838383","#838383","#FFEECB","#D8E3FF","#FF8888","#FF8888","#0DAA9C","#3370FF"]);var Qr=o("ButtonOpeEnum",(e=>(e[e.SINGLELINE=0]="SINGLELINE",e[e.HEAD=1]="HEAD",e[e.BATCH=2]="BATCH",e[e.SINGLELINE_RDO=3]="SINGLELINE_RDO",e))(Qr||{})),qr=o("RdoButtonOpeEnum",(e=>(e[e.parentVersion=0]="parentVersion",e[e.childVersion=1]="childVersion",e))(qr||{})),ea=o("ExceptionEnum",(e=>(e[e.PAGE_NOT_ACCESS=403]="PAGE_NOT_ACCESS",e[e.PAGE_NOT_FOUND=404]="PAGE_NOT_FOUND",e[e.ERROR=500]="ERROR",e[e.NET_WORK_ERROR=1e4]="NET_WORK_ERROR",e[e.PAGE_NOT_DATA=10100]="PAGE_NOT_DATA",e))(ea||{})),k=o("ErrorTypeEnum",(e=>(e.VUE="vue",e.SCRIPT="script",e.RESOURCE="resource",e.AJAX="ajax",e.PROMISE="promise",e))(k||{})),ta=o("ResultEnum",(e=>(e[e.SUCCESS=200]="SUCCESS",e[e.ERROR=-1]="ERROR",e[e.TIMEOUT=401]="TIMEOUT",e.TYPE="success",e))(ta||{})),na=o("RequestEnum",(e=>(e.GET="GET",e.POST="POST",e.PUT="PUT",e.DELETE="DELETE",e))(na||{})),ia=o("ContentTypeEnum",(e=>(e.JSON="application/json;charset=UTF-8",e.FORM_URLENCODED="application/x-www-form-urlencoded;charset=UTF-8",e.FORM_DATA="multipart/form-data;charset=UTF-8",e))(ia||{})),ra=o("BizServiceEnum",(e=>(e.submit="post",e.listByIds="get",e.getone="post",e.listAll="post",e.listByPage="post",e.listTree="post",e.save="post",e.saveOrUpdate="post",e.saveBatch="post",e.importData="post",e.exportData="post",e.remove="post",e.removeById="delete",e.removeByIds="delete",e.update="put",e.updateById="put",e.updateByIds="put",e.rdoSave="post",e.rdoListAll="post",e.rdoListByPage="post",e.rdoListVersionById="get",e.rdoSaveVersion="post",e.rdoSaveBatch="post",e.rdoUpdateVersionById="put",e.rdoRemoveVersionById="delete",e.rdoRemoveById="delete",e.rdoGetVersionById="get",e.getOne="post",e.rdoGetVersionByRefId="post",e.getById="get",e.rdoListAllVersion="post",e.rdoRefListByPage="post",e.export="post",e.import="post",e.rdoExport="post",e.rdoImport="post",e.biz_search="post",e))(ra||{})),aa=o("PlatformType",(e=>(e.WEB="web",e.PDA="pda",e.PAD="pad",e))(aa||{})),sa=o("nullDisplayEnum",(e=>(e["--"]="--",e.empty="(空)",e.null="null",e["N/A"]="N/A",e.noDisplay="",e))(sa||{})),oa=o("DeviceParamsTypeEnum",(e=>(e.STRING="String",e.INTEGER="Integer",e.LONG="Long",e.FLOAT="Float",e.BOOLEAN="Boolean",e.DATE="Date",e))(oa||{})),ca=o("MenuTypeEnum",(e=>(e.SIDEBAR="sidebar",e.MIX_SIDEBAR="mix-sidebar",e.MIX="mix",e.TOP_MENU="top-menu",e))(ca||{})),la=o("TriggerEnum",(e=>(e.NONE="NONE",e.FOOTER="FOOTER",e.HEADER="HEADER",e))(la||{})),da=o("MenuModeEnum",(e=>(e.VERTICAL="vertical",e.HORIZONTAL="horizontal",e.VERTICAL_RIGHT="vertical-right",e.INLINE="inline",e))(da||{})),ua=o("MenuSplitTyeEnum",(e=>(e[e.NONE=0]="NONE",e[e.TOP=1]="TOP",e[e.LEFT=2]="LEFT",e))(ua||{})),fa=o("TopMenuAlignEnum",(e=>(e.CENTER="center",e.START="start",e.END="end",e))(fa||{})),ha=o("MixSidebarTriggerEnum",(e=>(e.HOVER="hover",e.CLICK="click",e))(ha||{})),ga=o("PageEnum",(e=>(e.BASE_LOGIN="/login",e.BASE_TENANT="/tenant",e.BASE_HOME="/home",e.USER_CENTER="/user-center",e.PROCESS_CENTER="/process",e.MESSAGE_CENTER="/message",e.ERROR_PAGE="/exception",e.ERROR_LOG_PAGE="/error-log/list",e.USER_CENTER_PWD="/user-center/password",e))(ga||{})),Ea=o("RoleEnum",(e=>(e.SUPER="super",e.TEST="test",e))(Ea||{})),ma=o("SizeEnum",(e=>(e.DEFAULT="default",e.SMALL="small",e.LARGE="large",e))(ma||{})),Ta=o("ProcessStatusEnum",(e=>(e.APPROVING="APPROVING",e.COMPLETED="COMPLETED",e.REFUSED="REFUSED",e.REJECTED="REJECTED",e.TERMINATED="TERMINATED",e.WITHDRAWN="WITHDRAWN",e))(Ta||{}));const Od=o("ch_ProcessStatusMap",{APPROVING:"sys.process.status.approving",COMPLETED:"sys.process.status.completed",REFUSED:"sys.process.status.refused",REJECTED:"sys.process.status.rejected",TERMINATED:"sys.process.status.terminated",WITHDRAWN:"sys.process.status.withdrawn"});var Aa=o("ExamineAndApproveStateEnum",(e=>(e.MY_APPLICATION="myApplication",e.MY_AGENT="myAgent",e.MY_DONE="myDone",e.MY_CUSTOM="myCustom",e.MY_CUSTOM_Modal="myCustomModal",e))(Aa||{})),Ra=o("ButtonTypeEnum",(e=>(e.Resubmit="Resubmit",e.End="Terminate",e.Withdraw="Withdraw",e.Approve="Approve",e.Refuse="Refuse",e.Reassign="Reassign",e.Countersign="Countersign",e.Reject="Reject",e))(Ra||{})),ba=o("OpinionTypeEnum",(e=>(e.Required="Required",e.Optional="Optional",e.ApproveRequired="ApproveRequired",e.RefuseRequired="RefuseRequired",e.ReassignRequired="ReassignRequired",e.RejectRequired="RejectRequired",e.CountersignRequired="CountersignRequired",e))(ba||{})),Sa=o("BpmnNodeTypeEnum",(e=>(e.BpmnStart="bpmnStart",e.BpmnSubmit="bpmnSubmit",e.BpmnApproval="bpmnApproval",e.BpmnEnd="bpmnEnd",e.BpmnExclusive="bpmnExclusive",e.BpmnJs="bpmnJs",e.BpmnMessage="bpmnMessage",e.BpmnParallel="bpmnParallel",e.BpmnJoin="bpmnJoin",e.BpmnForm="bpmnForm",e.BpmnBusiness="bpmnBusiness",e))(Sa||{})),Ia=o("PluginModeEnum",(e=>(e.DESIGN="design",e.WEB="web",e.MOBILE="mobile",e))(Ia||{})),b=o("ExpressionModeEnum",(e=>(e[e.SEARCH=0]="SEARCH",e[e.FIELD_DISPLAY=1]="FIELD_DISPLAY",e[e.EXPORT_TEMPLATE=2]="EXPORT_TEMPLATE",e[e.DISPLAY_RULE=3]="DISPLAY_RULE",e[e.PROCESS_TITLE=4]="PROCESS_TITLE",e[e.GATEWAY_RULE=5]="GATEWAY_RULE",e[e.CREATE_FIELD=6]="CREATE_FIELD",e[e.PAAS_CREATE_FIELD=7]="PAAS_CREATE_FIELD",e[e.ENTITY_FORMULA=8]="ENTITY_FORMULA",e[e.IPAAS_BACK=9]="IPAAS_BACK",e[e.LABEL_PRINT=10]="LABEL_PRINT",e[e.NOCODE_BPMN_RULE=11]="NOCODE_BPMN_RULE",e[e.PAAS_BPMN_RULE=12]="PAAS_BPMN_RULE",e[e.ONLINE_FORM_FIELD_FORMULA=13]="ONLINE_FORM_FIELD_FORMULA",e[e.MEDPRO_BUSINESSFLOW=14]="MEDPRO_BUSINESSFLOW",e[e.RUN_FORMULA=15]="RUN_FORMULA",e[e.BI_FORMULA=16]="BI_FORMULA",e[e.DATA_SET_FORMULA=17]="DATA_SET_FORMULA",e))(b||{})),g=o("ExpressionTabEnum",(e=>(e.FUNCTION="function",e.FORM="form",e.FIELD="field",e.VARIABLE="variable",e.NODE="node",e.OPERATOR="operator",e))(g||{})),L=o("OperatorTypeEnum",(e=>(e.ARITHMETIC="arithmetic",e.RELATIONSHIP="relationship",e.LOGIC="logic",e.OTHER="other",e))(L||{})),Na=o("VarTypeEnum",(e=>(e.INNER_VAR="INNER_VAR",e.SYSTEM_VAR="SYSTEM_VAR",e.GLOBAL_VAR="GLOBAL_VAR",e.PAGE_VAR="PAGE_VAR",e))(Na||{})),Dt=o("ReturnTypeEnum",(e=>(e.String="string",e.Number="number",e.Boolean="boolean",e))(Dt||{})),Mt=o("DataSetReturnTypeEnum",(e=>(e.String="string",e.Double="number",e))(Mt||{})),Ee=o("EntityFormulaReturnTypeEnum",(e=>(e.Text="text",e.LongText="long_text",e.Int="integer",e.Long="long",e.Double="decimal",e.Boolen="boolean",e))(Ee||{})),Oa=o("IdentifierAddon",(e=>(e.Prefix="​",e))(Oa||{}));const Ld=o("zeroWidthSpace","​");var La=o("GctMqttTopsEnum",(e=>(e.EDHR_FORM_INST_MULTI_PERSON_EDIT_BREAK="FORM_INST_MULTI_PERSON_EDIT_BREAK",e.EDHR_FORM_INST_MULTI_PERSON_EDIT_UNLOCK="FORM_INST_MULTI_PERSON_EDIT_UNLOCK",e))(La||{})),_a=o("GlobalParamEnum",(e=>(e.SELECT_ID="$VAR_GCT_SELECT_ID",e))(_a||{}));class yt{context={aid:"",bid:"",pid:"",platform:vt.WEB};appInfo={};projectName=_t.PORTAL;lang="zh-CN"}o("GlobalPiniaState",yt);class Ue{loaded=!1;isNew=!0;loading=!1;destroyed=!1;data={}}o("FormState",Ue);class W{disabled=!1;readonly=!1;visible=!0;keepalive=!1;destroyed=!1}o("FormItemBasicState",W);class Ct extends W{}o("FormCollapsePaneState",Ct);class Ut extends W{}o("FormCollapseState",Ut);class Pt extends W{activePane=""}o("FormTabState",Pt);class wt extends W{}o("FormTabPaneState",wt);class Pe extends W{label="";value=null;options=[]}o("FormEditItemState",Pe);class Ft extends W{expand=!0}o("FormGroupState",Ft);class Gt extends Pe{}o("FormItemState",Gt);const _d=o("gctMemoizeAsync",(...e)=>pa.bind(null,...e));function pa(e,...t){const i=typeof t=="object"?ue.stringify(t):t;let a=we.get(i);return a||(a=(async()=>{try{return await e(...t)}catch(r){throw we.delete(i),r}})(),we.set(i,a,3e5),a)}class we{static cachedata={};static set(t,n,i){this.cachedata[t]={maxAge:i||0,value:n,now:Date.now()}}static get(t){this.reset();const n=this.cachedata[t];return n?n.value:null}static delete(t){return delete this.cachedata[t]}static clear(){this.cachedata={}}static reset(){for(const t in this.cachedata){const n=this.cachedata[t];n&&Date.now()-n.now>n.maxAge&&this.delete(t)}}}class Bt{configs=new Map;cache=new Map;getConfig(t){return this.configs.get(t)}register(t){this.configs.set(t.tag,t),t.items&&this.cache.set(t.tag,t.items)}unregister(t){this.configs.delete(t),this.cache.delete(t)}get(t){return this.cache.get(t)||[]}async asyncGet(t,n){const i=this.configs.get(t);return i?i.mode==="static"?this.getByConfig(i):i.mode==="async"?this.cache.has(t)?this.cache.get(t)||[]:this.asyncGetByConfig(i,n):[]:[]}getByConfig(t){return t.items||[]}async asyncGetByConfig(t,n={}){if(t.fetch){const i=await t.fetch(n||{});if(i){const[a,r]=t.keys||["name","id"];return this.deepFormat(i,a,r)}}return[]}deepFormat(t,n,i){return t.map(a=>{const r={label:a[n],value:a[i]};return a.children&&a.children.length>0&&(r.options=this.deepFormat(a.children,n,i)),r})}}o("DictionaryUtil",Bt);const Fe=o("t",(...e)=>_gct.i18n.global.t(...e));class Ge{data;next;prev;constructor(t,n=null,i=null){this.data=t,this.next=n,this.prev=i}clear(){this.data=null,this.next=null,this.prev=null}}o("LinkedNode",Ge);class va{active=null;add(t){if(!this.active)this.active=new Ge(t);else{if(this.active.next){let i=this.active.next;for(;i;)i=i.next,i&&i.clear()}const n=new Ge(t,null,this.active);this.active.next=n,this.active=n}}delete(t){const{prev:n,next:i}=t;n&&(n.next=i),i&&(i.prev=n),t.clear()}prev(){this.active&&this.active.prev&&(this.active=this.active.prev)}next(){this.active&&this.active.next&&(this.active=this.active.next)}clearAll(){if(this.active){let t=this.active.prev,n=this.active.next;for(;t;)t.clear(),t=t.prev;for(;n;)n.clear(),n=n.next;this.active.clear()}}canUndo(){return!!this.active&&!!this.active.prev}canRedo(){return!!this.active&&!!this.active.next}}o("LinkedList",va);const pd=o("insertCustomCssToHead",function(e,t=""){const n=document.getElementsByTagName("head")[0],i=document.getElementById("gct-custom-css"+t);i&&n.removeChild(i);const a=document.createElement("style");a.id="gct-custom-css"+t,a.type="text/css",pe(t)?a.innerHTML=e:a.innerHTML=`#${t}{${e}}`,n.appendChild(a)});function Da(e){const t=[];if(e.required&&t.push({required:!0,message:Fe("sys.notNull")}),e.reg){const{reg:i,regHint:a}=e,r=new RegExp(i),s=c=>r.test(c);t.push({validator:s,message:a??Fe("sys.regError")})}const n=e.validateFn;return n&&t.push({validator:n}),t}function Ma(e){return{all:e=e||new Map,on:function(t,n){var i=e.get(t);i?i.push(n):e.set(t,[n])},off:function(t,n){var i=e.get(t);i&&(n?i.splice(i.indexOf(n)>>>0,1):e.set(t,[]))},emit:function(t,n){var i=e.get(t);i&&i.slice().map(function(a){a(n)}),(i=e.get("*"))&&i.slice().map(function(a){a(t,n)})}}}const vd=o("mitt",Ma());class ya{CACHE_EXPIRATION_TIME=600*1e3;modelCache=new Map;modelLoadingCache=new Map;modelsLoadingCache=new Map;enumCache=new Map;enumLoadingCache=new Map;queryRefDataCache=new Map;queryRefDataLoadingCache=new Map;isExpired(t){return Date.now()>t.expiresAt}createCacheEntry(t){return{data:t,expiresAt:Date.now()+this.CACHE_EXPIRATION_TIME}}async loadModel(t){if(this.modelCache.has(t)){const i=this.modelCache.get(t);if(!this.isExpired(i))return i.data;this.modelCache.delete(t)}if(this.modelLoadingCache.has(t))return this.modelLoadingCache.get(t);const n=(async()=>{try{const i=await _api.apaas.modelMeta.getDetail({modelKey:t});return i?(this.modelCache.set(t,this.createCacheEntry(i)),i):{}}finally{this.modelLoadingCache.delete(t)}})();return this.modelLoadingCache.set(t,n),n}async loadModels(t){const n=t.join(",");if(t.every(r=>{const s=this.modelCache.get(r);return s&&!this.isExpired(s)}))return t.map(r=>this.modelCache.get(r).data);if(t.forEach(r=>{const s=this.modelCache.get(r);s&&this.isExpired(s)&&this.modelCache.delete(r)}),this.modelsLoadingCache.has(n))return this.modelsLoadingCache.get(n);const a=(async()=>{try{const r=t.filter(s=>!this.modelCache.has(s));if(r.length>0){const s=await _api.apaas.modelMeta.getByKeys({modelKeys:r.join(",")});s&&s.length>0&&s.forEach(c=>{this.modelCache.set(c.key,this.createCacheEntry(c)),c.fieldMetaList=c.fieldMetas||[]})}return t.map(s=>this.modelCache.get(s).data)}finally{this.modelsLoadingCache.delete(n)}})();return this.modelsLoadingCache.set(n,a),a}async loadField(t,n){const i=await this.loadModel(t);if(i?.fieldMetaList)return i.fieldMetaList.find(a=>a.key===n)}async loadFieldPaths(t,n,i){if(!i)return[];const a=[],r=!!i.bindFieldKey,s=r?i.modelLink||[i.belongModelKey,i.bindModelKey]:[i.modelKey],c=await this.loadModels(s);if(r)a.push(...c.map(f=>f.name));else{const f=await this.loadModel(i.modelKey);f&&a.push(f.name)}const u=await this.loadModel(t);if(u?.fieldMetaList){const f=u.fieldMetaList.find(l=>l.key===n);f&&a.push(f.name)}return a}async loadEnumList(t,n,i=pt.ENTITY){const a=`${i}:${t}:${n}`;if(this.enumCache.has(a)){const s=this.enumCache.get(a);if(!this.isExpired(s))return Y(s.data);this.enumCache.delete(a),this.enumLoadingCache.delete(a)}if(this.enumLoadingCache.has(a))return this.enumLoadingCache.get(a);const r=(async()=>{try{return[]}finally{this.enumLoadingCache.delete(a)}})();return this.enumLoadingCache.set(a,r),r}async loadQueryRefData(t){if(!t||!t.modelKey)throw new Error("queryRefData 参数缺失");const n=JSON.stringify(t);if(this.queryRefDataCache.has(n)){const a=this.queryRefDataCache.get(n);if(!this.isExpired(a))return Y(a.data);this.queryRefDataCache.delete(n),this.queryRefDataLoadingCache.delete(n)}if(this.queryRefDataLoadingCache.has(n))return this.queryRefDataLoadingCache.get(n);const i=(async()=>{try{const a=await _api.apaas.modelData.postQueryRefData(t);return a?(this.queryRefDataCache.set(n,this.createCacheEntry(a)),Y(a)):{}}finally{this.queryRefDataLoadingCache.delete(n)}})();return this.queryRefDataLoadingCache.set(n,i),i}getCachedModel(t){const n=this.modelCache.get(t);if(n&&!this.isExpired(n))return n.data;n&&this.isExpired(n)&&this.modelCache.delete(t)}clear(t){this.modelCache.delete(t),this.modelLoadingCache.delete(t);const n=[];this.modelsLoadingCache.forEach((r,s)=>{s.includes(t)&&n.push(s)}),n.forEach(r=>{this.modelsLoadingCache.delete(r)});const i=[];this.enumCache.forEach((r,s)=>{s.includes(t)&&i.push(s)}),i.forEach(r=>{this.enumCache.delete(r),this.enumLoadingCache.delete(r)});const a=[];this.queryRefDataCache.forEach((r,s)=>{s.includes(`"modelKey":"${t}"`)&&a.push(s)}),a.forEach(r=>{this.queryRefDataCache.delete(r),this.queryRefDataLoadingCache.delete(r)})}clearAll(){this.modelCache.clear(),this.modelLoadingCache.clear(),this.modelsLoadingCache.clear(),this.enumCache.clear(),this.enumLoadingCache.clear(),this.queryRefDataCache.clear(),this.queryRefDataLoadingCache.clear()}keys(){return Array.from(this.modelCache.keys())}}const Dd=o("modelLoader",new ya),Md=o("ModeFnMap",{[b.EXPORT_TEMPLATE]:["CONCAT"],[b.PROCESS_TITLE]:["CONCAT"],[b.SEARCH]:["AND","OR"],[b.GATEWAY_RULE]:["IF","AND","OR","EQ","NE","LE","LT","GE","GT"],[b.NOCODE_BPMN_RULE]:["IF","AND","OR","EQ","NE","LE","LT","GE","GT","ISNULL","ISEMPTY"],[b.PAAS_BPMN_RULE]:["IF","AND","OR","EQ","NE","LE","LT","GE","GT"],[b.MEDPRO_BUSINESSFLOW]:["IF","AND","OR","EQ","NE","LE","LT","GE","GT"],[b.ENTITY_FORMULA]:["IF","ISEMPTY","ISNULL","AND","OR","EQ","NE","LE","LT","GE","GT","PARSENUMBER","CONCAT","SPLIT","SUM","REDUCE","MULTIPLICATION","DIVISION","FIXED","ROUND","ROUNDUP","MAX","LARGE","MIN","SMALL","AVERAGE","ABS","MOD","POWER","SQRT","YEAR","MONTH","DAY","HOUR","MINUTE","TUPLE","SEQMAP","SUMSQ"],[b.LABEL_PRINT]:["IF","ISEMPTY","ISNULL","AND","OR","EQ","NE","LE","LT","GE","GT","PARSENUMBER","CONCAT","SPLIT","SUM","REDUCE","MULTIPLICATION","DIVISION","FIXED","ROUND","ROUNDUP","MAX","LARGE","MIN","SMALL","AVERAGE","ABS","MOD","POWER","SQRT","DATEFORMAT","YEAR","MONTH","DAY","HOUR","MINUTE","TUPLE","SEQMAP","SUMSQ"]}),yd=o("ModeTabMap",{[b.EXPORT_TEMPLATE]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.PROCESS_TITLE]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.GATEWAY_RULE]:[g.FIELD,g.FUNCTION,g.OPERATOR],[b.NOCODE_BPMN_RULE]:[g.FIELD,g.FUNCTION,g.NODE,g.VARIABLE,g.OPERATOR],[b.PAAS_BPMN_RULE]:[g.FIELD,g.FUNCTION,g.OPERATOR],[b.SEARCH]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.FIELD_DISPLAY]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.DISPLAY_RULE]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.CREATE_FIELD]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.DATA_SET_FORMULA]:[g.FIELD,g.FUNCTION,g.OPERATOR],[b.PAAS_CREATE_FIELD]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.ENTITY_FORMULA]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.IPAAS_BACK]:[g.FUNCTION,g.OPERATOR],[b.LABEL_PRINT]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.ONLINE_FORM_FIELD_FORMULA]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.MEDPRO_BUSINESSFLOW]:[g.FIELD,g.FUNCTION,g.OPERATOR],[b.RUN_FORMULA]:[g.FIELD,g.FUNCTION,g.VARIABLE,g.OPERATOR],[b.BI_FORMULA]:[g.FIELD,g.FUNCTION,g.OPERATOR]}),Cd=o("ReturnTypeMaps",{[b.CREATE_FIELD]:Dt,[b.DATA_SET_FORMULA]:Mt,[b.PAAS_CREATE_FIELD]:Ee,[b.ENTITY_FORMULA]:Ee,[b.RUN_FORMULA]:Ee}),Ud=o("ModeTabDict",{[g.FUNCTION]:{icon:"iconfont icon-hanshu1"},[g.FIELD]:{icon:"iconfont icon-ziduan2"},[g.VARIABLE]:{icon:"iconfont icon-bianliang"},[g.NODE]:{icon:"iconfont icon-hanshu1"},[g.OPERATOR]:{icon:"iconfont icon-a-yunsuanfu1"}}),kt=o("BuiltOperators",{"+":{title:"加法: a+b",description:"a,b: 整数,数字",group:L.ARITHMETIC},"-":{title:"减法: a-b",description:"a,b: 整数,数字",group:L.ARITHMETIC},"*":{title:"乘法: a*b",description:"a,b: 整数,数字",group:L.ARITHMETIC},"/":{title:"除法: a/b",description:"a,b: 整数,数字",group:L.ARITHMETIC},"%":{title:"求余: a%b",description:"a,b: 整数,数字",group:L.ARITHMETIC},">":{title:"大于: a>b",description:"a,b: 整数,数字",group:L.RELATIONSHIP},">=":{title:"大于等于: a>=b",description:"a,b: 整数,数字",group:L.RELATIONSHIP},"<":{title:"小于: a<b",description:"a,b: 整数,数字",group:L.RELATIONSHIP},"<=":{title:"小于等于: a<=b",description:"a,b: 整数,数字",group:L.RELATIONSHIP},"==":{title:"等于: a==b",description:"a,b: 整数,数字,布尔,字符串",group:L.RELATIONSHIP},"!=":{title:"不等于: a!=b",description:"a,b: 整数,数字,布尔,字符串",group:L.RELATIONSHIP},"&&":{title:"与: a&&b",description:"a,b: 布尔",group:L.LOGIC},"||":{title:"或: a||b",description:"a,b: 布尔",group:L.LOGIC},"!":{title:"非: !a",description:"a: 布尔",group:L.LOGIC},"?":{title:"判断: a?b:c",description:"若a的值为true,则执行b否则执行c",group:L.OTHER,label:"?:",output:"?:"},"(":{title:"左括号: c-(a+b)",description:"优先运算 () 中的内容",group:L.OTHER},")":{title:"右括号: c-(a+b)",description:"优先运算 () 中的内容",group:L.OTHER}}),Pd=o("numberOperator",["+","-","*","/","%",">",">=","<","<="]),wd=o("booleanOperator",["&&","||","!"]),Fd=o("allOperator",["==","!=","?",":"]),Gd=o("returnBolOperator",["&&","||","!","==","!=",">",">=","<","<="]),Bd=o("getOperatorList",()=>{const e=Object.keys(kt).map(t=>{const{title:n,description:i,group:a,label:r,output:s}=kt[t];return{name:r??t,group:a,desc:`${n}
2
+ ${i}`,id:s??t}});return[L.ARITHMETIC,L.RELATIONSHIP,L.LOGIC,L.OTHER].map(t=>({id:t,name:Fe(`sys.expression.${t}`),children:e.filter(n=>n.group===t),idToChildren:!1}))}),kd=o("CUSTOM_LANGUAGE","custom-expression"),Hd=o("CUSTOM_THEME","custom-expression-theme"),Ht=o("functionGroup",[{id:"LOGIC",name:"逻辑",children:[{desc:`IF(expr, a, b)
3
+ 根据条件表达式,返回不同的值, 当expr执行为true,返回a, 否则返回b。
4
+ 参数 expr: 条件表达式 a: 值 b: 另一个值 返回值 a|b
5
+ 示例
6
+ IF(1 > 2, 1, 2); 返回 2`,definition:"declare function IF<T>(expr: boolean, v: T, l: T): T;"},{desc:`ISEMPTY(a)
7
+ 判断参数a是否为空,a为空则返回true
8
+ 参数a支持的类型:String,Array,Object,返回值 true|false
9
+ 示例
10
+ ISEMPTY('') 返回 true
11
+ ISEMPTY(null) 返回 true
12
+ ISEMPTY(undefined) 返回 true
13
+ ISEMPTY([]) 返回 true
14
+ ISEMPTY({}) 返回 true
15
+ `,definition:"declare function ISEMPTY<T>(val: T): boolean;"},{desc:`ISNULL(a)
16
+ 判断参数a是否为null,a为null则返回true
17
+ 示例
18
+ ISNULL('') 返回 false
19
+ ISNULL(null) 返回 true
20
+ ISNULL(undefined) 返回 false`,definition:"declare function ISNULL<T>(val: T): Promise<boolean>;"},{desc:`ISUNDEFINED(a)
21
+ 判断参数a是否为undefined,a为undefined则返回true
22
+ 示例
23
+ ISUNDEFINED('') 返回 false
24
+ ISUNDEFINED(null) 返回 false
25
+ ISUNDEFINED(undefined) 返回 true`,definition:"declare function ISUNDEFINED<T>(val: T): Promise<boolean>;"},{desc:`AND(conditions): boolean
26
+ 根据一组表达式判断是否为真,只要有一个为false,则返回false
27
+ 参数 conditions: 条件表达式列表 返回值 true|false
28
+ 示例
29
+ IF(AND(1==1,1 > 2,3==3),'正确','错误'); 返回 错误`,definition:"declare function AND<T>(...e: T[]): Promise<boolean>;"},{desc:`OR(conditions)
30
+ 根据一组表达式判断是否为真,只要有一个为true,则返回true
31
+ 参数 conditions: 条件表达式数组 返回值 true|false
32
+ 示例
33
+ IF(AND(1==1,1 > 2,3==3),'正确','错误'); 返回 正确`,definition:"declare function OR<T>(...e: T[]): Promise<boolean>;"},{desc:`EQ(a, b)
34
+ 比较两个值是否相等,如果相等则返回true
35
+ 参数a/b支持的类型:Number,String ,Boolean , Date , Array , Object,Array及Object比较数值型知否相等,参数 a: 一个值 b: 另一个值 返回值 true|false
36
+ 示例
37
+ EQ(1, 1); 返回 true
38
+ EQ("a", "c"); 返回 false
39
+ EQ([1,2,3],[1,2,3]) 返回 true
40
+ EQ({a:1,b:1},{a:1,b:1}) 返回 true`,definition:"declare function EQ<T, K>(v: T, o: K): Promise<boolean>;"},{desc:`NE(a, b)
41
+ 比较两个值是否不相等,如果不相等则返回true
42
+ 参数a/b支持的类型:Number,String ,Boolean , Date , Array , Object,Array及Object比较数值型知否不相等, 参数 a: 一个值 b: 另一个值 返回值 true|false
43
+ 示例
44
+ NE(1, 1); 返回 false
45
+ NE("a", "c"); 返回 true
46
+ NE([1,2,3],[1,2,3]) 返回 false
47
+ NE({a:1,b:1},{a:1,b:1}) 返回 false`,definition:"declare function NE<T>(v: T, o: T): Promise<boolean>;"},{desc:`LE(a, b)
48
+ 比较两个值大小,a小于等于b返回true
49
+ 参数a/b支持的类型:Number,String,Date, 参数 a: 一个值 b: 另一个值 返回值 true|false
50
+ 示例
51
+ LE(1, 1); 返回 true
52
+ LE(2, 1); 返回 false
53
+ LE('2023-07-12',''2023-07-13'') 返回 true
54
+ LE('12:00',''13:00'') 返回 true`,definition:"declare function LE<T>(v: T, o: T): Promise<boolean>;"},{desc:`LT(a, b)
55
+ 比较两个值大小,a小于b返回true
56
+ 参数a/b支持的类型:Number,String,Date, 参数 a: 一个值 b: 另一个值 返回值 true|false
57
+ 示例
58
+ LT(1, 1); 返回 false
59
+ LT(1, 2); 返回 true
60
+ LT('2023-07-12',''2023-07-13'') 返回 true
61
+ LT('13:00',''12:00'') 返回 true`,definition:"declare function LT<T>(v: T, o: T): Promise<boolean>;"},{desc:`GE(a, b)
62
+ 比较两个值大小,a大于等于b返回true
63
+ 参数a/b支持的类型:Number,String,Date, 参数 a: 一个值 b: 另一个值 返回值 true|false
64
+ 示例
65
+ GE(1, 1); 返回 true
66
+ GE(2, 3); 返回 false
67
+ GE('2023-07-13','2023-07-12') 返回 true
68
+ GE('13:00','12:00') 返回 true`,definition:"declare function GE<T>(v: T, o: T): Promise<boolean>;"},{desc:`GT(a, b)
69
+ 比较两个值大小,a大于b返回true
70
+ 参数a/b支持的类型:Number,String,Date, 参数 a: 一个值 b: 另一个值 返回值 true|false
71
+ 示例
72
+ GT(1, 1); 返回 false
73
+ GT(2, 1); 返回 false
74
+ GT('2023-07-13','2023-07-12') 返回 true
75
+ GT('13:00','12:00') 返回 true`,definition:"declare function GT<T>(v: T, o: T): Promise<boolean>;"}]},{id:"STRING",name:"字符串",children:[{desc:`LEN(a)
76
+ 返回字符串长度
77
+ 示例
78
+ LEN('aa'); 返回 2`,definition:"declare function LEN(v: string): Promise<number>;"},{desc:`CONCAT(a,b....)
79
+ 拼接参数a和b,返回拼接后的字符串
80
+ 参数a/b支持字符串,返回字符串
81
+ 示例
82
+ CONCAT('a','b','c') 返回abc`,definition:"declare function CONCAT(...args: string[]): Promise<string>;"},{desc:`SUBSTRING(str,start,end)
83
+ 截取字符串str,从start开始截取到end,start从0开始,如果start和end为负数表示从最后开始截取,start为-1表示从最后一位开始截取,返回截取的字符串
84
+ 示例
85
+ SUBSTRING('abcd',0,2) 返回abc
86
+ SUBSTRING('abcd',-1,-2) 返回 cd`,definition:"declare function SUBSTRING(v: string, s: number, e: number): Promise<string>;"},{desc:`SUBSTR(str,start,len)
87
+ 截取字符串str,从start开始截取len长度,start从0开始,如果start为负数表示从最后开始截取,start为-1表示从最后一位开始截取,返回截取的字符串
88
+ SUBSTR('abcd',0,2) 返回ab
89
+ SUBSTRING('abcd',-1,2) 返回 cd`,definition:"declare function SUBSTR(v: string, s: number, l: number): Promise<string>;"},{desc:`UPPER(a)
90
+ 字符串a转化为大写,参数a支持字符串
91
+ 示例
92
+ UPPER('aa') 返回 AA `,definition:"declare function UPPER(v: string): Promise<string>;"},{desc:`LOWER(a)
93
+ 字符串a转化为小写,参数a支持字符串
94
+ 示例
95
+ LOWER('AA') 返回 aa`,definition:"declare function LOWER(v: string): Promise<string>;"},{desc:`TRIM(a)
96
+ 字符串a去前后空格
97
+ 示例
98
+ TRIM(' ab ') 返回 'ab'`,definition:"declare function TRIM(v: string): Promise<string>;"},{desc:`LTRIM(a)
99
+ 字符串a去前空格
100
+ 示例
101
+ LTRIM(' ab ') 返回 'ab '`,definition:"declare function LTRIM(v: string): Promise<string>;"},{desc:`RTRIM(a)
102
+ 字符串a去前空格
103
+ 示例
104
+ LTRIM(' ab ') 返回 ' ab'`,definition:"declare function RTRIM(v: string): Promise<string>;"},{desc:`REPEAT(str,a)
105
+ 字符串a在str中重复的次数,返回重复次数
106
+ 示例
107
+ REPEAT('aabbcc','a') 返回 2`,definition:"declare function REPEAT(v: string, c: string): Promise<number | null>;"},{desc:`REPLACE(str,a,b)
108
+ 字符串str中把所有的a替换成b
109
+ 示例
110
+ REPLACE('aabbcc','a','1') 返回 11bbcc`,definition:"declare function REPLACE(v: string, o: string, t: string): Promise<string>;"},{desc:`FINDSTR(str,a)
111
+ 在字符串str中查找字符串a,如果存在返回true,不存在返回false
112
+ 示例
113
+ FINDSTR('aabbcc','a') 返回 true`,definition:"declare function FINDSTR(v: string, c: string): Promise<boolean>;"},{desc:`SEARCHSTR(str,a)
114
+ 在字符串str中查找字符串a,返回a在str中出现的次数,如果不存在则返回0
115
+ 示例
116
+ SEARCHSTR('aabbcc','a') 返回 2`,definition:"declare function SEARCHSTR(v: string, c: string): Promise<number>;"},{desc:`PARSENUMBER(str)
117
+ 字符串str转化为数值
118
+ 示例
119
+ PARSENUMBER('1') 返回 1
120
+ PARSENUMBER('0.1') 返回 0.1`,definition:"declare function PARSENUMBER(v: string): Promise<number | null>;"},{desc:`SPLIET(str,a)
121
+ 字符串str根据a分割转化为数组,返回数组
122
+ 参数仅支持Number类型
123
+ 示例
124
+ SPLIT('aa-bb-cc','-') 返回 ['aa','bb','cc']`,definition:"declare function SPLIT(v: string, c: string): Promise<string[]>;"}]},{id:"NUMBER",name:"数值",children:[{desc:`SUM(a,b,c...)
125
+ 参数a、b、c...相加,返回相加后的数值
126
+ 示例
127
+ SUM(1,2,3) 返回 6`,definition:"declare function SUM(...args: number[]): Promise<number>;"},{desc:`REDUCE(a,b,c...)
128
+ 参数a、b、c...相减,返回相减后的数值
129
+ 示例
130
+ REDUCE(2,1) 返回 1
131
+ REDUCE(5,1,2) 返回 2`,definition:"declare function REDUCE(...args: number[]): Promise<number>;"},{desc:`MULTIPLICATION(a,b,c...)
132
+ 参数a、b、c...相乘,返回相乘后的数值
133
+ 示例
134
+ MULTIPLICATION(2,1) 返回 2
135
+ MULTIPLICATION(5,1,2) 返回 10`,definition:"declare function MULTIPLICATION(...args: number[]): Promise<number>;"},{desc:`DIVISION(a,b,c...)
136
+ 参数a、b、c...相除,返回相除后的数值
137
+ 示例
138
+ DIVISION(2,1) 返回 2
139
+ DIVISION(10,5,2) 返回 1`,definition:"declare function DIVISION(...args: number[]): Promise<number>;"},{desc:`FIXED(value,num)
140
+ 参数value保留num位小数,返回数值
141
+ 示例
142
+ FIXED(2.01,1) 返回 2.0
143
+ FIXED(2.015,2) 返回 2.01`,definition:"declare function FIXED(v: number, n: number): Promise<number | Promise<Error>>;"},{desc:`ROUND(value,num)
144
+ 参数value保留num位四舍五入后的小数,返回数值
145
+ 示例
146
+ ROUND(2.01,1) 返回 2.0
147
+ ROUND(2.015,2) 返回 2.02`,definition:"declare function ROUND(v: number, n: number): Promise<number | Promise<Error>>;"},{desc:`ROUNDUP(value,num)
148
+ 将数字向上舍入到指定的位数。无论数字正负,舍入方向始终向绝对值更大的方向进行。
149
+ 示例
150
+ ROUNDUP(3.141,2) 返回 3.15`,definition:"declare function ROUNDUP(v: number, n: number): Promise<number | Promise<Error>>;"},{desc:`MAX([value1, value2...])
151
+ 从数组参数中获取最大的数,返回数值
152
+ 参数必须为Number类型数组
153
+ 示例
154
+ MAX([2, 1]) 返回 2
155
+ MAX([2.1, 2.2]) 返回 2.2`,definition:"declare function MAX(v: number[]): Promise<number>;"},{desc:`LARGE([value1, value2...], n)
156
+ 从数组参数中获取第n大数值,返回数值
157
+ 参数必须为Number类型数组
158
+ 示例
159
+ LARGE([5, 4, 3, 2, 1],2) 返回 4
160
+ LARGE([2.5, 2.4, 2.3, 2.2, 2.1], 3) 返回 2.3`,definition:"declare function LARGE(v: number[], n: number): Promise<number | Promise<Error>>;"},{desc:`MIN([value1, value2...])
161
+ 从数组参数中获取最小的数,返回数值
162
+ 参数必须为Number类型数组
163
+ 示例
164
+ MIN([2, 1]) 返回 1
165
+ MIN([2.1, 2.2]) 返回 2.1`,definition:"declare function MIN(v: number[]): Promise<number>;"},{desc:`SMALL([value1, value2...], n)
166
+ 从数组参数中获取第n小数值,返回数值
167
+ 参数必须为Number类型数组
168
+ 示例
169
+ SMALL([5, 4, 3, 2, 1], 2) 返回 2
170
+ SMALL([2.5, 2.4, 2.3, 2.2, 2.1], 3) 返回 2.3`,definition:"declare function SMALL(v: number[], n: number): Promise<number | Promise<Error>>;"},{desc:`AVERAGE([value1, value2...])
171
+ 取数组中所有数值的平均值,返回数值
172
+ 参数必须为Number类型数组
173
+ 示例
174
+ AVERAGE([5, 4, 3, 2, 1]) 返回 3`,definition:"declare function AVERAGE(v: number[]): Promise<number | Promise<Error>>;"},{desc:`ABS(value)
175
+ 取数值参数value的绝对值,返回数值
176
+ 参数必须为Number类型
177
+ 示例
178
+ ABS(-1) 返回 1`,definition:"declare function ABS(v: number): Promise<number>;"},{desc:`MOD(value1, value2)
179
+ 取数value1除以value2的余数,返回数值
180
+ 参数必须为Number类型
181
+ 示例
182
+ MOD(4, 3) 返回 1`,definition:"declare function MOD(v: number, n: number): Promise<number | Promise<Error>>;"},{desc:`POWER(value, n)
183
+ 获取数值value的n次乘幂,返回数值
184
+ 参数必须为Number类型
185
+ 示例
186
+ POWER(4, 2) 返回 16`,definition:"declare function POWER(v: number, n: number): Promise<number>;"},{desc:`SQRT(value)
187
+ 获取数值value的平方根,返回数值
188
+ 参数必须为Number类型
189
+ 示例
190
+ SQRT(4) 返回 2`,definition:"declare function SQRT(v: number): Promise<number>;"},{desc:`SUMSQ
191
+ SUMSQ(数字1, 数字2, ...) 计算一组数值的平方和。
192
+ 示例
193
+ SUMSQ(2,3)=2²+3²=13`,definition:"declare function SUMSQ(...args: number[]): Promise<number>;"},{desc:`STDEV
194
+ STDEV(数字1, 数字2, ...) 计算一组数值的标准差。
195
+ 示例
196
+ STDEV([10, 12, 23, 23, 16, 23, 21, 16])=5.237229365663817`,definition:"declare function STDEV(...args: number[]): Promise<number>;"}]},{id:"OBJECT,ARRAY",name:"对象/数组",children:[{desc:`TUPLE(1, 2, 3)
197
+ 把多个参数转化为数组结构
198
+ 示例
199
+ TUPLE(1, 2, 3) 返回[1, 2, 3]`,definition:"declare function TUPLE(x:any): any[]"},{desc:`SEQMAP('a', 1, 'b', 'c')
200
+ 把多个参数转化对象
201
+ 示例
202
+ SEQMAP('a', 1, 'b', 'c') 返回 { a: 1, b: 'c' } `,definition:"declare function SEQMAP(a:string,b:any): object"},{desc:`GET(a, b)
203
+ 如果a是对象,则获取对象a中属性b的值,如果a是数组,则获取下标b的数据项
204
+ 参数a支持的类型: Array , Object,参数b支持的类型: Number,String
205
+ 示例
206
+ GET(['A', 'B', 'C'], 1) 返回 A
207
+ GET({ a: 1, b: 2, c: 3 }, 'a') 返回 B`,definition:"declare function GET<T extends object | any[]>(v: T, p: number | keyof T): Promise<T[keyof T]>;"},{desc:`PUT(a, b, c)
208
+ 如果a是对象,则b为对象中的属性,c为需要设置的属性值,如果a是数组,则b数组的下标,c为该下标需要设置的数据项
209
+ 参数a支持的类型: Array , Object,参数b支持的类型: Number,String ,参数c泛型
210
+ 示例
211
+ PUT(['A', 'B', 'C'], 1, 'D') 返回['A', 'D', 'C']
212
+ PUT({ a: 1, b: 2, c: 3 }, 'a', 4) 返回 { a: 4, b: 2, c: 3 } `,definition:"declare function PUT<T>(a: T, b: keyof T, c: T[keyof T | any]): Promise<T | Promise<Error>>;"},{desc:`PUSH(a, b)
213
+ 在数组对象a末尾追加b
214
+ 参数a的类型为Array, 参数b泛型,返回数组
215
+ 示例
216
+ PUSH([1, 2, 3], 4) 返回[1, 2, 3, 4]`,definition:"declare function PUSH<T>(v: any[], n: T): Promise<T[] | Promise<Error>>;"},{desc:`HEADPUSH(a, b)
217
+ 在数组对象a头部追加b
218
+ 参数a的类型为Array, 参数b泛型,返回数组
219
+ 示例
220
+ HEADPUSH([1, 2, 3], 0) 返回[0, 1, 2, 3]`,definition:"declare function HEADPUSH<T>(v: any[], n: T): Promise<T[] | Promise<Error>>;"},{desc:`COUNT
221
+ COUNT([数字1, 数字2, ...]) 计算数组的数量。
222
+ 示例
223
+ COUNT([10, 12, 23, 23, 16, 23, 21, 16])=8`,definition:"declare function COUNT(v: number[]): Promise<number>;"}]},{id:"DATE",name:"日期",children:[{desc:`TIMESTAMP2DATE(dtstr)
224
+ 时间戳转化为日期对象,参数dtstr为时间戳类型,返回日期时间对象
225
+ 示例
226
+ TIMESTAMP2DATE(1689558261) 返回 2023-07 - 17 9: 44: 21`,definition:"declare function TIMESTAMP2DATE(v: number): Promise<string | Promise<Error>>;"},{desc:`DATE2TIMESTAMP(dt)
227
+ 日期转时间戳,参数dt为日期类型,返回时间戳
228
+ 示例
229
+ DATE2TIMESTAMP()`,definition:"declare function DATE2TIMESTAMP(v: string): Promise<number>;"},{desc:`DATEFORMAT(dt, format)
230
+ 日期转字符串,参数dt为日期类型,format为格式
231
+ 示例
232
+ DATEFORMAT(NOW(), YYYY-MM-DD HH:mm)`,definition:"declare function DATEFORMAT(v: Date, f: string): Promise<string>;"},{desc:`NOW()
233
+ 获取当前日期时间
234
+ NOW() 返回 2023-07 - 17 9: 44: 21`,definition:"declare function NOW(): Promise<string>;"},{desc:"TODAY(获取当天日期TODAY() 返回2023-07-17",definition:"declare function TODAY(): Promise<string>;"},{desc:`YEAR(dt)
235
+ 获取参数dt类型的年份
236
+ YEAR(NOW()) 返回 2024`,definition:"declare function YEAR(v: string | number | Date | null | undefined): number;"},{desc:`MONTH(dt)
237
+ 获取参数dt类型的月份
238
+ MONTH(NOW()) 返回 7`,definition:"declare function MONTH(v: string | number | Date | null | undefined): Promise<number>;"},{desc:`DAY(dt)
239
+ 获取参数dt类型的日
240
+ DAY(NOW()) 返回 17`,definition:"declare function DAY(v: string | number | Date | null | undefined): Promise<number>;"},{desc:`HOUR(dt)
241
+ 获取参数dt类型的小时
242
+ HOUR(NOW()) 返回 10`,definition:"declare function HOUR(v: string | number | Date | null | undefined): Promise<number>;"},{desc:`MINUTE(dt)
243
+ 获取参数dt类型的分钟
244
+ MINUTE(NOW()) 返回 44`,definition:"declare function MINUTE(v: string | number | Date | null | undefined): Promise<number>;"},{desc:`WEEKRANGE()
245
+ 获取本周开始及结束日期
246
+ WEEKRANGE() 返回[2023-07 - 17 00:00:00.000000000 +0800 CST, 2023-07 - 23 23: 59: 59.000000000 +0800 CST]`,definition:"declare function WEEKRANGE(): Promise<[string, string]>;"},{desc:`LASTWEEKRANGE()
247
+ 获取本周开始及结束日期
248
+ LASTWEEKRANGE() 返回[2023-07 - 10 00:00:00.000000000 +0800 CST, 2023-07 - 16 23: 59: 59.000000000 +0800 CST]`,definition:"declare function LASTWEEKRANGE(): Promise<[string, string]>;"},{desc:`MONTHRANGE()
249
+ 获取本月开始及结束日期
250
+ MONTHRANGE() 返回[2023-07-01 00:00:00.000000000 +0800 CST, 2023-07 - 31 23: 59: 59.000000000 +0800 CST]`,definition:"declare function MONTHRANGE(): Promise<[string, string]>;"},{desc:`LASTMONTHRANGE()
251
+ 获取上月开始及结束日期
252
+ MONTHRANGE() 返回[2023-06-01 00:00:00.000000000 +0800 CST, 2023-06 - 30 23: 59: 59.000000000 +0800 CST]`,definition:"declare function LASTMONTHRANGE(): Promise<[string, string]>;"},{desc:`YEARRANGE()
253
+ 获取本年开始及结束日期
254
+ YEARRANGE() 返回[2023-01-01 00:00:00.000000000 +0800 CST, 2023 - 12 - 31 23: 59: 59.000000000 +0800 CST]`,definition:"declare function YEARRANGE(): Promise<[string, string]>;"},{desc:`LASTYEARRANGE()
255
+ 获取上一年开始及结束日期
256
+ LASTYEARRANGE() 返回[2022-01-01 00:00:00.000000000 +0800 CST, 2022 - 12 - 31 23: 59: 59.000000000 +0800 CST]`,definition:"declare function LASTYEARRANGE(): Promise<[string, string]>;"},{desc:`QUARTER()
257
+ 获取本季度开始及结束日期
258
+ QUARTER() 返回[2022-07-01 00:00:00.000000000 +0800 CST, 2022 -09 - 30 23: 59: 59.000000000 +0800 CST]`,definition:"declare function QUARTER(): Promise<[string, string]>;"},{desc:`LASTQUARTER()
259
+ 获取上季度开始及结束日期
260
+ LASTQUARTER() 返回[2022-04-01 00:00:00.000000000 +0800 CST, 2022-06 - 30 23: 59: 59.000000000 +0800 CST]`,definition:"declare function LASTQUARTER(): Promise<[string, string]>;"},{desc:`ISDATERANGE(dt, [startDate, endDate])
261
+ 判断参数dt是否在给定的区间范围内,如果在则返回true,反之返回false
262
+ ISDATERANGE(NOW(), WEEKRANGE()) 返回 true`,definition:"declare function ISDATERANGE(v: Date, r: [Date, Date]): Promise<boolean>;"},{desc:`ISTIMERANGE(dt, [startTime, endTime])
263
+ 判断参数dt是否在给定的区间范围内,如果在则返回true,反之返回false
264
+ 参数dt、startTime、endTime为时间字符串,如果startTime大于endTime则跨天
265
+ ISTIMERANGE(DATEFORMAT(NOW(), HH:mm), ['06:00', '12:00']) 返回 true
266
+ ISTIMERANGE(DATEFORMAT(NOW(), HH:mm), ['13:00', '07:00']) 返回 true `,definition:"declare function ISTIMERANGE(v: string, r: [string, string]): Promise<boolean>;"}]}].map(e=>(e.children=(e.children??[]).map(t=>{const i=t.definition.match(new RegExp("(?<=declare function )([A-Z0-9]+)","g"))?.[0]??"UNKNOWN",a=(t.definition.match(/([a-z]:)+/g)||[]).length;return Object.assign(t,{id:i,name:i,idToChildren:!1,_args_:a}),t}),e))),Wd=o("functionMap",Ht.reduce((e,t)=>(t.children.forEach(n=>{e[n.id]=n}),e),{})),Vd=o("ipaasBackFunctionGroup",[{id:"INNER",name:"内置",children:[{desc:`MD5(str) 计算输入字符串的MD5值
267
+ 示例: MD5('abc')
268
+ 返回 900150983cd24fb0d6963f7d28e17f72
269
+ `,definition:"declare function MD5(str: string): string;"},{desc:`SHA1(str) 计算输入字符串的HASH值
270
+ 示例: SHA1('abc')
271
+ 返回 a9993e364706816aba3e25717850c26c9cd0d89d`,definition:"declare function SHA1(str: string): string;"},{desc:`SHA256(str) 计算输入字符串的HASH值
272
+ `,definition:"declare function SHA256(str: string): string;"},{desc:`SHA512(str) 计算输入字符串的HASH值
273
+ 示例: SHA512('abc')
274
+ 返回 ddaf35a193617abacc417349ae20...`,definition:"declare function SHA512(str: string): string;"},{desc:`RANDOMSTR(number) 生成随机字符串
275
+ number:为随机字符串的长度
276
+ 示例: RandomStr(6)
277
+ 返回 o4EX1D`,definition:"declare function RANDOMSTR(number: number): string;"},{desc:`NOW(format) 生成指定格式的当前时间戳
278
+ format为时间格式,可选值参考'yyyy-MM-dd','yyyy-MM-dd HH:mm:ss','HH:mm:ss'
279
+ 示例: NOW('yyyy-MM-dd')
280
+ 返回 1970-01-01`,definition:"declare function NOW(format: string): string;"},{desc:`CONCAT(a,b....)
281
+ 拼接参数a和b,返回拼接后的字符串
282
+ 参数a/b支持字符串,返回字符串
283
+ 示例 CONCAT('a','b','c')
284
+ 返回abc`,definition:"declare function CONCAT(...args: string[]): string;"},{desc:`UNIX10()
285
+ 返回10位的时间戳
286
+ UNIX10() 返回 1677811200`,definition:"declare function UNIX10(): number;"},{desc:`UNIX13()
287
+ 返回13位的时间戳
288
+ UNIX13() 返回 1677811200000`,definition:"declare function UNIX13(): number;"}]}].map(e=>(e.children=e.children.map(t=>{const n=t.definition.match(new RegExp("(?<=declare function )([A-Z0-9]+)","g"))[0],i=(t.definition.match(/([a-z]:)+/g)||[]).length;return Object.assign(t,{id:n,name:n,idToChildren:!1,_args_:i}),t}),e))),Xd=o("ipaasBackFunctionMap",Ht.reduce((e,t)=>(t.children.forEach(n=>{e[n.id]=n}),e),{})),Ca=o("biBackFunctionGroup",[{id:"COMMON",name:"常用",children:[{desc:`将多个字段合并成一个字符串
289
+ 示例: CONCAT('a', '-', 'b') = 'a-b'
290
+ `,definition:"declare function CONCAT( ...any: string[]): string;"},{desc:`返回日期的指定中加上指定的数字 后的日期
291
+ 示例: DATEADD('2020-09-29', 100, days) = 2021-01-07
292
+ `,definition:"declare function DATEADD(data: string, interval: number, date_part: string): string;"},{desc:`返回 <date1> 与 <date2> 之差。以 <date_part> 的单位表示,只计算完整<date_part>
293
+ 示例: DATEDIFF('2024-05-22', '2020-09-29', 'year') = 3
294
+ `,definition:"declare function DATEDIFF(date1: string, date2: string, date_part: string): number;"},{desc:`将日期进行格式化,并输出文本
295
+ 示例: DATEFORMAT(2020-09-29, yyyyMMdd) = '20200929'
296
+ `,definition:"declare function DATEFORMAT(date: any, format: string): string;"},{desc:`以<format>格式解析字符串<date_string>,并转化为日期类型。
297
+ 示例: TODATE('2020-09-29', 'yyyy-MM-dd') = 2020-09-29
298
+ `,definition:"declare function TODATE(date_string: string, format:string): any;"},{desc:`NULLIF函数接受两个参数,如果两个参数相等则返回NULL,否则返回第一个参数,可以用来避免分母为0的情况
299
+ 示例: 如果field为0 则返回null,NULLIF(<field>,0) = null
300
+ `,definition:"declare function NULLIF(arg1: any,arg2:any): any;"}]},{id:"NUMBER",name:"数值",children:[{desc:`返回多个参数中的最大值,至少输入2个参数
301
+ 示例: GREATEST(10, 5, 7) = 10
302
+ `,definition:"declare function GREATEST( ...any: number[]): number;"},{desc:`返回多个参数中的最小值,至少输入2个参数
303
+ 示例: LEAST(10, 5, 7) = 5
304
+ `,definition:"declare function LEAST( ...any: number[]): number;"},{desc:`将<number> 舍入为指定位数。 <decimals>指定输出结果的小数位数精度。如果省略decimals,则输出为整数
305
+ 示例: ROUND(1/3, 2) = 0.33
306
+ `,definition:"declare function ROUND(number: number, decimals?: number): number"}]},{id:"TEXT",name:"文本",children:[{desc:`将多个字段合并成一个字符串
307
+ 示例: CONCAT('a', '-', 'b') = 'a-b'
308
+ `,definition:"declare function CONCAT( ...any: string[]): string;"},{desc:`如果给定字符串包含指定子字符串,则返回 true
309
+ 示例: CONTAINS('Hello World', ' ') = true
310
+ `,definition:"declare function CONTAINS(string: string, substring: string): boolean;"},{desc:`返回子字符串在字符串中的索引位置,从指定的索引<start>开始查找(<start>可不填)。如果未找到子字符串,则返回 0。字符串中第一个字符的位置为 1
311
+ 示例: FIND('World', 'Hello World') = 7
312
+ FIND('Computer', 'Hello World') = 0
313
+ `,definition:"declare function FIND(substring: string, string: string, start?: number): number;"},{desc:`返回字符串长度
314
+ 示例: LEN('Hello World') = 11
315
+ `,definition:"declare function LEN(string: string): number;"},{desc:`返回<string>从指定<start>位置处开始的字符串。字符串中第一个字符的位置为 1。 如果添加了可选数字参数<length>,则返回的字符串仅包含该数量的字符
316
+ 示例: MID('Hello World', 2) = 'ello World'
317
+ MID('Hello World', 2, 4) ='ello'
318
+ `,definition:"declare function MID(string: string, start: number, length?: number): string"},{desc:`在 <string> 中搜索 <substring> 并将其替换为 <replacement>。如果未找到 <substring>,则字符串保持不变。
319
+ 示例: REPLACE('Hello World', ' ', '-') = 'Hello-World'
320
+ `,definition:"declare function REPLACE(string: string, substring: string, replacement: string): string"},{desc:`移除 <string> 的所有前置空格和尾随空格
321
+ 示例: TRIM(' Hello World ') = 'Hello World'
322
+ `,definition:"declare function TRIM(string: string): string"}]},{id:"DATE",name:"日期",children:[{desc:`返回日期的指定中加上指定的数字 后的日期
323
+ 示例: DATEADD('2020-09-29', 100, days) = 2021-01-07
324
+ `,definition:"declare function DATEADD(data: string, interval: number, date_part: string): string;"},{desc:`以整数的形式返回给定 <date> 的天
325
+ 示例: DAY('2020-09-29') = 29
326
+ `,definition:"declare function DAY(date: string): number;"},{desc:`以整数形式返回给定 <date> 的月份
327
+ 示例: MONTH('2020-09-29') = 9
328
+ `,definition:"declare function MONTH(date: string): number;"},{desc:`返回一个依据指定 <year>、<month> 和 <day> 构造的日期值
329
+ 示例: MAKEDATE(2020, 9, 29) = 2020-09-29
330
+ `,definition:"declare function MAKEDATE(year: number, month: number, day: number): any;"},{desc:`返回当前时间
331
+ 示例: NOW() = 2024-05-22 09:29:29
332
+ `,definition:"declare function NOW(): any;"},{desc:`以整数形式返回给定 <date> 的季度
333
+ 示例: QUARTER('2020-09-29') = 3
334
+ `,definition:"declare function QUARTER(date: string): number;"},{desc:`返回当前日期
335
+ 示例: TODAY() = 2024-05-22
336
+ `,definition:"declare function TODAY(): any;"},{desc:`以整数形式返回给定 <date> 的周
337
+ 示例: WEEK('2010-01-01') = 52
338
+ WEEK('2010-01-06') = 1
339
+ `,definition:"declare function WEEK(date: string): number;"},{desc:`以整数形式返回给定 <date> 的年份
340
+ 示例: YEAR('2020-09-29') = 2020
341
+ `,definition:"declare function YEAR(date: string): number;"}]},{id:"PARSE",name:"转换",children:[{desc:`将日期进行格式化,并输出文本
342
+ 示例: DATEFORMAT(2020-09-29, yyyyMMdd) = '20200929'
343
+ `,definition:"declare function DATEFORMAT(date: any, format: string): string;"},{desc:`以<format>格式解析字符串<date_string>,并转化为日期类型。
344
+ 示例: TODATE('2020-09-29', 'yyyy-MM-dd') = 2020-09-29
345
+ `,definition:"declare function TODATE(date_string: string, format:string): any;"},{desc:`将文本或数值转为浮点数
346
+ 示例: TODOUBLE('123.21') = 123.21
347
+ TODOUBLE(3) = 3.0
348
+ `,definition:"declare function TODOUBLE(expression: string | number): number;"},{desc:`将文本或数值转为整数,若存在小数部分将舍弃
349
+ TOINT('123.9') = 123
350
+ `,definition:"declare function TOINT(expression: string | number) : number;"},{desc:`将数值转为字符串
351
+ TOSTR(123) = '123'
352
+ `,definition:"declare function TOSTR(expression: number) : string;"}]},{id:"AGG",name:"聚合",children:[{desc:`平均值
353
+ 示例: AVG([订单金额])
354
+ 根据图表中使用的维度进行聚合,求订单金额的平均值
355
+ `,definition:"declare function AVG(number: number): number;"},{desc:`计数
356
+ 示例: COUNT([订单ID])
357
+ 根据图表中使用的维度进行聚合,求订单的数量
358
+ `,definition:"declare function COUNT(expression: string | number): number;"},{desc:`去重计数
359
+ 示例: COUNTD([订单ID])
360
+ 根据图表中使用的维度进行聚合,求订单ID去重后的数量
361
+ `,definition:"declare function COUNTD(expression: string | number): number;"},{desc:`最大值
362
+ 示例: MAX([订单金额])
363
+ 根据图表中使用的维度进行聚合,求订单金额的最大值
364
+ `,definition:"declare function MAX(expression: number): number;"},{desc:`中位数
365
+ 示例: MEDIAN([订单金额])
366
+ 根据图表中使用的维度进行聚合,求订单金额的中位数
367
+ `,definition:"declare function MEDIAN(number: number): number;"},{desc:`最小值
368
+ 示例: MIN([订单金额])
369
+ 根据图表中使用的维度进行聚合,求订单金额的最小值
370
+ `,definition:"declare function MIN(expression: number): number;"},{desc:`求和
371
+ 示例: SUM([订单金额])
372
+ 根据图表中使用的维度进行聚合,求订单金额的总和
373
+ `,definition:"declare function SUM(number: number): number;"}]}].map(e=>(e.children=e.children.map(t=>{const n=t.definition.match(new RegExp("(?<=declare function )([A-Z0-9_]+)","g"))[0],i=(t.definition.match(/([a-z]:)+/g)||[]).length;return Object.assign(t,{id:n,name:n,idToChildren:!1,_args_:i}),t}),e))),Yd=o("biBackFunctionMap",Ca.reduce((e,t)=>(t.children.forEach(n=>{e[n.id]=n}),e),{})),jd=o("FUNC_KEYS",["IF","ISEMPTY","ISNULL","ISUNDEFINED","AND","OR","EQ","NE","LE","LT","GE","GT","LEN","CONCAT","SUBSTRING","SUBSTR","UPPER","LOWER","TRIM","LTRIM","RTRIM","REPEAT","REPLACE","FINDSTR","SEARCHSTR","PARSENUMBER","SPLIT","SUM","REDUCE","MULTIPLICATION","DIVISION","FIXED","ROUND","ROUNDUP","MAX","LARGE","MIN","SMALL","AVERAGE","ABS","MOD","POWER","SQRT","SUMSQ","STDEV","TUPLE","SEQMAP","GET","PUT","PUSH","HEADPUSH","COUNT","TIMESTAMP2DATE","DATE2TIMESTAMP","DATEFORMAT","NOW","TODAY","YEAR","MONTH","DAY","HOUR","MINUTE","WEEKRANGE","LASTWEEKRANGE","MONTHRANGE","LASTMONTHRANGE","YEARRANGE","LASTYEARRANGE","QUARTER","LASTQUARTER","ISDATERANGE","ISTIMERANGE"]),Kd=o("SYSTEM_VAR_PREFIX","$SYSTEM_VAR_"),Ua=o("innerVarList",[{id:"$USERID",name:"$USERID",valueType:"string",desc:"当前登录人id"},{id:"$USERNAME",name:"$USERNAME",valueType:"string",desc:"当前登录人姓名"},{id:"$USERDEPARTMENTID",name:"$USERDEPARTMENTID",valueType:"string",desc:"当前登录人主部门"},{id:"$USERDEPARTMENTNAME",name:"$USERDEPARTMENTNAME",valueType:"string",desc:"当前登录人主部门名称"}]),$d=o("innerVarIds",Ua.map(e=>e.id)),Zd=o("numberTypes",[h.INTEGER,h.LONG,h.DOUBLE,h.DECIMAL]),Jd=o("booleanTypes",[h.BOOLEAN]),xd=o("NUMBER_TYPE","number"),zd=o("STRING_TYPE","string"),Qd=o("BOOLEAN_TYPE","boolean"),qd=o("OBJECT_TYPE","object"),eu=o("ARRAY_TYPE","array"),tu=o("FUN_NUM_TYPE",["SUM","REDUCE","MULTIPLICATION","DIVISION","FIXED","ROUND","ROUNDUP","MAX","LARGE","MIN","SMALL","AVERAGE","ABS","MOD","POWER","SQRT","LEN","DATE2TIMESTAMP","SUMSQ","STDEV","COUNT","TOINT","FIND","YEAR","WEEK","DAY","MONTH","QUARTER","TODOUBLE","DATEDIFF","AVG","GREATEST","LEAST","COUNTD","MEDIAN"]),nu=o("FUN_STR_TYPE",["CONCAT","SUBSTRING","SUBSTR","UPPER","LOWER","TRIM","LTRIM","RTRIM","REPEAT","REPLACE","FINDSTR","SEARCHSTR","PARSENUMBER","SPLIT"]),iu=o("FUN_BOL_TYPE",["IF","ISEMPTY","ISNULL","ISUNDEFINED","AND","OR","EQ","NE","LE","LT","GE","GT","CONTAINS"]),ru=o("FUN_OBJ_OR_ARR_TYPE",["TUPLE","SEQMAP","GET","PUT","PUSH","HEADPUSH"]),au=o("RETURN_TYPE_MAP",{string:"字符串",number:"数值",boolean:"布尔",date:"日期",time:"时间",datetime:"日期时间",array:"数组",object:"对象",null:"空值",unknown:"未知",text:"文本",long_text:"长文本",integer:"整数",long:"长整数",decimal:"小数"});var Pa=o("WinMsgTypeEnum",(e=>(e.EXPRESSION="expression-language-service",e))(Pa||{}));const su=o("operator2FuncMap",{"+":"ADD","-":"REDUCE","*":"MULTIPLICATION","/":"DIVISION","%":"MOD"});var Wt=o("EditorRegisterConst",(e=>(e.PREFIX="EDITOR___",e))(Wt||{})),wa=o("EditorType",(e=>(e.LENGTH_UNIT="length-unit",e.COLOR="color",e.SPAN="span",e.TEXT="text",e.NUMBER="number",e.INFO="info",e.MSG="msg",e.SELECT="select",e.SELECT_GROUP="select-group",e.RADIO="radio",e.PICKER="picker",e.MULTIPLE_CHOICE="multiple-choice",e.I18N="i18n",e.TEXTAREA="textarea",e.DATE_RANGE="date-range",e.SWITCH="switch",e.CHECK_SWITCH="check-switch",e.ICON_SELECT="icon-select",e.CHECKBOX="checkbox",e.DATE="date",e.MODEL_SELECT="model-select",e.ACTION="action",e.TABLE="table",e.SELECT_TABLE="select-table",e.EMPTY="empty",e.FORM_MODEL_FIELD_SELECT="form-model-field-select",e.PIXEL_CONFIG="pixel-config",e.FIELD_INFO="field-info",e.DATE_FORMAT_SELECT="date-format-select",e.FORMULA="formula",e))(wa||{})),Fa=o("EditorTypeOld",(e=>(e.LENGTH_UNIT="length-unit-editor",e.COLOR="color-editor",e.SPAN="span-editor",e.TEXT="text-editor",e.NUMBER="number-editor",e.INFO="info-editor",e.SELECT="select-editor",e.MODEL_SELECT="model-editor",e.Field_SELECT="field-editor",e.RADIO="radio-editor",e.PICKER="picker-editor",e.I18N="i18n-editor",e.TEXTAREA="textarea-editor",e.DATE_RANGE="date-range-editor",e.SWITCH="switch-editor",e.CHECK_SWITCH="check-switch-editor",e.ICON_SELECT="icon-select-editor",e.CHECKBOX="checkbox-editor",e.BORDER="border-editor",e.BORDER_RADIUS="border-radius-editor",e.ALIGN="align-editor",e.FONT_STYLE="font-style-editor",e.POSITION="position-editor",e.SPACING="spacing-editor",e.MARGIN="margin-editor",e))(Fa||{})),Ga=o("FormContainerType",(e=>(e.FORM_TITLE_GROUP="form-title-group",e))(Ga||{}));const ee=o("CoreConst",{TOKEN:"gct-token",TENANT:"gct-tenant"}),Ba=o("STYLE_NAMESPACE_TAG","gct"),ou=o("PLUGIN_BASE_URL","/minio"),cu=o("VITE_MINIO_PATH","/minio"),Vt=o("APP_INST","app_inst"),ka="is-";function K(e,t,n,i,a){let r=`${e}-${t}`;return n&&(r+=`-${n}`),i&&(r+=`__${i}`),a&&(r+=`--${a}`),r}class Xt{constructor(t,n){this.block=t,this.namespace=n||Ba}namespace;b(t=""){return K(this.namespace,this.block,t,"","")}e(t){return t?K(this.namespace,this.block,"",t,""):""}m(t){return t?K(this.namespace,this.block,"","",t):""}be(t,n){return t&&n?K(this.namespace,this.block,t,n,""):""}em(t,n){return t&&n?K(this.namespace,this.block,"",t,n):""}bm(t,n){return t&&n?K(this.namespace,this.block,t,"",n):""}bem(t,n,i){return t&&n&&i?K(this.namespace,this.block,t,n,i):""}is(t,n){return t&&n?`${ka}${t}`:""}cssVar(t){const n={};for(const i in t)t[i]&&(n[this.cssVarName(i)]=t[i]);return n}cssVarBlock(t){const n={};for(const i in t)t[i]&&(n[this.cssVarBlockName(i)]=t[i]);return n}cssVarName(t){return`--${this.namespace}-${t}`}cssVarBlockName(t){return`--${this.namespace}-${this.block}-${t}`}}o("Namespace",Xt);function Ha(e){return new Xt(e)}function Wa(e){if(e instanceof Array)e&&e.length>0&&e.splice(0,e.length);else if(e instanceof Object&&e)for(const t in e)Object.prototype.hasOwnProperty.call(e,t)&&delete e[t]}class Va{constructor(){this.map=new Map,this.maxListeners=100}setMaxListeners(t){this.maxListeners=t}getSize(t){return this.map.has(t)?this.map.get(t).length:0}addListener(t,n){if(n instanceof Function){this.map.has(t)||this.map.set(t,[]);const i=this.map.get(t);if(i.length<this.maxListeners)i.push(n);else throw new Error(`事件监听已达最大上限[${this.maxListeners}],无法新增监听!`)}}removeListener(t,n){if(this.map.has(t)){const i=this.map.get(t);if(i.length>0){for(let a=0;a<i.length;a++)if(i[a]===n){i.splice(a,1);break}}}}emit(t,...n){this.map.has(t)&&this.map.get(t).forEach(a=>{a(...n)})}async asyncEmit(t,...n){if(this.map.has(t)){const a=this.map.get(t).map(r=>r(...n));return Promise.all(a)}return[]}reset(){this.map.forEach(t=>{Wa(t)}),this.map.clear()}}class Be{constructor(t){this.e=new Va,this.e.setMaxListeners(t||300)}getSize(t){return this.e.getSize(t)}on(t,n){this.e.addListener(t,n)}off(t,n){this.e.removeListener(t,n)}emit(t,...n){this.e.emit(t,...n)}asyncEmit(t,...n){return this.e.asyncEmit(t,...n)}reset(){this.e.reset()}}const{toString:ke}=Object.prototype;function Yt(e){return Ka(e)==="function"}function Xa(e){return ke.call(e)==="[object AsyncFunction]"}function Ya(e){return ke.call(e)==="[object Promise]"}const ja={"[object Boolean]":"boolean","[object Number]":"number","[object String]":"string","[object Function]":"function","[object Array]":"array","[object Date]":"date","[object RegExp]":"regExp","[object Undefined]":"undefined","[object Null]":"null","[object Object]":"object","[object Set]":"set","[object Map]":"map","[object WeakMap]":"weakmap"};function Ka(e){return ja[ke.call(e)]}function He(e,t,n=0,i=!1,a="/"){let r="";if(i&&!/^(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)$/.test(location.hostname)){const c=location.hostname;c.indexOf(".")!==c.lastIndexOf(".")&&(r=`;domain=${c.substring(c.indexOf("."),c.length)}`)}if(n!==0){const s=n*24*60*60*1e3,c=new Date(new Date().getTime()+s);document.cookie=`${e}=${escape(t)};path=${a};expires=${c.toUTCString()}${r}`}else document.cookie=`${e}=${escape(t)};path=${a}${r}`}function jt(e,t){He(e,"",-1,t)}function Kt(e){const t=new RegExp(`(^| )${e}=([^;]*)(;|$)`),n=document.cookie.match(t);return n&&n.length>1?unescape(n[2]):null}class $a{constructor(){this.items=[]}get size(){return this.items.length}callSync(t,...n){const i=t||Object.create({});let a;for(let r=0;r<this.items.length;r++){const s=this.items[r];if(s.fn&&(a=s.fn(i,...n)),a===null){console.warn(`因${s.fn?s.fn.name:null}方法返回值为「null」,钩子中断执行。`,s);break}}return i}tap(t){if(t&&Yt(t)){const n={mode:"sync"};n.fn=t,this.items.push(n)}}removeTap(t){if(t)for(let n=0;n<this.items.length;n++){const i=this.items[n];t===i.fn&&this.items.splice(n,1)}}clear(){this.items=[]}}class $t extends $a{async call(t,...n){const i=t||Object.create({});let a;for(let r=0;r<this.items.length;r++){const s=this.items[r];if(s.fn&&(s.mode==="promise"?(a=s.fn(i,...n),Ya(a)&&(a=await a)):a=s.fn(i,...n)),a===null){console.warn(`因${s.fn?s.fn.name:null}方法返回值为「null」,钩子中断执行。`,s);break}}return i}tapPromise(t){if(t&&(Yt(t)||Xa(t))){const n={mode:"promise"};n.fn=t,this.items.push(n)}}removeTapPromise(t){this.removeTap(t)}}class Za{ignoreDismissCheck=!1;state=D({okDisabled:!1,cancelDisabled:!1});hooks={shouldDismiss:new $t,beforeDismiss:new $t};ok;setOptions;constructor(t){t.dismiss&&(this._dismiss=t.dismiss),t.setOptions&&(this.setOptions=t.setOptions)}cancel;callback(t,n){t&&(this.ok=t),n&&(this.cancel=n)}_dismiss=t=>{console.warn("外部关闭能力未注册",t)};injectDismiss(t){this._dismiss=t}async dismiss(t={ok:!1,data:[]}){const n={};return this.ignoreDismissCheck!==!0&&await this.hooks.shouldDismiss.call(n),n.allowClose===!1?(console.warn("shouldDismiss结果为false,关闭中断。"),!1):(await this.hooks.beforeDismiss.call(t),this._dismiss(t),this.destroy(),!0)}destroy(){this.hooks.shouldDismiss.clear(),this.hooks.beforeDismiss.clear()}}o("Modal",Za);class We{constructor(t,n,i){this.component=t,this.render=n,this.opts=i,this._initPromise=this.init()}vm;modal;result;evt=new Be;_initPromise;static async createVueApp(t,n){return console.error("没有注入createVueApp方法"),mt(t,n)}async init(){const t=this,{render:n,opts:i}=this,a=document.createElement("div");document.body.appendChild(a);const r=await We.createVueApp({mounted(){t.modal=this.$refs.root},unmounted(){document.body.removeChild(a),t.evt.emit("dismiss",t.result)},render(){return Tt(t.component,{ref:"root",opts:i,onDismiss(s){t.result=s,r.unmount()}},{default:n})}});r.mount(a),this.vm=r}async present(){return await this._initPromise,await At(),this.modal.present()}async dismiss(t){await this.modal.dismiss(t)}async onWillDismiss(){return new Promise(t=>{const n=i=>{t(i),this.evt.off("dismiss",n)};this.evt.on("dismiss",n)})}}o("OverlayContainer",We);function Ja(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Ve,Zt;function xa(){if(Zt)return Ve;Zt=1;function e(a){if(typeof a!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(a))}function t(a,r){for(var s="",c=0,u=-1,f=0,l,d=0;d<=a.length;++d){if(d<a.length)l=a.charCodeAt(d);else{if(l===47)break;l=47}if(l===47){if(!(u===d-1||f===1))if(u!==d-1&&f===2){if(s.length<2||c!==2||s.charCodeAt(s.length-1)!==46||s.charCodeAt(s.length-2)!==46){if(s.length>2){var E=s.lastIndexOf("/");if(E!==s.length-1){E===-1?(s="",c=0):(s=s.slice(0,E),c=s.length-1-s.lastIndexOf("/")),u=d,f=0;continue}}else if(s.length===2||s.length===1){s="",c=0,u=d,f=0;continue}}r&&(s.length>0?s+="/..":s="..",c=2)}else s.length>0?s+="/"+a.slice(u+1,d):s=a.slice(u+1,d),c=d-u-1;u=d,f=0}else l===46&&f!==-1?++f:f=-1}return s}function n(a,r){var s=r.dir||r.root,c=r.base||(r.name||"")+(r.ext||"");return s?s===r.root?s+c:s+a+c:c}var i={resolve:function(){for(var r="",s=!1,c,u=arguments.length-1;u>=-1&&!s;u--){var f;u>=0?f=arguments[u]:(c===void 0&&(c=process.cwd()),f=c),e(f),f.length!==0&&(r=f+"/"+r,s=f.charCodeAt(0)===47)}return r=t(r,!s),s?r.length>0?"/"+r:"/":r.length>0?r:"."},normalize:function(r){if(e(r),r.length===0)return".";var s=r.charCodeAt(0)===47,c=r.charCodeAt(r.length-1)===47;return r=t(r,!s),r.length===0&&!s&&(r="."),r.length>0&&c&&(r+="/"),s?"/"+r:r},isAbsolute:function(r){return e(r),r.length>0&&r.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var r,s=0;s<arguments.length;++s){var c=arguments[s];e(c),c.length>0&&(r===void 0?r=c:r+="/"+c)}return r===void 0?".":i.normalize(r)},relative:function(r,s){if(e(r),e(s),r===s||(r=i.resolve(r),s=i.resolve(s),r===s))return"";for(var c=1;c<r.length&&r.charCodeAt(c)===47;++c);for(var u=r.length,f=u-c,l=1;l<s.length&&s.charCodeAt(l)===47;++l);for(var d=s.length,E=d-l,m=f<E?f:E,T=-1,A=0;A<=m;++A){if(A===m){if(E>m){if(s.charCodeAt(l+A)===47)return s.slice(l+A+1);if(A===0)return s.slice(l+A)}else f>m&&(r.charCodeAt(c+A)===47?T=A:A===0&&(T=0));break}var X=r.charCodeAt(c+A),ut=s.charCodeAt(l+A);if(X!==ut)break;X===47&&(T=A)}var z="";for(A=c+T+1;A<=u;++A)(A===u||r.charCodeAt(A)===47)&&(z.length===0?z+="..":z+="/..");return z.length>0?z+s.slice(l+T):(l+=T,s.charCodeAt(l)===47&&++l,s.slice(l))},_makeLong:function(r){return r},dirname:function(r){if(e(r),r.length===0)return".";for(var s=r.charCodeAt(0),c=s===47,u=-1,f=!0,l=r.length-1;l>=1;--l)if(s=r.charCodeAt(l),s===47){if(!f){u=l;break}}else f=!1;return u===-1?c?"/":".":c&&u===1?"//":r.slice(0,u)},basename:function(r,s){if(s!==void 0&&typeof s!="string")throw new TypeError('"ext" argument must be a string');e(r);var c=0,u=-1,f=!0,l;if(s!==void 0&&s.length>0&&s.length<=r.length){if(s.length===r.length&&s===r)return"";var d=s.length-1,E=-1;for(l=r.length-1;l>=0;--l){var m=r.charCodeAt(l);if(m===47){if(!f){c=l+1;break}}else E===-1&&(f=!1,E=l+1),d>=0&&(m===s.charCodeAt(d)?--d===-1&&(u=l):(d=-1,u=E))}return c===u?u=E:u===-1&&(u=r.length),r.slice(c,u)}else{for(l=r.length-1;l>=0;--l)if(r.charCodeAt(l)===47){if(!f){c=l+1;break}}else u===-1&&(f=!1,u=l+1);return u===-1?"":r.slice(c,u)}},extname:function(r){e(r);for(var s=-1,c=0,u=-1,f=!0,l=0,d=r.length-1;d>=0;--d){var E=r.charCodeAt(d);if(E===47){if(!f){c=d+1;break}continue}u===-1&&(f=!1,u=d+1),E===46?s===-1?s=d:l!==1&&(l=1):s!==-1&&(l=-1)}return s===-1||u===-1||l===0||l===1&&s===u-1&&s===c+1?"":r.slice(s,u)},format:function(r){if(r===null||typeof r!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof r);return n("/",r)},parse:function(r){e(r);var s={root:"",dir:"",base:"",ext:"",name:""};if(r.length===0)return s;var c=r.charCodeAt(0),u=c===47,f;u?(s.root="/",f=1):f=0;for(var l=-1,d=0,E=-1,m=!0,T=r.length-1,A=0;T>=f;--T){if(c=r.charCodeAt(T),c===47){if(!m){d=T+1;break}continue}E===-1&&(m=!1,E=T+1),c===46?l===-1?l=T:A!==1&&(A=1):l!==-1&&(A=-1)}return l===-1||E===-1||A===0||A===1&&l===E-1&&l===d+1?E!==-1&&(d===0&&u?s.base=s.name=r.slice(1,E):s.base=s.name=r.slice(d,E)):(d===0&&u?(s.name=r.slice(1,l),s.base=r.slice(1,E)):(s.name=r.slice(d,l),s.base=r.slice(d,E)),s.ext=r.slice(l,E)),d>0?s.dir=r.slice(0,d-1):u&&(s.dir="/"),s},sep:"/",delimiter:":",win32:null,posix:null};return i.posix=i,Ve=i,Ve}var za=xa();const Jt=Ja(za);class Qa{constructor(t,n=!1){this.isDev=n,this.url=new URL(t),this.baseDir=Jt.dirname(this.url.pathname)}baseDir;url;dir(t){return this.isDev===!0?t:this.url.origin+Jt.resolve(this.baseDir,t)}}o("PluginStaticResource",Qa);function qa(){return{context:{type:Object,default:()=>({})},value:{type:Object},model:{type:Object,required:!0},c:{type:Object,required:!0},itemModel:{type:Object},data:{type:Object},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},keepalive:{type:Boolean,default:!1},visible:{type:Boolean,default:!0},size:{type:String},count:{type:Number,default:0},isEmptyText:{type:Boolean,default:!1}}}function me(){return Kt(ee.TOKEN)}function xt(e){e?He(ee.TOKEN,e,7,!0):jt(ee.TOKEN,!0)}function zt(){return Kt(ee.TENANT)}function es(e){e?He(ee.TENANT,e,7,!0):jt(ee.TENANT,!0)}const ts=o("isMobile",(()=>{const e=navigator.userAgent,t=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/,n=window.innerWidth<=768,i="ontouchstart"in window||navigator.maxTouchPoints>0;return t.test(e)||n&&i})());function Qt(){return localStorage.getItem(Zr)||"UTC+08:00"}function ns(e,t){return ve(Y(e),t,(n,i)=>{if(typeof n=="object"&&typeof i=="object")return ve(Y(n),i,(a,r)=>Array.isArray(a)?gt(a,r,Et):void 0)})}function is(e){const t=ue.stringify(e,{encode:!0,delimiter:";"});return t?`;${t}`:""}function qt(e){return e.indexOf(";")===-1?{}:ue.parse(e,{delimiter:";"})}const Xe=[];for(let e=0;e<=15;e++)Xe[e]=e.toString(16);function rs(){let e="";for(let t=1;t<=36;t++)t===9||t===14||t===19||t===24?e+="-":t===15?e+=4:t===20?e+=Xe[Math.random()*4|8]:e+=Xe[Math.random()*16|0];return e.replace(/-/g,"")}let en=0;function as(e=""){e=e.replaceAll("-","");const t=Math.floor(Math.random()*1e9);return en++,e+"_"+t+en}const lu=o("uuid2",(e,t)=>{const n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),i=[];let a;if(t=t||n.length,e)for(a=0;a<e;a++)i[a]=n[0|Math.random()*t];else{let r;for(i[8]=i[13]=i[18]=i[23]="-",i[14]="4",a=0;a<36;a++)i[a]||(r=0|Math.random()*16,i[a]=n[a==19?r&3|8:r])}return i.join("")});function ss(e,t){return M({get:()=>e.value,set:i=>{e.value=i,t(i)}})}function os(e,t){const n=Object.keys(j(e)?e.value:e),i={};return n.forEach(a=>{i[a]=M({get:()=>(j(e)?e.value:e)[a],set(r){(j(e)?e.value:e)[a]=r,t(a,r)}})}),i}function cs(e,t){const n=Object.keys(j(e)?e.value:e),i={};let a={};return n.forEach(r=>{i[r]=M({get:()=>(a={},(j(e)?e.value:e)[r]),set(s){const c=j(e)?e.value:e;a[r]=s;const u={...c,...a};t(r,s,u)}})}),i}function ls(e){if(e==="nullpx")return{value:0,unit:"px"};const t=/^(\d+\.?\d*)([a-zA-Z%]+)$/,n=e.match(t);if(n)return{value:parseFloat(n[1]),unit:n[2]};throw new Error("Invalid value")}function ds(e){const t=C();let n;const i=()=>{e.deep&&(n=ae(()=>t.value,a=>{console.info("computedEx:属性或者值修改",a),e.set(a)},{deep:!0}))};return ae(()=>e.get(),a=>{n&&n(),console.info("computedEx:获取新值,重新监听",a),t.value=a,i()},{immediate:!0}),t}function us(e){const t=new Map;return function(...n){const i=JSON.stringify(n);if(t.has(i))return t.get(i);const a=e(...n);return t.set(i,a),a}}function fs(e,t,n,i){return{install(a){e&&t&&_gct.register.editor.register(Wt.PREFIX+e,t),n&&a.component(i??n.name,n)}}}function tn(e){e.interceptors.request.use(t=>(t.headers||(t.headers=new St),Object.assign(t.headers,{Token:me(),Source:ts?502:501,Lang:_gct.store.lang,"Tenant-Id":zt(),Timezone:Qt()}),t))}var nn="5.1.0";function Te(e,t){return new Promise(n=>setTimeout(n,e,t))}function hs(){return new Promise(e=>{const t=new MessageChannel;t.port1.onmessage=()=>e(),t.port2.postMessage(null)})}function gs(e,t=1/0){const{requestIdleCallback:n}=window;return n?new Promise(i=>n.call(window,()=>i(),{timeout:t})):Te(Math.min(e,t))}function rn(e){return!!e&&typeof e.then=="function"}function an(e,t){try{const n=e();rn(n)?n.then(i=>t(!0,i),i=>t(!1,i)):t(!0,n)}catch(n){t(!1,n)}}async function sn(e,t,n=16){const i=Array(e.length);let a=Date.now();for(let r=0;r<e.length;++r){i[r]=t(e[r],r);const s=Date.now();s>=a+n&&(a=s,await hs())}return i}function se(e){return e.then(void 0,()=>{}),e}function Es(e,t){for(let n=0,i=e.length;n<i;++n)if(e[n]===t)return!0;return!1}function ms(e,t){return!Es(e,t)}function Ye(e){return parseInt(e)}function w(e){return parseFloat(e)}function H(e,t){return typeof e=="number"&&isNaN(e)?t:e}function _(e){return e.reduce((t,n)=>t+(n?1:0),0)}function on(e,t=1){if(Math.abs(t)>=1)return Math.round(e/t)*t;{const n=1/t;return Math.round(e*n)/n}}function Ts(e){var t,n;const i=`Unexpected syntax '${e}'`,a=/^\s*([a-z-]*)(.*)$/i.exec(e),r=a[1]||void 0,s={},c=/([.:#][\w-]+|\[.+?\])/gi,u=(f,l)=>{s[f]=s[f]||[],s[f].push(l)};for(;;){const f=c.exec(a[2]);if(!f)break;const l=f[0];switch(l[0]){case".":u("class",l.slice(1));break;case"#":u("id",l.slice(1));break;case"[":{const d=/^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/.exec(l);if(d)u(d[1],(n=(t=d[4])!==null&&t!==void 0?t:d[5])!==null&&n!==void 0?n:"");else throw new Error(i);break}default:throw new Error(i)}}return[r,s]}function As(e){const t=new Uint8Array(e.length);for(let n=0;n<e.length;n++){const i=e.charCodeAt(n);if(i>127)return new TextEncoder().encode(e);t[n]=i}return t}function V(e,t){const n=e[0]>>>16,i=e[0]&65535,a=e[1]>>>16,r=e[1]&65535,s=t[0]>>>16,c=t[0]&65535,u=t[1]>>>16,f=t[1]&65535;let l=0,d=0,E=0,m=0;m+=r+f,E+=m>>>16,m&=65535,E+=a+u,d+=E>>>16,E&=65535,d+=i+c,l+=d>>>16,d&=65535,l+=n+s,l&=65535,e[0]=l<<16|d,e[1]=E<<16|m}function U(e,t){const n=e[0]>>>16,i=e[0]&65535,a=e[1]>>>16,r=e[1]&65535,s=t[0]>>>16,c=t[0]&65535,u=t[1]>>>16,f=t[1]&65535;let l=0,d=0,E=0,m=0;m+=r*f,E+=m>>>16,m&=65535,E+=a*f,d+=E>>>16,E&=65535,E+=r*u,d+=E>>>16,E&=65535,d+=i*f,l+=d>>>16,d&=65535,d+=a*u,l+=d>>>16,d&=65535,d+=r*c,l+=d>>>16,d&=65535,l+=n*f+i*u+a*c+r*s,l&=65535,e[0]=l<<16|d,e[1]=E<<16|m}function te(e,t){const n=e[0];t%=64,t===32?(e[0]=e[1],e[1]=n):t<32?(e[0]=n<<t|e[1]>>>32-t,e[1]=e[1]<<t|n>>>32-t):(t-=32,e[0]=e[1]<<t|n>>>32-t,e[1]=n<<t|e[1]>>>32-t)}function y(e,t){t%=64,t!==0&&(t<32?(e[0]=e[1]>>>32-t,e[1]=e[1]<<t):(e[0]=e[1]<<t-32,e[1]=0))}function O(e,t){e[0]^=t[0],e[1]^=t[1]}const Rs=[4283543511,3981806797],bs=[3301882366,444984403];function cn(e){const t=[0,e[0]>>>1];O(e,t),U(e,Rs),t[1]=e[0]>>>1,O(e,t),U(e,bs),t[1]=e[0]>>>1,O(e,t)}const Ae=[2277735313,289559509],Re=[1291169091,658871167],ln=[0,5],Ss=[0,1390208809],Is=[0,944331445];function Ns(e,t){const n=As(e);t=t||0;const i=[0,n.length],a=i[1]%16,r=i[1]-a,s=[0,t],c=[0,t],u=[0,0],f=[0,0];let l;for(l=0;l<r;l=l+16)u[0]=n[l+4]|n[l+5]<<8|n[l+6]<<16|n[l+7]<<24,u[1]=n[l]|n[l+1]<<8|n[l+2]<<16|n[l+3]<<24,f[0]=n[l+12]|n[l+13]<<8|n[l+14]<<16|n[l+15]<<24,f[1]=n[l+8]|n[l+9]<<8|n[l+10]<<16|n[l+11]<<24,U(u,Ae),te(u,31),U(u,Re),O(s,u),te(s,27),V(s,c),U(s,ln),V(s,Ss),U(f,Re),te(f,33),U(f,Ae),O(c,f),te(c,31),V(c,s),U(c,ln),V(c,Is);u[0]=0,u[1]=0,f[0]=0,f[1]=0;const d=[0,0];switch(a){case 15:d[1]=n[l+14],y(d,48),O(f,d);case 14:d[1]=n[l+13],y(d,40),O(f,d);case 13:d[1]=n[l+12],y(d,32),O(f,d);case 12:d[1]=n[l+11],y(d,24),O(f,d);case 11:d[1]=n[l+10],y(d,16),O(f,d);case 10:d[1]=n[l+9],y(d,8),O(f,d);case 9:d[1]=n[l+8],O(f,d),U(f,Re),te(f,33),U(f,Ae),O(c,f);case 8:d[1]=n[l+7],y(d,56),O(u,d);case 7:d[1]=n[l+6],y(d,48),O(u,d);case 6:d[1]=n[l+5],y(d,40),O(u,d);case 5:d[1]=n[l+4],y(d,32),O(u,d);case 4:d[1]=n[l+3],y(d,24),O(u,d);case 3:d[1]=n[l+2],y(d,16),O(u,d);case 2:d[1]=n[l+1],y(d,8),O(u,d);case 1:d[1]=n[l],O(u,d),U(u,Ae),te(u,31),U(u,Re),O(s,u)}return O(s,i),O(c,i),V(s,c),V(c,s),cn(s),cn(c),V(s,c),V(c,s),("00000000"+(s[0]>>>0).toString(16)).slice(-8)+("00000000"+(s[1]>>>0).toString(16)).slice(-8)+("00000000"+(c[0]>>>0).toString(16)).slice(-8)+("00000000"+(c[1]>>>0).toString(16)).slice(-8)}function Os(e){var t;return{name:e.name,message:e.message,stack:(t=e.stack)===null||t===void 0?void 0:t.split(`
374
+ `),...e}}function Ls(e){return/^function\s.*?\{\s*\[native code]\s*}$/.test(String(e))}function _s(e){return typeof e!="function"}function ps(e,t){const n=se(new Promise(i=>{const a=Date.now();an(e.bind(null,t),(...r)=>{const s=Date.now()-a;if(!r[0])return i(()=>({error:r[1],duration:s}));const c=r[1];if(_s(c))return i(()=>({value:c,duration:s}));i(()=>new Promise(u=>{const f=Date.now();an(c,(...l)=>{const d=s+Date.now()-f;if(!l[0])return u({error:l[1],duration:d});u({value:l[1],duration:d})})}))})}));return function(){return n.then(a=>a())}}function vs(e,t,n,i){const a=Object.keys(e).filter(s=>ms(n,s)),r=se(sn(a,s=>ps(e[s],t),i));return async function(){const c=await r,u=await sn(c,d=>se(d()),i),f=await Promise.all(u),l={};for(let d=0;d<a.length;++d)l[a[d]]=f[d];return l}}function dn(){const e=window,t=navigator;return _(["MSCSSMatrix"in e,"msSetImmediate"in e,"msIndexedDB"in e,"msMaxTouchPoints"in t,"msPointerEnabled"in t])>=4}function Ds(){const e=window,t=navigator;return _(["msWriteProfilerMark"in e,"MSStream"in e,"msLaunchUri"in t,"msSaveBlob"in t])>=3&&!dn()}function oe(){const e=window,t=navigator;return _(["webkitPersistentStorage"in t,"webkitTemporaryStorage"in t,(t.vendor||"").indexOf("Google")===0,"webkitResolveLocalFileSystemURL"in e,"BatteryManager"in e,"webkitMediaStream"in e,"webkitSpeechGrammar"in e])>=5}function F(){const e=window,t=navigator;return _(["ApplePayError"in e,"CSSPrimitiveValue"in e,"Counter"in e,t.vendor.indexOf("Apple")===0,"RGBColor"in e,"WebKitMediaKeys"in e])>=4}function je(){const e=window,{HTMLElement:t,Document:n}=e;return _(["safari"in e,!("ongestureend"in e),!("TouchEvent"in e),!("orientation"in e),t&&!("autocapitalize"in t.prototype),n&&"pointerLockElement"in n.prototype])>=4}function ce(){const e=window;return Ls(e.print)&&String(e.browser)==="[object WebPageNamespace]"}function le(){var e,t;const n=window;return _(["buildID"in navigator,"MozAppearance"in((t=(e=document.documentElement)===null||e===void 0?void 0:e.style)!==null&&t!==void 0?t:{}),"onmozfullscreenchange"in n,"mozInnerScreenX"in n,"CSSMozDocumentRule"in n,"CanvasCaptureMediaStream"in n])>=4}function Ms(){const e=window,t=navigator,{CSS:n}=e;return _(["userActivation"in t,n.supports("color","light-dark(#000, #fff)"),n.supports("height","1lh"),"globalPrivacyControl"in t])>=3}function un(){const{CSS:e}=window;return _([e.supports("selector(::details-content)"),e.supports("selector(::before::marker)"),e.supports("selector(::after::marker)"),!("locale"in CompositionEvent.prototype)])>=3}function ys(){const e=window;return _([!("MediaSettingsRange"in e),"RTCEncodedAudioFrame"in e,""+e.Intl=="[object Intl]",""+e.Reflect=="[object Reflect]"])>=3}function Cs(){const e=window,{URLPattern:t}=e;return _(["union"in Set.prototype,"Iterator"in e,t&&"hasRegExpGroups"in t.prototype,"RGB8"in WebGLRenderingContext.prototype])>=3}function Us(){const e=window;return _(["DOMRectList"in e,"RTCPeerConnectionIceEvent"in e,"SVGGeometryElement"in e,"ontransitioncancel"in e])>=3}function de(){const e=window,t=navigator,{CSS:n,HTMLButtonElement:i}=e;return _([!("getStorageUpdates"in t),i&&"popover"in i.prototype,"CSSCounterStyleRule"in e,n.supports("font-size-adjust: ex-height 0.5"),n.supports("text-transform: full-width")])>=4}function Ps(){if(navigator.platform==="iPad")return!0;const e=screen,t=e.width/e.height;return _(["MediaSource"in window,!!Element.prototype.webkitRequestFullscreen,t>.65&&t<1.53])>=2}function ws(){const e=document;return e.fullscreenElement||e.msFullscreenElement||e.mozFullScreenElement||e.webkitFullscreenElement||null}function Fs(){const e=document;return(e.exitFullscreen||e.msExitFullscreen||e.mozCancelFullScreen||e.webkitExitFullscreen).call(e)}function Ke(){const e=oe(),t=le(),n=window,i=navigator,a="connection";return e?_([!("SharedWorker"in n),i[a]&&"ontypechange"in i[a],!("sinkId"in new Audio)])>=2:t?_(["onorientationchange"in n,"orientation"in n,/android/i.test(i.appVersion)])>=2:!1}function Gs(){const e=navigator,t=window,n=Audio.prototype,{visualViewport:i}=t;return _(["srLatency"in n,"srChannelCount"in n,"devicePosture"in e,i&&"segments"in i,"getTextInformation"in Image.prototype])>=3}function Bs(){return Ws()?-4:ks()}function ks(){const e=window,t=e.OfflineAudioContext||e.webkitOfflineAudioContext;if(!t)return-2;if(Hs())return-1;const n=4500,i=5e3,a=new t(1,i,44100),r=a.createOscillator();r.type="triangle",r.frequency.value=1e4;const s=a.createDynamicsCompressor();s.threshold.value=-50,s.knee.value=40,s.ratio.value=12,s.attack.value=0,s.release.value=.25,r.connect(s),s.connect(a.destination),r.start(0);const[c,u]=Vs(a),f=se(c.then(l=>Xs(l.getChannelData(0).subarray(n)),l=>{if(l.name==="timeout"||l.name==="suspended")return-3;throw l}));return()=>(u(),f)}function Hs(){return F()&&!je()&&!Us()}function Ws(){return F()&&de()&&ce()||oe()&&Gs()&&Cs()}function Vs(e){let r=()=>{};return[new Promise((c,u)=>{let f=!1,l=0,d=0;e.oncomplete=T=>c(T.renderedBuffer);const E=()=>{setTimeout(()=>u(fn("timeout")),Math.min(500,d+5e3-Date.now()))},m=()=>{try{const T=e.startRendering();switch(rn(T)&&se(T),e.state){case"running":d=Date.now(),f&&E();break;case"suspended":document.hidden||l++,f&&l>=3?u(fn("suspended")):setTimeout(m,500);break}}catch(T){u(T)}};m(),r=()=>{f||(f=!0,d>0&&E())}}),r]}function Xs(e){let t=0;for(let n=0;n<e.length;++n)t+=Math.abs(e[n]);return t}function fn(e){const t=new Error(e);return t.name=e,t}async function hn(e,t,n=50){var i,a,r;const s=document;for(;!s.body;)await Te(n);const c=s.createElement("iframe");try{for(await new Promise((u,f)=>{let l=!1;const d=()=>{l=!0,u()},E=A=>{l=!0,f(A)};c.onload=d,c.onerror=E;const{style:m}=c;m.setProperty("display","block","important"),m.position="absolute",m.top="0",m.left="0",m.visibility="hidden",t&&"srcdoc"in c?c.srcdoc=t:c.src="about:blank",s.body.appendChild(c);const T=()=>{var A,X;l||(((X=(A=c.contentWindow)===null||A===void 0?void 0:A.document)===null||X===void 0?void 0:X.readyState)==="complete"?d():setTimeout(T,10))};T()});!(!((a=(i=c.contentWindow)===null||i===void 0?void 0:i.document)===null||a===void 0)&&a.body);)await Te(n);return await e(c,c.contentWindow)}finally{(r=c.parentNode)===null||r===void 0||r.removeChild(c)}}function Ys(e){const[t,n]=Ts(e),i=document.createElement(t??"div");for(const a of Object.keys(n)){const r=n[a].join(" ");a==="style"?js(i.style,r):i.setAttribute(a,r)}return i}function js(e,t){for(const n of t.split(";")){const i=/^\s*([\w-]+)\s*:\s*(.+?)(\s*!([\w-]+))?\s*$/.exec(n);if(i){const[,a,r,,s]=i;e.setProperty(a,r,s||"")}}}function Ks(){let e=window;for(;;){const t=e.parent;if(!t||t===e)return!1;try{if(t.location.origin!==e.location.origin)return!0}catch(n){if(n instanceof Error&&n.name==="SecurityError")return!0;throw n}e=t}}const $s="mmMwWLliI0O&1",Zs="48px",ne=["monospace","sans-serif","serif"],gn=["sans-serif-thin","ARNO PRO","Agency FB","Arabic Typesetting","Arial Unicode MS","AvantGarde Bk BT","BankGothic Md BT","Batang","Bitstream Vera Sans Mono","Calibri","Century","Century Gothic","Clarendon","EUROSTILE","Franklin Gothic","Futura Bk BT","Futura Md BT","GOTHAM","Gill Sans","HELV","Haettenschweiler","Helvetica Neue","Humanst521 BT","Leelawadee","Letter Gothic","Levenim MT","Lucida Bright","Lucida Sans","Menlo","MS Mincho","MS Outlook","MS Reference Specialty","MS UI Gothic","MT Extra","MYRIAD PRO","Marlett","Meiryo UI","Microsoft Uighur","Minion Pro","Monotype Corsiva","PMingLiU","Pristina","SCRIPTINA","Segoe UI Light","Serifa","SimHei","Small Fonts","Staccato222 BT","TRAJAN PRO","Univers CE 55 Medium","Vrinda","ZWAdobeF"];function Js(){return hn(async(e,{document:t})=>{const n=t.body;n.style.fontSize=Zs;const i=t.createElement("div");i.style.setProperty("visibility","hidden","important");const a={},r={},s=m=>{const T=t.createElement("span"),{style:A}=T;return A.position="absolute",A.top="0",A.left="0",A.fontFamily=m,T.textContent=$s,i.appendChild(T),T},c=(m,T)=>s(`'${m}',${T}`),u=()=>ne.map(s),f=()=>{const m={};for(const T of gn)m[T]=ne.map(A=>c(T,A));return m},l=m=>ne.some((T,A)=>m[A].offsetWidth!==a[T]||m[A].offsetHeight!==r[T]),d=u(),E=f();n.appendChild(i);for(let m=0;m<ne.length;m++)a[ne[m]]=d[m].offsetWidth,r[ne[m]]=d[m].offsetHeight;return gn.filter(m=>l(E[m]))})}function xs(){const e=navigator.plugins;if(!e)return;const t=[];for(let n=0;n<e.length;++n){const i=e[n];if(!i)continue;const a=[];for(let r=0;r<i.length;++r){const s=i[r];a.push({type:s.type,suffixes:s.suffixes})}t.push({name:i.name,description:i.description,mimeTypes:a})}return t}function zs(){return Qs(ao())}function Qs(e){let t=!1,n,i;const[a,r]=qs();return eo(a,r)?(t=to(r),e?n=i="skipped":[n,i]=no(a,r)):n=i="unsupported",{winding:t,geometry:n,text:i}}function qs(){const e=document.createElement("canvas");return e.width=1,e.height=1,[e,e.getContext("2d")]}function eo(e,t){return!!(t&&e.toDataURL)}function to(e){return e.rect(0,0,10,10),e.rect(2,2,6,6),!e.isPointInPath(5,5,"evenodd")}function no(e,t){io(e,t);const n=$e(e),i=$e(e);return n!==i?["unstable","unstable"]:(ro(e,t),[$e(e),n])}function io(e,t){e.width=240,e.height=60,t.textBaseline="alphabetic",t.fillStyle="#f60",t.fillRect(100,1,62,20),t.fillStyle="#069",t.font='11pt "Times New Roman"';const n="Cwm fjordbank gly 😃";t.fillText(n,2,15),t.fillStyle="rgba(102, 204, 0, 0.2)",t.font="18pt Arial",t.fillText(n,4,45)}function ro(e,t){e.width=122,e.height=110,t.globalCompositeOperation="multiply";for(const[n,i,a]of[["#f2f",40,40],["#2ff",80,40],["#ff2",60,80]])t.fillStyle=n,t.beginPath(),t.arc(i,a,40,0,Math.PI*2,!0),t.closePath(),t.fill();t.fillStyle="#f9c",t.arc(60,60,60,0,Math.PI*2,!0),t.arc(60,60,20,0,Math.PI*2,!0),t.fill("evenodd")}function $e(e){return e.toDataURL()}function ao(){const e=F()&&de()&&ce(),t=le()&&Ms();return e||t}function so(){const e=navigator;let t=0,n;e.maxTouchPoints!==void 0?t=Ye(e.maxTouchPoints):e.msMaxTouchPoints!==void 0&&(t=e.msMaxTouchPoints);try{document.createEvent("TouchEvent"),n=!0}catch{n=!1}const i="ontouchstart"in window;return{maxTouchPoints:t,touchEvent:n,touchStart:i}}function oo(){return navigator.oscpu}function co(){const e=navigator,t=[],n=e.language||e.userLanguage||e.browserLanguage||e.systemLanguage;if(n!==void 0&&t.push([n]),Array.isArray(e.languages))oe()&&ys()||t.push(e.languages);else if(typeof e.languages=="string"){const i=e.languages;i&&t.push(i.split(","))}return t}function lo(){return window.screen.colorDepth}function uo(){return H(w(navigator.deviceMemory),void 0)}function fo(){if(!(F()&&de()&&ce()))return ho()}function ho(){const e=screen,t=i=>H(Ye(i),null),n=[t(e.width),t(e.height)];return n.sort().reverse(),n}const go=2500,Eo=10;let be,Ze;function mo(){if(Ze!==void 0)return;const e=()=>{const t=Je();xe(t)?Ze=setTimeout(e,go):(be=t,Ze=void 0)};e()}function To(){return mo(),async()=>{let e=Je();if(xe(e)){if(be)return[...be];ws()&&(await Fs(),e=Je())}return xe(e)||(be=e),e}}function Ao(){const e=F()&&de()&&ce(),t=le()&&un();if(e||t)return()=>Promise.resolve(void 0);const n=To();return async()=>{const i=await n(),a=r=>r===null?null:on(r,Eo);return[a(i[0]),a(i[1]),a(i[2]),a(i[3])]}}function Je(){const e=screen;return[H(w(e.availTop),null),H(w(e.width)-w(e.availWidth)-H(w(e.availLeft),0),null),H(w(e.height)-w(e.availHeight)-H(w(e.availTop),0),null),H(w(e.availLeft),null)]}function xe(e){for(let t=0;t<4;++t)if(e[t])return!1;return!0}function Ro(){const e=bo();return e!==void 0&&le()&&un()?e>=8?8:4:e}function bo(){return H(Ye(navigator.hardwareConcurrency),void 0)}function So(){var e;const t=(e=window.Intl)===null||e===void 0?void 0:e.DateTimeFormat;if(t){const i=new t().resolvedOptions().timeZone;if(i)return i}const n=-Io();return`UTC${n>=0?"+":""}${n}`}function Io(){const e=new Date().getFullYear();return Math.max(w(new Date(e,0,1).getTimezoneOffset()),w(new Date(e,6,1).getTimezoneOffset()))}function No(){try{return!!window.sessionStorage}catch{return!0}}function Oo(){try{return!!window.localStorage}catch{return!0}}function Lo(){if(!(dn()||Ds()))try{return!!window.indexedDB}catch{return!0}}function _o(){return!!window.openDatabase}function po(){return navigator.cpuClass}function vo(){const{platform:e}=navigator;return e==="MacIntel"&&F()&&!je()?Ps()?"iPad":"iPhone":e}function Do(){return navigator.vendor||""}function Mo(){const e=[];for(const t of["chrome","safari","__crWeb","__gCrWeb","yandex","__yb","__ybro","__firefox__","__edgeTrackingPreventionStatistics","webkit","oprt","samsungAr","ucweb","UCShellJava","puffinDevice"]){const n=window[t];n&&typeof n=="object"&&e.push(t)}return e.sort()}function yo(){const e=document;try{e.cookie="cookietest=1; SameSite=Strict;";const t=e.cookie.indexOf("cookietest=")!==-1;return e.cookie="cookietest=1; SameSite=Strict; expires=Thu, 01-Jan-1970 00:00:01 GMT",t}catch{return!1}}function Co(){const e=atob;return{abpIndo:["#Iklan-Melayang","#Kolom-Iklan-728","#SidebarIklan-wrapper",'[title="ALIENBOLA" i]',e("I0JveC1CYW5uZXItYWRz")],abpvn:[".quangcao","#mobileCatfish",e("LmNsb3NlLWFkcw=="),'[id^="bn_bottom_fixed_"]',"#pmadv"],adBlockFinland:[".mainostila",e("LnNwb25zb3JpdA=="),".ylamainos",e("YVtocmVmKj0iL2NsaWNrdGhyZ2guYXNwPyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hcHAucmVhZHBlYWsuY29tL2FkcyJd")],adBlockPersian:["#navbar_notice_50",".kadr",'TABLE[width="140px"]',"#divAgahi",e("YVtocmVmXj0iaHR0cDovL2cxLnYuZndtcm0ubmV0L2FkLyJd")],adBlockWarningRemoval:["#adblock-honeypot",".adblocker-root",".wp_adblock_detect",e("LmhlYWRlci1ibG9ja2VkLWFk"),e("I2FkX2Jsb2NrZXI=")],adGuardAnnoyances:[".hs-sosyal","#cookieconsentdiv",'div[class^="app_gdpr"]',".as-oil",'[data-cypress="soft-push-notification-modal"]'],adGuardBase:[".BetterJsPopOverlay",e("I2FkXzMwMFgyNTA="),e("I2Jhbm5lcmZsb2F0MjI="),e("I2NhbXBhaWduLWJhbm5lcg=="),e("I0FkLUNvbnRlbnQ=")],adGuardChinese:[e("LlppX2FkX2FfSA=="),e("YVtocmVmKj0iLmh0aGJldDM0LmNvbSJd"),"#widget-quan",e("YVtocmVmKj0iLzg0OTkyMDIwLnh5eiJd"),e("YVtocmVmKj0iLjE5NTZobC5jb20vIl0=")],adGuardFrench:["#pavePub",e("LmFkLWRlc2t0b3AtcmVjdGFuZ2xl"),".mobile_adhesion",".widgetadv",e("LmFkc19iYW4=")],adGuardGerman:['aside[data-portal-id="leaderboard"]'],adGuardJapanese:["#kauli_yad_1",e("YVtocmVmXj0iaHR0cDovL2FkMi50cmFmZmljZ2F0ZS5uZXQvIl0="),e("Ll9wb3BJbl9pbmZpbml0ZV9hZA=="),e("LmFkZ29vZ2xl"),e("Ll9faXNib29zdFJldHVybkFk")],adGuardMobile:[e("YW1wLWF1dG8tYWRz"),e("LmFtcF9hZA=="),'amp-embed[type="24smi"]',"#mgid_iframe1",e("I2FkX2ludmlld19hcmVh")],adGuardRussian:[e("YVtocmVmXj0iaHR0cHM6Ly9hZC5sZXRtZWFkcy5jb20vIl0="),e("LnJlY2xhbWE="),'div[id^="smi2adblock"]',e("ZGl2W2lkXj0iQWRGb3hfYmFubmVyXyJd"),"#psyduckpockeball"],adGuardSocial:[e("YVtocmVmXj0iLy93d3cuc3R1bWJsZXVwb24uY29tL3N1Ym1pdD91cmw9Il0="),e("YVtocmVmXj0iLy90ZWxlZ3JhbS5tZS9zaGFyZS91cmw/Il0="),".etsy-tweet","#inlineShare",".popup-social"],adGuardSpanishPortuguese:["#barraPublicidade","#Publicidade","#publiEspecial","#queTooltip",".cnt-publi"],adGuardTrackingProtection:["#qoo-counter",e("YVtocmVmXj0iaHR0cDovL2NsaWNrLmhvdGxvZy5ydS8iXQ=="),e("YVtocmVmXj0iaHR0cDovL2hpdGNvdW50ZXIucnUvdG9wL3N0YXQucGhwIl0="),e("YVtocmVmXj0iaHR0cDovL3RvcC5tYWlsLnJ1L2p1bXAiXQ=="),"#top100counter"],adGuardTurkish:["#backkapat",e("I3Jla2xhbWk="),e("YVtocmVmXj0iaHR0cDovL2Fkc2Vydi5vbnRlay5jb20udHIvIl0="),e("YVtocmVmXj0iaHR0cDovL2l6bGVuemkuY29tL2NhbXBhaWduLyJd"),e("YVtocmVmXj0iaHR0cDovL3d3dy5pbnN0YWxsYWRzLm5ldC8iXQ==")],bulgarian:[e("dGQjZnJlZW5ldF90YWJsZV9hZHM="),"#ea_intext_div",".lapni-pop-over","#xenium_hot_offers"],easyList:[".yb-floorad",e("LndpZGdldF9wb19hZHNfd2lkZ2V0"),e("LnRyYWZmaWNqdW5reS1hZA=="),".textad_headline",e("LnNwb25zb3JlZC10ZXh0LWxpbmtz")],easyListChina:[e("LmFwcGd1aWRlLXdyYXBbb25jbGljayo9ImJjZWJvcy5jb20iXQ=="),e("LmZyb250cGFnZUFkdk0="),"#taotaole","#aafoot.top_box",".cfa_popup"],easyListCookie:[".ezmob-footer",".cc-CookieWarning","[data-cookie-number]",e("LmF3LWNvb2tpZS1iYW5uZXI="),".sygnal24-gdpr-modal-wrap"],easyListCzechSlovak:["#onlajny-stickers",e("I3Jla2xhbW5pLWJveA=="),e("LnJla2xhbWEtbWVnYWJvYXJk"),".sklik",e("W2lkXj0ic2tsaWtSZWtsYW1hIl0=")],easyListDutch:[e("I2FkdmVydGVudGll"),e("I3ZpcEFkbWFya3RCYW5uZXJCbG9jaw=="),".adstekst",e("YVtocmVmXj0iaHR0cHM6Ly94bHR1YmUubmwvY2xpY2svIl0="),"#semilo-lrectangle"],easyListGermany:["#SSpotIMPopSlider",e("LnNwb25zb3JsaW5rZ3J1ZW4="),e("I3dlcmJ1bmdza3k="),e("I3Jla2xhbWUtcmVjaHRzLW1pdHRl"),e("YVtocmVmXj0iaHR0cHM6Ly9iZDc0Mi5jb20vIl0=")],easyListItaly:[e("LmJveF9hZHZfYW5udW5jaQ=="),".sb-box-pubbliredazionale",e("YVtocmVmXj0iaHR0cDovL2FmZmlsaWF6aW9uaWFkcy5zbmFpLml0LyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hZHNlcnZlci5odG1sLml0LyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hZmZpbGlhemlvbmlhZHMuc25haS5pdC8iXQ==")],easyListLithuania:[e("LnJla2xhbW9zX3RhcnBhcw=="),e("LnJla2xhbW9zX251b3JvZG9z"),e("aW1nW2FsdD0iUmVrbGFtaW5pcyBza3lkZWxpcyJd"),e("aW1nW2FsdD0iRGVkaWt1b3RpLmx0IHNlcnZlcmlhaSJd"),e("aW1nW2FsdD0iSG9zdGluZ2FzIFNlcnZlcmlhaS5sdCJd")],estonian:[e("QVtocmVmKj0iaHR0cDovL3BheTRyZXN1bHRzMjQuZXUiXQ==")],fanboyAnnoyances:["#ac-lre-player",".navigate-to-top","#subscribe_popup",".newsletter_holder","#back-top"],fanboyAntiFacebook:[".util-bar-module-firefly-visible"],fanboyEnhancedTrackers:[".open.pushModal","#issuem-leaky-paywall-articles-zero-remaining-nag","#sovrn_container",'div[class$="-hide"][zoompage-fontsize][style="display: block;"]',".BlockNag__Card"],fanboySocial:["#FollowUs","#meteored_share","#social_follow",".article-sharer",".community__social-desc"],frellwitSwedish:[e("YVtocmVmKj0iY2FzaW5vcHJvLnNlIl1bdGFyZ2V0PSJfYmxhbmsiXQ=="),e("YVtocmVmKj0iZG9rdG9yLXNlLm9uZWxpbmsubWUiXQ=="),"article.category-samarbete",e("ZGl2LmhvbGlkQWRz"),"ul.adsmodern"],greekAdBlock:[e("QVtocmVmKj0iYWRtYW4ub3RlbmV0LmdyL2NsaWNrPyJd"),e("QVtocmVmKj0iaHR0cDovL2F4aWFiYW5uZXJzLmV4b2R1cy5nci8iXQ=="),e("QVtocmVmKj0iaHR0cDovL2ludGVyYWN0aXZlLmZvcnRobmV0LmdyL2NsaWNrPyJd"),"DIV.agores300","TABLE.advright"],hungarian:["#cemp_doboz",".optimonk-iframe-container",e("LmFkX19tYWlu"),e("W2NsYXNzKj0iR29vZ2xlQWRzIl0="),"#hirdetesek_box"],iDontCareAboutCookies:['.alert-info[data-block-track*="CookieNotice"]',".ModuleTemplateCookieIndicator",".o--cookies--container","#cookies-policy-sticky","#stickyCookieBar"],icelandicAbp:[e("QVtocmVmXj0iL2ZyYW1ld29yay9yZXNvdXJjZXMvZm9ybXMvYWRzLmFzcHgiXQ==")],latvian:[e("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiAxMjBweDsgaGVpZ2h0OiA0MHB4OyBvdmVyZmxvdzogaGlkZGVuOyBwb3NpdGlvbjogcmVsYXRpdmU7Il0="),e("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiA4OHB4OyBoZWlnaHQ6IDMxcHg7IG92ZXJmbG93OiBoaWRkZW47IHBvc2l0aW9uOiByZWxhdGl2ZTsiXQ==")],listKr:[e("YVtocmVmKj0iLy9hZC5wbGFuYnBsdXMuY28ua3IvIl0="),e("I2xpdmVyZUFkV3JhcHBlcg=="),e("YVtocmVmKj0iLy9hZHYuaW1hZHJlcC5jby5rci8iXQ=="),e("aW5zLmZhc3R2aWV3LWFk"),".revenue_unit_item.dable"],listeAr:[e("LmdlbWluaUxCMUFk"),".right-and-left-sponsers",e("YVtocmVmKj0iLmFmbGFtLmluZm8iXQ=="),e("YVtocmVmKj0iYm9vcmFxLm9yZyJd"),e("YVtocmVmKj0iZHViaXp6bGUuY29tL2FyLz91dG1fc291cmNlPSJd")],listeFr:[e("YVtocmVmXj0iaHR0cDovL3Byb21vLnZhZG9yLmNvbS8iXQ=="),e("I2FkY29udGFpbmVyX3JlY2hlcmNoZQ=="),e("YVtocmVmKj0id2Vib3JhbWEuZnIvZmNnaS1iaW4vIl0="),".site-pub-interstitiel",'div[id^="crt-"][data-criteo-id]'],officialPolish:["#ceneo-placeholder-ceneo-12",e("W2hyZWZePSJodHRwczovL2FmZi5zZW5kaHViLnBsLyJd"),e("YVtocmVmXj0iaHR0cDovL2Fkdm1hbmFnZXIudGVjaGZ1bi5wbC9yZWRpcmVjdC8iXQ=="),e("YVtocmVmXj0iaHR0cDovL3d3dy50cml6ZXIucGwvP3V0bV9zb3VyY2UiXQ=="),e("ZGl2I3NrYXBpZWNfYWQ=")],ro:[e("YVtocmVmXj0iLy9hZmZ0cmsuYWx0ZXgucm8vQ291bnRlci9DbGljayJd"),e("YVtocmVmXj0iaHR0cHM6Ly9ibGFja2ZyaWRheXNhbGVzLnJvL3Ryay9zaG9wLyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9ldmVudC4ycGVyZm9ybWFudC5jb20vZXZlbnRzL2NsaWNrIl0="),e("YVtocmVmXj0iaHR0cHM6Ly9sLnByb2ZpdHNoYXJlLnJvLyJd"),'a[href^="/url/"]'],ruAd:[e("YVtocmVmKj0iLy9mZWJyYXJlLnJ1LyJd"),e("YVtocmVmKj0iLy91dGltZy5ydS8iXQ=="),e("YVtocmVmKj0iOi8vY2hpa2lkaWtpLnJ1Il0="),"#pgeldiz",".yandex-rtb-block"],thaiAds:["a[href*=macau-uta-popup]",e("I2Fkcy1nb29nbGUtbWlkZGxlX3JlY3RhbmdsZS1ncm91cA=="),e("LmFkczMwMHM="),".bumq",".img-kosana"],webAnnoyancesUltralist:["#mod-social-share-2","#social-tools",e("LmN0cGwtZnVsbGJhbm5lcg=="),".zergnet-recommend",".yt.btn-link.btn-md.btn"]}}async function Uo({debug:e}={}){if(!Po())return;const t=Co(),n=Object.keys(t),i=[].concat(...n.map(s=>t[s])),a=await wo(i);e&&Fo(t,a);const r=n.filter(s=>{const c=t[s];return _(c.map(f=>a[f]))>c.length*.6});return r.sort(),r}function Po(){return F()||Ke()}async function wo(e){var t;const n=document,i=n.createElement("div"),a=new Array(e.length),r={};En(i);for(let s=0;s<e.length;++s){const c=Ys(e[s]);c.tagName==="DIALOG"&&c.show();const u=n.createElement("div");En(u),u.appendChild(c),i.appendChild(u),a[s]=c}for(;!n.body;)await Te(50);n.body.appendChild(i);try{for(let s=0;s<e.length;++s)a[s].offsetParent||(r[e[s]]=!0)}finally{(t=i.parentNode)===null||t===void 0||t.removeChild(i)}return r}function En(e){e.style.setProperty("visibility","hidden","important"),e.style.setProperty("display","block","important")}function Fo(e,t){let n="DOM blockers debug:\n```";for(const i of Object.keys(e)){n+=`
375
+ ${i}:`;for(const a of e[i])n+=`
376
+ ${t[a]?"🚫":"➡️"} ${a}`}console.log(`${n}
377
+ \`\`\``)}function Go(){for(const e of["rec2020","p3","srgb"])if(matchMedia(`(color-gamut: ${e})`).matches)return e}function Bo(){if(mn("inverted"))return!0;if(mn("none"))return!1}function mn(e){return matchMedia(`(inverted-colors: ${e})`).matches}function ko(){if(Tn("active"))return!0;if(Tn("none"))return!1}function Tn(e){return matchMedia(`(forced-colors: ${e})`).matches}const Ho=100;function Wo(){if(matchMedia("(min-monochrome: 0)").matches){for(let e=0;e<=Ho;++e)if(matchMedia(`(max-monochrome: ${e})`).matches)return e;throw new Error("Too high value")}}function Vo(){if(ie("no-preference"))return 0;if(ie("high")||ie("more"))return 1;if(ie("low")||ie("less"))return-1;if(ie("forced"))return 10}function ie(e){return matchMedia(`(prefers-contrast: ${e})`).matches}function Xo(){if(An("reduce"))return!0;if(An("no-preference"))return!1}function An(e){return matchMedia(`(prefers-reduced-motion: ${e})`).matches}function Yo(){if(Rn("reduce"))return!0;if(Rn("no-preference"))return!1}function Rn(e){return matchMedia(`(prefers-reduced-transparency: ${e})`).matches}function jo(){if(bn("high"))return!0;if(bn("standard"))return!1}function bn(e){return matchMedia(`(dynamic-range: ${e})`).matches}const S=Math,v=()=>0;function Ko(){const e=S.acos||v,t=S.acosh||v,n=S.asin||v,i=S.asinh||v,a=S.atanh||v,r=S.atan||v,s=S.sin||v,c=S.sinh||v,u=S.cos||v,f=S.cosh||v,l=S.tan||v,d=S.tanh||v,E=S.exp||v,m=S.expm1||v,T=S.log1p||v,A=N=>S.pow(S.PI,N),X=N=>S.log(N+S.sqrt(N*N-1)),ut=N=>S.log(N+S.sqrt(N*N+1)),z=N=>S.log((1+N)/(1-N))/2,Wl=N=>S.exp(N)-1/S.exp(N)/2,Vl=N=>(S.exp(N)+1/S.exp(N))/2,Xl=N=>S.exp(N)-1,Yl=N=>(S.exp(2*N)-1)/(S.exp(2*N)+1),jl=N=>S.log(1+N);return{acos:e(.12312423423423424),acosh:t(1e308),acoshPf:X(1e154),asin:n(.12312423423423424),asinh:i(1),asinhPf:ut(1),atanh:a(.5),atanhPf:z(.5),atan:r(.5),sin:s(-1e300),sinh:c(1),sinhPf:Wl(1),cos:u(10.000000000123),cosh:f(1),coshPf:Vl(1),tan:l(-1e300),tanh:d(1),tanhPf:Yl(1),exp:E(1),expm1:m(1),expm1Pf:Xl(1),log1p:T(10),log1pPf:jl(10),powPI:A(-100)}}const $o="mmMwWLliI0fiflO&1",ze={default:[],apple:[{font:"-apple-system-body"}],serif:[{fontFamily:"serif"}],sans:[{fontFamily:"sans-serif"}],mono:[{fontFamily:"monospace"}],min:[{fontSize:"1px"}],system:[{fontFamily:"system-ui"}]};function Zo(){return Jo((e,t)=>{const n={},i={};for(const a of Object.keys(ze)){const[r={},s=$o]=ze[a],c=e.createElement("span");c.textContent=s,c.style.whiteSpace="nowrap";for(const u of Object.keys(r)){const f=r[u];f!==void 0&&(c.style[u]=f)}n[a]=c,t.append(e.createElement("br"),c)}for(const a of Object.keys(ze))i[a]=n[a].getBoundingClientRect().width;return i})}function Jo(e,t=4e3){return hn((n,i)=>{const a=i.document,r=a.body,s=r.style;s.width=`${t}px`,s.webkitTextSizeAdjust=s.textSizeAdjust="none",oe()?r.style.zoom=`${1/i.devicePixelRatio}`:F()&&(r.style.zoom="reset");const c=a.createElement("div");return c.textContent=[...Array(t/20<<0)].map(()=>"word").join(" "),r.appendChild(c),e(a,r)},'<!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1">')}function xo(){return navigator.pdfViewerEnabled}function zo(){const e=new Float32Array(1),t=new Uint8Array(e.buffer);return e[0]=1/0,e[0]=e[0]-e[0],t[3]}function Qo(){const{ApplePaySession:e}=window;if(typeof e?.canMakePayments!="function")return-1;if(qo())return-3;try{return e.canMakePayments()?1:0}catch(t){return ec(t)}}const qo=Ks;function ec(e){if(e instanceof Error&&e.name==="InvalidAccessError"&&/\bfrom\b.*\binsecure\b/i.test(e.message))return-2;throw e}function tc(){var e;const t=document.createElement("a"),n=(e=t.attributionSourceId)!==null&&e!==void 0?e:t.attributionsourceid;return n===void 0?void 0:String(n)}const Sn=-1,In=-2,nc=new Set([10752,2849,2884,2885,2886,2928,2929,2930,2931,2932,2960,2961,2962,2963,2964,2965,2966,2967,2968,2978,3024,3042,3088,3089,3106,3107,32773,32777,32777,32823,32824,32936,32937,32938,32939,32968,32969,32970,32971,3317,33170,3333,3379,3386,33901,33902,34016,34024,34076,3408,3410,3411,3412,3413,3414,3415,34467,34816,34817,34818,34819,34877,34921,34930,35660,35661,35724,35738,35739,36003,36004,36005,36347,36348,36349,37440,37441,37443,7936,7937,7938]),ic=new Set([34047,35723,36063,34852,34853,34854,34229,36392,36795,38449]),rc=["FRAGMENT_SHADER","VERTEX_SHADER"],ac=["LOW_FLOAT","MEDIUM_FLOAT","HIGH_FLOAT","LOW_INT","MEDIUM_INT","HIGH_INT"],Nn="WEBGL_debug_renderer_info",sc="WEBGL_polygon_mode";function oc({cache:e}){var t,n,i,a,r,s;const c=On(e);if(!c)return Sn;if(!pn(c))return In;const u=_n()?null:c.getExtension(Nn);return{version:((t=c.getParameter(c.VERSION))===null||t===void 0?void 0:t.toString())||"",vendor:((n=c.getParameter(c.VENDOR))===null||n===void 0?void 0:n.toString())||"",vendorUnmasked:u?(i=c.getParameter(u.UNMASKED_VENDOR_WEBGL))===null||i===void 0?void 0:i.toString():"",renderer:((a=c.getParameter(c.RENDERER))===null||a===void 0?void 0:a.toString())||"",rendererUnmasked:u?(r=c.getParameter(u.UNMASKED_RENDERER_WEBGL))===null||r===void 0?void 0:r.toString():"",shadingLanguageVersion:((s=c.getParameter(c.SHADING_LANGUAGE_VERSION))===null||s===void 0?void 0:s.toString())||""}}function cc({cache:e}){const t=On(e);if(!t)return Sn;if(!pn(t))return In;const n=t.getSupportedExtensions(),i=t.getContextAttributes(),a=[],r=[],s=[],c=[],u=[];if(i)for(const l of Object.keys(i))r.push(`${l}=${i[l]}`);const f=Ln(t);for(const l of f){const d=t[l];s.push(`${l}=${d}${nc.has(d)?`=${t.getParameter(d)}`:""}`)}if(n)for(const l of n){if(l===Nn&&_n()||l===sc&&uc())continue;const d=t.getExtension(l);if(!d){a.push(l);continue}for(const E of Ln(d)){const m=d[E];c.push(`${E}=${m}${ic.has(m)?`=${t.getParameter(m)}`:""}`)}}for(const l of rc)for(const d of ac){const E=lc(t,l,d);u.push(`${l}.${d}=${E.join(",")}`)}return c.sort(),s.sort(),{contextAttributes:r,parameters:s,shaderPrecisions:u,extensions:n,extensionParameters:c,unsupportedExtensions:a}}function On(e){if(e.webgl)return e.webgl.context;const t=document.createElement("canvas");let n;t.addEventListener("webglCreateContextError",()=>n=void 0);for(const i of["webgl","experimental-webgl"]){try{n=t.getContext(i)}catch{}if(n)break}return e.webgl={context:n},n}function lc(e,t,n){const i=e.getShaderPrecisionFormat(e[t],e[n]);return i?[i.rangeMin,i.rangeMax,i.precision]:[]}function Ln(e){return Object.keys(e.__proto__).filter(dc)}function dc(e){return typeof e=="string"&&!e.match(/[^A-Z0-9_x]/)}function _n(){return le()}function uc(){return oe()||F()}function pn(e){return typeof e.getParameter=="function"}function fc(){if(!(Ke()||F()))return-2;if(!window.AudioContext)return-1;const t=new AudioContext().baseLatency;return t==null?-1:isFinite(t)?t:-3}function hc(){if(!window.Intl)return-1;const e=window.Intl.DateTimeFormat;if(!e)return-2;const t=e().resolvedOptions().locale;return!t&&t!==""?-3:t}const gc={fonts:Js,domBlockers:Uo,fontPreferences:Zo,audio:Bs,screenFrame:Ao,canvas:zs,osCpu:oo,languages:co,colorDepth:lo,deviceMemory:uo,screenResolution:fo,hardwareConcurrency:Ro,timezone:So,sessionStorage:No,localStorage:Oo,indexedDB:Lo,openDatabase:_o,cpuClass:po,platform:vo,plugins:xs,touchSupport:so,vendor:Do,vendorFlavors:Mo,cookiesEnabled:yo,colorGamut:Go,invertedColors:Bo,forcedColors:ko,monochrome:Wo,contrast:Vo,reducedMotion:Xo,reducedTransparency:Yo,hdr:jo,math:Ko,pdfViewerEnabled:xo,architecture:zo,applePay:Qo,privateClickMeasurement:tc,audioBaseLatency:fc,dateTimeLocale:hc,webGlBasics:oc,webGlExtensions:cc};function Ec(e){return vs(gc,e,[])}const mc="$ if upgrade to Pro: https://fingerprint.com/github/?utm_source=oss&utm_medium=referral&utm_campaign=confidence_score";function Tc(e){const t=Ac(e),n=Rc(t);return{score:t,comment:mc.replace(/\$/g,`${n}`)}}function Ac(e){if(Ke())return .4;if(F())return je()&&!(de()&&ce())?.5:.3;const t="value"in e.platform?e.platform.value:"";return/^Win/.test(t)?.6:/^Mac/.test(t)?.5:.7}function Rc(e){return on(.99+.01*e,1e-4)}function bc(e){let t="";for(const n of Object.keys(e).sort()){const i=e[n],a="error"in i?"error":JSON.stringify(i.value);t+=`${t?"|":""}${n.replace(/([:|\\])/g,"\\$1")}:${a}`}return t}function vn(e){return JSON.stringify(e,(t,n)=>n instanceof Error?Os(n):n,2)}function Dn(e){return Ns(bc(e))}function Sc(e){let t;const n=Tc(e);return{get visitorId(){return t===void 0&&(t=Dn(this.components)),t},set visitorId(i){t=i},confidence:n,components:e,version:nn}}function Ic(e=50){return gs(e,e*2)}function Nc(e,t){const n=Date.now();return{async get(i){const a=Date.now(),r=await e(),s=Sc(r);return(t||i?.debug)&&console.log(`Copy the text below to get the debug data:
378
+
379
+ \`\`\`
380
+ version: ${s.version}
381
+ userAgent: ${navigator.userAgent}
382
+ timeBetweenLoadAndGet: ${a-n}
383
+ visitorId: ${s.visitorId}
384
+ components: ${vn(r)}
385
+ \`\`\``),s}}}function Oc(){if(!(window.__fpjs_d_m||Math.random()>=.001))try{const e=new XMLHttpRequest;e.open("get",`https://m1.openfpcdn.io/fingerprintjs/v${nn}/npm-monitoring`,!0),e.send()}catch(e){console.error(e)}}async function Lc(e={}){const{delayFallback:t,debug:n,monitoring:i=!0}=e;i&&Oc(),await Ic(t);const a=Ec({cache:{},debug:n});return Nc(a,n)}var _c={load:Lc,hashComponents:Dn,componentsToDebugString:vn};const Mn="FINGERPRINT";function yn(){return typeof window<"u"&&typeof navigator<"u"}function pc(){if(!yn())return{type:"unknown",name:"unknown"};const e=navigator.userAgent;return/iPad|iPhone|iPod/i.test(e)?{type:"mobile",name:"iOS"}:/Android/i.test(e)?{type:"mobile",name:"Android"}:/Windows Phone/i.test(e)?{type:"mobile",name:"Windows Phone"}:/BlackBerry/i.test(e)?{type:"mobile",name:"BlackBerry"}:/Edg/i.test(e)?{type:"web",name:"Edge"}:/OPR|Opera/i.test(e)?{type:"web",name:"Opera"}:/Firefox/i.test(e)?{type:"web",name:"Firefox"}:/Chrome/i.test(e)?{type:"web",name:"Chrome"}:/Safari/i.test(e)?{type:"web",name:"Safari"}:{type:"unknown",name:"unknown"}}async function vc(){return(await _c.load()).get()}async function Qe(){if(!yn())return"unknown/unknown";const{type:e,name:t}=pc(),n=e==="web";if(n){const r=localStorage.getItem(Mn);if(r)return`${t}/${r}`}const a=(await vc()).visitorId;return n&&localStorage.setItem(Mn,a),`${t}/${a}`}function Cn(){let e=sessionStorage.getItem("currentPageTag");return e||(e=Date.now().toString(),sessionStorage.setItem("currentPageTag",e)),e}class P{static _DEFAULT_CONFIG={id:"id",children:"children",pid:"pid",deep:!0};static _getConfig(t){return Object.assign({},P._DEFAULT_CONFIG,t)}static listToTree(t,n={},i){const a=P._getConfig(n),r=new Map,s=[],{id:c,children:u,pid:f,deep:l}=a;for(const d of t){const E=d;l?E[u]=E[u]??void 0:E[u]=E[f]==="ROOT"?E[u]??[]:[],r.set(E[c],i(d))}for(const d of t){const E=d,m=r.get(E[f]);if(m){const T=m;T[u]||(T[u]=[]),T[u].push(i(d))}else s.push(i(d))}return s}static treeToList(t,n={}){const{children:i}=P._getConfig(n),a=[...t];for(let r=0;r<a.length;r++){const c=a[r][i];Array.isArray(c)&&a.splice(r+1,0,...c)}return a}static findNode(t,n,i={}){const{children:a}=P._getConfig(i),r=t?[...t]:[];for(const s of r){if(n(s))return s;const u=s[a];Array.isArray(u)&&r.push(...u)}return null}static findNodeAll(t,n,i={}){const{children:a}=P._getConfig(i),r=t?[...t]:[],s=[];for(const c of r){n(c)&&s.push(c);const f=c[a];Array.isArray(f)&&r.push(...f)}return s}static findPath(t,n,i={}){const{children:a}=P._getConfig(i),r=[],s=t?[...t]:[],c=new Set;for(;s.length;){const u=s[0];if(c.has(u))r.pop(),s.shift();else{c.add(u);const l=u[a];if(Array.isArray(l)&&s.unshift(...l),r.push(u),n(u))return r}}return null}static findClosestParent(t,n,i,a={}){const{id:r}=P._getConfig(a);return P.findPath(t,c=>c[r]===n,a)?.reverse().find(c=>i(c))}static list_to_tree(t,n){const i={},a=[];for(let r=0;r<t.length;r++){const s=t[r];i[s.id]=r,s.children=[]}for(const r of t)if(r.parentId==="ROOT"||!r.parentId)a.push(n(r));else{const s=r,c=i[r.parentId];c!==void 0&&t[c].children?.push(n(s))}return a}static getAllParentPath(t,n){return(P.findPath(t,a=>a.path===n)||[]).map(a=>a.path)}static traverseAndBuildTree(t,n,i={}){i=this._getConfig(i);const{children:a}=i;return t.map(r=>{const s=n(r)||r;return a&&r[a]&&r[a].length>0&&(s[a]=this.traverseAndBuildTree(r.children,n)),s})}static eachTree(t,n,i={}){t.forEach(a=>{const r=n(a,i)||a;a.children&&P.eachTree(a.children,n,r)})}}o("TreeHelper",P);const du=o("calcStyle",(e,t=[])=>{const n={},i=e.padding;i&&(i.top!=null&&i.top!=""&&!t.includes("paddingTop")&&(n["padding-top"]=i.top),i.right!=null&&i.right!=""&&!t.includes("paddingRight")&&(n["padding-right"]=i.right),i.bottom!=null&&i.bottom!=""&&!t.includes("paddingBottom")&&(n["padding-bottom"]=i.bottom),i.left!=null&&i.left!=""&&!t.includes("paddingLeft")&&(n["padding-left"]=i.left));const a=e.margin;a&&(a.top!=null&&a.top!=""&&!t.includes("marginTop")&&(n["margin-top"]=a.top),a.right!=null&&a.right!=""&&!t.includes("marginRight")&&(n["margin-right"]=a.right),a.bottom!=null&&a.bottom!=""&&!t.includes("marginBottom")&&(n["margin-bottom"]=a.bottom),a.left!=null&&a.left!=""&&!t.includes("marginLeft")&&(n["margin-left"]=a.left)),e.background!=null&&e.background!=""&&!t.includes("backgroundColor")&&(n["background-color"]=e.background),e.width!=null&&e.width!=""&&!t.includes("width")&&(n.width=e.width),e.height!=null&&e.height!=""&&!t.includes("height")&&(n.height=e.height,n.overflowX="hidden",n.overflowY="auto");const r=e.position;r&&(r.position!=null&&r.position!=""&&!t.includes("zIndex")&&(n.position=r.position,n["z-index"]=1),r.top!=null&&r.top!=""&&!t.includes("top")&&(n.top=`${r.top}px`),r.right!=null&&r.right!=""&&!t.includes("right")&&(n.right=`${r.right}px`),r.bottom!=null&&r.bottom!=""&&!t.includes("bottom")&&(n.bottom=`${r.bottom}px`),r.left!=null&&r.left!=""&&!t.includes("left")&&(n.left=`${r.left}px`));const s=e.border;return s&&(s.topLeftRadius!=null&&s.topLeftRadius!=""&&!t.includes("borderTopLeftRadius")&&(n["border-top-left-radius"]=s.topLeftRadius),s.topRightRadius!=null&&s.topRightRadius!=""&&!t.includes("borderTopRightRadius")&&(n["border-top-right-radius"]=s.topRightRadius),s.bottomLeftRadius!=null&&s.bottomLeftRadius!=""&&!t.includes("borderBottomLeftRadius")&&(n["border-bottom-left-radius"]=s.bottomLeftRadius),s.bottomRightRadius!=null&&s.bottomRightRadius!=""&&!t.includes("borderBottomRightRadius")&&(n["border-bottom-right-radius"]=s.bottomRightRadius),s.top&&(s.top.color!=null&&s.top.color!=""&&!t.includes("borderTopColor")&&(n["border-top-color"]=s.top.color),s.top.width!=null&&s.top.width!=""&&!t.includes("borderTopWidth")&&(n["border-top-width"]=s.top.width),s.top.style&&!t.includes("borderTopStyle")&&(n["border-top-style"]=s.top.style)),s.right&&(s.right.color!=null&&s.right.color!=""&&!t.includes("borderRightColor")&&(n["border-right-color"]=s.right.color),s.right.width!=null&&s.right.width!=""&&!t.includes("borderRightWidth")&&(n["border-right-width"]=s.right.width),s.right.style&&!t.includes("borderRightStyle")&&(n["border-right-style"]=s.right.style)),s.bottom&&(s.bottom.color!=null&&s.bottom.color!=""&&!t.includes("borderBottomColor")&&(n["border-bottom-color"]=s.bottom.color),s.bottom.width!=null&&s.bottom.width!=""&&!t.includes("borderBottomWidth")&&(n["border-bottom-width"]=s.bottom.width),s.bottom.style&&!t.includes("borderBottomStyle")&&(n["border-bottom-style"]=s.bottom.style)),s.left&&(s.left.color!=null&&s.left.color!=""&&!t.includes("borderLeftColor")&&(n["border-left-color"]=s.left.color),s.left.width!=null&&s.left.width!=""&&!t.includes("borderLeftWidth")&&(n["border-left-width"]=s.left.width),s.left.style&&!t.includes("borderLeftStyle")&&(n["border-left-style"]=s.left.style))),e.border_radius&&(n["border-radius"]=`${e.border_radius}px`),n}),uu=o("calcFontStyle",(e,t=[])=>{const n={},i=e.labelFont;return i&&(i.color!=null&&i.color!=""&&!t.includes("color")&&(n.color=i.color),i.fontSize!=null&&i.fontSize!=""&&!t.includes("fontSize")&&(n["font-size"]=i.fontSize),i.align&&!t.includes("textAlign")&&(n["text-align"]=i.align,n["text-align-last"]=i.align),i.bold===!0&&!t.includes("fontWeight")&&(n["font-weight"]="bold"),i.italic===!0&&!t.includes("fontStyle")&&(n["font-style"]="italic"),i.textDecoration&&!t.includes("textDecoration")&&(n["text-decoration"]=i.textDecoration)),n});function Un(e,t){let n=e;return Object.keys(t).forEach(i=>{n=n.replace(`{${i}}`,t[i]??""),n=n.replace(`{${i}?}`,t[i]??"")}),n=n.replace(/\/\{[a-z]+\?\}/g,""),n}function Dc(e,t){const{target:n="_blank",noopener:i=!0,noreferrer:a=!0,genUrlData:r,routePath:s="",optionStr:c=""}=t||{},u=[];i&&u.push("noopener=yes"),a&&u.push("noreferrer=yes");let f=e;r&&(f=Un(f,r)),s&&(f+=s);let l=u.join(",");return c&&(l=l?`${l},${c}`:c),window.open(f,n,l)}function Mc(e){switch(e){case h.TEXT:case h.INTEGER:case h.LONG:case h.DOUBLE:case h.DECIMAL:case h.DATE:case h.TIME:case h.DATE_TIME:case h.BOOLEAN:case h.USER:case h.USER_MULTI:case h.ORG:case h.ORG_MULTI:case h.ENUM:case h.ENUM_MULTI:case h.REF:case h.REF_MULTI:case h.RDO_REF:case h.EXPRESSION:case h.AGG:case h.SERIAL:case h.DOCUMENT_TEMPLATE:case h.PRINTER:case h.TRANSACTION:case h.MESSAGE_TMPL:case h.RANGE_USER:return!0;default:return!1}}const Se=o("randomUUID",(e=[],t)=>{const{needPrefix:n=!1,isString:i=!0,prefix:a="u_",length:r=8,chars:s="",numPref:c=!1}=t||{};let u="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";s==="capital&number"?u="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789":s==="lowercase&number"?u="abcdefghijklmnopqrstuvwxyz0123456789":s==="lowercase"&&(u="abcdefghijklmnopqrstuvwxyz");let f;for(;!f;){let l="";if(i){c&&(l+=Math.floor(Math.random()*9)+1);for(let d=0;d<r;d++)l+=u.charAt(Math.floor(Math.random()*u.length))}else l=`${n?a:""}${c?Math.floor(Math.random()*9)+1:""}${Math.random().toString(36).substr(2,r)}`;e.includes(l)||(f=l)}return f});Se.Generate=(e,t)=>{const n=Array.isArray(e)?e.concat():[];return{next:()=>{const i=Se(n,t);return n.push(i),i}}};function yc(e,t,n){const i="children",r=M(()=>e.value.reduce((f,l)=>{f.push(l);const d=l[i].map(E=>({...E,_pid_:l.id}));return f.push(...d),f},[])),s=M(()=>r.value.map(f=>f._pid_?f.key.replace(new RegExp(`^${he(t)}_*`),""):null).filter(f=>f));function c(f,l){return Se([...he(s),...f??[]],{...n,...l})}function u(f,l){return Se.Generate([...he(s),...f??[]],{...n,...l})}return{oldUUids:s,flatTableData:r,getUuid:c,getUuidGenerate:u}}const Cc=Q("global-store",{state(){return new yt},getters:{getProjectName(){return this.projectName},geLang(){return this.lang},getAppInfo(){return this.appInfo}},actions:{async init(){const e=location.pathname.split("/")[2];if(e){const t=qt(e);t&&(this.context=t)}},async loadAppInfo(){const e=await _api.apaas.designerCommon.getGetApp();this.appInfo=e},setProjectName(e){this.projectName=e},setLang(e){this.lang=e}}});class Pn{pinia=ft();store;constructor(){ht(this.pinia),this.store=Cc()}}o("GlobalStoreUtil",Pn);class wn{editors=new Map;providers=new Map;register(t,n){this.editors.set(t,n)}unregister(t){this.editors.delete(t)}get(t){if(this.providers.has(t))return this.providers.get(t);const n=this.editors.get(t);if(n){const i=n();return this.providers.set(t,i),i}return null}}o("EditorRegister",wn);class Fn{items=new Map;register(t,n){this.items.set(t,n)}unregister(t){this.items.delete(t)}create(t){const n=this.items.get(t);return n?n():null}}o("FormItemRegister",Fn);var Ie=o("EnvironmentType",(e=>(e.DEV="dev",e.TEST="test",e.PROD="prod",e))(Ie||{}));const Uc=o("IP_REG",/^http:\/\/\d{1,3}(\.\d{1,3}){3}:(\d{1,5})$/),Gn=o("HOST_REG",/^https?:\/\/([a-z0-9]+)-test\./),Pc=o("APP_RUN_PATH_REG",/\/web-render|\/web\/|web-single\/|dev-single\/|test-single\//),wc=o("APP_PROD_PATH_REG",/\/web\/|\/web-single\//),Fc=o("APP_PREVIEW_PATH_REG",/\/web-render\//),Gc=o("DEV_SINGLE_PATH_REG",/\/dev-single\//),Bc=o("TEST_SINGLE_PATH_REG",/\/test-single\//);class Bn{_testEnv=!1;_testTenantData={};_platformOrigin;_isHostMode=!1;constructor(){this._platformOrigin=location.origin||"",this._isHostMode=Gn.test(this._platformOrigin)}get isAppRun(){return Pc.test(location.pathname)}get isAppProd(){return wc.test(location.pathname)}get isAppPreview(){return Fc.test(location.pathname)}get isDevSingleEnv(){return Gc.test(location.pathname)}get isTestEnv(){return Bc.test(location.pathname)||this._testEnv}get platformOrigin(){return this._platformOrigin}get isHostMode(){return this._isHostMode}get testTenantData(){return this._testTenantData}async checkIsTestEnv(){let t=null;if(this._isHostMode){if(t=this._platformOrigin.match(Gn),this._testEnv=!!(t&&t[1]),this._testEnv){const n=await _api.platform.tenant.getInfoByPortOrDomain({domain:t[1]});Object.assign(this._testTenantData,n)}}else{t=this._platformOrigin.match(Uc);const n=t&&t[2];if(n){const i=await _api.platform.tenant.getInfoByPortOrDomain({port:n});i&&(Object.assign(this._testTenantData,i),this._testEnv=i.testEnvPort===n)}}}getEnv(){return this.isTestEnv?Ie.TEST:this.isAppProd?Ie.PROD:Ie.DEV}}o("EnvironmentManager",Bn);class kn{i18n=It({legacy:!1,locale:"zh-CN",fallbackLocale:"en",messages:{en:{message:{hello:"hello world"}},ja:{message:{hello:"こんにちは、世界"}}}});locale="zh-CN";constructor(){this.init()}async init(){await this.loadLocales();const t=this.getMessageUrl({locale:this.locale});await this.loadMessages(t)}async loadLocales(){const t=await(await fetch("/gct-platform/api/i18n-config/list")).json();if(t.code===200){const n=t.data.find(i=>i.defaultLanguage);this.locale=n.languageTag}}async loadMessages(t,n=this.locale){const r=(await(await fetch(t)).text()).split(`
386
+ `).reduce((s,c)=>{const[u,...f]=c.split(":");return s[u]=f.join(":"),s},{});this.i18n.global.mergeLocaleMessage(n,r)}getMessageUrl(t){if("app"in t){const n=t.env==="dev"?`dev_${t.branch}`:t.env;return`minio/${t.app}/locale-js/${n}/${t.locale}__.json`}return`/minio/locale-js/${t.locale}__platform__.json`}}o("LocaleUtil",kn);function Hn(e){e.use(_gct.i18n)}const kc=[];class Hc{router;constructor(){this.router=Nt({history:Ot(),routes:kc})}async add(t){Array.isArray(t)?t.forEach(n=>this.add(n)):this.router.addRoute(t),await this.router.replace(this.router.currentRoute.value.fullPath)}}function Wc(e){e.use(_gct.router)}class Wn{i18nUtil=new kn;i18n=this.i18nUtil.i18n;storeUtil=new Pn;store=this.storeUtil.store;routerUtil=new Hc;router=this.routerUtil.router;message;dictionary=new Bt;env=new Bn;register={editor:new wn,formItem:new Fn};openUtil;async init(){await this.env.checkIsTestEnv(),await this.store.init()}}o("GctGlobal",Wn);class Vn{constructor(t){this.model=t,this.init()}evt=new Be;state=new Ue;item={};provider={};context={};params={};fields=[];modelMap={};init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent(),this.calcState()}initEvent(){}calcState(){}initFormItems(t){t.forEach(n=>{let i=null;if((n.type==="item"||n.type==="hidden")&&(this.fields.push(n.name),this.modelMap[n.name]=n),n.type==="item"&&(i=_gct.register.formItem.create(`${n.type}___${n.editor.type}___${n.name}`),i||(i=_gct.register.formItem.create(`${n.type}___${n.editor.type}`))),i||(i=_gct.register.formItem.create(n.type)),!i){console.error(`未找到表单项提供者:${n.type}`,n);return}if(this.provider[n.name]=i,n.type==="item"){const a=n;this.item[a.name]=i.createController(this,a)}else if(n.type==="hidden"){const a=n;this.item[a.name]=i.createController(this,a)}else if(n.type==="container"||n.container){const a=n;this.item[n.name]=i.createController(this,a),a.children&&this.initFormItems(a.children)}})}calcHidden(){Object.keys(this.item).forEach(n=>{const i=this.item[n];if(i.model.hidden){const a=i.model.hidden(this,i,this.state.data);a!=null&&(i.state.visible=!a)}})}getData(){const t={};return this.fields.forEach(n=>{const i=this.item[n];i&&(i.state.visible===!0||i.model.type==="hidden")&&(t[i.key]=i.value)}),t}resetData(){this.fields.forEach(t=>{const n=this.item[t];n&&n.reset()})}async load(){try{if(!this.model.loadRequest)return{};this.state.loading=!0;const t=await this.model.loadRequest({id:this.context.id});return this.fields.forEach(n=>{const i=this.item[n];i&&(i.value=t[i.key]),i.defaultValue()}),this.state.loaded=!0,t}finally{this.state.loading=!1}}destroy(){this.state.destroyed=!0,this.evt.reset(),this.fields.forEach(t=>{const n=this.item[t];n&&n.destroy()})}validate(){return Promise.resolve(!0)}validateItem(t){return Promise.resolve(!0)}loaded(){this.calcHidden(),this.fields.forEach(t=>{this.item[t].defaultValue()}),this.calcState()}mounted(){}}o("GctFormController",Vn);class Vc extends Vn{initEvent(){super.initEvent(),this.evt.on("change",(t,n,i)=>{if(this.model.watch){const r=this.model.watch[t];r&&r(this,n,i)}const a=this.item[t];a&&a.model.watch&&a.model.watch(this,a,n,i),n!=i&&this.calcHidden(),this.model.autosave===!0&&this.state.loading===!1&&this.autoSave()})}autoSave(){return this.save()}save(){const t=this.getData();return this.state.isNew===!0&&this.model.newRequest?this.model.newRequest(t):this.model.updateRequest?this.model.updateRequest({id:this.context.id},t):Promise.resolve(t)}}o("EditFormController",Vc);function Xc(e){const t=e();return t.state=D(t.state),Me(()=>t.destroy()),t}class qe{model;constructor(t){this.model=t}}o("EditorController",qe);class Xn{constructor(t){this.model=t,this.init()}evt=new Be;context={};params={};state=new Ue;item={};provider={};load(){throw new Error("Method not implemented.")}loaded(){throw new Error("Method not implemented.")}destroy(){throw new Error("Method not implemented.")}validate(){throw new Error("Method not implemented.")}validateItem(t){throw new Error("Method not implemented.")}mounted(){throw new Error("Method not implemented.")}init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent()}initEvent(){}initFormItems(t){t.forEach(n=>{let i=null;if(n.type==="item"&&(i=_gct.register.formItem.create(`${n.type}___${n.editor.type}___${n.name}`),i||(i=_gct.register.formItem.create(`${n.type}___${n.editor.type}`))),i||(i=_gct.register.formItem.create(n.type)),!i){console.error(`未找到表单项提供者:${n.type}`,n);return}if(this.provider[n.name]=i,n.type==="item"){const a=n;this.item[a.name]=i.createController(this,n)}else if(n.type==="container"){const a=n;this.item[n.name]=i.createController(this,n),a.children&&this.initFormItems(a.children)}})}getData(){return{}}resetData(){Object.keys(this.state.data).forEach(n=>{const i=this.state.data[n];i&&(typeof i=="object"?Array.isArray(i)?this.state.data[n]=[]:this.state.data[n]={}:this.state.data[n]=null)})}}o("FormController",Xn);function Yc(e){const t=new Xn(e);return t.state=D(t.state),t}class ${constructor(t,n){this.form=t,this.model=n,this.init()}state=this.crateItemState();get data(){return this.form.state.data}init(){}destroy(){this.state.destroyed=!0}crateItemState(){return new W}}o("FormItemBasicController",$);function jc(e){const t=e();return t.state=D(t.state),t}class Kc extends ${type="collapse-pane";crateItemState(){return new Ct}}o("FormCollapsePaneController",Kc);class $c extends ${type="collapse";crateItemState(){return new Ut}}o("FormCollapseController",$c);class Zc extends ${type="tab";crateItemState(){return new Pt}}o("FormTabController",Zc);class Jc extends ${type="tab-pane";crateItemState(){return new wt}}o("FormTabPaneController",Jc);class xc extends ${type="group";crateItemState(){return new Ft}}o("FormGroupController",xc);class et extends ${get key(){return this.model.field??this.model.name}get value(){return this.form.state.data[this.key]}set value(t){const n=Y(this.form.state.data[this.key]);this.form.state.data[this.key]=t,this.form.evt.emit("change",this.key,t,n),this.state.value=t}get editorValue(){return this.model.fields?this.model.fields.map(t=>this.form.item[t].value):this.value}set editorValue(t){this.model.fields?this.model.fields.forEach((n,i)=>{this.form.item[n].value=t?.[i]}):this.value=t}init(){if(super.init(),this.model.type!=="hidden"){const{editor:t}=this.model;this.state.readonly=t.readonly,t.disabled!=null&&(this.state.disabled=t.disabled)}if(this.model.dictionary){const{mode:t}=this.model.dictionary;t==="static"&&(this.state.options=this.model.dictionary.items||[])}}defaultValue(){this.form.state.data[this.key]===void 0&&this.model.defaultValue!==void 0&&(this.form.state.data[this.key]=this.model.defaultValue)}reset(){this.model.defaultValue!==void 0?this.value=this.model.defaultValue:this.value=void 0}blur(){console.warn("FormEditItemController.blur not implemented")}crateItemState(){return new Pe}}o("FormEditItemController",et);class zc extends et{type="item";async loadDictionary(t){if(this.state.options.length>0)return this.state.options;this.state.options=[],this.state.loading=!0;try{return this.model.dictionary?this.state.options=await _gct.dictionary.asyncGetByConfig(this.model.dictionary,t):this.model.dictionaryTag&&(this.state.options=await _gct.dictionary.asyncGet(this.model.dictionaryTag,t)),this.state.options}finally{this.state.loading=!1}}clearDictionary(){this.state.options=[]}blur(){console.warn("FormEditItemController.blur not implemented")}crateItemState(){return new Gt}}o("FormItemController",zc);class Qc extends et{type="hidden"}o("FormHiddenItemController",Qc);class qc extends qe{}o("LengthUnitEditorController",qc);class el extends qe{}o("ColorEditorController",el);function tl(){return ge(Vt)}function Yn(){return ge("formController")}function nl(e){let t=null;if(e){const i=Yn().item[e];i&&(t=M({get(){return i.value},set(a){typeof a=="string"&&(a=a.trim()),!(typeof a!="object"&&i.value==a)&&(i.value=a)}}))}else{let n=ye().proxy;const i=n.$props,a=n.$emit;t=M({get:()=>i.value,set:r=>{typeof r=="string"&&(r=r.trim()),!(typeof r!="object"&&i.value==r)&&a("update:value",r)}}),n=null}return t}function il(e,t){let n=ye().proxy;const i=n.$props,a=n.$emit,r=e?e.length:0,s=t?t.length:0,c=M({get:()=>{if(!i.value)return"";let u=i.value;return r>0&&u.startsWith(e)&&(u=u.substring(r)),s>0&&u.endsWith(t)&&(u=u.substring(0,u.length-s)),u},set:u=>{if(i.value===u)return;if(u==""){a("update:value","");return}let f=u;r>0&&(f=e+f),s>0&&(f=f+t),a("update:value",f)}});return n=null,c}function rl(e){const t=ge("modal");return t&&e&&(t.ok=e),t}function al(){const e=Rt({});return bt(()=>{const t=n=>{n.data?.type==="IFRAME_PROPS"&&(e.value=n.data.props)};window.addEventListener("message",t),window.parent.postMessage({type:"IFRAME_READY"},"*"),Me(()=>{window.removeEventListener("message",t)})}),M(()=>e.value)}function sl(){return M(()=>window.$wujie?.props||{})}function ol(){return M(()=>window.$wujie?.bus)}function jn(e){return typeof e<"u"}function cl(e){const t=C(e||""),n=C(!1),i=C(!1);return ae(t,a=>{jn(a)&&(i.value=!0,n.value=Kn(a))},{immediate:!!e,flush:"sync"}),{clipboardRef:t,isSuccessRef:n,copiedRef:i}}function Kn(e,{target:t=document.body}={}){const n=document.createElement("textarea"),i=document.activeElement;n.value=e,n.setAttribute("readonly",""),n.style.contain="strict",n.style.position="absolute",n.style.left="-9999px",n.style.fontSize="12pt";const a=document.getSelection();let r;a&&a.rangeCount>0&&(r=a.getRangeAt(0)),t.append(n),n.select(),n.selectionStart=0,n.selectionEnd=e.length;let s=!1;try{s=document.execCommand("copy")}catch(c){throw new Error(c)}return n.remove(),r&&a&&(a.removeAllRanges(),a.addRange(r)),i&&i.focus(),s}const Z={UNAUTHORIZED:401,FORBIDDEN:403,NOT_FOUND:404,INTERNAL_SERVER_ERROR:500,BAD_GATEWAY:502,SERVICE_UNAVAILABLE:503,GATEWAY_TIMEOUT:504};class ll{handle(t){console.error(t)}}class dl{handle(t){console.error(t)}}class ul{handle(t){if(t.type===k.AJAX){new $n().handle(t);return}console.error(t)}}class $n{handle(t){const n=this._extractStatusCode(t.message);if(n)switch(n){case Z.UNAUTHORIZED:this._handleUnauthorized();break;case Z.FORBIDDEN:this._handleForbidden();break;case Z.NOT_FOUND:this._handleNotFound();break;case Z.INTERNAL_SERVER_ERROR:case Z.BAD_GATEWAY:case Z.SERVICE_UNAVAILABLE:case Z.GATEWAY_TIMEOUT:this._handleServerError(n);break;default:this._handleGenericHttpError(t);break}else this._handleGenericHttpError(t)}_extractStatusCode(t){const n=t.match(/HTTP\s+(\d{3})|Business\s+Error\s+\[(\d+)\]/);return n?parseInt(n[1]||n[2],10):null}_handleGenericHttpError(t){t.message.includes("Business Error")?console.debug("Handling business error:",t.message):t.message.includes("Network")?console.debug("Handling network error:",t.message):console.debug("Handling HTTP error:",t.message)}_handleUnauthorized(){console.warn("Unauthorized access, redirecting to login...")}_handleForbidden(){console.warn("Access forbidden")}_handleNotFound(){console.warn("Resource not found")}_handleServerError(t){console.warn(`Server error: ${t}`)}}class tt{static _strategies=new Map;static init(){this.registerStrategy(k.SCRIPT,new ll),this.registerStrategy(k.VUE,new dl),this.registerStrategy(k.PROMISE,new ul),this.registerStrategy(k.AJAX,new $n)}static getStrategy(t){return this._strategies.get(t)}static registerStrategy(t,n){this._strategies.set(t,n)}}o("ErrorStrategyFactory",tt);class G{static _instance;constructor(){this._initializeStrategies()}static getInstance(){return G._instance||(G._instance=new G),G._instance}static init(){G.getInstance()}static handleVueError(t,n,i){const a={type:k.VUE,message:`Vue Error: ${t.message} | Info: ${i}`,stack:t.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(a)}static reportError(t,n=k.SCRIPT){const i={type:n,message:t.message,stack:t.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(i)}_initializeStrategies(){tt.init()}_processError(t){tt.getStrategy(t.type)?.handle(t)}}o("ErrorHandler",G);async function Zn(e){G.init(),e.config.errorHandler=(t,n,i)=>{G.handleVueError(t,n,i)},e.config.warnHandler=(t,n,i)=>{console.warn(`Vue Warning: ${t}`),i&&console.warn("Trace:",i)},window.addEventListener("error",t=>{G.reportError(new Error(t.message),k.SCRIPT)}),window.addEventListener("unhandledrejection",t=>{G.reportError(t.reason,k.PROMISE)})}var J=o("LoginSortTypeEnum",(e=>(e.SYSTEM="SYSTEM",e.THIRD_PARTY="THIRD_PARTY",e))(J||{})),I=o("LoginTypeEnum",(e=>(e.ACCOUNT="ACCOUNT",e.DOMAIN_ACCOUNT="DOMAIN_ACCOUNT",e.MOBILE="MOBILE",e.DINGDING="DINGDING",e.FEISHU="FEISHU",e.QIYEWEIXIN="QIYEWEIXIN",e))(I||{})),p=o("PlatformSettingEnum",(e=>(e.BASIC="BASE_CFG",e.WATERMARK="MARK_CFG",e.SECURITY="SECURITY_CFG",e.LOGIN="LOGIN_CFG",e.THEME="THEME_CFG",e.ORGANIZATION="ORG_CFG",e.APK="APK_CFG",e.DEPLOY="DEPLOY_CFG",e.GLOBAL="GLOBAL_CFG",e))(p||{})),fl=o("PassRule",(e=>(e.NUMBER="NUMBER",e.LOWERCASE="LOWERCASE",e.UPPERCASE="UPPERCASE",e.SPECHARS="SPECHARS",e))(fl||{})),hl=o("KickRuleEnum",(e=>(e.SAME_END="SAME_END",e.DIFFERENT_END="DIFFERENT_END",e))(hl||{})),nt=o("DeployModeEnum",(e=>(e.STANDARD="STANDARD",e.INDEPENDENT_APP="INDEPENDENT_APP",e))(nt||{}));const gl={[I.ACCOUNT]:{icon:"icon-a-Accountnumber",color:"#0E81EC"},[I.DOMAIN_ACCOUNT]:{icon:"icon-a-Domainaccount",color:"#FFAB06"},[I.MOBILE]:{icon:"icon-a-Cellphone",color:"#6A70FE"},[I.DINGDING]:{icon:"DingdingIcon"},[I.FEISHU]:{icon:"FeishuIcon"},[I.QIYEWEIXIN]:{icon:"QiyeweixinIcon"}},Jn=o("SYSTEM_LOGIN_KEYS",[I.ACCOUNT,I.DOMAIN_ACCOUNT,I.MOBILE]),xn=o("OTHER_LOGIN_KEYS",[I.DINGDING,I.FEISHU,I.QIYEWEIXIN]),Ne=o("getLoginTypeOptions",e=>e?e.map(t=>({id:t,label:t,value:t,...gl[t]})):[]),El=o("RELATION_FIELDS",[{label:"extString0_",value:"ext0",type:1},{label:"extString1_",value:"ext1",type:1},{label:"extString2_",value:"ext2",type:1},{label:"extString3_",value:"ext3",type:1},{label:"extString4_",value:"ext4",type:1},{label:"extInt5_",value:"ext5",type:0},{label:"extInt6_",value:"ext6",type:0},{label:"extInt7_",value:"ext7",type:0},{label:"extInt8_",value:"ext8",type:0},{label:"extInt9_",value:"ext9",type:0}]),ml=o("MENU_COLLAPSED_WIDTH",46),Tl=o("MENU_WIDTH_RANGE",[100,1e3]),Al=o("THEME_COLORS",["#026AC8","#0DAA9C"]),Rl=o("WATERMARK_INIT_DATA",{openWatermark:!1,watermarkContent:"custom",fontSize:16,color:"#000000",verticalAlign:"middle",textAlign:"center",text:"${username}",transparent:15,width:1600,height:1080}),Oe=D({copyright:'© 2016-<span class="ownInput">${当前年份}</span> 冠骋信息技术(苏州)有限公司 版权所有',description:"",icon:"",loadingImage:"",logo:"",name:"冠骋云PaaS平台",thumbnail:"",version:"暂未支持"});function bl(e=!0){const t=()=>e?_api.platform.plat.postBase(De({...Oe},"version")):_api.apaas.plat.postBase(De({...Oe},"version"));function n(i,a=!0){const{value:r}=i;if(r)try{Object.assign(Oe,a?JSON.parse(r):r,{version:(void 0).version})}catch(s){console.warn(s)}}return{basicSetting:Oe,setBasicSetting:n,postBasicSetting:t}}const it=D({deployMode:nt.STANDARD}),Sl=M(()=>it.deployMode===nt.INDEPENDENT_APP);function Il(e){const{value:t}=e;if(t)try{Object.assign(it,JSON.parse(t))}catch(n){console.warn(n)}}function Nl(){return{deploySetting:it,setDeploySetting:Il,isIndependentApp:Sl}}const rt=C([I.ACCOUNT]),at=C([]),st=C(Ne(Jn)),ot=C(Ne(xn)),B=D({theme:"full",title:"欢迎登录冠骋云PaaS平台",subtitle:"让数字化赋能客户成功!",logo:"",banner:"",loginModeConfigs:[],openIDOAuthConfigs:[],sortJson:"",defaultAuthType:I.ACCOUNT}),re=D(new Map([[I.ACCOUNT,{address:"",authType:I.ACCOUNT,relationField:"",enabled:0}],[I.DOMAIN_ACCOUNT,{address:"",authType:I.DOMAIN_ACCOUNT,relationField:"",domainSuffix:"",relationFieldName:"",enabled:0}],[I.MOBILE,{smsServiceProvider:"",smsKey:"",smsKeySecret:"",smsTemplateCode:"",smsSignName:"",phoneNumb:"",smsSdkAppId:"",authType:I.MOBILE,enabled:0}],[I.DINGDING,{appId:"",authType:I.DINGDING,secret:"",redirectURL:"",enabled:0}],[I.FEISHU,{appId:"",authType:I.FEISHU,secret:"",redirectURL:"",enabled:0}],[I.QIYEWEIXIN,{appId:"",agentId:"",authType:I.QIYEWEIXIN,secret:"",redirectURL:"",enabled:0,certFileName:""}]]));function Ol(){return{loginSetting:B,postLoginSetting:async()=>{[...rt.value,...at.value].forEach(i=>{const a=re.get(i);a&&(a.enabled=1)}),B.loginModeConfigs=Jn.map(i=>re.get(i)).filter(i=>i!==void 0),B.openIDOAuthConfigs=xn.map(i=>re.get(i)).filter(i=>i!==void 0),B.sortJson=JSON.stringify({[J.SYSTEM]:st.value.map(i=>i.id),[J.THIRD_PARTY]:ot.value.map(i=>i.id)}),await _api.platform.plat.postLogin(B)},setLoginSetting:n=>{if(n&&n.value){const i=JSON.parse(n.value);for(const r in i)r in B&&(B[r]=i[r]);if(fe(i,"sortJson")&&!pe(i.sortJson)){const r=JSON.parse(i.sortJson);fe(r,J.SYSTEM)&&(st.value=Ne(r[J.SYSTEM])),fe(r,J.THIRD_PARTY)&&(ot.value=Ne(r[J.THIRD_PARTY]))}B.loginModeConfigs?.forEach(r=>{re.set(r.authType,{...r,enabled:0})});const a=B.loginModeConfigs?.filter(r=>r.enabled).map(r=>r.authType)||[];a.push(I.ACCOUNT),rt.value=[...new Set(a)],B.openIDOAuthConfigs?.forEach(r=>{re.set(r.authType,{...r,enabled:0})}),at.value=B.openIDOAuthConfigs?.filter(r=>r.enabled).map(r=>r.authType)||[]}},loginModeAuthTypes:rt,openIDOAuthAuthTypes:at,sysLoginSort:st,openIDOAuthAuthSort:ot,loginModeConfig:re}}const x=D({initialPassword:"123456",initialSignPassword:"12345678",enableIdentifier:1,enableDeleteAccount:1,enableDeleteUser:0,requiredFields:[],supportLoginFields:["username_"],extFieldConfigs:[],orgExtFieldConfigs:[]}),ct=C([...El]),zn=C([]);function Ll(e=!0){const t=async()=>{const i=JSON.parse(JSON.stringify(x));e?await _api.platform.plat.postOrg(i):await _api.apaas.plat.postOrg(i)};function n(i){const{value:a}=i;if(a)try{const r=JSON.parse(a);for(const s in r)s=="supportLoginFields"&&(r.supportLoginFields=r.supportLoginFields.filter(c=>c!=="username_"));Object.assign(x,r),x.extFieldConfigs&&x.extFieldConfigs.length&&x.extFieldConfigs.forEach(s=>{ct.value=ct.value.filter(c=>(c.value==s.relationField&&zn.value.push(c),c.value!==s.relationField))}),x.extFieldConfigs=JSON.parse(JSON.stringify(r.extFieldConfigs))}catch(r){console.warn(r)}}return{orgSetting:x,setOrgSetting:n,postOrgSetting:t,relationFields:ct,relationFiledsCopy:zn}}const Le=D({durationHour:2,durationMinute:0,enableChangePassword:1,enableChangeSignPassword:0,enableSignPassword:0,enableKickOut:1,enablePassphrase:1,signEnablePassphrase:1,enableLockAccount:1,expiryDate:30,signExpiryDate:30,firstTimeChangePassword:0,signFirstTimeChangePassword:0,lockTimeout:0,loginKickOutMode:"SAME_END",maxErrorTimes:2,passMinLength:6,signPassMinLength:6,passRule:["NUMBER"],signPassRule:["NUMBER"],signRepeatNum:1,repeatNum:1,timeUnit:"DAYS",signTimeUnit:"DAYS",noOpRetainHour:8,noOpRetainMinute:0,earlyAlarmMinute:5,earlyAlarmSecond:0,inapplicablePerson:[],lockHourTimeout:0,lockMinTimeout:5});function _l(e=!0){const t=async()=>{e?await _api.platform.plat.postSecurity(Le):await _api.apaas.plat.postSecurity(Le)};function n(i){const{value:a}=i;if(a)try{Object.assign(Le,JSON.parse(a))}catch(r){console.warn(r)}}return{securitySetting:Le,postSecuritySetting:t,setSecuritySetting:n}}const _e=D({darkMode:"light",themeColor:"#026AC8",menuMode:"classic",menuWidth:232,menuCollapsible:!0,menuSearchable:!0,menuFilter:!1,showLogo:!0,showBreadcrumb:!1,showBreadcrumbIcon:!1,showTabs:!0,pageProgress:!0,pageLoading:!0,colorMode:"normal"}),lt=C(!1),pl=ml,vl=Tl,Dl=Al,Ml=()=>{_e.colorMode};ae(()=>_e.colorMode,e=>{e&&Ml()});function yl(){const e=async()=>{};function t(i){const{value:a}=i;if(a)try{Object.assign(_e,JSON.parse(a))}catch(r){console.warn(r)}}function n(){lt.value=!lt.value}return{themeSetting:_e,setThemeSetting:t,postThemeSetting:e,menuCollapsed:lt,toggleMenuCollapsed:n,menuCollapsedWidth:pl,menuWidthRange:vl,themeColors:Dl}}const dt=D({...Rl});function Cl(){const e=async()=>{const n=JSON.stringify(dt);await _api.platform.plat.postWatermark({value:n})};function t(n){const{value:i}=n;if(i)try{Object.assign(dt,JSON.parse(i))}catch(a){console.warn(a)}}return{watermarkSetting:dt,postWatermarkSetting:e,setWatermarkSetting:t}}const Qn=D({});function Ul(e){Object.assign(Qn,e)}function Pl(){return{projectSetting:Qn,setProjectConfig:Ul}}const wl=o("usePlatformConfigStore",Q("platform-config",()=>{const e=bl(),t=Ol(),n=Ll(),i=_l(),a=yl(),r=Cl(),s=Nl(),c=Pl();async function u(){const l=await _api.platform.plat.getList(),d={};l&&l.length>0&&l.forEach(E=>{if(E.value)try{d[E.configEnum]=JSON.parse(E.value)}catch(m){console.warn(`${E.configEnum}配置解析失败`,m,E)}}),d[p.BASIC]&&e.setBasicSetting(d[p.BASIC]),d[p.LOGIN]&&t.setLoginSetting(d[p.LOGIN]),d[p.ORGANIZATION]&&n.setOrgSetting(d[p.ORGANIZATION]),d[p.SECURITY]&&i.setSecuritySetting(d[p.SECURITY]),d[p.THEME]&&a.setThemeSetting(d[p.THEME]),d[p.WATERMARK]&&r.setWatermarkSetting(d[p.WATERMARK]),d[p.DEPLOY]&&s.setDeploySetting(d[p.DEPLOY]),console.debug("平台配置初始化完成",d)}async function f(){const l=await _api.apaas.basicConfig.getDetail({configEnum:p.THEME});l&&a.setThemeSetting(l)}return{init:u,renderInit:f,...e,...t,...n,...i,...a,...r,...s,...c}})),fu=o("useUserStore",Q("user",{state:()=>({userInfo:{},roleList:[],sessionTimeout:!1,lastUpdateTime:0}),getters:{getUserInfo(e){return e.userInfo}},actions:{async login(e,{hasError:t}={}){try{const n=await Fl(e,t),{token:i,signWay:a}=n;return sessionStorage.setItem("signWay",a),xt(i),this.afterLoginAction()}catch(n){return Promise.reject(n)}},async getUserInfoAction(e){if(!me&&!e)return null;const t=await _api.platform.user.getInfo({headers:{Token:e}});return this.setUserInfo(t),t},async afterLoginSingleApp(){},async afterLoginAction(){if(!me)return null},async logout(){await Gl()},async setUserInfo(e){this.userInfo={...e,minioDomain:"/minio"},this.lastUpdateTime=new Date().getTime()},async updateUserInfo(e){const t={...this.userInfo,...e};this.setUserInfo(t)}}}));async function Fl(e,{hasError:t=!0}={}){const n=await Qe();return await _api.platform.login.postSign(e,{headers:{browser:n,"Auth-Code":e.authCode,hasError:t}})}async function Gl(){const e=sessionStorage.getItem("currentPlatOrAppId"),t=_gct.env.getEnv(),n=await Qe(),i={appId:e&&JSON.parse(e).appId,platform:e&&JSON.parse(e).type,env:t},a=Cn();await _api.platform.login.getSignOut(i,{headers:{browser:n,pagetag:a}})}const hu=o("useTenantStore",Q("tenant",{state:()=>({tenantId:"",tenantUserInfo:{},tenantUserPermissions:{}}),actions:{setTenant(e){this.tenantId=e},async getTenantUserInfoAction(){if(!this.tenantId)return;const e=await _api.platform.tenant.getUserInfo();return this.tenantUserInfo=e,e}}})),gu=o("usePermissionStore",Q("permission",{state:()=>({userPermissions:{appSuperAdmin:0,permissions:{}}}),getters:{hasAllPermissions(e){return!!e.userPermissions.appSuperAdmin||!!e.userPermissions.permissions["POINT.*"]}},actions:{getPermissionByKey(e,t){if(this.hasAllPermissions)return!0;if(!t)return this.userPermissions.permissions[e];const n=`${e}.${t}`,i=`${e}.*`;return this.userPermissions.permissions[n]||this.userPermissions.permissions[i]},async initPermission(){const e=await _api.apaas.designerCommon.getUserInfo();Object.assign(this.userPermissions,{...e,permissions:Object.fromEntries((e?.permissions??[]).map(t=>[t,!0]))})}}}));async function Bl(e){e.provide(Vt,e),Hn(e),Wc(e)}async function kl(e){await Zn(e),Lt.use(tn),await _gct.init(),await wl().init()}function Hl(){if(window._gct){console.warn("核心包已安装,请勿重复安装!");return}console.info("核心包安装成功!"),window._gct=new Wn,Object.defineProperty(window._gct,"api",{get(){return Ce}}),Object.defineProperty(window,"_api",{get(){return Ce}})}Hl()})}}));