@gct-paas/core 0.1.4-dev.6 → 0.1.4-dev.8

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 (336) hide show
  1. package/dist/index.esm.min.mjs +6103 -0
  2. package/dist/index.min.cjs +13 -14
  3. package/dist/index.system.min.js +13 -14
  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/form-container-type/form-container-type.mjs +0 -1
  9. package/es/constants/index.d.ts +4 -0
  10. package/es/constants/index.mjs +2 -7
  11. package/es/controller/edit-form/edit-form.controller.mjs +0 -1
  12. package/es/controller/editor/color-editor.controller.mjs +0 -1
  13. package/es/controller/editor/length-unit-editor.controller.mjs +0 -1
  14. package/es/controller/editor-item/editor-item.controller.mjs +0 -1
  15. package/es/controller/form/form.controller.mjs +5 -4
  16. package/es/controller/form-collapse/form-collapse.controller.mjs +4 -3
  17. package/es/controller/form-collapse-pane/form-collapse-pane.controller.mjs +4 -3
  18. package/es/controller/form-edit-item/form-edit-item.controller.d.ts +1 -0
  19. package/es/controller/form-edit-item/form-edit-item.controller.mjs +6 -2
  20. package/es/controller/form-group/form-group.controller.mjs +4 -3
  21. package/es/controller/form-item/form-item.controller.d.ts +1 -0
  22. package/es/controller/form-item/form-item.controller.mjs +7 -3
  23. package/es/controller/form-item-basic/form-item-basic.controller.mjs +3 -2
  24. package/es/controller/form-item-hidden/form-item-hidden.controller.mjs +0 -1
  25. package/es/controller/form-tab/form-tab.controller.mjs +4 -3
  26. package/es/controller/form-tab-pane/form-tab-pane.controller.mjs +4 -3
  27. package/es/controller/gct-form/gct-form.controller.mjs +5 -4
  28. package/es/create-app-vue.mjs +5 -5
  29. package/es/enums/app-designer/index.d.ts +13 -1
  30. package/es/enums/app-designer/index.mjs +8 -2
  31. package/es/enums/appEnum.d.ts +17 -66
  32. package/es/enums/appEnum.mjs +18 -14
  33. package/es/enums/appStateEnum.mjs +0 -1
  34. package/es/enums/authActionEnum.mjs +0 -1
  35. package/es/enums/breakpointEnum.mjs +0 -1
  36. package/es/enums/cacheEnum.mjs +0 -1
  37. package/es/enums/designEnum.mjs +0 -1
  38. package/es/enums/exceptionEnum.mjs +0 -1
  39. package/es/enums/globalEnum.d.ts +38 -0
  40. package/es/enums/globalEnum.mjs +25 -0
  41. package/es/enums/httpEnum.mjs +0 -1
  42. package/es/enums/index.d.ts +13 -0
  43. package/es/enums/index.mjs +15 -20
  44. package/es/enums/menuEnum.mjs +0 -1
  45. package/es/enums/page-designer/designer.d.ts +17 -3
  46. package/es/enums/page-designer/designer.mjs +85 -6
  47. package/es/enums/page-designer/panel.mjs +0 -1
  48. package/es/enums/page-designer/toolkit.mjs +0 -1
  49. package/es/enums/page-designer/widget.d.ts +2 -1
  50. package/es/enums/page-designer/widget.mjs +3 -3
  51. package/es/enums/pageEnum.mjs +0 -1
  52. package/es/enums/plugin-enum.mjs +0 -1
  53. package/es/enums/processEnum.mjs +0 -1
  54. package/es/enums/roleEnum.mjs +0 -1
  55. package/es/enums/sizeEnum.mjs +0 -1
  56. package/es/global/gct/gct.d.ts +3 -14
  57. package/es/global/gct/gct.mjs +20 -16
  58. package/es/hooks/index.d.ts +2 -0
  59. package/es/hooks/use-app-inst/use-app-inst.d.ts +8 -0
  60. package/es/hooks/use-app-inst/use-app-inst.mjs +8 -0
  61. package/es/hooks/use-form/use-form.mjs +0 -1
  62. package/es/hooks/use-gct-form-value/use-gct-form-value.d.ts +1 -1
  63. package/es/hooks/use-gct-form-value/use-gct-form-value.mjs +0 -4
  64. package/es/hooks/use-modal/use-modal.mjs +0 -1
  65. package/es/hooks/use-namespace/use-namespace.mjs +11 -2
  66. package/es/hooks/use-sub-app-utils/use-sub-app-utils.d.ts +31 -0
  67. package/es/hooks/use-sub-app-utils/use-sub-app-utils.mjs +30 -0
  68. package/es/hooks/useCopyToClipboard.d.ts +3 -3
  69. package/es/hooks/useCopyToClipboard.mjs +0 -1
  70. package/es/index.d.ts +5 -1
  71. package/es/index.mjs +61 -42
  72. package/es/interface/controller/form-edit-item/form-edit-item.controller.d.ts +5 -0
  73. package/es/interface/controller/index.d.ts +0 -1
  74. package/es/interface/form/i-editor/i-editor-basic.d.ts +2 -2
  75. package/es/interface/form/i-editor/i-model-field-select-editor.d.ts +18 -0
  76. package/es/interface/form/i-form/i-form-collapse-pane.d.ts +4 -0
  77. package/es/interface/form/i-form/i-form-item-basic.d.ts +1 -1
  78. package/es/interface/form/i-form/i-form-tab-pane.d.ts +4 -0
  79. package/es/interface/form/index.d.ts +1 -0
  80. package/es/interface/i-app-context/i-app-context.d.ts +34 -0
  81. package/es/interface/i-field-code-chain/i-field-code-chain.d.ts +17 -0
  82. package/es/interface/i-global-var/i-global-var.d.ts +15 -0
  83. package/es/interface/i-mobile-home-menu-item/i-mobile-home-menu-item.d.ts +94 -0
  84. package/es/interface/i-pinia-action/i-global-actions.d.ts +8 -20
  85. package/es/interface/i-pinia-getter/i-global-getters.d.ts +1 -1
  86. package/es/interface/i-pinia-state/i-global-state.d.ts +7 -14
  87. package/es/interface/index.d.ts +5 -2
  88. package/es/interface/open-util/i-open-window-options/i-open-window-options.d.ts +59 -0
  89. package/es/interface/state/index.d.ts +0 -1
  90. package/es/locale/index.mjs +1 -2
  91. package/es/modules/env-manager/env-manager.const.mjs +0 -1
  92. package/es/modules/env-manager/env-manager.interface.mjs +0 -1
  93. package/es/modules/env-manager/env-manager.mjs +7 -8
  94. package/es/modules/error-handler/error-handler.const.mjs +1 -30
  95. package/es/modules/error-handler/error-strategy.mjs +4 -2
  96. package/es/modules/error-handler/index.mjs +0 -1
  97. package/es/modules/platform-config/constants/index.d.ts +7 -0
  98. package/es/modules/platform-config/constants/login.const.d.ts +15 -0
  99. package/es/modules/platform-config/constants/login.const.mjs +50 -0
  100. package/es/modules/platform-config/constants/org.const.d.ts +9 -0
  101. package/es/modules/platform-config/constants/org.const.mjs +54 -0
  102. package/es/modules/platform-config/constants/theme.const.d.ts +9 -0
  103. package/es/modules/platform-config/constants/theme.const.mjs +5 -0
  104. package/es/modules/platform-config/constants/watermark.const.d.ts +16 -0
  105. package/es/modules/platform-config/constants/watermark.const.mjs +14 -0
  106. package/es/modules/platform-config/enums/deploy.enum.d.ts +10 -0
  107. package/es/modules/platform-config/enums/deploy.enum.mjs +7 -0
  108. package/es/modules/platform-config/enums/index.d.ts +6 -0
  109. package/es/modules/platform-config/{constants.d.ts → enums/login.enum.d.ts} +3 -7
  110. package/es/modules/platform-config/enums/login.enum.mjs +16 -0
  111. package/es/modules/platform-config/enums/platform.enum.d.ts +27 -0
  112. package/es/modules/platform-config/{types.mjs → enums/platform.enum.mjs} +0 -1
  113. package/es/modules/platform-config/index.d.ts +6 -17
  114. package/es/modules/platform-config/interfaces/global-setting.interface.d.ts +7 -0
  115. package/es/modules/platform-config/interfaces/index.d.ts +7 -0
  116. package/es/modules/platform-config/interfaces/login-config.interface.d.ts +17 -0
  117. package/es/modules/platform-config/interfaces/platform-map.interface.d.ts +8 -0
  118. package/es/modules/platform-config/interfaces/theme-setting.interface.d.ts +30 -0
  119. package/es/modules/platform-config/store.d.ts +221 -0
  120. package/es/modules/platform-config/store.mjs +78 -0
  121. package/es/modules/platform-config/useBasicSetting.d.ts +6 -2
  122. package/es/modules/platform-config/useBasicSetting.mjs +4 -15
  123. package/es/modules/platform-config/useDeploySetting.d.ts +9 -4
  124. package/es/modules/platform-config/useDeploySetting.mjs +4 -9
  125. package/es/modules/platform-config/useLoginSetting.d.ts +8 -10
  126. package/es/modules/platform-config/useLoginSetting.mjs +24 -30
  127. package/es/modules/platform-config/useOrgSetting.d.ts +19 -1
  128. package/es/modules/platform-config/useOrgSetting.mjs +9 -64
  129. package/es/modules/platform-config/useProjectSetting.d.ts +12 -0
  130. package/es/modules/platform-config/useProjectSetting.mjs +11 -0
  131. package/es/modules/platform-config/useSecuritySetting.d.ts +5 -1
  132. package/es/modules/platform-config/useSecuritySetting.mjs +0 -11
  133. package/es/modules/platform-config/useThemeSetting.d.ts +7 -4
  134. package/es/modules/platform-config/useThemeSetting.mjs +5 -14
  135. package/es/modules/platform-config/useWatermarkSetting.d.ts +4 -1
  136. package/es/modules/platform-config/useWatermarkSetting.mjs +2 -24
  137. package/es/modules/user-stores/index.d.ts +3 -0
  138. package/es/modules/user-stores/store/permission.store.d.ts +21 -0
  139. package/es/modules/user-stores/store/permission.store.mjs +38 -0
  140. package/es/modules/user-stores/store/tenant.store.d.ts +9 -0
  141. package/es/modules/user-stores/store/tenant.store.mjs +24 -0
  142. package/es/modules/user-stores/store/user.store.d.ts +154 -0
  143. package/es/modules/user-stores/store/user.store.mjs +100 -0
  144. package/es/modules/user-stores/types/permission.d.ts +1 -0
  145. package/es/modules/user-stores/types/tenant.d.ts +1 -0
  146. package/es/modules/user-stores/types/user.d.ts +14 -0
  147. package/es/register/editor-register/editor-register.d.ts +5 -13
  148. package/es/register/editor-register/editor-register.mjs +8 -17
  149. package/es/register/form-item-register/form-item-register.d.ts +4 -15
  150. package/es/register/form-item-register/form-item-register.mjs +7 -17
  151. package/es/register/index.d.ts +18 -1
  152. package/es/register/render-register/render-register.mjs +0 -1
  153. package/es/router/index.mjs +0 -1
  154. package/es/state/form/form.state.mjs +0 -1
  155. package/es/state/form-collapse/form-collapse.state.mjs +0 -1
  156. package/es/state/form-collapse-pane/form-collapse-pane.state.mjs +0 -1
  157. package/es/state/form-edit-item/form-edit-item.state.mjs +0 -1
  158. package/es/state/form-group/form-group.state.mjs +0 -1
  159. package/es/state/form-item/form-item.state.mjs +0 -1
  160. package/es/state/form-item-basic/form-item-basic.state.mjs +0 -1
  161. package/es/state/form-tab/form-tab.state.mjs +0 -1
  162. package/es/state/form-tab-pane/form-tab-pane.state.mjs +0 -1
  163. package/es/state/global-pinia-state/global-pinia-state.d.ts +8 -25
  164. package/es/state/global-pinia-state/global-pinia-state.mjs +30 -16
  165. package/es/store/global-store.d.ts +1 -0
  166. package/es/store/global-store.mjs +34 -32
  167. package/es/store/index.d.ts +2 -3
  168. package/es/store/index.mjs +0 -1
  169. package/es/types/index.d.ts +14 -3
  170. package/es/utils/axios/interceptors.mjs +3 -23
  171. package/es/utils/deviceFingerprint.d.ts +17 -0
  172. package/es/utils/deviceFingerprint.mjs +73 -0
  173. package/es/utils/dictionary/dictionary.mjs +0 -1
  174. package/es/utils/i18n/index.d.ts +2 -1
  175. package/es/utils/i18n/index.mjs +3 -4
  176. package/es/utils/index.d.ts +11 -2
  177. package/es/utils/linked-list/linked-list.d.ts +72 -0
  178. package/es/utils/linked-list/linked-list.mjs +119 -0
  179. package/es/utils/linked-node/linked-node.d.ts +31 -0
  180. package/es/utils/linked-node/linked-node.mjs +32 -0
  181. package/es/utils/mitt/mitt.d.ts +1 -0
  182. package/es/utils/mitt/mitt.mjs +5 -0
  183. package/es/utils/model-loader/model-loader.d.ts +118 -0
  184. package/es/utils/model-loader/model-loader.mjs +326 -0
  185. package/es/utils/namespace/namespace.mjs +0 -1
  186. package/es/utils/plugin-static-resource/plugin-static-resource.mjs +0 -1
  187. package/es/utils/props/gct-form-item/gct-form-item.props.d.ts +63 -0
  188. package/es/utils/props/gct-form-item/gct-form-item.props.mjs +66 -0
  189. package/es/utils/props/index.d.ts +1 -0
  190. package/es/utils/style/index.d.ts +16 -0
  191. package/es/utils/style/index.mjs +141 -0
  192. package/es/utils/tools/tools.d.ts +13 -10
  193. package/es/utils/tools/tools.mjs +19 -11
  194. package/es/utils/treeHelper/treeHelper.d.ts +117 -0
  195. package/es/utils/treeHelper/treeHelper.mjs +220 -0
  196. package/es/utils/util.d.ts +39 -0
  197. package/es/utils/util.mjs +40 -0
  198. package/es/utils/value-helper/value-helper.d.ts +49 -0
  199. package/es/utils/value-helper/value-helper.mjs +109 -0
  200. package/es/utils/width-install/width-install.mjs +0 -2
  201. package/package.json +34 -36
  202. package/es/controller/index.mjs +0 -17
  203. package/es/enums/page-designer/index.mjs +0 -6
  204. package/es/global/index.mjs +0 -3
  205. package/es/hooks/index.mjs +0 -7
  206. package/es/interface/controller/edit-form/edit-form.controller.mjs +0 -1
  207. package/es/interface/controller/editor/i-color-editor.controller.mjs +0 -1
  208. package/es/interface/controller/editor/i-length-unit-editor.controller.mjs +0 -1
  209. package/es/interface/controller/editor-item/editor-item.controller.mjs +0 -1
  210. package/es/interface/controller/form/form.controller.mjs +0 -3
  211. package/es/interface/controller/form-collapse/form-collapse.controller.mjs +0 -1
  212. package/es/interface/controller/form-collapse-pane/form-collapse-pane.controller.mjs +0 -1
  213. package/es/interface/controller/form-edit-item/form-edit-item.controller.mjs +0 -1
  214. package/es/interface/controller/form-group/form-group.controller.mjs +0 -1
  215. package/es/interface/controller/form-hidden-item/form-hidden-item.controller.mjs +0 -1
  216. package/es/interface/controller/form-item/form-item.controller.mjs +0 -1
  217. package/es/interface/controller/form-item-basic/form-item-basic.controller.mjs +0 -1
  218. package/es/interface/controller/form-tab/form-tab.controller.mjs +0 -1
  219. package/es/interface/controller/form-tab-pane/form-tab-pane.controller.mjs +0 -1
  220. package/es/interface/controller/i-designer-controller.d.ts +0 -116
  221. package/es/interface/controller/i-designer-controller.mjs +0 -1
  222. package/es/interface/controller/index.mjs +0 -1
  223. package/es/interface/events/form/i-form.event.mjs +0 -1
  224. package/es/interface/events/index.mjs +0 -1
  225. package/es/interface/form/i-editor/i-check-switch.mjs +0 -3
  226. package/es/interface/form/i-editor/i-checkbox-editor.mjs +0 -3
  227. package/es/interface/form/i-editor/i-color-editor.mjs +0 -3
  228. package/es/interface/form/i-editor/i-editor-basic.mjs +0 -1
  229. package/es/interface/form/i-editor/i-icon-select-editor.mjs +0 -3
  230. package/es/interface/form/i-editor/i-info-editor.mjs +0 -3
  231. package/es/interface/form/i-editor/i-length-unit-editor.mjs +0 -3
  232. package/es/interface/form/i-editor/i-number-editor.mjs +0 -3
  233. package/es/interface/form/i-editor/i-picker-editor.mjs +0 -3
  234. package/es/interface/form/i-editor/i-radio-editor.mjs +0 -3
  235. package/es/interface/form/i-editor/i-select-editor.mjs +0 -3
  236. package/es/interface/form/i-editor/i-span-editor.mjs +0 -3
  237. package/es/interface/form/i-editor/i-switch-editor.mjs +0 -3
  238. package/es/interface/form/i-editor/i-text-editor.mjs +0 -3
  239. package/es/interface/form/i-editor/i-textarea-editor.mjs +0 -3
  240. package/es/interface/form/i-form/i-edit-form.mjs +0 -1
  241. package/es/interface/form/i-form/i-form-collapse-pane.mjs +0 -1
  242. package/es/interface/form/i-form/i-form-collapse.mjs +0 -1
  243. package/es/interface/form/i-form/i-form-container.mjs +0 -1
  244. package/es/interface/form/i-form/i-form-edit-item.mjs +0 -1
  245. package/es/interface/form/i-form/i-form-group-container.mjs +0 -1
  246. package/es/interface/form/i-form/i-form-group.mjs +0 -1
  247. package/es/interface/form/i-form/i-form-hidden-item.mjs +0 -1
  248. package/es/interface/form/i-form/i-form-item-basic.mjs +0 -1
  249. package/es/interface/form/i-form/i-form-item.mjs +0 -1
  250. package/es/interface/form/i-form/i-form-tab-pane.mjs +0 -1
  251. package/es/interface/form/i-form/i-form-tab.mjs +0 -1
  252. package/es/interface/form/i-form/i-form.mjs +0 -1
  253. package/es/interface/form/index.mjs +0 -1
  254. package/es/interface/hooks/i-designer-hooks.d.ts +0 -26
  255. package/es/interface/hooks/i-designer-hooks.mjs +0 -3
  256. package/es/interface/hooks/index.d.ts +0 -1
  257. package/es/interface/hooks/index.mjs +0 -1
  258. package/es/interface/i-dictionary/i-dictionary-item.mjs +0 -1
  259. package/es/interface/i-dictionary/i-dictionary.mjs +0 -1
  260. package/es/interface/i-import-style-map/i-import-style-map.mjs +0 -1
  261. package/es/interface/i-message-util/i-message-util.mjs +0 -1
  262. package/es/interface/i-modal/i-modal.mjs +0 -3
  263. package/es/interface/i-modal-data/i-modal-data.mjs +0 -1
  264. package/es/interface/i-pinia-action/i-global-actions.mjs +0 -1
  265. package/es/interface/i-pinia-getter/i-global-getters.mjs +0 -1
  266. package/es/interface/i-pinia-state/i-global-state.mjs +0 -1
  267. package/es/interface/index.mjs +0 -1
  268. package/es/interface/layout/i-flex-layout/i-flex-container.mjs +0 -1
  269. package/es/interface/layout/i-flex-layout/i-flex-item.mjs +0 -1
  270. package/es/interface/layout/i-grid-layout/i-grid-container.mjs +0 -1
  271. package/es/interface/layout/i-grid-layout/i-grid-item-span.mjs +0 -1
  272. package/es/interface/layout/i-grid-layout/i-grid-item.mjs +0 -1
  273. package/es/interface/layout/i-layout-basis/i-layout-container-basis.mjs +0 -1
  274. package/es/interface/layout/index.mjs +0 -1
  275. package/es/interface/low-code-types/index.d.ts +0 -4
  276. package/es/interface/low-code-types/index.mjs +0 -5
  277. package/es/interface/low-code-types/modal-types.d.ts +0 -67
  278. package/es/interface/low-code-types/modal-types.mjs +0 -3
  279. package/es/interface/low-code-types/model/index.d.ts +0 -5338
  280. package/es/interface/low-code-types/model/index.mjs +0 -1
  281. package/es/interface/low-code-types/schema/index.d.ts +0 -12
  282. package/es/interface/low-code-types/schema/index.mjs +0 -1
  283. package/es/interface/low-code-types/widget-basic-types.d.ts +0 -667
  284. package/es/interface/low-code-types/widget-basic-types.mjs +0 -3
  285. package/es/interface/provider/i-editor-provider/i-editor-provider.mjs +0 -1
  286. package/es/interface/provider/i-form-item-provider/i-form-item-provider.mjs +0 -1
  287. package/es/interface/provider/i-provider-basic/i-provider-basic.mjs +0 -1
  288. package/es/interface/provider/index.mjs +0 -1
  289. package/es/interface/state/form/form.state.mjs +0 -1
  290. package/es/interface/state/form-collapse/form-collapse.state.mjs +0 -1
  291. package/es/interface/state/form-collapse-pane/form-collapse-pane.state.mjs +0 -1
  292. package/es/interface/state/form-edit-item/form-edit-item.state.mjs +0 -1
  293. package/es/interface/state/form-group/form-group.state.mjs +0 -1
  294. package/es/interface/state/form-hidden-item/form-hidden-item.state.mjs +0 -1
  295. package/es/interface/state/form-item/form-item.state.mjs +0 -1
  296. package/es/interface/state/form-item-basic/form-item-basic.state.mjs +0 -1
  297. package/es/interface/state/form-tab/form-tab.state.mjs +0 -1
  298. package/es/interface/state/form-tab-pane/form-tab-pane.state.mjs +0 -1
  299. package/es/interface/state/i-designer-state.d.ts +0 -27
  300. package/es/interface/state/i-designer-state.mjs +0 -1
  301. package/es/interface/state/index.mjs +0 -1
  302. package/es/interface/style/i-border.mjs +0 -1
  303. package/es/interface/style/i-font.mjs +0 -1
  304. package/es/interface/style/i-margin.mjs +0 -1
  305. package/es/interface/style/i-padding.mjs +0 -1
  306. package/es/interface/style/i-position.mjs +0 -1
  307. package/es/interface/style/i-spacing.mjs +0 -1
  308. package/es/interface/style/index.mjs +0 -1
  309. package/es/modules/api-service/api-manage.d.ts +0 -26
  310. package/es/modules/api-service/api-manage.mjs +0 -33
  311. package/es/modules/api-service/api-service.d.ts +0 -96
  312. package/es/modules/api-service/api-service.interface.d.ts +0 -159
  313. package/es/modules/api-service/api-service.interface.mjs +0 -4
  314. package/es/modules/api-service/api-service.mjs +0 -173
  315. package/es/modules/api-service/http.enum.d.ts +0 -76
  316. package/es/modules/api-service/http.enum.mjs +0 -63
  317. package/es/modules/api-service/http.util.d.ts +0 -113
  318. package/es/modules/api-service/http.util.mjs +0 -160
  319. package/es/modules/api-service/index.d.ts +0 -8
  320. package/es/modules/api-service/index.mjs +0 -13
  321. package/es/modules/env-manager/index.mjs +0 -5
  322. package/es/modules/error-handler/error-handler.interface.mjs +0 -1
  323. package/es/modules/platform-config/constants.mjs +0 -63
  324. package/es/modules/platform-config/index.mjs +0 -17
  325. package/es/modules/platform-config/types.d.ts +0 -67
  326. package/es/provider/i-designer-provider/i-designer-provider.d.ts +0 -102
  327. package/es/provider/i-designer-provider/i-designer-provider.mjs +0 -1
  328. package/es/provider/index.d.ts +0 -1
  329. package/es/provider/index.mjs +0 -1
  330. package/es/register/designer-register/designer-register.d.ts +0 -53
  331. package/es/register/designer-register/designer-register.mjs +0 -68
  332. package/es/register/index.mjs +0 -6
  333. package/es/state/index.mjs +0 -12
  334. package/es/utils/index.mjs +0 -10
  335. package/es/utils/plugin-pkg-util/plugin-pkg-util.d.ts +0 -96
  336. package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +0 -260
@@ -1,15 +1,14 @@
1
- System.register(["pinia","lodash-es","axios","vue-i18n","vue-router","vue","qs"],(function(x,Id){"use strict";var wt,kt,Gt,Et,Ne,Ht,Kt,zt,Vt,Wt,qt,Xt,Re,$t,Bt,Se,Ct,Te,jt,Zt;return{setters:[K=>{wt=K.defineStore,kt=K.createPinia,Gt=K.setActivePinia},K=>{Et=K.mergeWith,Ne=K.cloneDeep,Ht=K.unionWith,Kt=K.isEqual},K=>{zt=K.AxiosHeaders,Vt=K.default},K=>{Wt=K.createI18n},K=>{qt=K.createRouter,Xt=K.createWebHashHistory},K=>{Re=K.reactive,$t=K.onUnmounted,Bt=K.inject,Se=K.computed,Ct=K.getCurrentInstance,Te=K.ref,jt=K.watch},K=>{Zt=K.default}],execute:(function(){x({copyTextToClipboard:gs,createAppVue:nd,deepMerge:as,default:Ds,getPathQuery:es,getTenant:A0,getTimezone:ts,getToken:Ja,install:Ds,interceptors:ss,isDef:fs,setTenant:E0,setToken:Ya,t:o0,useCopyToClipboard:od,useEditFormController:K0,useForm:ms,useFormController:z0,useFormItemController:V0,useGctFormValue:td,useGctFormValueByText:ad,useModal:sd,useNamespace:rd,widthEditorInstall:C0});const K=x("SIDE_BAR_MINI_WIDTH",48),bd=x("SIDE_BAR_SHOW_TIT_MINI_WIDTH",80);var Rs=x("ContentEnum",(e=>(e.FULL="full",e.FIXED="fixed",e))(Rs||{})),Ss=x("ThemeEnum",(e=>(e.DARK="dark",e.LIGHT="light",e))(Ss||{})),Ts=x("SettingButtonPositionEnum",(e=>(e.AUTO="auto",e.HEADER="header",e.FIXED="fixed",e))(Ts||{})),Fs=x("SessionTimeoutProcessingEnum",(e=>(e[e.ROUTE_JUMP=0]="ROUTE_JUMP",e[e.PAGE_COVERAGE=1]="PAGE_COVERAGE",e))(Fs||{})),Ps=x("PermissionModeEnum",(e=>(e.ROLE="ROLE",e.BACK="BACK",e.ROUTE_MAPPING="ROUTE_MAPPING",e.PLATFORM_ROLE="PLATFORM_ROLE",e))(Ps||{})),Os=x("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))(Os||{})),fe=x("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))(fe||{})),Ms=x("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))(Ms||{})),w=x("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))(w||{})),Us=x("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))(Us||{})),ws=x("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))(ws||{})),ks=x("FIELD_TYPE_TRACE",(e=>(e.MATERIAL_NO="material_no",e.PRODUCT="product",e.DEVICE="device",e))(ks||{}));const Ld=x("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 Gs=x("CreateType",(e=>(e.SYSTEM="SYSTEM",e.USER_DEFINED="USER_DEFINED",e.BUILTIN="BUILTIN",e.CUSTOM="CUSTOM",e.PROCESS="PROCESS",e))(Gs||{})),Hs=x("MenuType",(e=>(e.CATALOG="CATALOG",e.STANDARD="STANDARD",e.LINK="LINK",e))(Hs||{})),Ks=x("OpenMode",(e=>(e.PRESENT="PRESENT",e.IFRAME="IFRAME",e.NEW="NEW",e))(Ks||{})),zs=x("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))(zs||{}));const _d=x("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 Vs=x("AggTypes",(e=>(e.COUNT="COUNT",e.SUM="SUM",e.MAX="MAX",e.MIN="MIN",e.AVG="AVG",e))(Vs||{})),Ws=x("NodesConfigTypeEnum",(e=>(e.SPEC="spec",e.SUB_WORKFLOW="sub_workflow",e))(Ws||{})),qs=x("selectionTypeEnums",(e=>(e.None="none",e.SingleChoice="gct_radio",e.MultipleChoice="checkbox",e))(qs||{})),Xs=x("UniqueConstraintType",(e=>(e.NONE="NONE",e.GLOBAL="GLOBAL",e.LEVEL="LEVEL",e.LOGIC="LOGIC",e))(Xs||{})),$s=x("MessageType",(e=>(e.ALL="all",e.UNREAD="unread",e))($s||{})),js=x("WorkbenchType",(e=>(e.TEST="myTestApp",e.QUICK="quickAccess",e.MY="myApp",e))(js||{})),Zs=x("PersonalCenterType",(e=>(e.PROFILE="profile",e.GENDER="gender",e.ENTERPRISE="enterprise",e))(Zs||{})),Js=x("GENDER_TYPE",(e=>(e.FEMALE="female",e.MALE="male",e.PRIVARY="privary",e))(Js||{})),Ys=x("TODO_TYPE",(e=>(e.TODO="todo",e.APPLICATION="application",e.DONE="done",e.DELEGATE="delegate",e))(Ys||{}));const Nd=x("SHOW_FIELDTYPES",[w.TEXT,w.LONG_TEXT,w.LONG,w.INTEGER,w.DECIMAL,w.DOUBLE,w.SERIAL]);var er=x("UserServiceType",(e=>(e.SCRIPT_SERVICE="SCRIPT_SERVICE",e.SQL_SERVICE="SQL_SERVICE",e.SO_SERVICE="SO_SERVICE",e.BUILTIN_SERVICE="SYS_BUILTIN",e))(er||{})),tr=x("EntityModelCategoryEnum",(e=>(e.ENTITY="entity",e.DATA="data",e.VIEW="view",e))(tr||{})),ar=x("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))(ar||{})),sr=x("FieldDefaultValueTypeEnum",(e=>(e.NONE="NONE",e.FIXED="FIXED",e.SYS_VAR="SYS_VAR",e))(sr||{})),rr=x("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))(rr||{})),or=x("scriptTypeEnum",(e=>(e.EVENT="event",e.BUSINESSSERVICE="businessService",e.TIMER="timer",e))(or||{})),hr=x("PanelEnum",(e=>(e.PAGE="page",e.HISTORY="history",e.GLOBAL="global",e.WIDGET="widget",e.CHANGE_DESIGN="changeDesign",e))(hr||{})),dr=x("Postion",(e=>(e.STATIC="static",e.RELATIVE="relative",e.ABSOLUTE="absolute",e.FIXED="fixed",e.STICKY="sticky",e))(dr||{})),ir=x("BorderStyle",(e=>(e.NONE="none",e.SOLID="solid",e.DOTTED="dotted",e.DASHED="dashed",e.DOUBLE="double",e))(ir||{})),lr=x("TextAlign",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.JUSTIFY="justify",e))(lr||{})),ur=x("TextDecoration",(e=>(e.LINETHROUGH="line-through",e.UNDERLINE="underline",e.NONE="none",e))(ur||{})),pr=x("EventCategory",(e=>(e.INNER="inner",e.JS="js",e.LO="lo",e))(pr||{})),nr=x("PropGroup",(e=>(e.BASIC="basic",e.ADVANCED="advance",e.DISPLAY="display",e.LABEL="label",e.VUE3="vue3",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.TABLESELECT_CONFIG="tableSelect",e.GENRADIO="genRadio",e.GENCHECKBOX="genCheckbox",e.GENSWITCH="genSwitch",e.OPTIONS="options",e.COLLAPSE="collapse",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))(nr||{})),mr=x("StyleGroup",(e=>(e.LAYOUT="layout",e.STYLE="style",e.BACKGROUND="background",e.MARGIN="margin",e.BORDER="border",e.HEADER="header",e))(mr||{})),fr=x("tagEnum",(e=>(e.TAG="tag",e.PROGRESS="progress",e))(fr||{})),gr=x("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))(gr||{})),yr=x("ProgressTypeEnum",(e=>(e.CIRCLE="circle",e.LINE="line",e))(yr||{})),cr=x("DisplayType",(e=>(e.RULE="rule",e.CONFIG="config",e))(cr||{})),Dr=x("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))(Dr||{})),xr=x("GLOBAL_TYPE",(e=>(e.MODAL="modal",e.EVENT="event",e.VAR="var",e))(xr||{})),Qr=x("COLUMNS_TYPE",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.TOP="top",e.BOTTOM="bottom",e))(Qr||{})),vr=x("INNER_EVENT",(e=>(e.CLOSE_MODAL="__CLOSEMODAL__",e.OPEN_MODAL="__OPENMODAL__",e.REFRESH_TABLE="__REFRESHTABLE__",e))(vr||{})),Ar=x("SUB_TABLE_EDIT_MODE",(e=>(e.INLINE="inline",e.MODAL="modal",e))(Ar||{})),Er=x("SUB_TABLE_OPE_EVENT_TYPE_INLINE",(e=>(e.DELETE="delete",e.COPY="copy",e))(Er||{})),Br=x("SUB_TABLE_OPE_EVENT_TYPE",(e=>(e.DELETE="delete",e.EDIT="edit",e.COPY="copy",e))(Br||{})),Cr=x("VERIFICATIONCONDITIONS_TYPE",(e=>(e.JS="js",e))(Cr||{})),Ir=x("ASSIGNMENTSTRATEGY_ENUM",(e=>(e.alwaysCover="alwaysCover",e.notCovered="notCovered",e))(Ir||{})),br=x("Dependency_ENUM",(e=>(e.HIDDEN="hidden",e.READONLY="readonly",e.DISABLED="disabled",e.REQUIRED="required",e.ASSIGNMENT="assignment",e))(br||{})),Lr=x("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))(Lr||{})),_r=x("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))(_r||{})),Fe=x("Platform",(e=>(e.WEB="web",e.MOBILE="mobile",e))(Fe||{})),Nr=x("BuiltinType",(e=>(e.MODAL="modal",e.MODAL_BODY="modalBody",e.MODAL_FOOTER="modalFooter",e.BottomButtonContainer="bottom-button-container",e))(Nr||{})),Rr=x("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))(Rr||{})),Sr=x("SelectPickerEnums",(e=>(e.DROPDOWN_SELECTION="dropdownSelection",e.TREE_SELECTION="treeSelection",e.MODAL_BOX_SELECTION="modalBoxSelection",e))(Sr||{})),Tr=x("CURRENCY_ENUM",(e=>(e["¥"]="¥",e.$="$",e.S$="S$",e))(Tr||{})),Fr=x("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))(Fr||{})),Pr=x("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))(Pr||{})),Or=x("CURRENCY_LANG_ENUM",(e=>(e["¥"]="chMoney",e.$="usMoney",e.S$="sgpMoney",e))(Or||{})),Mr=x("RowSelectionTypeEnums",(e=>(e.SingleChoice="radio",e.MultipleChoice="checkbox",e))(Mr||{})),Ur=x("StatisticalMethodEnums",(e=>(e.Current="current",e.Whole="whole",e))(Ur||{})),wr=x("PrintModeEnums",(e=>(e.Local="local",e.Server="server",e.PREVIEW_PRINT="PreviewPrint",e.DIRECT_PRINTING="DirectPrinting",e))(wr||{})),kr=x("openWindowEnums",(e=>(e.OPEN="open",e.APPROVE="linkApprove",e))(kr||{})),Gr=x("KeyMode",(e=>(e.SYSTEM="system",e.TRANSACTION="transaction",e))(Gr||{})),Hr=x("TransactionMode",(e=>(e.CURRENT="current",e.REFERENCE="reference",e))(Hr||{})),Kr=x("DisplayEnums",(e=>(e.BLOCK="block",e.INLINE_BLOCK="inline-block",e))(Kr||{})),zr=x("ButtonColorType",(e=>(e.DEFAULT="default",e.LINK="link",e))(zr||{})),Vr=x("ButtonColorTheme",(e=>(e.DEFAULT="default",e.PRIMARY="primary",e.ERROR="error",e.WARNING="warning",e.SUCCESS="success",e))(Vr||{})),Wr=x("ButtonStyle",(e=>(e.ORDINARY="ordinary",e.SQUARE="square",e))(Wr||{})),qr=x("ButtonSize",(e=>(e.SMALL="small",e.DEFAULT="middle",e.LARGE="large",e))(qr||{})),Xr=x("ButtonTypeGroup",(e=>(e.TEXT="TEXT",e.ICON_TEXT="ICON_TEXT",e.ICON="ICON",e))(Xr||{})),$r=x("ButtonType",(e=>(e.PRIMARY="primary",e.DEFAULT="default",e.DASHED="dashed",e.LINK="link",e))($r||{})),jr=x("ButtonType_vant",(e=>(e.PRIMARY="primary",e.DANGER="danger",e.DEFAULT="default",e))(jr||{}));const Rd=x("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 Zr=x("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))(Zr||{})),Jr=x("TableSearchTypeEnum",(e=>(e.NONE="none",e.EMBEDDED="embedded",e.EXTERNAL="external",e))(Jr||{})),Yr=x("TableTypeEnum",(e=>(e.DEFAULT="default",e.EMBED="embed",e.SUB="sub",e))(Yr||{})),eo=x("TableEditingMethodEnum",(e=>(e.DEFAULTEDITING="defaultEditing",e.CLICKTOENTEREDITING="clickToEnterEditing",e))(eo||{})),to=x("WidgetInScopeEnum",(e=>(e.GCT="gct",e.GCT_MODAL="gct-modal",e.GCT_SUB_TABLE_MODAL="gct-sub-table-modal",e))(to||{})),ao=x("ListTreeSearchTypeEnum",(e=>(e.ALL="ALL",e.SEARCH="SEARCH",e.SEARCHALL="SEARCHALL",e.LEVEL="LEVEL",e.CHILDREN="CHILDREN",e))(ao||{})),so=x("DatasourceTypeEnum",(e=>(e.REALTIMEDATASOURCE="realTimeDataSource",e.SERVICEDATASOURCE="serviceDataSource",e))(so||{})),ro=x("SignatureTypeEnum",(e=>(e.SIGNATURE_ONLY="signature_only",e.SIGNATURE_DATE="signature_date",e.SIGNATURE_DATETIME="signature_datetime",e))(ro||{})),oo=x("ResetRuleType",(e=>(e.WIPE_DATA="wipe_data",e.REFRESHDATA="refresh_data",e))(oo||{})),ho=x("SCOPE",(e=>(e.PAGE="page",e.MODAL="modal",e))(ho||{})),io=x("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.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.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))(io||{})),lo=x("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.SearchRdoSelect="SearchRdoSelect",e.SearchTransaction="SearchTransaction",e.SearchTmplTreeSelect="SearchTmplTreeSelect",e.SearchPrinter="SearchPrinter",e.SearchBizProcess="SearchBizProcess",e))(lo||{})),uo=x("tableColumnWidthEnum",(e=>(e.ATUO="selfAdaption",e.ENUMERATION="fixed",e.PERCENTAGE="percentage",e))(uo||{})),po=x("controlConfigEnum",(e=>(e.NULL="NULL",e.STRING="空字符串",e.ZERO="0",e))(po||{})),no=x("statisticalMethodEnum",(e=>(e.TOTAL="total",e.AVERAGE="average",e))(no||{})),mo=x("fixedAlignENUM",(e=>(e.RIGHT="right",e.NONE="",e.LEFT="left",e))(mo||{})),fo=x("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))(fo||{})),go=x("tabsTypeENUM",(e=>(e.LINE="line",e.CARD="card",e.TEXt="text",e.CAPSULE="capsule",e.CUSTOM="custom",e))(go||{})),yo=x("sortTypeEnum",(e=>(e.ASC="asc",e.DESC="desc",e))(yo||{})),co=x("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))(co||{}));const Sd=x("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 Do=x("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))(Do||{}));const Td=x("transformBindCmp2CmpType",{TEXT:"input",TEXTAREA:"textarea",ELECTRONICSIGNATURE:"electronic-signature",SELECT_LIST:"select",RADIO:"radio",CHECKBOX:"checkbox"}),Fd=x("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 xo=x("buttonShowType",(e=>(e.FOLD_ALL="foldAll",e.FOLD_PART="foldPart",e))(xo||{}));const Pd=x("searchListByFieldType",[w.BOOLEAN,w.DATE,w.DATE_TIME,w.DECIMAL,w.DOUBLE,w.ENUM,w.ENUM_MULTI,w.INTEGER,w.LONG,w.LONG_TEXT,w.TEXT,w.USER_MULTI,w.USER,w.TIME,w.REF_MULTI,w.REF,w.RDO_REF,w.ORG_MULTI,w.ORG,w.AGG,w.EXPRESSION,w.SERIAL,w.ONLINE_FORM_TEMPLATE,w.E_DHR_TEMPLATE,w.PRINTER,w.LABEL_TEMPLATE_REF,w.Biz_Process,w.DOCUMENT_TEMPLATE]);var Qo=x("AppPublishStateEnum",(e=>(e.SUCCESS="SUCCESS",e.FAILURE="FAILURE",e.PREPARING="PREPARING",e.EVENTING="EVENTING",e.PROCESSIING="PROCESSIING",e.DEPLOYING="DEPLOYING",e))(Qo||{})),vo=x("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))(vo||{})),Ao=x("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))(Ao||{}));const Od=x("DefaultActions",["Insert","Update","Delete"]),Md=x("PlatformSettingActions",["BaiscSetting","WatermarkSetting","SecuritySetting","LoginSetting","ThemeSetting","OrganizationSetting","ApkSetting"]);var Eo=x("sizeEnum",(e=>(e.XS="XS",e.SM="SM",e.MD="MD",e.LG="LG",e.XL="XL",e.XXL="XXL",e))(Eo||{})),Bo=x("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))(Bo||{}));const ge=x("screenMap",new Map);ge.set("XS",480),ge.set("SM",576),ge.set("MD",768),ge.set("LG",992),ge.set("XL",1200),ge.set("XXL",1600);const Co=x("TIMEZONE_KEY","TIMEZONE__"),Ud=x("TENANT_KEY","TENANT__"),wd=x("TOKEN_KEY","TOKEN__"),kd=x("LOCALE_KEY","LOCALE__"),Gd=x("LOCALE_LIST_KEY","LOCALE__LIST"),Hd=x("LOCAL_I18N_TRANSLATE","LOCAL_I18N_TRANSLATE"),Kd=x("USER_INFO_KEY","USER__INFO__"),zd=x("ROLES_KEY","ROLES__KEY__"),Vd=x("PROJ_CFG_KEY","PROJ__CFG__KEY__"),Wd=x("LOCK_INFO_KEY","LOCK__INFO__KEY__"),qd=x("MULTIPLE_TABS_KEY","MULTIPLE_TABS__KEY__"),Xd=x("APP_DARK_MODE_KEY_","__APP__DARK__MODE__"),$d=x("APP_LOCAL_CACHE_KEY","COMMON__LOCAL__KEY__"),jd=x("APP_SESSION_CACHE_KEY","COMMON__SESSION__KEY__"),Zd=x("DESIGNER_SESSION_CACHE_KEY","DESIGNER_SESSION_CACHE_KEY");var Io=x("CacheTypeEnum",(e=>(e[e.SESSION=0]="SESSION",e[e.LOCAL=1]="LOCAL",e))(Io||{})),bo=x("SEARCH_SEVICE",(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))(bo||{}));const Jd=x("notSingleArr",["in","notIn","containAny","containAll","versionIn"]);var Lo=x("AGLINE_ENUMS",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.BETWEEN="between",e))(Lo||{}));const Yd=x("presetColor",["#DBDBDB","#FFE4E4","#D1D1D1","#838383","#838383","#FFEECB","#D8E3FF","#FF8888","#FF8888","#0DAA9C","#3370FF"]);var _o=x("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))(_o||{})),No=x("RdoButtonOpeEnum",(e=>(e[e.parentVersion=0]="parentVersion",e[e.childVersion=1]="childVersion",e))(No||{})),Ro=x("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))(Ro||{})),ae=x("ErrorTypeEnum",(e=>(e.VUE="vue",e.SCRIPT="script",e.RESOURCE="resource",e.AJAX="ajax",e.PROMISE="promise",e))(ae||{})),So=x("ResultEnum",(e=>(e[e.SUCCESS=200]="SUCCESS",e[e.ERROR=-1]="ERROR",e[e.TIMEOUT=401]="TIMEOUT",e.TYPE="success",e))(So||{})),To=x("RequestEnum",(e=>(e.GET="GET",e.POST="POST",e.PUT="PUT",e.DELETE="DELETE",e))(To||{})),Fo=x("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))(Fo||{})),Po=x("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))(Po||{})),Oo=x("MenuTypeEnum",(e=>(e.SIDEBAR="sidebar",e.MIX_SIDEBAR="mix-sidebar",e.MIX="mix",e.TOP_MENU="top-menu",e))(Oo||{})),Mo=x("TriggerEnum",(e=>(e.NONE="NONE",e.FOOTER="FOOTER",e.HEADER="HEADER",e))(Mo||{})),Uo=x("MenuModeEnum",(e=>(e.VERTICAL="vertical",e.HORIZONTAL="horizontal",e.VERTICAL_RIGHT="vertical-right",e.INLINE="inline",e))(Uo||{})),wo=x("MenuSplitTyeEnum",(e=>(e[e.NONE=0]="NONE",e[e.TOP=1]="TOP",e[e.LEFT=2]="LEFT",e))(wo||{})),ko=x("TopMenuAlignEnum",(e=>(e.CENTER="center",e.START="start",e.END="end",e))(ko||{})),Go=x("MixSidebarTriggerEnum",(e=>(e.HOVER="hover",e.CLICK="click",e))(Go||{})),Ho=x("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))(Ho||{})),Ko=x("RoleEnum",(e=>(e.SUPER="super",e.TEST="test",e))(Ko||{})),zo=x("SizeEnum",(e=>(e.DEFAULT="default",e.SMALL="small",e.LARGE="large",e))(zo||{})),Vo=x("ProcessStatusEnum",(e=>(e.APPROVING="APPROVING",e.COMPLETED="COMPLETED",e.REFUSED="REFUSED",e.REJECTED="REJECTED",e.TERMINATED="TERMINATED",e.WITHDRAWN="WITHDRAWN",e))(Vo||{}));const ei=x("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 Wo=x("ExamineAndApproveStateEnum",(e=>(e.MY_APPLICATION="myApplication",e.MY_AGENT="myAgent",e.MY_DONE="myDone",e.MY_CUSTOM="myCustom",e.MY_CUSTOM_Modal="myCustomModal",e))(Wo||{})),Ae=x("PluginModeEnum",(e=>(e.DESIGN="design",e.WEB="web",e.MOBILE="mobile",e))(Ae||{}));class Jt{projectName=fe.PORTAL;tenantId="";lang="zh-CN";appInfo={};userInfo={};tenantUserInfo={}}x("GlobalPiniaState",Jt);class It{loaded=!1;isNew=!0;loading=!1;destroyed=!1;data={}}x("FormState",It);class re{disabled=!1;readonly=!1;visible=!0;keepalive=!1;destroyed=!1}x("FormItemBasicState",re);class Yt extends re{}x("FormCollapsePaneState",Yt);class ea extends re{}x("FormCollapseState",ea);class ta extends re{activePane=""}x("FormTabState",ta);class aa extends re{}x("FormTabPaneState",aa);class bt extends re{label="";value=null;options=[]}x("FormEditItemState",bt);class sa extends re{expand=!0}x("FormGroupState",sa);class ra extends bt{}x("FormItemState",ra);var Lt=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function oa(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function qo(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var s=e.default;if(typeof s=="function"){var a=function t(){var h=!1;try{h=this instanceof t}catch{}return h?Reflect.construct(s,arguments,this.constructor):s.apply(this,arguments)};a.prototype=s.prototype}else a={};return Object.defineProperty(a,"__esModule",{value:!0}),Object.keys(e).forEach(function(t){var h=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(a,t,h.get?h:{enumerable:!0,get:function(){return e[t]}})}),a}var Pe={exports:{}};function Xo(e){throw new Error('Could not dynamically require "'+e+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var Oe={exports:{}};const $o=qo(Object.freeze(Object.defineProperty({__proto__:null,default:{}},Symbol.toStringTag,{value:"Module"})));var jo=Oe.exports,ha;function k(){return ha||(ha=1,(function(e,s){(function(a,t){e.exports=t()})(jo,function(){var a=a||(function(t,h){var o;if(typeof window<"u"&&window.crypto&&(o=window.crypto),typeof self<"u"&&self.crypto&&(o=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(o=globalThis.crypto),!o&&typeof window<"u"&&window.msCrypto&&(o=window.msCrypto),!o&&typeof Lt<"u"&&Lt.crypto&&(o=Lt.crypto),!o&&typeof Xo=="function")try{o=$o}catch{}var l=function(){if(o){if(typeof o.getRandomValues=="function")try{return o.getRandomValues(new Uint32Array(1))[0]}catch{}if(typeof o.randomBytes=="function")try{return o.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},u=Object.create||(function(){function p(){}return function(m){var D;return p.prototype=m,D=new p,p.prototype=null,D}})(),n={},r=n.lib={},d=r.Base=(function(){return{extend:function(p){var m=u(this);return p&&m.mixIn(p),(!m.hasOwnProperty("init")||this.init===m.init)&&(m.init=function(){m.$super.init.apply(this,arguments)}),m.init.prototype=m,m.$super=this,m},create:function(){var p=this.extend();return p.init.apply(p,arguments),p},init:function(){},mixIn:function(p){for(var m in p)p.hasOwnProperty(m)&&(this[m]=p[m]);p.hasOwnProperty("toString")&&(this.toString=p.toString)},clone:function(){return this.init.prototype.extend(this)}}})(),Q=r.WordArray=d.extend({init:function(p,m){p=this.words=p||[],m!=h?this.sigBytes=m:this.sigBytes=p.length*4},toString:function(p){return(p||g).stringify(this)},concat:function(p){var m=this.words,D=p.words,B=this.sigBytes,E=p.sigBytes;if(this.clamp(),B%4)for(var C=0;C<E;C++){var b=D[C>>>2]>>>24-C%4*8&255;m[B+C>>>2]|=b<<24-(B+C)%4*8}else for(var F=0;F<E;F+=4)m[B+F>>>2]=D[F>>>2];return this.sigBytes+=E,this},clamp:function(){var p=this.words,m=this.sigBytes;p[m>>>2]&=4294967295<<32-m%4*8,p.length=t.ceil(m/4)},clone:function(){var p=d.clone.call(this);return p.words=this.words.slice(0),p},random:function(p){for(var m=[],D=0;D<p;D+=4)m.push(l());return new Q.init(m,p)}}),i=n.enc={},g=i.Hex={stringify:function(p){for(var m=p.words,D=p.sigBytes,B=[],E=0;E<D;E++){var C=m[E>>>2]>>>24-E%4*8&255;B.push((C>>>4).toString(16)),B.push((C&15).toString(16))}return B.join("")},parse:function(p){for(var m=p.length,D=[],B=0;B<m;B+=2)D[B>>>3]|=parseInt(p.substr(B,2),16)<<24-B%8*4;return new Q.init(D,m/2)}},f=i.Latin1={stringify:function(p){for(var m=p.words,D=p.sigBytes,B=[],E=0;E<D;E++){var C=m[E>>>2]>>>24-E%4*8&255;B.push(String.fromCharCode(C))}return B.join("")},parse:function(p){for(var m=p.length,D=[],B=0;B<m;B++)D[B>>>2]|=(p.charCodeAt(B)&255)<<24-B%4*8;return new Q.init(D,m)}},y=i.Utf8={stringify:function(p){try{return decodeURIComponent(escape(f.stringify(p)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(p){return f.parse(unescape(encodeURIComponent(p)))}},c=r.BufferedBlockAlgorithm=d.extend({reset:function(){this._data=new Q.init,this._nDataBytes=0},_append:function(p){typeof p=="string"&&(p=y.parse(p)),this._data.concat(p),this._nDataBytes+=p.sigBytes},_process:function(p){var m,D=this._data,B=D.words,E=D.sigBytes,C=this.blockSize,b=C*4,F=E/b;p?F=t.ceil(F):F=t.max((F|0)-this._minBufferSize,0);var v=F*C,I=t.min(v*4,E);if(v){for(var _=0;_<v;_+=C)this._doProcessBlock(B,_);m=B.splice(0,v),D.sigBytes-=I}return new Q.init(m,I)},clone:function(){var p=d.clone.call(this);return p._data=this._data.clone(),p},_minBufferSize:0});r.Hasher=c.extend({cfg:d.extend(),init:function(p){this.cfg=this.cfg.extend(p),this.reset()},reset:function(){c.reset.call(this),this._doReset()},update:function(p){return this._append(p),this._process(),this},finalize:function(p){p&&this._append(p);var m=this._doFinalize();return m},blockSize:16,_createHelper:function(p){return function(m,D){return new p.init(D).finalize(m)}},_createHmacHelper:function(p){return function(m,D){return new A.HMAC.init(p,D).finalize(m)}}});var A=n.algo={};return n})(Math);return a})})(Oe)),Oe.exports}var Me={exports:{}},Zo=Me.exports,da;function Ue(){return da||(da=1,(function(e,s){(function(a,t){e.exports=t(k())})(Zo,function(a){return(function(t){var h=a,o=h.lib,l=o.Base,u=o.WordArray,n=h.x64={};n.Word=l.extend({init:function(r,d){this.high=r,this.low=d}}),n.WordArray=l.extend({init:function(r,d){r=this.words=r||[],d!=t?this.sigBytes=d:this.sigBytes=r.length*8},toX32:function(){for(var r=this.words,d=r.length,Q=[],i=0;i<d;i++){var g=r[i];Q.push(g.high),Q.push(g.low)}return u.create(Q,this.sigBytes)},clone:function(){for(var r=l.clone.call(this),d=r.words=this.words.slice(0),Q=d.length,i=0;i<Q;i++)d[i]=d[i].clone();return r}})})(),a})})(Me)),Me.exports}var we={exports:{}},Jo=we.exports,ia;function Yo(){return ia||(ia=1,(function(e,s){(function(a,t){e.exports=t(k())})(Jo,function(a){return(function(){if(typeof ArrayBuffer=="function"){var t=a,h=t.lib,o=h.WordArray,l=o.init,u=o.init=function(n){if(n instanceof ArrayBuffer&&(n=new Uint8Array(n)),(n instanceof Int8Array||typeof Uint8ClampedArray<"u"&&n instanceof Uint8ClampedArray||n instanceof Int16Array||n instanceof Uint16Array||n instanceof Int32Array||n instanceof Uint32Array||n instanceof Float32Array||n instanceof Float64Array)&&(n=new Uint8Array(n.buffer,n.byteOffset,n.byteLength)),n instanceof Uint8Array){for(var r=n.byteLength,d=[],Q=0;Q<r;Q++)d[Q>>>2]|=n[Q]<<24-Q%4*8;l.call(this,d,r)}else l.apply(this,arguments)};u.prototype=o}})(),a.lib.WordArray})})(we)),we.exports}var ke={exports:{}},eh=ke.exports,la;function th(){return la||(la=1,(function(e,s){(function(a,t){e.exports=t(k())})(eh,function(a){return(function(){var t=a,h=t.lib,o=h.WordArray,l=t.enc;l.Utf16=l.Utf16BE={stringify:function(n){for(var r=n.words,d=n.sigBytes,Q=[],i=0;i<d;i+=2){var g=r[i>>>2]>>>16-i%4*8&65535;Q.push(String.fromCharCode(g))}return Q.join("")},parse:function(n){for(var r=n.length,d=[],Q=0;Q<r;Q++)d[Q>>>1]|=n.charCodeAt(Q)<<16-Q%2*16;return o.create(d,r*2)}},l.Utf16LE={stringify:function(n){for(var r=n.words,d=n.sigBytes,Q=[],i=0;i<d;i+=2){var g=u(r[i>>>2]>>>16-i%4*8&65535);Q.push(String.fromCharCode(g))}return Q.join("")},parse:function(n){for(var r=n.length,d=[],Q=0;Q<r;Q++)d[Q>>>1]|=u(n.charCodeAt(Q)<<16-Q%2*16);return o.create(d,r*2)}};function u(n){return n<<8&4278255360|n>>>8&16711935}})(),a.enc.Utf16})})(ke)),ke.exports}var Ge={exports:{}},ah=Ge.exports,ua;function le(){return ua||(ua=1,(function(e,s){(function(a,t){e.exports=t(k())})(ah,function(a){return(function(){var t=a,h=t.lib,o=h.WordArray,l=t.enc;l.Base64={stringify:function(n){var r=n.words,d=n.sigBytes,Q=this._map;n.clamp();for(var i=[],g=0;g<d;g+=3)for(var f=r[g>>>2]>>>24-g%4*8&255,y=r[g+1>>>2]>>>24-(g+1)%4*8&255,c=r[g+2>>>2]>>>24-(g+2)%4*8&255,A=f<<16|y<<8|c,p=0;p<4&&g+p*.75<d;p++)i.push(Q.charAt(A>>>6*(3-p)&63));var m=Q.charAt(64);if(m)for(;i.length%4;)i.push(m);return i.join("")},parse:function(n){var r=n.length,d=this._map,Q=this._reverseMap;if(!Q){Q=this._reverseMap=[];for(var i=0;i<d.length;i++)Q[d.charCodeAt(i)]=i}var g=d.charAt(64);if(g){var f=n.indexOf(g);f!==-1&&(r=f)}return u(n,r,Q)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="};function u(n,r,d){for(var Q=[],i=0,g=0;g<r;g++)if(g%4){var f=d[n.charCodeAt(g-1)]<<g%4*2,y=d[n.charCodeAt(g)]>>>6-g%4*2,c=f|y;Q[i>>>2]|=c<<24-i%4*8,i++}return o.create(Q,i)}})(),a.enc.Base64})})(Ge)),Ge.exports}var He={exports:{}},sh=He.exports,pa;function rh(){return pa||(pa=1,(function(e,s){(function(a,t){e.exports=t(k())})(sh,function(a){return(function(){var t=a,h=t.lib,o=h.WordArray,l=t.enc;l.Base64url={stringify:function(n,r){r===void 0&&(r=!0);var d=n.words,Q=n.sigBytes,i=r?this._safe_map:this._map;n.clamp();for(var g=[],f=0;f<Q;f+=3)for(var y=d[f>>>2]>>>24-f%4*8&255,c=d[f+1>>>2]>>>24-(f+1)%4*8&255,A=d[f+2>>>2]>>>24-(f+2)%4*8&255,p=y<<16|c<<8|A,m=0;m<4&&f+m*.75<Q;m++)g.push(i.charAt(p>>>6*(3-m)&63));var D=i.charAt(64);if(D)for(;g.length%4;)g.push(D);return g.join("")},parse:function(n,r){r===void 0&&(r=!0);var d=n.length,Q=r?this._safe_map:this._map,i=this._reverseMap;if(!i){i=this._reverseMap=[];for(var g=0;g<Q.length;g++)i[Q.charCodeAt(g)]=g}var f=Q.charAt(64);if(f){var y=n.indexOf(f);y!==-1&&(d=y)}return u(n,d,i)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"};function u(n,r,d){for(var Q=[],i=0,g=0;g<r;g++)if(g%4){var f=d[n.charCodeAt(g-1)]<<g%4*2,y=d[n.charCodeAt(g)]>>>6-g%4*2,c=f|y;Q[i>>>2]|=c<<24-i%4*8,i++}return o.create(Q,i)}})(),a.enc.Base64url})})(He)),He.exports}var Ke={exports:{}},oh=Ke.exports,na;function ue(){return na||(na=1,(function(e,s){(function(a,t){e.exports=t(k())})(oh,function(a){return(function(t){var h=a,o=h.lib,l=o.WordArray,u=o.Hasher,n=h.algo,r=[];(function(){for(var y=0;y<64;y++)r[y]=t.abs(t.sin(y+1))*4294967296|0})();var d=n.MD5=u.extend({_doReset:function(){this._hash=new l.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(y,c){for(var A=0;A<16;A++){var p=c+A,m=y[p];y[p]=(m<<8|m>>>24)&16711935|(m<<24|m>>>8)&4278255360}var D=this._hash.words,B=y[c+0],E=y[c+1],C=y[c+2],b=y[c+3],F=y[c+4],v=y[c+5],I=y[c+6],_=y[c+7],N=y[c+8],P=y[c+9],O=y[c+10],M=y[c+11],W=y[c+12],G=y[c+13],z=y[c+14],H=y[c+15],L=D[0],S=D[1],T=D[2],R=D[3];L=Q(L,S,T,R,B,7,r[0]),R=Q(R,L,S,T,E,12,r[1]),T=Q(T,R,L,S,C,17,r[2]),S=Q(S,T,R,L,b,22,r[3]),L=Q(L,S,T,R,F,7,r[4]),R=Q(R,L,S,T,v,12,r[5]),T=Q(T,R,L,S,I,17,r[6]),S=Q(S,T,R,L,_,22,r[7]),L=Q(L,S,T,R,N,7,r[8]),R=Q(R,L,S,T,P,12,r[9]),T=Q(T,R,L,S,O,17,r[10]),S=Q(S,T,R,L,M,22,r[11]),L=Q(L,S,T,R,W,7,r[12]),R=Q(R,L,S,T,G,12,r[13]),T=Q(T,R,L,S,z,17,r[14]),S=Q(S,T,R,L,H,22,r[15]),L=i(L,S,T,R,E,5,r[16]),R=i(R,L,S,T,I,9,r[17]),T=i(T,R,L,S,M,14,r[18]),S=i(S,T,R,L,B,20,r[19]),L=i(L,S,T,R,v,5,r[20]),R=i(R,L,S,T,O,9,r[21]),T=i(T,R,L,S,H,14,r[22]),S=i(S,T,R,L,F,20,r[23]),L=i(L,S,T,R,P,5,r[24]),R=i(R,L,S,T,z,9,r[25]),T=i(T,R,L,S,b,14,r[26]),S=i(S,T,R,L,N,20,r[27]),L=i(L,S,T,R,G,5,r[28]),R=i(R,L,S,T,C,9,r[29]),T=i(T,R,L,S,_,14,r[30]),S=i(S,T,R,L,W,20,r[31]),L=g(L,S,T,R,v,4,r[32]),R=g(R,L,S,T,N,11,r[33]),T=g(T,R,L,S,M,16,r[34]),S=g(S,T,R,L,z,23,r[35]),L=g(L,S,T,R,E,4,r[36]),R=g(R,L,S,T,F,11,r[37]),T=g(T,R,L,S,_,16,r[38]),S=g(S,T,R,L,O,23,r[39]),L=g(L,S,T,R,G,4,r[40]),R=g(R,L,S,T,B,11,r[41]),T=g(T,R,L,S,b,16,r[42]),S=g(S,T,R,L,I,23,r[43]),L=g(L,S,T,R,P,4,r[44]),R=g(R,L,S,T,W,11,r[45]),T=g(T,R,L,S,H,16,r[46]),S=g(S,T,R,L,C,23,r[47]),L=f(L,S,T,R,B,6,r[48]),R=f(R,L,S,T,_,10,r[49]),T=f(T,R,L,S,z,15,r[50]),S=f(S,T,R,L,v,21,r[51]),L=f(L,S,T,R,W,6,r[52]),R=f(R,L,S,T,b,10,r[53]),T=f(T,R,L,S,O,15,r[54]),S=f(S,T,R,L,E,21,r[55]),L=f(L,S,T,R,N,6,r[56]),R=f(R,L,S,T,H,10,r[57]),T=f(T,R,L,S,I,15,r[58]),S=f(S,T,R,L,G,21,r[59]),L=f(L,S,T,R,F,6,r[60]),R=f(R,L,S,T,M,10,r[61]),T=f(T,R,L,S,C,15,r[62]),S=f(S,T,R,L,P,21,r[63]),D[0]=D[0]+L|0,D[1]=D[1]+S|0,D[2]=D[2]+T|0,D[3]=D[3]+R|0},_doFinalize:function(){var y=this._data,c=y.words,A=this._nDataBytes*8,p=y.sigBytes*8;c[p>>>5]|=128<<24-p%32;var m=t.floor(A/4294967296),D=A;c[(p+64>>>9<<4)+15]=(m<<8|m>>>24)&16711935|(m<<24|m>>>8)&4278255360,c[(p+64>>>9<<4)+14]=(D<<8|D>>>24)&16711935|(D<<24|D>>>8)&4278255360,y.sigBytes=(c.length+1)*4,this._process();for(var B=this._hash,E=B.words,C=0;C<4;C++){var b=E[C];E[C]=(b<<8|b>>>24)&16711935|(b<<24|b>>>8)&4278255360}return B},clone:function(){var y=u.clone.call(this);return y._hash=this._hash.clone(),y}});function Q(y,c,A,p,m,D,B){var E=y+(c&A|~c&p)+m+B;return(E<<D|E>>>32-D)+c}function i(y,c,A,p,m,D,B){var E=y+(c&p|A&~p)+m+B;return(E<<D|E>>>32-D)+c}function g(y,c,A,p,m,D,B){var E=y+(c^A^p)+m+B;return(E<<D|E>>>32-D)+c}function f(y,c,A,p,m,D,B){var E=y+(A^(c|~p))+m+B;return(E<<D|E>>>32-D)+c}h.MD5=u._createHelper(d),h.HmacMD5=u._createHmacHelper(d)})(Math),a.MD5})})(Ke)),Ke.exports}var ze={exports:{}},hh=ze.exports,ma;function fa(){return ma||(ma=1,(function(e,s){(function(a,t){e.exports=t(k())})(hh,function(a){return(function(){var t=a,h=t.lib,o=h.WordArray,l=h.Hasher,u=t.algo,n=[],r=u.SHA1=l.extend({_doReset:function(){this._hash=new o.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(d,Q){for(var i=this._hash.words,g=i[0],f=i[1],y=i[2],c=i[3],A=i[4],p=0;p<80;p++){if(p<16)n[p]=d[Q+p]|0;else{var m=n[p-3]^n[p-8]^n[p-14]^n[p-16];n[p]=m<<1|m>>>31}var D=(g<<5|g>>>27)+A+n[p];p<20?D+=(f&y|~f&c)+1518500249:p<40?D+=(f^y^c)+1859775393:p<60?D+=(f&y|f&c|y&c)-1894007588:D+=(f^y^c)-899497514,A=c,c=y,y=f<<30|f>>>2,f=g,g=D}i[0]=i[0]+g|0,i[1]=i[1]+f|0,i[2]=i[2]+y|0,i[3]=i[3]+c|0,i[4]=i[4]+A|0},_doFinalize:function(){var d=this._data,Q=d.words,i=this._nDataBytes*8,g=d.sigBytes*8;return Q[g>>>5]|=128<<24-g%32,Q[(g+64>>>9<<4)+14]=Math.floor(i/4294967296),Q[(g+64>>>9<<4)+15]=i,d.sigBytes=Q.length*4,this._process(),this._hash},clone:function(){var d=l.clone.call(this);return d._hash=this._hash.clone(),d}});t.SHA1=l._createHelper(r),t.HmacSHA1=l._createHmacHelper(r)})(),a.SHA1})})(ze)),ze.exports}var Ve={exports:{}},dh=Ve.exports,ga;function _t(){return ga||(ga=1,(function(e,s){(function(a,t){e.exports=t(k())})(dh,function(a){return(function(t){var h=a,o=h.lib,l=o.WordArray,u=o.Hasher,n=h.algo,r=[],d=[];(function(){function g(A){for(var p=t.sqrt(A),m=2;m<=p;m++)if(!(A%m))return!1;return!0}function f(A){return(A-(A|0))*4294967296|0}for(var y=2,c=0;c<64;)g(y)&&(c<8&&(r[c]=f(t.pow(y,1/2))),d[c]=f(t.pow(y,1/3)),c++),y++})();var Q=[],i=n.SHA256=u.extend({_doReset:function(){this._hash=new l.init(r.slice(0))},_doProcessBlock:function(g,f){for(var y=this._hash.words,c=y[0],A=y[1],p=y[2],m=y[3],D=y[4],B=y[5],E=y[6],C=y[7],b=0;b<64;b++){if(b<16)Q[b]=g[f+b]|0;else{var F=Q[b-15],v=(F<<25|F>>>7)^(F<<14|F>>>18)^F>>>3,I=Q[b-2],_=(I<<15|I>>>17)^(I<<13|I>>>19)^I>>>10;Q[b]=v+Q[b-7]+_+Q[b-16]}var N=D&B^~D&E,P=c&A^c&p^A&p,O=(c<<30|c>>>2)^(c<<19|c>>>13)^(c<<10|c>>>22),M=(D<<26|D>>>6)^(D<<21|D>>>11)^(D<<7|D>>>25),W=C+M+N+d[b]+Q[b],G=O+P;C=E,E=B,B=D,D=m+W|0,m=p,p=A,A=c,c=W+G|0}y[0]=y[0]+c|0,y[1]=y[1]+A|0,y[2]=y[2]+p|0,y[3]=y[3]+m|0,y[4]=y[4]+D|0,y[5]=y[5]+B|0,y[6]=y[6]+E|0,y[7]=y[7]+C|0},_doFinalize:function(){var g=this._data,f=g.words,y=this._nDataBytes*8,c=g.sigBytes*8;return f[c>>>5]|=128<<24-c%32,f[(c+64>>>9<<4)+14]=t.floor(y/4294967296),f[(c+64>>>9<<4)+15]=y,g.sigBytes=f.length*4,this._process(),this._hash},clone:function(){var g=u.clone.call(this);return g._hash=this._hash.clone(),g}});h.SHA256=u._createHelper(i),h.HmacSHA256=u._createHmacHelper(i)})(Math),a.SHA256})})(Ve)),Ve.exports}var We={exports:{}},ih=We.exports,ya;function lh(){return ya||(ya=1,(function(e,s){(function(a,t,h){e.exports=t(k(),_t())})(ih,function(a){return(function(){var t=a,h=t.lib,o=h.WordArray,l=t.algo,u=l.SHA256,n=l.SHA224=u.extend({_doReset:function(){this._hash=new o.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var r=u._doFinalize.call(this);return r.sigBytes-=4,r}});t.SHA224=u._createHelper(n),t.HmacSHA224=u._createHmacHelper(n)})(),a.SHA224})})(We)),We.exports}var qe={exports:{}},uh=qe.exports,ca;function Da(){return ca||(ca=1,(function(e,s){(function(a,t,h){e.exports=t(k(),Ue())})(uh,function(a){return(function(){var t=a,h=t.lib,o=h.Hasher,l=t.x64,u=l.Word,n=l.WordArray,r=t.algo;function d(){return u.create.apply(u,arguments)}var Q=[d(1116352408,3609767458),d(1899447441,602891725),d(3049323471,3964484399),d(3921009573,2173295548),d(961987163,4081628472),d(1508970993,3053834265),d(2453635748,2937671579),d(2870763221,3664609560),d(3624381080,2734883394),d(310598401,1164996542),d(607225278,1323610764),d(1426881987,3590304994),d(1925078388,4068182383),d(2162078206,991336113),d(2614888103,633803317),d(3248222580,3479774868),d(3835390401,2666613458),d(4022224774,944711139),d(264347078,2341262773),d(604807628,2007800933),d(770255983,1495990901),d(1249150122,1856431235),d(1555081692,3175218132),d(1996064986,2198950837),d(2554220882,3999719339),d(2821834349,766784016),d(2952996808,2566594879),d(3210313671,3203337956),d(3336571891,1034457026),d(3584528711,2466948901),d(113926993,3758326383),d(338241895,168717936),d(666307205,1188179964),d(773529912,1546045734),d(1294757372,1522805485),d(1396182291,2643833823),d(1695183700,2343527390),d(1986661051,1014477480),d(2177026350,1206759142),d(2456956037,344077627),d(2730485921,1290863460),d(2820302411,3158454273),d(3259730800,3505952657),d(3345764771,106217008),d(3516065817,3606008344),d(3600352804,1432725776),d(4094571909,1467031594),d(275423344,851169720),d(430227734,3100823752),d(506948616,1363258195),d(659060556,3750685593),d(883997877,3785050280),d(958139571,3318307427),d(1322822218,3812723403),d(1537002063,2003034995),d(1747873779,3602036899),d(1955562222,1575990012),d(2024104815,1125592928),d(2227730452,2716904306),d(2361852424,442776044),d(2428436474,593698344),d(2756734187,3733110249),d(3204031479,2999351573),d(3329325298,3815920427),d(3391569614,3928383900),d(3515267271,566280711),d(3940187606,3454069534),d(4118630271,4000239992),d(116418474,1914138554),d(174292421,2731055270),d(289380356,3203993006),d(460393269,320620315),d(685471733,587496836),d(852142971,1086792851),d(1017036298,365543100),d(1126000580,2618297676),d(1288033470,3409855158),d(1501505948,4234509866),d(1607167915,987167468),d(1816402316,1246189591)],i=[];(function(){for(var f=0;f<80;f++)i[f]=d()})();var g=r.SHA512=o.extend({_doReset:function(){this._hash=new n.init([new u.init(1779033703,4089235720),new u.init(3144134277,2227873595),new u.init(1013904242,4271175723),new u.init(2773480762,1595750129),new u.init(1359893119,2917565137),new u.init(2600822924,725511199),new u.init(528734635,4215389547),new u.init(1541459225,327033209)])},_doProcessBlock:function(f,y){for(var c=this._hash.words,A=c[0],p=c[1],m=c[2],D=c[3],B=c[4],E=c[5],C=c[6],b=c[7],F=A.high,v=A.low,I=p.high,_=p.low,N=m.high,P=m.low,O=D.high,M=D.low,W=B.high,G=B.low,z=E.high,H=E.low,L=C.high,S=C.low,T=b.high,R=b.low,q=F,V=v,$=I,U=_,Ee=N,xe=P,Mt=O,Be=M,ee=W,j=G,Qt=z,Ce=H,vt=L,Ie=S,Ut=T,be=R,te=0;te<80;te++){var Y,de,At=i[te];if(te<16)de=At.high=f[y+te*2]|0,Y=At.low=f[y+te*2+1]|0;else{var xs=i[te-15],Qe=xs.high,Le=xs.low,md=(Qe>>>1|Le<<31)^(Qe>>>8|Le<<24)^Qe>>>7,Qs=(Le>>>1|Qe<<31)^(Le>>>8|Qe<<24)^(Le>>>7|Qe<<25),vs=i[te-2],ve=vs.high,_e=vs.low,fd=(ve>>>19|_e<<13)^(ve<<3|_e>>>29)^ve>>>6,As=(_e>>>19|ve<<13)^(_e<<3|ve>>>29)^(_e>>>6|ve<<26),Es=i[te-7],gd=Es.high,yd=Es.low,Bs=i[te-16],cd=Bs.high,Cs=Bs.low;Y=Qs+yd,de=md+gd+(Y>>>0<Qs>>>0?1:0),Y=Y+As,de=de+fd+(Y>>>0<As>>>0?1:0),Y=Y+Cs,de=de+cd+(Y>>>0<Cs>>>0?1:0),At.high=de,At.low=Y}var Dd=ee&Qt^~ee&vt,Is=j&Ce^~j&Ie,xd=q&$^q&Ee^$&Ee,Qd=V&U^V&xe^U&xe,vd=(q>>>28|V<<4)^(q<<30|V>>>2)^(q<<25|V>>>7),bs=(V>>>28|q<<4)^(V<<30|q>>>2)^(V<<25|q>>>7),Ad=(ee>>>14|j<<18)^(ee>>>18|j<<14)^(ee<<23|j>>>9),Ed=(j>>>14|ee<<18)^(j>>>18|ee<<14)^(j<<23|ee>>>9),Ls=Q[te],Bd=Ls.high,_s=Ls.low,Z=be+Ed,ie=Ut+Ad+(Z>>>0<be>>>0?1:0),Z=Z+Is,ie=ie+Dd+(Z>>>0<Is>>>0?1:0),Z=Z+_s,ie=ie+Bd+(Z>>>0<_s>>>0?1:0),Z=Z+Y,ie=ie+de+(Z>>>0<Y>>>0?1:0),Ns=bs+Qd,Cd=vd+xd+(Ns>>>0<bs>>>0?1:0);Ut=vt,be=Ie,vt=Qt,Ie=Ce,Qt=ee,Ce=j,j=Be+Z|0,ee=Mt+ie+(j>>>0<Be>>>0?1:0)|0,Mt=Ee,Be=xe,Ee=$,xe=U,$=q,U=V,V=Z+Ns|0,q=ie+Cd+(V>>>0<Z>>>0?1:0)|0}v=A.low=v+V,A.high=F+q+(v>>>0<V>>>0?1:0),_=p.low=_+U,p.high=I+$+(_>>>0<U>>>0?1:0),P=m.low=P+xe,m.high=N+Ee+(P>>>0<xe>>>0?1:0),M=D.low=M+Be,D.high=O+Mt+(M>>>0<Be>>>0?1:0),G=B.low=G+j,B.high=W+ee+(G>>>0<j>>>0?1:0),H=E.low=H+Ce,E.high=z+Qt+(H>>>0<Ce>>>0?1:0),S=C.low=S+Ie,C.high=L+vt+(S>>>0<Ie>>>0?1:0),R=b.low=R+be,b.high=T+Ut+(R>>>0<be>>>0?1:0)},_doFinalize:function(){var f=this._data,y=f.words,c=this._nDataBytes*8,A=f.sigBytes*8;y[A>>>5]|=128<<24-A%32,y[(A+128>>>10<<5)+30]=Math.floor(c/4294967296),y[(A+128>>>10<<5)+31]=c,f.sigBytes=y.length*4,this._process();var p=this._hash.toX32();return p},clone:function(){var f=o.clone.call(this);return f._hash=this._hash.clone(),f},blockSize:1024/32});t.SHA512=o._createHelper(g),t.HmacSHA512=o._createHmacHelper(g)})(),a.SHA512})})(qe)),qe.exports}var Xe={exports:{}},ph=Xe.exports,xa;function nh(){return xa||(xa=1,(function(e,s){(function(a,t,h){e.exports=t(k(),Ue(),Da())})(ph,function(a){return(function(){var t=a,h=t.x64,o=h.Word,l=h.WordArray,u=t.algo,n=u.SHA512,r=u.SHA384=n.extend({_doReset:function(){this._hash=new l.init([new o.init(3418070365,3238371032),new o.init(1654270250,914150663),new o.init(2438529370,812702999),new o.init(355462360,4144912697),new o.init(1731405415,4290775857),new o.init(2394180231,1750603025),new o.init(3675008525,1694076839),new o.init(1203062813,3204075428)])},_doFinalize:function(){var d=n._doFinalize.call(this);return d.sigBytes-=16,d}});t.SHA384=n._createHelper(r),t.HmacSHA384=n._createHmacHelper(r)})(),a.SHA384})})(Xe)),Xe.exports}var $e={exports:{}},mh=$e.exports,Qa;function fh(){return Qa||(Qa=1,(function(e,s){(function(a,t,h){e.exports=t(k(),Ue())})(mh,function(a){return(function(t){var h=a,o=h.lib,l=o.WordArray,u=o.Hasher,n=h.x64,r=n.Word,d=h.algo,Q=[],i=[],g=[];(function(){for(var c=1,A=0,p=0;p<24;p++){Q[c+5*A]=(p+1)*(p+2)/2%64;var m=A%5,D=(2*c+3*A)%5;c=m,A=D}for(var c=0;c<5;c++)for(var A=0;A<5;A++)i[c+5*A]=A+(2*c+3*A)%5*5;for(var B=1,E=0;E<24;E++){for(var C=0,b=0,F=0;F<7;F++){if(B&1){var v=(1<<F)-1;v<32?b^=1<<v:C^=1<<v-32}B&128?B=B<<1^113:B<<=1}g[E]=r.create(C,b)}})();var f=[];(function(){for(var c=0;c<25;c++)f[c]=r.create()})();var y=d.SHA3=u.extend({cfg:u.cfg.extend({outputLength:512}),_doReset:function(){for(var c=this._state=[],A=0;A<25;A++)c[A]=new r.init;this.blockSize=(1600-2*this.cfg.outputLength)/32},_doProcessBlock:function(c,A){for(var p=this._state,m=this.blockSize/2,D=0;D<m;D++){var B=c[A+2*D],E=c[A+2*D+1];B=(B<<8|B>>>24)&16711935|(B<<24|B>>>8)&4278255360,E=(E<<8|E>>>24)&16711935|(E<<24|E>>>8)&4278255360;var C=p[D];C.high^=E,C.low^=B}for(var b=0;b<24;b++){for(var F=0;F<5;F++){for(var v=0,I=0,_=0;_<5;_++){var C=p[F+5*_];v^=C.high,I^=C.low}var N=f[F];N.high=v,N.low=I}for(var F=0;F<5;F++)for(var P=f[(F+4)%5],O=f[(F+1)%5],M=O.high,W=O.low,v=P.high^(M<<1|W>>>31),I=P.low^(W<<1|M>>>31),_=0;_<5;_++){var C=p[F+5*_];C.high^=v,C.low^=I}for(var G=1;G<25;G++){var v,I,C=p[G],z=C.high,H=C.low,L=Q[G];L<32?(v=z<<L|H>>>32-L,I=H<<L|z>>>32-L):(v=H<<L-32|z>>>64-L,I=z<<L-32|H>>>64-L);var S=f[i[G]];S.high=v,S.low=I}var T=f[0],R=p[0];T.high=R.high,T.low=R.low;for(var F=0;F<5;F++)for(var _=0;_<5;_++){var G=F+5*_,C=p[G],q=f[G],V=f[(F+1)%5+5*_],$=f[(F+2)%5+5*_];C.high=q.high^~V.high&$.high,C.low=q.low^~V.low&$.low}var C=p[0],U=g[b];C.high^=U.high,C.low^=U.low}},_doFinalize:function(){var c=this._data,A=c.words;this._nDataBytes*8;var p=c.sigBytes*8,m=this.blockSize*32;A[p>>>5]|=1<<24-p%32,A[(t.ceil((p+1)/m)*m>>>5)-1]|=128,c.sigBytes=A.length*4,this._process();for(var D=this._state,B=this.cfg.outputLength/8,E=B/8,C=[],b=0;b<E;b++){var F=D[b],v=F.high,I=F.low;v=(v<<8|v>>>24)&16711935|(v<<24|v>>>8)&4278255360,I=(I<<8|I>>>24)&16711935|(I<<24|I>>>8)&4278255360,C.push(I),C.push(v)}return new l.init(C,B)},clone:function(){for(var c=u.clone.call(this),A=c._state=this._state.slice(0),p=0;p<25;p++)A[p]=A[p].clone();return c}});h.SHA3=u._createHelper(y),h.HmacSHA3=u._createHmacHelper(y)})(Math),a.SHA3})})($e)),$e.exports}var je={exports:{}},gh=je.exports,va;function yh(){return va||(va=1,(function(e,s){(function(a,t){e.exports=t(k())})(gh,function(a){/** @preserve
2
- (c) 2012 by Cédric Mesnil. All rights reserved.
1
+ System.register(["pinia","lodash-es","qs","vue","axios","vue-i18n","vue-router","@gct-paas/api"],(function(o,il){"use strict";var J,qe,et,H,Te,tt,nt,Se,oe,it,Ae,V,w,y,ne,v,_e,ce,Ie,rt,at,st,ot,ct,lt,ut,Le;return{setters:[p=>{J=p.defineStore,qe=p.createPinia,et=p.setActivePinia},p=>{H=p.cloneDeep,Te=p.mergeWith,tt=p.unionWith,nt=p.isEqual,Se=p.omit,oe=p.has,it=p.isEmpty},p=>{Ae=p.default},p=>{V=p.isRef,w=p.computed,y=p.ref,ne=p.watch,v=p.reactive,_e=p.onUnmounted,ce=p.inject,Ie=p.getCurrentInstance,rt=p.shallowRef,at=p.onMounted},p=>{st=p.AxiosHeaders},p=>{ot=p.createI18n},p=>{ct=p.createRouter,lt=p.createWebHashHistory},p=>{ut=p.HttpUtil,Le=p.api}],execute:(function(){o({afterFieldSet:_a,afterValueSet:Aa,cacheFnReturn:Na,computedEx:va,copyTextToClipboard:Ln,createAppVue:zc,deepMerge:Ta,default:Cn,emitFieldSet:Ia,gctFormItemEditorProps:da,genUrl:fn,getDeviceFingerprint:Fe,getPageIdentification:dn,getTenant:Mt,getTimezone:Ct,getToken:le,install:Cn,interceptors:Ut,isDef:In,openWindow:Xo,parseMatrixParams:Dt,parseValueUnit:La,setTenant:pa,setToken:wt,setupErrorHandler:Nn,setupI18n:Rn,stringifyMatrixParams:Sa,useAppInst:hc,useCopyToClipboard:Sc,useEditFormController:tc,useForm:_n,useFormController:nc,useFormItemController:ic,useGctFormValue:gc,useGctFormValueByText:mc,useIFrameProps:Rc,useModal:bc,useNamespace:Ec,useWuJieBus:Tc,useWuJieProps:pc,widthEditorInstall:ya});const p=o("SIDE_BAR_MINI_WIDTH",48),rl=o("SIDE_BAR_SHOW_TIT_MINI_WIDTH",80);var Dn=o("ContentEnum",(e=>(e.FULL="full",e.FIXED="fixed",e))(Dn||{})),Un=o("ThemeEnum",(e=>(e.DARK="dark",e.LIGHT="light",e))(Un||{})),Pn=o("SettingButtonPositionEnum",(e=>(e.AUTO="auto",e.HEADER="header",e.FIXED="fixed",e))(Pn||{})),kn=o("SessionTimeoutProcessingEnum",(e=>(e[e.ROUTE_JUMP=0]="ROUTE_JUMP",e[e.PAGE_COVERAGE=1]="PAGE_COVERAGE",e))(kn||{})),Gn=o("PermissionModeEnum",(e=>(e.ROLE="ROLE",e.BACK="BACK",e.ROUTE_MAPPING="ROUTE_MAPPING",e.PLATFORM_ROLE="PLATFORM_ROLE",e))(Gn||{})),Bn=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))(Bn||{})),dt=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))(dt||{})),Fn=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))(Fn||{})),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||{})),Wn=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))(Wn||{})),Hn=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))(Hn||{})),Vn=o("FIELD_TYPE_TRACE",(e=>(e.MATERIAL_NO="material_no",e.PRODUCT="product",e.DEVICE="device",e))(Vn||{}));const al=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 Xn=o("CreateType",(e=>(e.SYSTEM="SYSTEM",e.USER_DEFINED="USER_DEFINED",e.BUILTIN="BUILTIN",e.CUSTOM="CUSTOM",e.PROCESS="PROCESS",e))(Xn||{})),xn=o("MenuType",(e=>(e.CATALOG="CATALOG",e.STANDARD="STANDARD",e.LINK="LINK",e))(xn||{})),jn=o("OpenMode",(e=>(e.PRESENT="PRESENT",e.IFRAME="IFRAME",e.NEW="NEW",e))(jn||{})),Kn=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))(Kn||{}));const sl=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 $n=o("AggTypes",(e=>(e.COUNT="COUNT",e.SUM="SUM",e.MAX="MAX",e.MIN="MIN",e.AVG="AVG",e))($n||{})),Zn=o("NodesConfigTypeEnum",(e=>(e.SPEC="spec",e.SUB_WORKFLOW="sub_workflow",e))(Zn||{})),Jn=o("selectionTypeEnums",(e=>(e.None="none",e.SingleChoice="gct_radio",e.MultipleChoice="checkbox",e))(Jn||{})),Yn=o("UniqueConstraintType",(e=>(e.NONE="NONE",e.GLOBAL="GLOBAL",e.LEVEL="LEVEL",e.LOGIC="LOGIC",e))(Yn||{}));const ol=o("MessageType",{ALL:"all",UNREAD:"unread"}),cl=o("WorkbenchType",{TEST:"myTestApp",QUICK:"quickAccess",MY:"myApp"});var zn=o("PersonalCenterType",(e=>(e.PROFILE="profile",e.GENDER="gender",e.ENTERPRISE="enterprise",e))(zn||{})),Qn=o("GENDER_TYPE",(e=>(e.FEMALE="female",e.MALE="male",e.PRIVARY="privary",e))(Qn||{})),qn=o("TODO_TYPE",(e=>(e.TODO="todo",e.APPLICATION="application",e.DONE="done",e.DELEGATE="delegate",e))(qn||{}));const ll=o("SHOW_FIELDTYPES",[h.TEXT,h.LONG_TEXT,h.LONG,h.INTEGER,h.DECIMAL,h.DOUBLE,h.SERIAL]);var ei=o("UserServiceType",(e=>(e.SCRIPT_SERVICE="SCRIPT_SERVICE",e.SQL_SERVICE="SQL_SERVICE",e.SO_SERVICE="SO_SERVICE",e.BUILTIN_SERVICE="SYS_BUILTIN",e))(ei||{})),ft=o("EntityModelCategoryEnum",(e=>(e.ENTITY="entity",e.DATA="data",e.VIEW="view",e.FORM="form",e.DATA_SET="dataSet",e))(ft||{})),ti=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))(ti||{})),ni=o("FieldDefaultValueTypeEnum",(e=>(e.NONE="NONE",e.FIXED="FIXED",e.SYS_VAR="SYS_VAR",e))(ni||{})),ii=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))(ii||{})),ri=o("scriptTypeEnum",(e=>(e.EVENT="event",e.BUSINESSSERVICE="businessService",e.TIMER="timer",e))(ri||{})),ai=o("pageLayoutModeEnum",(e=>(e.SHOW_BOX_SCROLL="showBoxScroll",e.SHOW_ALL_DATA="showAllData",e))(ai||{})),si=o("PanelEnum",(e=>(e.PAGE="page",e.HISTORY="history",e.GLOBAL="global",e.WIDGET="widget",e.CHANGE_DESIGN="changeDesign",e))(si||{})),oi=o("Postion",(e=>(e.STATIC="static",e.RELATIVE="relative",e.ABSOLUTE="absolute",e.FIXED="fixed",e.STICKY="sticky",e))(oi||{})),ci=o("BorderStyle",(e=>(e.NONE="none",e.SOLID="solid",e.DOTTED="dotted",e.DASHED="dashed",e.DOUBLE="double",e))(ci||{})),li=o("TextAlign",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.JUSTIFY="justify",e))(li||{})),ui=o("TextDecoration",(e=>(e.LINETHROUGH="line-through",e.UNDERLINE="underline",e.NONE="none",e))(ui||{})),di=o("EventCategory",(e=>(e.INNER="inner",e.JS="js",e.LO="lo",e))(di||{})),fi=o("PropGroup",(e=>(e.BASIC="basic",e.ADVANCED="advance",e.DISPLAY="display",e.LABEL="label",e.VUE3="vue3",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.TABLESELECT_CONFIG="tableSelect",e.GENRADIO="genRadio",e.GENCHECKBOX="genCheckbox",e.GENSWITCH="genSwitch",e.OPTIONS="options",e.COLLAPSE="collapse",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))(fi||{})),hi=o("StyleGroup",(e=>(e.LAYOUT="layout",e.STYLE="style",e.BACKGROUND="background",e.MARGIN="margin",e.BORDER="border",e.HEADER="header",e))(hi||{})),gi=o("tagEnum",(e=>(e.TAG="tag",e.PROGRESS="progress",e))(gi||{})),mi=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))(mi||{})),bi=o("ProgressTypeEnum",(e=>(e.CIRCLE="circle",e.LINE="line",e))(bi||{})),Ei=o("DisplayType",(e=>(e.RULE="rule",e.CONFIG="config",e))(Ei||{})),pi=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))(pi||{})),Ri=o("GLOBAL_TYPE",(e=>(e.MODAL="modal",e.EVENT="event",e.VAR="var",e))(Ri||{})),Ti=o("COLUMNS_TYPE",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.TOP="top",e.BOTTOM="bottom",e))(Ti||{})),Si=o("INNER_EVENT",(e=>(e.CLOSE_MODAL="__CLOSEMODAL__",e.OPEN_MODAL="__OPENMODAL__",e.REFRESH_TABLE="__REFRESHTABLE__",e))(Si||{})),Ai=o("SUB_TABLE_EDIT_MODE",(e=>(e.INLINE="inline",e.MODAL="modal",e))(Ai||{})),_i=o("SUB_TABLE_OPE_EVENT_TYPE_INLINE",(e=>(e.DELETE="delete",e.COPY="copy",e))(_i||{})),Ii=o("SUB_TABLE_OPE_EVENT_TYPE",(e=>(e.DELETE="delete",e.EDIT="edit",e.COPY="copy",e))(Ii||{})),Li=o("VERIFICATIONCONDITIONS_TYPE",(e=>(e.JS="js",e))(Li||{})),vi=o("ASSIGNMENTSTRATEGY_ENUM",(e=>(e.alwaysCover="alwaysCover",e.notCovered="notCovered",e))(vi||{})),Ni=o("Dependency_ENUM",(e=>(e.HIDDEN="hidden",e.READONLY="readonly",e.DISABLED="disabled",e.REQUIRED="required",e.ASSIGNMENT="assignment",e))(Ni||{})),yi=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))(yi||{})),Oi=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))(Oi||{})),ht=o("Platform",(e=>(e.WEB="web",e.MOBILE="mobile",e.PAD="pad",e))(ht||{})),wi=o("BuiltinType",(e=>(e.MODAL="modal",e.MODAL_BODY="modalBody",e.MODAL_FOOTER="modalFooter",e.BottomButtonContainer="bottom-button-container",e))(wi||{})),Mi=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))(Mi||{})),Ci=o("SelectPickerEnums",(e=>(e.DROPDOWN_SELECTION="dropdownSelection",e.TREE_SELECTION="treeSelection",e.MODAL_BOX_SELECTION="modalBoxSelection",e))(Ci||{})),Di=o("CURRENCY_ENUM",(e=>(e["¥"]="¥",e.$="$",e.S$="S$",e))(Di||{})),Ui=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))(Ui||{})),Pi=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))(Pi||{})),ki=o("CURRENCY_LANG_ENUM",(e=>(e["¥"]="chMoney",e.$="usMoney",e.S$="sgpMoney",e))(ki||{})),Gi=o("RowSelectionTypeEnums",(e=>(e.SingleChoice="radio",e.MultipleChoice="checkbox",e))(Gi||{})),Bi=o("StatisticalMethodEnums",(e=>(e.Current="current",e.Whole="whole",e))(Bi||{})),Fi=o("PrintModeEnums",(e=>(e.Local="local",e.Server="server",e.PREVIEW_PRINT="PreviewPrint",e.DIRECT_PRINTING="DirectPrinting",e))(Fi||{})),Wi=o("openWindowEnums",(e=>(e.OPEN="open",e.APPROVE="linkApprove",e))(Wi||{})),Hi=o("KeyMode",(e=>(e.SYSTEM="system",e.TRANSACTION="transaction",e))(Hi||{})),Vi=o("TransactionMode",(e=>(e.CURRENT="current",e.REFERENCE="reference",e))(Vi||{})),Xi=o("DisplayEnums",(e=>(e.BLOCK="block",e.INLINE_BLOCK="inline-block",e))(Xi||{})),xi=o("ButtonColorType",(e=>(e.DEFAULT="default",e.LINK="link",e))(xi||{})),ji=o("ButtonColorTheme",(e=>(e.DEFAULT="default",e.PRIMARY="primary",e.ERROR="error",e.WARNING="warning",e.SUCCESS="success",e))(ji||{})),Ki=o("ButtonStyle",(e=>(e.ORDINARY="ordinary",e.SQUARE="square",e))(Ki||{})),$i=o("ButtonSize",(e=>(e.SMALL="small",e.DEFAULT="middle",e.LARGE="large",e))($i||{})),Zi=o("ButtonTypeGroup",(e=>(e.TEXT="TEXT",e.ICON_TEXT="ICON_TEXT",e.ICON="ICON",e))(Zi||{})),Ji=o("ButtonType",(e=>(e.PRIMARY="primary",e.DEFAULT="default",e.DASHED="dashed",e.LINK="link",e))(Ji||{})),Yi=o("ButtonType_vant",(e=>(e.PRIMARY="primary",e.DANGER="danger",e.DEFAULT="default",e))(Yi||{}));const ul=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 zi=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))(zi||{})),Qi=o("TableSearchTypeEnum",(e=>(e.NONE="none",e.EMBEDDED="embedded",e.EXTERNAL="external",e))(Qi||{})),qi=o("TableTypeEnum",(e=>(e.DEFAULT="default",e.EMBED="embed",e.SUB="sub",e))(qi||{})),er=o("TableEditingMethodEnum",(e=>(e.DEFAULTEDITING="defaultEditing",e.CLICKTOENTEREDITING="clickToEnterEditing",e))(er||{})),tr=o("WidgetInScopeEnum",(e=>(e.GCT="gct",e.GCT_MODAL="gct-modal",e.GCT_SUB_TABLE_MODAL="gct-sub-table-modal",e))(tr||{})),nr=o("ListTreeSearchTypeEnum",(e=>(e.ALL="ALL",e.SEARCH="SEARCH",e.SEARCHALL="SEARCHALL",e.LEVEL="LEVEL",e.CHILDREN="CHILDREN",e))(nr||{})),ir=o("DatasourceTypeEnum",(e=>(e.REALTIMEDATASOURCE="realTimeDataSource",e.SERVICEDATASOURCE="serviceDataSource",e))(ir||{})),rr=o("SignatureTypeEnum",(e=>(e.SIGNATURE_ONLY="signature_only",e.SIGNATURE_DATE="signature_date",e.SIGNATURE_DATETIME="signature_datetime",e))(rr||{})),ar=o("ResetRuleType",(e=>(e.WIPE_DATA="wipe_data",e.REFRESHDATA="refresh_data",e))(ar||{})),sr=o("SCOPE",(e=>(e.PAGE="page",e.MODAL="modal",e))(sr||{})),or=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))(or||{})),cr=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))(cr||{})),lr=o("tableColumnWidthEnum",(e=>(e.AUTO_PARENT_BOX="AutoParentBox",e.ATUO="selfAdaption",e.ENUMERATION="fixed",e.PERCENTAGE="percentage",e))(lr||{})),ur=o("controlConfigEnum",(e=>(e.NULL="NULL",e.STRING="空字符串",e.ZERO="0",e))(ur||{})),dr=o("statisticalMethodEnum",(e=>(e.TOTAL="total",e.AVERAGE="average",e))(dr||{})),fr=o("fixedAlignENUM",(e=>(e.RIGHT="right",e.NONE="",e.LEFT="left",e))(fr||{})),hr=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))(hr||{})),gr=o("tabsTypeENUM",(e=>(e.LINE="line",e.CARD="card",e.TEXt="text",e.CAPSULE="capsule",e.CUSTOM="custom",e))(gr||{})),mr=o("sortTypeEnum",(e=>(e.ASC="asc",e.DESC="desc",e))(mr||{})),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 dl=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 Er=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))(Er||{}));const fl=o("transformBindCmp2CmpType",{TEXT:"input",TEXTAREA:"textarea",ELECTRONICSIGNATURE:"electronic-signature",SELECT_LIST:"select",RADIO:"radio",CHECKBOX:"checkbox"}),hl=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 pr=o("buttonShowType",(e=>(e.FOLD_ALL="foldAll",e.FOLD_PART="foldPart",e))(pr||{}));const gl=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]),ml=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]),bl=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 Rr=o("AppPublishStateEnum",(e=>(e.SUCCESS="SUCCESS",e.FAILURE="FAILURE",e.PREPARING="PREPARING",e.EVENTING="EVENTING",e.PROCESSIING="PROCESSIING",e.DEPLOYING="DEPLOYING",e))(Rr||{})),Tr=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))(Tr||{})),Sr=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))(Sr||{}));const El=o("DefaultActions",["Insert","Update","Delete"]),pl=o("PlatformSettingActions",["BaiscSetting","WatermarkSetting","SecuritySetting","LoginSetting","ThemeSetting","OrganizationSetting","ApkSetting"]);var Ar=o("sizeEnum",(e=>(e.XS="XS",e.SM="SM",e.MD="MD",e.LG="LG",e.XL="XL",e.XXL="XXL",e))(Ar||{})),_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 Y=o("screenMap",new Map);Y.set("XS",480),Y.set("SM",576),Y.set("MD",768),Y.set("LG",992),Y.set("XL",1200),Y.set("XXL",1600);const Ir=o("TIMEZONE_KEY","TIMEZONE__"),Rl=o("TENANT_KEY","TENANT__"),Tl=o("TOKEN_KEY","TOKEN__"),Sl=o("LOCALE_KEY","LOCALE__"),Al=o("LOCALE_LIST_KEY","LOCALE__LIST"),_l=o("LOCAL_I18N_TRANSLATE","LOCAL_I18N_TRANSLATE"),Il=o("USER_INFO_KEY","USER__INFO__"),Ll=o("ROLES_KEY","ROLES__KEY__"),vl=o("PROJ_CFG_KEY","PROJ__CFG__KEY__"),Nl=o("LOCK_INFO_KEY","LOCK__INFO__KEY__"),yl=o("MULTIPLE_TABS_KEY","MULTIPLE_TABS__KEY__"),Ol=o("APP_DARK_MODE_KEY_","__APP__DARK__MODE__"),wl=o("APP_LOCAL_CACHE_KEY","COMMON__LOCAL__KEY__"),Ml=o("APP_SESSION_CACHE_KEY","COMMON__SESSION__KEY__"),Cl=o("DESIGNER_SESSION_CACHE_KEY","DESIGNER_SESSION_CACHE_KEY");var Lr=o("CacheTypeEnum",(e=>(e[e.SESSION=0]="SESSION",e[e.LOCAL=1]="LOCAL",e))(Lr||{})),vr=o("SEARCH_SEVICE",(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))(vr||{}));const Dl=o("notSingleArr",["in","notIn","containAny","containAll","versionIn"]);var Nr=o("AGLINE_ENUMS",(e=>(e.LEFT="left",e.CENTER="center",e.RIGHT="right",e.BETWEEN="between",e))(Nr||{}));const Ul=o("presetColor",["#DBDBDB","#FFE4E4","#D1D1D1","#838383","#838383","#FFEECB","#D8E3FF","#FF8888","#FF8888","#0DAA9C","#3370FF"]);var yr=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))(yr||{})),Or=o("RdoButtonOpeEnum",(e=>(e[e.parentVersion=0]="parentVersion",e[e.childVersion=1]="childVersion",e))(Or||{})),wr=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))(wr||{})),k=o("ErrorTypeEnum",(e=>(e.VUE="vue",e.SCRIPT="script",e.RESOURCE="resource",e.AJAX="ajax",e.PROMISE="promise",e))(k||{})),Mr=o("ResultEnum",(e=>(e[e.SUCCESS=200]="SUCCESS",e[e.ERROR=-1]="ERROR",e[e.TIMEOUT=401]="TIMEOUT",e.TYPE="success",e))(Mr||{})),Cr=o("RequestEnum",(e=>(e.GET="GET",e.POST="POST",e.PUT="PUT",e.DELETE="DELETE",e))(Cr||{})),Dr=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))(Dr||{})),Ur=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))(Ur||{})),Pr=o("PlatformType",(e=>(e.WEB="web",e.PDA="pda",e.PAD="pad",e))(Pr||{})),kr=o("nullDisplayEnum",(e=>(e["--"]="--",e.empty="(空)",e.null="null",e["N/A"]="N/A",e.noDisplay="",e))(kr||{})),Gr=o("DeviceParamsTypeEnum",(e=>(e.STRING="String",e.INTEGER="Integer",e.LONG="Long",e.FLOAT="Float",e.BOOLEAN="Boolean",e.DATE="Date",e))(Gr||{})),Br=o("MenuTypeEnum",(e=>(e.SIDEBAR="sidebar",e.MIX_SIDEBAR="mix-sidebar",e.MIX="mix",e.TOP_MENU="top-menu",e))(Br||{})),Fr=o("TriggerEnum",(e=>(e.NONE="NONE",e.FOOTER="FOOTER",e.HEADER="HEADER",e))(Fr||{})),Wr=o("MenuModeEnum",(e=>(e.VERTICAL="vertical",e.HORIZONTAL="horizontal",e.VERTICAL_RIGHT="vertical-right",e.INLINE="inline",e))(Wr||{})),Hr=o("MenuSplitTyeEnum",(e=>(e[e.NONE=0]="NONE",e[e.TOP=1]="TOP",e[e.LEFT=2]="LEFT",e))(Hr||{})),Vr=o("TopMenuAlignEnum",(e=>(e.CENTER="center",e.START="start",e.END="end",e))(Vr||{})),Xr=o("MixSidebarTriggerEnum",(e=>(e.HOVER="hover",e.CLICK="click",e))(Xr||{})),xr=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))(xr||{})),jr=o("RoleEnum",(e=>(e.SUPER="super",e.TEST="test",e))(jr||{})),Kr=o("SizeEnum",(e=>(e.DEFAULT="default",e.SMALL="small",e.LARGE="large",e))(Kr||{})),$r=o("ProcessStatusEnum",(e=>(e.APPROVING="APPROVING",e.COMPLETED="COMPLETED",e.REFUSED="REFUSED",e.REJECTED="REJECTED",e.TERMINATED="TERMINATED",e.WITHDRAWN="WITHDRAWN",e))($r||{}));const Pl=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 Zr=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))(Zr||{})),Jr=o("PluginModeEnum",(e=>(e.DESIGN="design",e.WEB="web",e.MOBILE="mobile",e))(Jr||{})),Yr=o("ReturnTypeEnum",(e=>(e.String="string",e.Number="number",e.Boolean="boolean",e))(Yr||{})),zr=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))(zr||{}));class gt{context={aid:"",bid:"",pid:"",platform:ht.WEB};appInfo={};projectName=dt.PORTAL;lang="zh-CN"}o("GlobalPiniaState",gt);class ve{loaded=!1;isNew=!0;loading=!1;destroyed=!1;data={}}o("FormState",ve);class B{disabled=!1;readonly=!1;visible=!0;keepalive=!1;destroyed=!1}o("FormItemBasicState",B);class mt extends B{}o("FormCollapsePaneState",mt);class bt extends B{}o("FormCollapseState",bt);class Et extends B{activePane=""}o("FormTabState",Et);class pt extends B{}o("FormTabPaneState",pt);class Ne extends B{label="";value=null;options=[]}o("FormEditItemState",Ne);class Rt extends B{expand=!0}o("FormGroupState",Rt);class Tt extends Ne{}o("FormItemState",Tt);class St{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[s,r]=t.keys||["name","id"];return this.deepFormat(i,s,r)}}return[]}deepFormat(t,n,i){return t.map(s=>{const r={label:s[n],value:s[i]};return s.children&&s.children.length>0&&(r.options=this.deepFormat(s.children,n,i)),r})}}o("DictionaryUtil",St);const kl=o("t",(...e)=>_gct.i18n.global.t(...e));class ye{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",ye);class Qr{active=null;add(t){if(!this.active)this.active=new ye(t);else{if(this.active.next){let i=this.active.next;for(;i;)i=i.next,i&&i.clear()}const n=new ye(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",Qr);function qr(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(s){s(n)}),(i=e.get("*"))&&i.slice().map(function(s){s(t,n)})}}}const Gl=o("mitt",qr());class ea{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 a=this.modelCache.get(r);return a&&!this.isExpired(a)}))return t.map(r=>this.modelCache.get(r).data);if(t.forEach(r=>{const a=this.modelCache.get(r);a&&this.isExpired(a)&&this.modelCache.delete(r)}),this.modelsLoadingCache.has(n))return this.modelsLoadingCache.get(n);const s=(async()=>{try{const r=t.filter(a=>!this.modelCache.has(a));if(r.length>0){const a=await _api.apaas.modelMeta.getByKeys({modelKeys:r.join(",")});a&&a.length>0&&a.forEach(c=>{this.modelCache.set(c.key,this.createCacheEntry(c)),c.fieldMetaList=c.fieldMetas||[]})}return t.map(a=>this.modelCache.get(a).data)}finally{this.modelsLoadingCache.delete(n)}})();return this.modelsLoadingCache.set(n,s),s}async loadField(t,n){const i=await this.loadModel(t);if(i?.fieldMetaList)return i.fieldMetaList.find(s=>s.key===n)}async loadFieldPaths(t,n,i){if(!i)return[];const s=[],r=!!i.bindFieldKey,a=r?i.modelLink||[i.belongModelKey,i.bindModelKey]:[i.modelKey],c=await this.loadModels(a);if(r)s.push(...c.map(f=>f.name));else{const f=await this.loadModel(i.modelKey);f&&s.push(f.name)}const d=await this.loadModel(t);if(d?.fieldMetaList){const f=d.fieldMetaList.find(l=>l.key===n);f&&s.push(f.name)}return s}async loadEnumList(t,n,i=ft.ENTITY){const s=`${i}:${t}:${n}`;if(this.enumCache.has(s)){const a=this.enumCache.get(s);if(!this.isExpired(a))return H(a.data);this.enumCache.delete(s),this.enumLoadingCache.delete(s)}if(this.enumLoadingCache.has(s))return this.enumLoadingCache.get(s);const r=(async()=>{try{return[]}finally{this.enumLoadingCache.delete(s)}})();return this.enumLoadingCache.set(s,r),r}async loadQueryRefData(t){if(!t||!t.modelKey)throw new Error("queryRefData 参数缺失");const n=JSON.stringify(t);if(this.queryRefDataCache.has(n)){const s=this.queryRefDataCache.get(n);if(!this.isExpired(s))return H(s.data);this.queryRefDataCache.delete(n),this.queryRefDataLoadingCache.delete(n)}if(this.queryRefDataLoadingCache.has(n))return this.queryRefDataLoadingCache.get(n);const i=(async()=>{try{const s=await _api.apaas.modelData.postQueryRefData(t);return s?(this.queryRefDataCache.set(n,this.createCacheEntry(s)),H(s)):{}}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,a)=>{a.includes(t)&&n.push(a)}),n.forEach(r=>{this.modelsLoadingCache.delete(r)});const i=[];this.enumCache.forEach((r,a)=>{a.includes(t)&&i.push(a)}),i.forEach(r=>{this.enumCache.delete(r),this.enumLoadingCache.delete(r)});const s=[];this.queryRefDataCache.forEach((r,a)=>{a.includes(`"modelKey":"${t}"`)&&s.push(a)}),s.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 Bl=o("modelLoader",new ea);var At=o("EditorRegisterConst",(e=>(e.PREFIX="EDITOR___",e))(At||{})),ta=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))(ta||{})),na=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))(na||{})),ia=o("FormContainerType",(e=>(e.FORM_TITLE_GROUP="form-title-group",e))(ia||{}));const z=o("CoreConst",{TOKEN:"gct-token",TENANT:"gct-tenant"}),ra=o("STYLE_NAMESPACE_TAG","gct"),Fl=o("PLUGIN_BASE_URL","/minio"),aa=o("APP_INST","app_inst"),sa="is-";function X(e,t,n,i,s){let r=`${e}-${t}`;return n&&(r+=`-${n}`),i&&(r+=`__${i}`),s&&(r+=`--${s}`),r}class _t{constructor(t,n){this.block=t,this.namespace=n||ra}namespace;b(t=""){return X(this.namespace,this.block,t,"","")}e(t){return t?X(this.namespace,this.block,"",t,""):""}m(t){return t?X(this.namespace,this.block,"","",t):""}be(t,n){return t&&n?X(this.namespace,this.block,t,n,""):""}em(t,n){return t&&n?X(this.namespace,this.block,"",t,n):""}bm(t,n){return t&&n?X(this.namespace,this.block,t,"",n):""}bem(t,n,i){return t&&n&&i?X(this.namespace,this.block,t,n,i):""}is(t,n){return t&&n?`${sa}${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",_t);function oa(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Oe,It;function ca(){if(It)return Oe;It=1;function e(s){if(typeof s!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(s))}function t(s,r){for(var a="",c=0,d=-1,f=0,l,u=0;u<=s.length;++u){if(u<s.length)l=s.charCodeAt(u);else{if(l===47)break;l=47}if(l===47){if(!(d===u-1||f===1))if(d!==u-1&&f===2){if(a.length<2||c!==2||a.charCodeAt(a.length-1)!==46||a.charCodeAt(a.length-2)!==46){if(a.length>2){var g=a.lastIndexOf("/");if(g!==a.length-1){g===-1?(a="",c=0):(a=a.slice(0,g),c=a.length-1-a.lastIndexOf("/")),d=u,f=0;continue}}else if(a.length===2||a.length===1){a="",c=0,d=u,f=0;continue}}r&&(a.length>0?a+="/..":a="..",c=2)}else a.length>0?a+="/"+s.slice(d+1,u):a=s.slice(d+1,u),c=u-d-1;d=u,f=0}else l===46&&f!==-1?++f:f=-1}return a}function n(s,r){var a=r.dir||r.root,c=r.base||(r.name||"")+(r.ext||"");return a?a===r.root?a+c:a+s+c:c}var i={resolve:function(){for(var r="",a=!1,c,d=arguments.length-1;d>=-1&&!a;d--){var f;d>=0?f=arguments[d]:(c===void 0&&(c=process.cwd()),f=c),e(f),f.length!==0&&(r=f+"/"+r,a=f.charCodeAt(0)===47)}return r=t(r,!a),a?r.length>0?"/"+r:"/":r.length>0?r:"."},normalize:function(r){if(e(r),r.length===0)return".";var a=r.charCodeAt(0)===47,c=r.charCodeAt(r.length-1)===47;return r=t(r,!a),r.length===0&&!a&&(r="."),r.length>0&&c&&(r+="/"),a?"/"+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,a=0;a<arguments.length;++a){var c=arguments[a];e(c),c.length>0&&(r===void 0?r=c:r+="/"+c)}return r===void 0?".":i.normalize(r)},relative:function(r,a){if(e(r),e(a),r===a||(r=i.resolve(r),a=i.resolve(a),r===a))return"";for(var c=1;c<r.length&&r.charCodeAt(c)===47;++c);for(var d=r.length,f=d-c,l=1;l<a.length&&a.charCodeAt(l)===47;++l);for(var u=a.length,g=u-l,m=f<g?f:g,b=-1,E=0;E<=m;++E){if(E===m){if(g>m){if(a.charCodeAt(l+E)===47)return a.slice(l+E+1);if(E===0)return a.slice(l+E)}else f>m&&(r.charCodeAt(c+E)===47?b=E:E===0&&(b=0));break}var W=r.charCodeAt(c+E),Qe=a.charCodeAt(l+E);if(W!==Qe)break;W===47&&(b=E)}var Z="";for(E=c+b+1;E<=d;++E)(E===d||r.charCodeAt(E)===47)&&(Z.length===0?Z+="..":Z+="/..");return Z.length>0?Z+a.slice(l+b):(l+=b,a.charCodeAt(l)===47&&++l,a.slice(l))},_makeLong:function(r){return r},dirname:function(r){if(e(r),r.length===0)return".";for(var a=r.charCodeAt(0),c=a===47,d=-1,f=!0,l=r.length-1;l>=1;--l)if(a=r.charCodeAt(l),a===47){if(!f){d=l;break}}else f=!1;return d===-1?c?"/":".":c&&d===1?"//":r.slice(0,d)},basename:function(r,a){if(a!==void 0&&typeof a!="string")throw new TypeError('"ext" argument must be a string');e(r);var c=0,d=-1,f=!0,l;if(a!==void 0&&a.length>0&&a.length<=r.length){if(a.length===r.length&&a===r)return"";var u=a.length-1,g=-1;for(l=r.length-1;l>=0;--l){var m=r.charCodeAt(l);if(m===47){if(!f){c=l+1;break}}else g===-1&&(f=!1,g=l+1),u>=0&&(m===a.charCodeAt(u)?--u===-1&&(d=l):(u=-1,d=g))}return c===d?d=g:d===-1&&(d=r.length),r.slice(c,d)}else{for(l=r.length-1;l>=0;--l)if(r.charCodeAt(l)===47){if(!f){c=l+1;break}}else d===-1&&(f=!1,d=l+1);return d===-1?"":r.slice(c,d)}},extname:function(r){e(r);for(var a=-1,c=0,d=-1,f=!0,l=0,u=r.length-1;u>=0;--u){var g=r.charCodeAt(u);if(g===47){if(!f){c=u+1;break}continue}d===-1&&(f=!1,d=u+1),g===46?a===-1?a=u:l!==1&&(l=1):a!==-1&&(l=-1)}return a===-1||d===-1||l===0||l===1&&a===d-1&&a===c+1?"":r.slice(a,d)},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 a={root:"",dir:"",base:"",ext:"",name:""};if(r.length===0)return a;var c=r.charCodeAt(0),d=c===47,f;d?(a.root="/",f=1):f=0;for(var l=-1,u=0,g=-1,m=!0,b=r.length-1,E=0;b>=f;--b){if(c=r.charCodeAt(b),c===47){if(!m){u=b+1;break}continue}g===-1&&(m=!1,g=b+1),c===46?l===-1?l=b:E!==1&&(E=1):l!==-1&&(E=-1)}return l===-1||g===-1||E===0||E===1&&l===g-1&&l===u+1?g!==-1&&(u===0&&d?a.base=a.name=r.slice(1,g):a.base=a.name=r.slice(u,g)):(u===0&&d?(a.name=r.slice(1,l),a.base=r.slice(1,g)):(a.name=r.slice(u,l),a.base=r.slice(u,g)),a.ext=r.slice(l,g)),u>0?a.dir=r.slice(0,u-1):d&&(a.dir="/"),a},sep:"/",delimiter:":",win32:null,posix:null};return i.posix=i,Oe=i,Oe}var la=ca();const Lt=oa(la);class ua{constructor(t,n=!1){this.isDev=n,this.url=new URL(t),this.baseDir=Lt.dirname(this.url.pathname)}baseDir;url;dir(t){return this.isDev===!0?t:this.url.origin+Lt.resolve(this.baseDir,t)}}o("PluginStaticResource",ua);function da(){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 fa(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 ha{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 s=0;s<i.length;s++)if(i[s]===n){i.splice(s,1);break}}}}emit(t,...n){this.map.has(t)&&this.map.get(t).forEach(s=>{s(...n)})}async asyncEmit(t,...n){if(this.map.has(t)){const s=this.map.get(t).map(r=>r(...n));return Promise.all(s)}return[]}reset(){this.map.forEach(t=>{fa(t)}),this.map.clear()}}class vt{constructor(t){this.e=new ha,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:ga}=Object.prototype;function ma(e){return Ea(e)==="function"}const ba={"[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 Ea(e){return ba[ga.call(e)]}function we(e,t,n=0,i=!1,s="/"){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 a=n*24*60*60*1e3,c=new Date(new Date().getTime()+a);document.cookie=`${e}=${escape(t)};path=${s};expires=${c.toUTCString()}${r}`}else document.cookie=`${e}=${escape(t)};path=${s}${r}`}function Nt(e,t){we(e,"",-1,t)}function yt(e){const t=new RegExp(`(^| )${e}=([^;]*)(;|$)`),n=document.cookie.match(t);return n&&n.length>1?unescape(n[2]):null}class Ot{constructor(){this.items=[]}get size(){return this.items.length}callSync(t,...n){const i=t||Object.create({});let s;for(let r=0;r<this.items.length;r++){const a=this.items[r];if(a.fn&&(s=a.fn(i,...n)),s===null){console.warn(`因${a.fn?a.fn.name:null}方法返回值为「null」,钩子中断执行。`,a);break}}return i}tap(t){if(t&&ma(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=[]}}function le(){return yt(z.TOKEN)}function wt(e){e?we(z.TOKEN,e,7,!0):Nt(z.TOKEN,!0)}function Mt(){return yt(z.TENANT)}function pa(e){e?we(z.TENANT,e,7,!0):Nt(z.TENANT,!0)}const Ra=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 Ct(){return localStorage.getItem(Ir)||"UTC+08:00"}function Ta(e,t){return Te(H(e),t,(n,i)=>{if(typeof n=="object"&&typeof i=="object")return Te(H(n),i,(s,r)=>Array.isArray(s)?tt(s,r,nt):void 0)})}function Sa(e){const t=Ae.stringify(e,{encode:!0,delimiter:";"});return t?`;${t}`:""}function Dt(e){return e.indexOf(";")===-1?{}:Ae.parse(e,{delimiter:";"})}function Aa(e,t){return w({get:()=>e.value,set:i=>{e.value=i,t(i)}})}function _a(e,t){const n=Object.keys(V(e)?e.value:e),i={};return n.forEach(s=>{i[s]=w({get:()=>(V(e)?e.value:e)[s],set(r){(V(e)?e.value:e)[s]=r,t(s,r)}})}),i}function Ia(e,t){const n=Object.keys(V(e)?e.value:e),i={};let s={};return n.forEach(r=>{i[r]=w({get:()=>(s={},(V(e)?e.value:e)[r]),set(a){const c=V(e)?e.value:e;s[r]=a;const d={...c,...s};t(r,a,d)}})}),i}function La(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 va(e){const t=y();let n;const i=()=>{e.deep&&(n=ne(()=>t.value,s=>{e.set(s)},{deep:!0}))};return ne(()=>e.get(),s=>{n&&n(),t.value=s,i()},{immediate:!0}),t}function Na(e){const t=new Map;return function(...n){const i=JSON.stringify(n);if(t.has(i))return t.get(i);const s=e(...n);return t.set(i,s),s}}function ya(e,t,n,i){return{install(s){e&&t&&_gct.register.editor.register(At.PREFIX+e,t),n&&s.component(i??n.name,n)}}}function Ut(e){e.interceptors.request.use(t=>(t.headers.Lang=_gct.store.lang,t.headers||(t.headers=new st),Object.assign(t.headers,{Token:le(),Source:Ra?502:501,Lang:_gct.store.lang,"Tenant-Id":Mt(),Timezone:Ct()}),t))}var Pt="5.0.1";function ue(e,t){return new Promise(n=>setTimeout(n,e,t))}function Oa(){return new Promise(e=>{const t=new MessageChannel;t.port1.onmessage=()=>e(),t.port2.postMessage(null)})}function wa(e,t=1/0){const{requestIdleCallback:n}=window;return n?new Promise(i=>n.call(window,()=>i(),{timeout:t})):ue(Math.min(e,t))}function kt(e){return!!e&&typeof e.then=="function"}function Gt(e,t){try{const n=e();kt(n)?n.then(i=>t(!0,i),i=>t(!1,i)):t(!0,n)}catch(n){t(!1,n)}}async function Bt(e,t,n=16){const i=Array(e.length);let s=Date.now();for(let r=0;r<e.length;++r){i[r]=t(e[r],r);const a=Date.now();a>=s+n&&(s=a,await Oa())}return i}function ie(e){return e.then(void 0,()=>{}),e}function Ma(e,t){for(let n=0,i=e.length;n<i;++n)if(e[n]===t)return!0;return!1}function Ca(e,t){return!Ma(e,t)}function Me(e){return parseInt(e)}function M(e){return parseFloat(e)}function G(e,t){return typeof e=="number"&&isNaN(e)?t:e}function I(e){return e.reduce((t,n)=>t+(n?1:0),0)}function Ft(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 Da(e){var t,n;const i=`Unexpected syntax '${e}'`,s=/^\s*([a-z-]*)(.*)$/i.exec(e),r=s[1]||void 0,a={},c=/([.:#][\w-]+|\[.+?\])/gi,d=(f,l)=>{a[f]=a[f]||[],a[f].push(l)};for(;;){const f=c.exec(s[2]);if(!f)break;const l=f[0];switch(l[0]){case".":d("class",l.slice(1));break;case"#":d("id",l.slice(1));break;case"[":{const u=/^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/.exec(l);if(u)d(u[1],(n=(t=u[4])!==null&&t!==void 0?t:u[5])!==null&&n!==void 0?n:"");else throw new Error(i);break}default:throw new Error(i)}}return[r,a]}function Ua(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 F(e,t){const n=e[0]>>>16,i=e[0]&65535,s=e[1]>>>16,r=e[1]&65535,a=t[0]>>>16,c=t[0]&65535,d=t[1]>>>16,f=t[1]&65535;let l=0,u=0,g=0,m=0;m+=r+f,g+=m>>>16,m&=65535,g+=s+d,u+=g>>>16,g&=65535,u+=i+c,l+=u>>>16,u&=65535,l+=n+a,l&=65535,e[0]=l<<16|u,e[1]=g<<16|m}function O(e,t){const n=e[0]>>>16,i=e[0]&65535,s=e[1]>>>16,r=e[1]&65535,a=t[0]>>>16,c=t[0]&65535,d=t[1]>>>16,f=t[1]&65535;let l=0,u=0,g=0,m=0;m+=r*f,g+=m>>>16,m&=65535,g+=s*f,u+=g>>>16,g&=65535,g+=r*d,u+=g>>>16,g&=65535,u+=i*f,l+=u>>>16,u&=65535,u+=s*d,l+=u>>>16,u&=65535,u+=r*c,l+=u>>>16,u&=65535,l+=n*f+i*d+s*c+r*a,l&=65535,e[0]=l<<16|u,e[1]=g<<16|m}function Q(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 N(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 A(e,t){e[0]^=t[0],e[1]^=t[1]}const Pa=[4283543511,3981806797],ka=[3301882366,444984403];function Wt(e){const t=[0,e[0]>>>1];A(e,t),O(e,Pa),t[1]=e[0]>>>1,A(e,t),O(e,ka),t[1]=e[0]>>>1,A(e,t)}const de=[2277735313,289559509],fe=[1291169091,658871167],Ht=[0,5],Ga=[0,1390208809],Ba=[0,944331445];function Fa(e,t){const n=Ua(e);t=t||0;const i=[0,n.length],s=i[1]%16,r=i[1]-s,a=[0,t],c=[0,t],d=[0,0],f=[0,0];let l;for(l=0;l<r;l=l+16)d[0]=n[l+4]|n[l+5]<<8|n[l+6]<<16|n[l+7]<<24,d[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,O(d,de),Q(d,31),O(d,fe),A(a,d),Q(a,27),F(a,c),O(a,Ht),F(a,Ga),O(f,fe),Q(f,33),O(f,de),A(c,f),Q(c,31),F(c,a),O(c,Ht),F(c,Ba);d[0]=0,d[1]=0,f[0]=0,f[1]=0;const u=[0,0];switch(s){case 15:u[1]=n[l+14],N(u,48),A(f,u);case 14:u[1]=n[l+13],N(u,40),A(f,u);case 13:u[1]=n[l+12],N(u,32),A(f,u);case 12:u[1]=n[l+11],N(u,24),A(f,u);case 11:u[1]=n[l+10],N(u,16),A(f,u);case 10:u[1]=n[l+9],N(u,8),A(f,u);case 9:u[1]=n[l+8],A(f,u),O(f,fe),Q(f,33),O(f,de),A(c,f);case 8:u[1]=n[l+7],N(u,56),A(d,u);case 7:u[1]=n[l+6],N(u,48),A(d,u);case 6:u[1]=n[l+5],N(u,40),A(d,u);case 5:u[1]=n[l+4],N(u,32),A(d,u);case 4:u[1]=n[l+3],N(u,24),A(d,u);case 3:u[1]=n[l+2],N(u,16),A(d,u);case 2:u[1]=n[l+1],N(u,8),A(d,u);case 1:u[1]=n[l],A(d,u),O(d,de),Q(d,31),O(d,fe),A(a,d)}return A(a,i),A(c,i),F(a,c),F(c,a),Wt(a),Wt(c),F(a,c),F(c,a),("00000000"+(a[0]>>>0).toString(16)).slice(-8)+("00000000"+(a[1]>>>0).toString(16)).slice(-8)+("00000000"+(c[0]>>>0).toString(16)).slice(-8)+("00000000"+(c[1]>>>0).toString(16)).slice(-8)}function Wa(e){var t;return{name:e.name,message:e.message,stack:(t=e.stack)===null||t===void 0?void 0:t.split(`
2
+ `),...e}}function Ha(e){return/^function\s.*?\{\s*\[native code]\s*}$/.test(String(e))}function Va(e){return typeof e!="function"}function Xa(e,t){const n=ie(new Promise(i=>{const s=Date.now();Gt(e.bind(null,t),(...r)=>{const a=Date.now()-s;if(!r[0])return i(()=>({error:r[1],duration:a}));const c=r[1];if(Va(c))return i(()=>({value:c,duration:a}));i(()=>new Promise(d=>{const f=Date.now();Gt(c,(...l)=>{const u=a+Date.now()-f;if(!l[0])return d({error:l[1],duration:u});d({value:l[1],duration:u})})}))})}));return function(){return n.then(s=>s())}}function xa(e,t,n,i){const s=Object.keys(e).filter(a=>Ca(n,a)),r=ie(Bt(s,a=>Xa(e[a],t),i));return async function(){const c=await r,d=await Bt(c,u=>ie(u()),i),f=await Promise.all(d),l={};for(let u=0;u<s.length;++u)l[s[u]]=f[u];return l}}function Vt(){const e=window,t=navigator;return I(["MSCSSMatrix"in e,"msSetImmediate"in e,"msIndexedDB"in e,"msMaxTouchPoints"in t,"msPointerEnabled"in t])>=4}function ja(){const e=window,t=navigator;return I(["msWriteProfilerMark"in e,"MSStream"in e,"msLaunchUri"in t,"msSaveBlob"in t])>=3&&!Vt()}function re(){const e=window,t=navigator;return I(["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 C(){const e=window,t=navigator;return I(["ApplePayError"in e,"CSSPrimitiveValue"in e,"Counter"in e,t.vendor.indexOf("Apple")===0,"RGBColor"in e,"WebKitMediaKeys"in e])>=4}function Ce(){const e=window,{HTMLElement:t,Document:n}=e;return I(["safari"in e,!("ongestureend"in e),!("TouchEvent"in e),!("orientation"in e),t&&!("autocapitalize"in t.prototype),n&&"pointerLockElement"in n.prototype])>=4}function ae(){const e=window;return Ha(e.print)&&String(e.browser)==="[object WebPageNamespace]"}function Xt(){var e,t;const n=window;return I(["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 Ka(){const e=window;return I([!("MediaSettingsRange"in e),"RTCEncodedAudioFrame"in e,""+e.Intl=="[object Intl]",""+e.Reflect=="[object Reflect]"])>=3}function $a(){const e=window,{URLPattern:t}=e;return I(["union"in Set.prototype,"Iterator"in e,t&&"hasRegExpGroups"in t.prototype,"RGB8"in WebGLRenderingContext.prototype])>=3}function Za(){const e=window;return I(["DOMRectList"in e,"RTCPeerConnectionIceEvent"in e,"SVGGeometryElement"in e,"ontransitioncancel"in e])>=3}function se(){const e=window,t=navigator,{CSS:n,HTMLButtonElement:i}=e;return I([!("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 Ja(){if(navigator.platform==="iPad")return!0;const e=screen,t=e.width/e.height;return I(["MediaSource"in window,!!Element.prototype.webkitRequestFullscreen,t>.65&&t<1.53])>=2}function Ya(){const e=document;return e.fullscreenElement||e.msFullscreenElement||e.mozFullScreenElement||e.webkitFullscreenElement||null}function za(){const e=document;return(e.exitFullscreen||e.msExitFullscreen||e.mozCancelFullScreen||e.webkitExitFullscreen).call(e)}function De(){const e=re(),t=Xt(),n=window,i=navigator,s="connection";return e?I([!("SharedWorker"in n),i[s]&&"ontypechange"in i[s],!("sinkId"in new Audio)])>=2:t?I(["onorientationchange"in n,"orientation"in n,/android/i.test(i.appVersion)])>=2:!1}function Qa(){const e=navigator,t=window,n=Audio.prototype,{visualViewport:i}=t;return I(["srLatency"in n,"srChannelCount"in n,"devicePosture"in e,i&&"segments"in i,"getTextInformation"in Image.prototype])>=3}function qa(){return ns()?-4:es()}function es(){const e=window,t=e.OfflineAudioContext||e.webkitOfflineAudioContext;if(!t)return-2;if(ts())return-1;const n=4500,i=5e3,s=new t(1,i,44100),r=s.createOscillator();r.type="triangle",r.frequency.value=1e4;const a=s.createDynamicsCompressor();a.threshold.value=-50,a.knee.value=40,a.ratio.value=12,a.attack.value=0,a.release.value=.25,r.connect(a),a.connect(s.destination),r.start(0);const[c,d]=is(s),f=ie(c.then(l=>rs(l.getChannelData(0).subarray(n)),l=>{if(l.name==="timeout"||l.name==="suspended")return-3;throw l}));return()=>(d(),f)}function ts(){return C()&&!Ce()&&!Za()}function ns(){return C()&&se()&&ae()||re()&&Qa()&&$a()}function is(e){let r=()=>{};return[new Promise((c,d)=>{let f=!1,l=0,u=0;e.oncomplete=b=>c(b.renderedBuffer);const g=()=>{setTimeout(()=>d(xt("timeout")),Math.min(500,u+5e3-Date.now()))},m=()=>{try{const b=e.startRendering();switch(kt(b)&&ie(b),e.state){case"running":u=Date.now(),f&&g();break;case"suspended":document.hidden||l++,f&&l>=3?d(xt("suspended")):setTimeout(m,500);break}}catch(b){d(b)}};m(),r=()=>{f||(f=!0,u>0&&g())}}),r]}function rs(e){let t=0;for(let n=0;n<e.length;++n)t+=Math.abs(e[n]);return t}function xt(e){const t=new Error(e);return t.name=e,t}async function jt(e,t,n=50){var i,s,r;const a=document;for(;!a.body;)await ue(n);const c=a.createElement("iframe");try{for(await new Promise((d,f)=>{let l=!1;const u=()=>{l=!0,d()},g=E=>{l=!0,f(E)};c.onload=u,c.onerror=g;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",a.body.appendChild(c);const b=()=>{var E,W;l||(((W=(E=c.contentWindow)===null||E===void 0?void 0:E.document)===null||W===void 0?void 0:W.readyState)==="complete"?u():setTimeout(b,10))};b()});!(!((s=(i=c.contentWindow)===null||i===void 0?void 0:i.document)===null||s===void 0)&&s.body);)await ue(n);return await e(c,c.contentWindow)}finally{(r=c.parentNode)===null||r===void 0||r.removeChild(c)}}function as(e){const[t,n]=Da(e),i=document.createElement(t??"div");for(const s of Object.keys(n)){const r=n[s].join(" ");s==="style"?ss(i.style,r):i.setAttribute(s,r)}return i}function ss(e,t){for(const n of t.split(";")){const i=/^\s*([\w-]+)\s*:\s*(.+?)(\s*!([\w-]+))?\s*$/.exec(n);if(i){const[,s,r,,a]=i;e.setProperty(s,r,a||"")}}}function os(){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 cs="mmMwWLliI0O&1",ls="48px",q=["monospace","sans-serif","serif"],Kt=["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 us(){return jt(async(e,{document:t})=>{const n=t.body;n.style.fontSize=ls;const i=t.createElement("div");i.style.setProperty("visibility","hidden","important");const s={},r={},a=m=>{const b=t.createElement("span"),{style:E}=b;return E.position="absolute",E.top="0",E.left="0",E.fontFamily=m,b.textContent=cs,i.appendChild(b),b},c=(m,b)=>a(`'${m}',${b}`),d=()=>q.map(a),f=()=>{const m={};for(const b of Kt)m[b]=q.map(E=>c(b,E));return m},l=m=>q.some((b,E)=>m[E].offsetWidth!==s[b]||m[E].offsetHeight!==r[b]),u=d(),g=f();n.appendChild(i);for(let m=0;m<q.length;m++)s[q[m]]=u[m].offsetWidth,r[q[m]]=u[m].offsetHeight;return Kt.filter(m=>l(g[m]))})}function ds(){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 s=[];for(let r=0;r<i.length;++r){const a=i[r];s.push({type:a.type,suffixes:a.suffixes})}t.push({name:i.name,description:i.description,mimeTypes:s})}return t}function fs(){return hs(Ts())}function hs(e){let t=!1,n,i;const[s,r]=gs();return ms(s,r)?(t=bs(r),e?n=i="skipped":[n,i]=Es(s,r)):n=i="unsupported",{winding:t,geometry:n,text:i}}function gs(){const e=document.createElement("canvas");return e.width=1,e.height=1,[e,e.getContext("2d")]}function ms(e,t){return!!(t&&e.toDataURL)}function bs(e){return e.rect(0,0,10,10),e.rect(2,2,6,6),!e.isPointInPath(5,5,"evenodd")}function Es(e,t){ps(e,t);const n=Ue(e),i=Ue(e);return n!==i?["unstable","unstable"]:(Rs(e,t),[Ue(e),n])}function ps(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 Rs(e,t){e.width=122,e.height=110,t.globalCompositeOperation="multiply";for(const[n,i,s]of[["#f2f",40,40],["#2ff",80,40],["#ff2",60,80]])t.fillStyle=n,t.beginPath(),t.arc(i,s,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 Ue(e){return e.toDataURL()}function Ts(){return C()&&se()&&ae()}function Ss(){const e=navigator;let t=0,n;e.maxTouchPoints!==void 0?t=Me(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 As(){return navigator.oscpu}function _s(){const e=navigator,t=[],n=e.language||e.userLanguage||e.browserLanguage||e.systemLanguage;if(n!==void 0&&t.push([n]),Array.isArray(e.languages))re()&&Ka()||t.push(e.languages);else if(typeof e.languages=="string"){const i=e.languages;i&&t.push(i.split(","))}return t}function Is(){return window.screen.colorDepth}function Ls(){return G(M(navigator.deviceMemory),void 0)}function vs(){if(!(C()&&se()&&ae()))return Ns()}function Ns(){const e=screen,t=i=>G(Me(i),null),n=[t(e.width),t(e.height)];return n.sort().reverse(),n}const ys=2500,Os=10;let he,Pe;function ws(){if(Pe!==void 0)return;const e=()=>{const t=ke();Ge(t)?Pe=setTimeout(e,ys):(he=t,Pe=void 0)};e()}function Ms(){return ws(),async()=>{let e=ke();if(Ge(e)){if(he)return[...he];Ya()&&(await za(),e=ke())}return Ge(e)||(he=e),e}}function Cs(){if(C()&&se()&&ae())return()=>Promise.resolve(void 0);const e=Ms();return async()=>{const t=await e(),n=i=>i===null?null:Ft(i,Os);return[n(t[0]),n(t[1]),n(t[2]),n(t[3])]}}function ke(){const e=screen;return[G(M(e.availTop),null),G(M(e.width)-M(e.availWidth)-G(M(e.availLeft),0),null),G(M(e.height)-M(e.availHeight)-G(M(e.availTop),0),null),G(M(e.availLeft),null)]}function Ge(e){for(let t=0;t<4;++t)if(e[t])return!1;return!0}function Ds(){return G(Me(navigator.hardwareConcurrency),void 0)}function Us(){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=-Ps();return`UTC${n>=0?"+":""}${n}`}function Ps(){const e=new Date().getFullYear();return Math.max(M(new Date(e,0,1).getTimezoneOffset()),M(new Date(e,6,1).getTimezoneOffset()))}function ks(){try{return!!window.sessionStorage}catch{return!0}}function Gs(){try{return!!window.localStorage}catch{return!0}}function Bs(){if(!(Vt()||ja()))try{return!!window.indexedDB}catch{return!0}}function Fs(){return!!window.openDatabase}function Ws(){return navigator.cpuClass}function Hs(){const{platform:e}=navigator;return e==="MacIntel"&&C()&&!Ce()?Ja()?"iPad":"iPhone":e}function Vs(){return navigator.vendor||""}function Xs(){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 xs(){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 js(){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 Ks({debug:e}={}){if(!$s())return;const t=js(),n=Object.keys(t),i=[].concat(...n.map(a=>t[a])),s=await Zs(i);e&&Js(t,s);const r=n.filter(a=>{const c=t[a];return I(c.map(f=>s[f]))>c.length*.6});return r.sort(),r}function $s(){return C()||De()}async function Zs(e){var t;const n=document,i=n.createElement("div"),s=new Array(e.length),r={};$t(i);for(let a=0;a<e.length;++a){const c=as(e[a]);c.tagName==="DIALOG"&&c.show();const d=n.createElement("div");$t(d),d.appendChild(c),i.appendChild(d),s[a]=c}for(;!n.body;)await ue(50);n.body.appendChild(i);try{for(let a=0;a<e.length;++a)s[a].offsetParent||(r[e[a]]=!0)}finally{(t=i.parentNode)===null||t===void 0||t.removeChild(i)}return r}function $t(e){e.style.setProperty("visibility","hidden","important"),e.style.setProperty("display","block","important")}function Js(e,t){let n="DOM blockers debug:\n```";for(const i of Object.keys(e)){n+=`
3
+ ${i}:`;for(const s of e[i])n+=`
4
+ ${t[s]?"🚫":"➡️"} ${s}`}console.log(`${n}
5
+ \`\`\``)}function Ys(){for(const e of["rec2020","p3","srgb"])if(matchMedia(`(color-gamut: ${e})`).matches)return e}function zs(){if(Zt("inverted"))return!0;if(Zt("none"))return!1}function Zt(e){return matchMedia(`(inverted-colors: ${e})`).matches}function Qs(){if(Jt("active"))return!0;if(Jt("none"))return!1}function Jt(e){return matchMedia(`(forced-colors: ${e})`).matches}const qs=100;function eo(){if(matchMedia("(min-monochrome: 0)").matches){for(let e=0;e<=qs;++e)if(matchMedia(`(max-monochrome: ${e})`).matches)return e;throw new Error("Too high value")}}function to(){if(ee("no-preference"))return 0;if(ee("high")||ee("more"))return 1;if(ee("low")||ee("less"))return-1;if(ee("forced"))return 10}function ee(e){return matchMedia(`(prefers-contrast: ${e})`).matches}function no(){if(Yt("reduce"))return!0;if(Yt("no-preference"))return!1}function Yt(e){return matchMedia(`(prefers-reduced-motion: ${e})`).matches}function io(){if(zt("reduce"))return!0;if(zt("no-preference"))return!1}function zt(e){return matchMedia(`(prefers-reduced-transparency: ${e})`).matches}function ro(){if(Qt("high"))return!0;if(Qt("standard"))return!1}function Qt(e){return matchMedia(`(dynamic-range: ${e})`).matches}const R=Math,L=()=>0;function ao(){const e=R.acos||L,t=R.acosh||L,n=R.asin||L,i=R.asinh||L,s=R.atanh||L,r=R.atan||L,a=R.sin||L,c=R.sinh||L,d=R.cos||L,f=R.cosh||L,l=R.tan||L,u=R.tanh||L,g=R.exp||L,m=R.expm1||L,b=R.log1p||L,E=S=>R.pow(R.PI,S),W=S=>R.log(S+R.sqrt(S*S-1)),Qe=S=>R.log(S+R.sqrt(S*S+1)),Z=S=>R.log((1+S)/(1-S))/2,Qc=S=>R.exp(S)-1/R.exp(S)/2,qc=S=>(R.exp(S)+1/R.exp(S))/2,el=S=>R.exp(S)-1,tl=S=>(R.exp(2*S)-1)/(R.exp(2*S)+1),nl=S=>R.log(1+S);return{acos:e(.12312423423423424),acosh:t(1e308),acoshPf:W(1e154),asin:n(.12312423423423424),asinh:i(1),asinhPf:Qe(1),atanh:s(.5),atanhPf:Z(.5),atan:r(.5),sin:a(-1e300),sinh:c(1),sinhPf:Qc(1),cos:d(10.000000000123),cosh:f(1),coshPf:qc(1),tan:l(-1e300),tanh:u(1),tanhPf:tl(1),exp:g(1),expm1:m(1),expm1Pf:el(1),log1p:b(10),log1pPf:nl(10),powPI:E(-100)}}const so="mmMwWLliI0fiflO&1",Be={default:[],apple:[{font:"-apple-system-body"}],serif:[{fontFamily:"serif"}],sans:[{fontFamily:"sans-serif"}],mono:[{fontFamily:"monospace"}],min:[{fontSize:"1px"}],system:[{fontFamily:"system-ui"}]};function oo(){return co((e,t)=>{const n={},i={};for(const s of Object.keys(Be)){const[r={},a=so]=Be[s],c=e.createElement("span");c.textContent=a,c.style.whiteSpace="nowrap";for(const d of Object.keys(r)){const f=r[d];f!==void 0&&(c.style[d]=f)}n[s]=c,t.append(e.createElement("br"),c)}for(const s of Object.keys(Be))i[s]=n[s].getBoundingClientRect().width;return i})}function co(e,t=4e3){return jt((n,i)=>{const s=i.document,r=s.body,a=r.style;a.width=`${t}px`,a.webkitTextSizeAdjust=a.textSizeAdjust="none",re()?r.style.zoom=`${1/i.devicePixelRatio}`:C()&&(r.style.zoom="reset");const c=s.createElement("div");return c.textContent=[...Array(t/20<<0)].map(()=>"word").join(" "),r.appendChild(c),e(s,r)},'<!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1">')}function lo(){return navigator.pdfViewerEnabled}function uo(){const e=new Float32Array(1),t=new Uint8Array(e.buffer);return e[0]=1/0,e[0]=e[0]-e[0],t[3]}function fo(){const{ApplePaySession:e}=window;if(typeof e?.canMakePayments!="function")return-1;if(ho())return-3;try{return e.canMakePayments()?1:0}catch(t){return go(t)}}const ho=os;function go(e){if(e instanceof Error&&e.name==="InvalidAccessError"&&/\bfrom\b.*\binsecure\b/i.test(e.message))return-2;throw e}function mo(){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 qt=-1,en=-2,bo=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]),Eo=new Set([34047,35723,36063,34852,34853,34854,34229,36392,36795,38449]),po=["FRAGMENT_SHADER","VERTEX_SHADER"],Ro=["LOW_FLOAT","MEDIUM_FLOAT","HIGH_FLOAT","LOW_INT","MEDIUM_INT","HIGH_INT"],tn="WEBGL_debug_renderer_info",To="WEBGL_polygon_mode";function So({cache:e}){var t,n,i,s,r,a;const c=nn(e);if(!c)return qt;if(!sn(c))return en;const d=an()?null:c.getExtension(tn);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:d?(i=c.getParameter(d.UNMASKED_VENDOR_WEBGL))===null||i===void 0?void 0:i.toString():"",renderer:((s=c.getParameter(c.RENDERER))===null||s===void 0?void 0:s.toString())||"",rendererUnmasked:d?(r=c.getParameter(d.UNMASKED_RENDERER_WEBGL))===null||r===void 0?void 0:r.toString():"",shadingLanguageVersion:((a=c.getParameter(c.SHADING_LANGUAGE_VERSION))===null||a===void 0?void 0:a.toString())||""}}function Ao({cache:e}){const t=nn(e);if(!t)return qt;if(!sn(t))return en;const n=t.getSupportedExtensions(),i=t.getContextAttributes(),s=[],r=[],a=[],c=[],d=[];if(i)for(const l of Object.keys(i))r.push(`${l}=${i[l]}`);const f=rn(t);for(const l of f){const u=t[l];a.push(`${l}=${u}${bo.has(u)?`=${t.getParameter(u)}`:""}`)}if(n)for(const l of n){if(l===tn&&an()||l===To&&Lo())continue;const u=t.getExtension(l);if(!u){s.push(l);continue}for(const g of rn(u)){const m=u[g];c.push(`${g}=${m}${Eo.has(m)?`=${t.getParameter(m)}`:""}`)}}for(const l of po)for(const u of Ro){const g=_o(t,l,u);d.push(`${l}.${u}=${g.join(",")}`)}return c.sort(),a.sort(),{contextAttributes:r,parameters:a,shaderPrecisions:d,extensions:n,extensionParameters:c,unsupportedExtensions:s}}function nn(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 _o(e,t,n){const i=e.getShaderPrecisionFormat(e[t],e[n]);return i?[i.rangeMin,i.rangeMax,i.precision]:[]}function rn(e){return Object.keys(e.__proto__).filter(Io)}function Io(e){return typeof e=="string"&&!e.match(/[^A-Z0-9_x]/)}function an(){return Xt()}function Lo(){return re()||C()}function sn(e){return typeof e.getParameter=="function"}function vo(){if(!(De()||C()))return-2;if(!window.AudioContext)return-1;const t=new AudioContext().baseLatency;return t==null?-1:isFinite(t)?t:-3}function No(){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 yo={fonts:us,domBlockers:Ks,fontPreferences:oo,audio:qa,screenFrame:Cs,canvas:fs,osCpu:As,languages:_s,colorDepth:Is,deviceMemory:Ls,screenResolution:vs,hardwareConcurrency:Ds,timezone:Us,sessionStorage:ks,localStorage:Gs,indexedDB:Bs,openDatabase:Fs,cpuClass:Ws,platform:Hs,plugins:ds,touchSupport:Ss,vendor:Vs,vendorFlavors:Xs,cookiesEnabled:xs,colorGamut:Ys,invertedColors:zs,forcedColors:Qs,monochrome:eo,contrast:to,reducedMotion:no,reducedTransparency:io,hdr:ro,math:ao,pdfViewerEnabled:lo,architecture:uo,applePay:fo,privateClickMeasurement:mo,audioBaseLatency:vo,dateTimeLocale:No,webGlBasics:So,webGlExtensions:Ao};function Oo(e){return xa(yo,e,[])}const wo="$ if upgrade to Pro: https://fpjs.dev/pro";function Mo(e){const t=Co(e),n=Do(t);return{score:t,comment:wo.replace(/\$/g,`${n}`)}}function Co(e){if(De())return .4;if(C())return Ce()&&!(se()&&ae())?.5:.3;const t="value"in e.platform?e.platform.value:"";return/^Win/.test(t)?.6:/^Mac/.test(t)?.5:.7}function Do(e){return Ft(.99+.01*e,1e-4)}function Uo(e){let t="";for(const n of Object.keys(e).sort()){const i=e[n],s="error"in i?"error":JSON.stringify(i.value);t+=`${t?"|":""}${n.replace(/([:|\\])/g,"\\$1")}:${s}`}return t}function on(e){return JSON.stringify(e,(t,n)=>n instanceof Error?Wa(n):n,2)}function cn(e){return Fa(Uo(e))}function Po(e){let t;const n=Mo(e);return{get visitorId(){return t===void 0&&(t=cn(this.components)),t},set visitorId(i){t=i},confidence:n,components:e,version:Pt}}function ko(e=50){return wa(e,e*2)}function Go(e,t){const n=Date.now();return{async get(i){const s=Date.now(),r=await e(),a=Po(r);return(t||i?.debug)&&console.log(`Copy the text below to get the debug data:
3
6
 
4
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
-
6
- - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
- - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
-
9
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
10
- */return(function(t){var h=a,o=h.lib,l=o.WordArray,u=o.Hasher,n=h.algo,r=l.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),d=l.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),Q=l.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),i=l.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),g=l.create([0,1518500249,1859775393,2400959708,2840853838]),f=l.create([1352829926,1548603684,1836072691,2053994217,0]),y=n.RIPEMD160=u.extend({_doReset:function(){this._hash=l.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(E,C){for(var b=0;b<16;b++){var F=C+b,v=E[F];E[F]=(v<<8|v>>>24)&16711935|(v<<24|v>>>8)&4278255360}var I=this._hash.words,_=g.words,N=f.words,P=r.words,O=d.words,M=Q.words,W=i.words,G,z,H,L,S,T,R,q,V,$;T=G=I[0],R=z=I[1],q=H=I[2],V=L=I[3],$=S=I[4];for(var U,b=0;b<80;b+=1)U=G+E[C+P[b]]|0,b<16?U+=c(z,H,L)+_[0]:b<32?U+=A(z,H,L)+_[1]:b<48?U+=p(z,H,L)+_[2]:b<64?U+=m(z,H,L)+_[3]:U+=D(z,H,L)+_[4],U=U|0,U=B(U,M[b]),U=U+S|0,G=S,S=L,L=B(H,10),H=z,z=U,U=T+E[C+O[b]]|0,b<16?U+=D(R,q,V)+N[0]:b<32?U+=m(R,q,V)+N[1]:b<48?U+=p(R,q,V)+N[2]:b<64?U+=A(R,q,V)+N[3]:U+=c(R,q,V)+N[4],U=U|0,U=B(U,W[b]),U=U+$|0,T=$,$=V,V=B(q,10),q=R,R=U;U=I[1]+H+V|0,I[1]=I[2]+L+$|0,I[2]=I[3]+S+T|0,I[3]=I[4]+G+R|0,I[4]=I[0]+z+q|0,I[0]=U},_doFinalize:function(){var E=this._data,C=E.words,b=this._nDataBytes*8,F=E.sigBytes*8;C[F>>>5]|=128<<24-F%32,C[(F+64>>>9<<4)+14]=(b<<8|b>>>24)&16711935|(b<<24|b>>>8)&4278255360,E.sigBytes=(C.length+1)*4,this._process();for(var v=this._hash,I=v.words,_=0;_<5;_++){var N=I[_];I[_]=(N<<8|N>>>24)&16711935|(N<<24|N>>>8)&4278255360}return v},clone:function(){var E=u.clone.call(this);return E._hash=this._hash.clone(),E}});function c(E,C,b){return E^C^b}function A(E,C,b){return E&C|~E&b}function p(E,C,b){return(E|~C)^b}function m(E,C,b){return E&b|C&~b}function D(E,C,b){return E^(C|~b)}function B(E,C){return E<<C|E>>>32-C}h.RIPEMD160=u._createHelper(y),h.HmacRIPEMD160=u._createHmacHelper(y)})(),a.RIPEMD160})})(je)),je.exports}var Ze={exports:{}},ch=Ze.exports,Aa;function Nt(){return Aa||(Aa=1,(function(e,s){(function(a,t){e.exports=t(k())})(ch,function(a){(function(){var t=a,h=t.lib,o=h.Base,l=t.enc,u=l.Utf8,n=t.algo;n.HMAC=o.extend({init:function(r,d){r=this._hasher=new r.init,typeof d=="string"&&(d=u.parse(d));var Q=r.blockSize,i=Q*4;d.sigBytes>i&&(d=r.finalize(d)),d.clamp();for(var g=this._oKey=d.clone(),f=this._iKey=d.clone(),y=g.words,c=f.words,A=0;A<Q;A++)y[A]^=1549556828,c[A]^=909522486;g.sigBytes=f.sigBytes=i,this.reset()},reset:function(){var r=this._hasher;r.reset(),r.update(this._iKey)},update:function(r){return this._hasher.update(r),this},finalize:function(r){var d=this._hasher,Q=d.finalize(r);d.reset();var i=d.finalize(this._oKey.clone().concat(Q));return i}})})()})})(Ze)),Ze.exports}var Je={exports:{}},Dh=Je.exports,Ea;function xh(){return Ea||(Ea=1,(function(e,s){(function(a,t,h){e.exports=t(k(),_t(),Nt())})(Dh,function(a){return(function(){var t=a,h=t.lib,o=h.Base,l=h.WordArray,u=t.algo,n=u.SHA256,r=u.HMAC,d=u.PBKDF2=o.extend({cfg:o.extend({keySize:128/32,hasher:n,iterations:25e4}),init:function(Q){this.cfg=this.cfg.extend(Q)},compute:function(Q,i){for(var g=this.cfg,f=r.create(g.hasher,Q),y=l.create(),c=l.create([1]),A=y.words,p=c.words,m=g.keySize,D=g.iterations;A.length<m;){var B=f.update(i).finalize(c);f.reset();for(var E=B.words,C=E.length,b=B,F=1;F<D;F++){b=f.finalize(b),f.reset();for(var v=b.words,I=0;I<C;I++)E[I]^=v[I]}y.concat(B),p[0]++}return y.sigBytes=m*4,y}});t.PBKDF2=function(Q,i,g){return d.create(g).compute(Q,i)}})(),a.PBKDF2})})(Je)),Je.exports}var Ye={exports:{}},Qh=Ye.exports,Ba;function oe(){return Ba||(Ba=1,(function(e,s){(function(a,t,h){e.exports=t(k(),fa(),Nt())})(Qh,function(a){return(function(){var t=a,h=t.lib,o=h.Base,l=h.WordArray,u=t.algo,n=u.MD5,r=u.EvpKDF=o.extend({cfg:o.extend({keySize:128/32,hasher:n,iterations:1}),init:function(d){this.cfg=this.cfg.extend(d)},compute:function(d,Q){for(var i,g=this.cfg,f=g.hasher.create(),y=l.create(),c=y.words,A=g.keySize,p=g.iterations;c.length<A;){i&&f.update(i),i=f.update(d).finalize(Q),f.reset();for(var m=1;m<p;m++)i=f.finalize(i),f.reset();y.concat(i)}return y.sigBytes=A*4,y}});t.EvpKDF=function(d,Q,i){return r.create(i).compute(d,Q)}})(),a.EvpKDF})})(Ye)),Ye.exports}var et={exports:{}},vh=et.exports,Ca;function X(){return Ca||(Ca=1,(function(e,s){(function(a,t,h){e.exports=t(k(),oe())})(vh,function(a){a.lib.Cipher||(function(t){var h=a,o=h.lib,l=o.Base,u=o.WordArray,n=o.BufferedBlockAlgorithm,r=h.enc;r.Utf8;var d=r.Base64,Q=h.algo,i=Q.EvpKDF,g=o.Cipher=n.extend({cfg:l.extend(),createEncryptor:function(v,I){return this.create(this._ENC_XFORM_MODE,v,I)},createDecryptor:function(v,I){return this.create(this._DEC_XFORM_MODE,v,I)},init:function(v,I,_){this.cfg=this.cfg.extend(_),this._xformMode=v,this._key=I,this.reset()},reset:function(){n.reset.call(this),this._doReset()},process:function(v){return this._append(v),this._process()},finalize:function(v){v&&this._append(v);var I=this._doFinalize();return I},keySize:128/32,ivSize:128/32,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:(function(){function v(I){return typeof I=="string"?F:E}return function(I){return{encrypt:function(_,N,P){return v(N).encrypt(I,_,N,P)},decrypt:function(_,N,P){return v(N).decrypt(I,_,N,P)}}}})()});o.StreamCipher=g.extend({_doFinalize:function(){var v=this._process(!0);return v},blockSize:1});var f=h.mode={},y=o.BlockCipherMode=l.extend({createEncryptor:function(v,I){return this.Encryptor.create(v,I)},createDecryptor:function(v,I){return this.Decryptor.create(v,I)},init:function(v,I){this._cipher=v,this._iv=I}}),c=f.CBC=(function(){var v=y.extend();v.Encryptor=v.extend({processBlock:function(_,N){var P=this._cipher,O=P.blockSize;I.call(this,_,N,O),P.encryptBlock(_,N),this._prevBlock=_.slice(N,N+O)}}),v.Decryptor=v.extend({processBlock:function(_,N){var P=this._cipher,O=P.blockSize,M=_.slice(N,N+O);P.decryptBlock(_,N),I.call(this,_,N,O),this._prevBlock=M}});function I(_,N,P){var O,M=this._iv;M?(O=M,this._iv=t):O=this._prevBlock;for(var W=0;W<P;W++)_[N+W]^=O[W]}return v})(),A=h.pad={},p=A.Pkcs7={pad:function(v,I){for(var _=I*4,N=_-v.sigBytes%_,P=N<<24|N<<16|N<<8|N,O=[],M=0;M<N;M+=4)O.push(P);var W=u.create(O,N);v.concat(W)},unpad:function(v){var I=v.words[v.sigBytes-1>>>2]&255;v.sigBytes-=I}};o.BlockCipher=g.extend({cfg:g.cfg.extend({mode:c,padding:p}),reset:function(){var v;g.reset.call(this);var I=this.cfg,_=I.iv,N=I.mode;this._xformMode==this._ENC_XFORM_MODE?v=N.createEncryptor:(v=N.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==v?this._mode.init(this,_&&_.words):(this._mode=v.call(N,this,_&&_.words),this._mode.__creator=v)},_doProcessBlock:function(v,I){this._mode.processBlock(v,I)},_doFinalize:function(){var v,I=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(I.pad(this._data,this.blockSize),v=this._process(!0)):(v=this._process(!0),I.unpad(v)),v},blockSize:128/32});var m=o.CipherParams=l.extend({init:function(v){this.mixIn(v)},toString:function(v){return(v||this.formatter).stringify(this)}}),D=h.format={},B=D.OpenSSL={stringify:function(v){var I,_=v.ciphertext,N=v.salt;return N?I=u.create([1398893684,1701076831]).concat(N).concat(_):I=_,I.toString(d)},parse:function(v){var I,_=d.parse(v),N=_.words;return N[0]==1398893684&&N[1]==1701076831&&(I=u.create(N.slice(2,4)),N.splice(0,4),_.sigBytes-=16),m.create({ciphertext:_,salt:I})}},E=o.SerializableCipher=l.extend({cfg:l.extend({format:B}),encrypt:function(v,I,_,N){N=this.cfg.extend(N);var P=v.createEncryptor(_,N),O=P.finalize(I),M=P.cfg;return m.create({ciphertext:O,key:_,iv:M.iv,algorithm:v,mode:M.mode,padding:M.padding,blockSize:v.blockSize,formatter:N.format})},decrypt:function(v,I,_,N){N=this.cfg.extend(N),I=this._parse(I,N.format);var P=v.createDecryptor(_,N).finalize(I.ciphertext);return P},_parse:function(v,I){return typeof v=="string"?I.parse(v,this):v}}),C=h.kdf={},b=C.OpenSSL={execute:function(v,I,_,N,P){if(N||(N=u.random(64/8)),P)var O=i.create({keySize:I+_,hasher:P}).compute(v,N);else var O=i.create({keySize:I+_}).compute(v,N);var M=u.create(O.words.slice(I),_*4);return O.sigBytes=I*4,m.create({key:O,iv:M,salt:N})}},F=o.PasswordBasedCipher=E.extend({cfg:E.cfg.extend({kdf:b}),encrypt:function(v,I,_,N){N=this.cfg.extend(N);var P=N.kdf.execute(_,v.keySize,v.ivSize,N.salt,N.hasher);N.iv=P.iv;var O=E.encrypt.call(this,v,I,P.key,N);return O.mixIn(P),O},decrypt:function(v,I,_,N){N=this.cfg.extend(N),I=this._parse(I,N.format);var P=N.kdf.execute(_,v.keySize,v.ivSize,I.salt,N.hasher);N.iv=P.iv;var O=E.decrypt.call(this,v,I,P.key,N);return O}})})()})})(et)),et.exports}var tt={exports:{}},Ah=tt.exports,Ia;function Eh(){return Ia||(Ia=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Ah,function(a){return a.mode.CFB=(function(){var t=a.lib.BlockCipherMode.extend();t.Encryptor=t.extend({processBlock:function(o,l){var u=this._cipher,n=u.blockSize;h.call(this,o,l,n,u),this._prevBlock=o.slice(l,l+n)}}),t.Decryptor=t.extend({processBlock:function(o,l){var u=this._cipher,n=u.blockSize,r=o.slice(l,l+n);h.call(this,o,l,n,u),this._prevBlock=r}});function h(o,l,u,n){var r,d=this._iv;d?(r=d.slice(0),this._iv=void 0):r=this._prevBlock,n.encryptBlock(r,0);for(var Q=0;Q<u;Q++)o[l+Q]^=r[Q]}return t})(),a.mode.CFB})})(tt)),tt.exports}var at={exports:{}},Bh=at.exports,ba;function Ch(){return ba||(ba=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Bh,function(a){return a.mode.CTR=(function(){var t=a.lib.BlockCipherMode.extend(),h=t.Encryptor=t.extend({processBlock:function(o,l){var u=this._cipher,n=u.blockSize,r=this._iv,d=this._counter;r&&(d=this._counter=r.slice(0),this._iv=void 0);var Q=d.slice(0);u.encryptBlock(Q,0),d[n-1]=d[n-1]+1|0;for(var i=0;i<n;i++)o[l+i]^=Q[i]}});return t.Decryptor=h,t})(),a.mode.CTR})})(at)),at.exports}var st={exports:{}},Ih=st.exports,La;function bh(){return La||(La=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Ih,function(a){/** @preserve
11
- * Counter block mode compatible with Dr Brian Gladman fileenc.c
12
- * derived from CryptoJS.mode.CTR
13
- * Jan Hruby jhruby.web@gmail.com
14
- */return a.mode.CTRGladman=(function(){var t=a.lib.BlockCipherMode.extend();function h(u){if((u>>24&255)===255){var n=u>>16&255,r=u>>8&255,d=u&255;n===255?(n=0,r===255?(r=0,d===255?d=0:++d):++r):++n,u=0,u+=n<<16,u+=r<<8,u+=d}else u+=1<<24;return u}function o(u){return(u[0]=h(u[0]))===0&&(u[1]=h(u[1])),u}var l=t.Encryptor=t.extend({processBlock:function(u,n){var r=this._cipher,d=r.blockSize,Q=this._iv,i=this._counter;Q&&(i=this._counter=Q.slice(0),this._iv=void 0),o(i);var g=i.slice(0);r.encryptBlock(g,0);for(var f=0;f<d;f++)u[n+f]^=g[f]}});return t.Decryptor=l,t})(),a.mode.CTRGladman})})(st)),st.exports}var rt={exports:{}},Lh=rt.exports,_a;function _h(){return _a||(_a=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Lh,function(a){return a.mode.OFB=(function(){var t=a.lib.BlockCipherMode.extend(),h=t.Encryptor=t.extend({processBlock:function(o,l){var u=this._cipher,n=u.blockSize,r=this._iv,d=this._keystream;r&&(d=this._keystream=r.slice(0),this._iv=void 0),u.encryptBlock(d,0);for(var Q=0;Q<n;Q++)o[l+Q]^=d[Q]}});return t.Decryptor=h,t})(),a.mode.OFB})})(rt)),rt.exports}var ot={exports:{}},Nh=ot.exports,Na;function Rh(){return Na||(Na=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Nh,function(a){return a.mode.ECB=(function(){var t=a.lib.BlockCipherMode.extend();return t.Encryptor=t.extend({processBlock:function(h,o){this._cipher.encryptBlock(h,o)}}),t.Decryptor=t.extend({processBlock:function(h,o){this._cipher.decryptBlock(h,o)}}),t})(),a.mode.ECB})})(ot)),ot.exports}var ht={exports:{}},Sh=ht.exports,Ra;function Th(){return Ra||(Ra=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Sh,function(a){return a.pad.AnsiX923={pad:function(t,h){var o=t.sigBytes,l=h*4,u=l-o%l,n=o+u-1;t.clamp(),t.words[n>>>2]|=u<<24-n%4*8,t.sigBytes+=u},unpad:function(t){var h=t.words[t.sigBytes-1>>>2]&255;t.sigBytes-=h}},a.pad.Ansix923})})(ht)),ht.exports}var dt={exports:{}},Fh=dt.exports,Sa;function Ph(){return Sa||(Sa=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Fh,function(a){return a.pad.Iso10126={pad:function(t,h){var o=h*4,l=o-t.sigBytes%o;t.concat(a.lib.WordArray.random(l-1)).concat(a.lib.WordArray.create([l<<24],1))},unpad:function(t){var h=t.words[t.sigBytes-1>>>2]&255;t.sigBytes-=h}},a.pad.Iso10126})})(dt)),dt.exports}var it={exports:{}},Oh=it.exports,Ta;function Mh(){return Ta||(Ta=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Oh,function(a){return a.pad.Iso97971={pad:function(t,h){t.concat(a.lib.WordArray.create([2147483648],1)),a.pad.ZeroPadding.pad(t,h)},unpad:function(t){a.pad.ZeroPadding.unpad(t),t.sigBytes--}},a.pad.Iso97971})})(it)),it.exports}var lt={exports:{}},Uh=lt.exports,Fa;function wh(){return Fa||(Fa=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Uh,function(a){return a.pad.ZeroPadding={pad:function(t,h){var o=h*4;t.clamp(),t.sigBytes+=o-(t.sigBytes%o||o)},unpad:function(t){for(var h=t.words,o=t.sigBytes-1,o=t.sigBytes-1;o>=0;o--)if(h[o>>>2]>>>24-o%4*8&255){t.sigBytes=o+1;break}}},a.pad.ZeroPadding})})(lt)),lt.exports}var ut={exports:{}},kh=ut.exports,Pa;function Gh(){return Pa||(Pa=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(kh,function(a){return a.pad.NoPadding={pad:function(){},unpad:function(){}},a.pad.NoPadding})})(ut)),ut.exports}var pt={exports:{}},Hh=pt.exports,Oa;function Kh(){return Oa||(Oa=1,(function(e,s){(function(a,t,h){e.exports=t(k(),X())})(Hh,function(a){return(function(t){var h=a,o=h.lib,l=o.CipherParams,u=h.enc,n=u.Hex,r=h.format;r.Hex={stringify:function(d){return d.ciphertext.toString(n)},parse:function(d){var Q=n.parse(d);return l.create({ciphertext:Q})}}})(),a.format.Hex})})(pt)),pt.exports}var nt={exports:{}},zh=nt.exports,Ma;function Vh(){return Ma||(Ma=1,(function(e,s){(function(a,t,h){e.exports=t(k(),le(),ue(),oe(),X())})(zh,function(a){return(function(){var t=a,h=t.lib,o=h.BlockCipher,l=t.algo,u=[],n=[],r=[],d=[],Q=[],i=[],g=[],f=[],y=[],c=[];(function(){for(var m=[],D=0;D<256;D++)D<128?m[D]=D<<1:m[D]=D<<1^283;for(var B=0,E=0,D=0;D<256;D++){var C=E^E<<1^E<<2^E<<3^E<<4;C=C>>>8^C&255^99,u[B]=C,n[C]=B;var b=m[B],F=m[b],v=m[F],I=m[C]*257^C*16843008;r[B]=I<<24|I>>>8,d[B]=I<<16|I>>>16,Q[B]=I<<8|I>>>24,i[B]=I;var I=v*16843009^F*65537^b*257^B*16843008;g[C]=I<<24|I>>>8,f[C]=I<<16|I>>>16,y[C]=I<<8|I>>>24,c[C]=I,B?(B=b^m[m[m[v^b]]],E^=m[m[E]]):B=E=1}})();var A=[0,1,2,4,8,16,32,64,128,27,54],p=l.AES=o.extend({_doReset:function(){var m;if(!(this._nRounds&&this._keyPriorReset===this._key)){for(var D=this._keyPriorReset=this._key,B=D.words,E=D.sigBytes/4,C=this._nRounds=E+6,b=(C+1)*4,F=this._keySchedule=[],v=0;v<b;v++)v<E?F[v]=B[v]:(m=F[v-1],v%E?E>6&&v%E==4&&(m=u[m>>>24]<<24|u[m>>>16&255]<<16|u[m>>>8&255]<<8|u[m&255]):(m=m<<8|m>>>24,m=u[m>>>24]<<24|u[m>>>16&255]<<16|u[m>>>8&255]<<8|u[m&255],m^=A[v/E|0]<<24),F[v]=F[v-E]^m);for(var I=this._invKeySchedule=[],_=0;_<b;_++){var v=b-_;if(_%4)var m=F[v];else var m=F[v-4];_<4||v<=4?I[_]=m:I[_]=g[u[m>>>24]]^f[u[m>>>16&255]]^y[u[m>>>8&255]]^c[u[m&255]]}}},encryptBlock:function(m,D){this._doCryptBlock(m,D,this._keySchedule,r,d,Q,i,u)},decryptBlock:function(m,D){var B=m[D+1];m[D+1]=m[D+3],m[D+3]=B,this._doCryptBlock(m,D,this._invKeySchedule,g,f,y,c,n);var B=m[D+1];m[D+1]=m[D+3],m[D+3]=B},_doCryptBlock:function(m,D,B,E,C,b,F,v){for(var I=this._nRounds,_=m[D]^B[0],N=m[D+1]^B[1],P=m[D+2]^B[2],O=m[D+3]^B[3],M=4,W=1;W<I;W++){var G=E[_>>>24]^C[N>>>16&255]^b[P>>>8&255]^F[O&255]^B[M++],z=E[N>>>24]^C[P>>>16&255]^b[O>>>8&255]^F[_&255]^B[M++],H=E[P>>>24]^C[O>>>16&255]^b[_>>>8&255]^F[N&255]^B[M++],L=E[O>>>24]^C[_>>>16&255]^b[N>>>8&255]^F[P&255]^B[M++];_=G,N=z,P=H,O=L}var G=(v[_>>>24]<<24|v[N>>>16&255]<<16|v[P>>>8&255]<<8|v[O&255])^B[M++],z=(v[N>>>24]<<24|v[P>>>16&255]<<16|v[O>>>8&255]<<8|v[_&255])^B[M++],H=(v[P>>>24]<<24|v[O>>>16&255]<<16|v[_>>>8&255]<<8|v[N&255])^B[M++],L=(v[O>>>24]<<24|v[_>>>16&255]<<16|v[N>>>8&255]<<8|v[P&255])^B[M++];m[D]=G,m[D+1]=z,m[D+2]=H,m[D+3]=L},keySize:256/32});t.AES=o._createHelper(p)})(),a.AES})})(nt)),nt.exports}var mt={exports:{}},Wh=mt.exports,Ua;function qh(){return Ua||(Ua=1,(function(e,s){(function(a,t,h){e.exports=t(k(),le(),ue(),oe(),X())})(Wh,function(a){return(function(){var t=a,h=t.lib,o=h.WordArray,l=h.BlockCipher,u=t.algo,n=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],r=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],d=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],Q=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],i=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],g=u.DES=l.extend({_doReset:function(){for(var A=this._key,p=A.words,m=[],D=0;D<56;D++){var B=n[D]-1;m[D]=p[B>>>5]>>>31-B%32&1}for(var E=this._subKeys=[],C=0;C<16;C++){for(var b=E[C]=[],F=d[C],D=0;D<24;D++)b[D/6|0]|=m[(r[D]-1+F)%28]<<31-D%6,b[4+(D/6|0)]|=m[28+(r[D+24]-1+F)%28]<<31-D%6;b[0]=b[0]<<1|b[0]>>>31;for(var D=1;D<7;D++)b[D]=b[D]>>>(D-1)*4+3;b[7]=b[7]<<5|b[7]>>>27}for(var v=this._invSubKeys=[],D=0;D<16;D++)v[D]=E[15-D]},encryptBlock:function(A,p){this._doCryptBlock(A,p,this._subKeys)},decryptBlock:function(A,p){this._doCryptBlock(A,p,this._invSubKeys)},_doCryptBlock:function(A,p,m){this._lBlock=A[p],this._rBlock=A[p+1],f.call(this,4,252645135),f.call(this,16,65535),y.call(this,2,858993459),y.call(this,8,16711935),f.call(this,1,1431655765);for(var D=0;D<16;D++){for(var B=m[D],E=this._lBlock,C=this._rBlock,b=0,F=0;F<8;F++)b|=Q[F][((C^B[F])&i[F])>>>0];this._lBlock=C,this._rBlock=E^b}var v=this._lBlock;this._lBlock=this._rBlock,this._rBlock=v,f.call(this,1,1431655765),y.call(this,8,16711935),y.call(this,2,858993459),f.call(this,16,65535),f.call(this,4,252645135),A[p]=this._lBlock,A[p+1]=this._rBlock},keySize:64/32,ivSize:64/32,blockSize:64/32});function f(A,p){var m=(this._lBlock>>>A^this._rBlock)&p;this._rBlock^=m,this._lBlock^=m<<A}function y(A,p){var m=(this._rBlock>>>A^this._lBlock)&p;this._lBlock^=m,this._rBlock^=m<<A}t.DES=l._createHelper(g);var c=u.TripleDES=l.extend({_doReset:function(){var A=this._key,p=A.words;if(p.length!==2&&p.length!==4&&p.length<6)throw new Error("Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.");var m=p.slice(0,2),D=p.length<4?p.slice(0,2):p.slice(2,4),B=p.length<6?p.slice(0,2):p.slice(4,6);this._des1=g.createEncryptor(o.create(m)),this._des2=g.createEncryptor(o.create(D)),this._des3=g.createEncryptor(o.create(B))},encryptBlock:function(A,p){this._des1.encryptBlock(A,p),this._des2.decryptBlock(A,p),this._des3.encryptBlock(A,p)},decryptBlock:function(A,p){this._des3.decryptBlock(A,p),this._des2.encryptBlock(A,p),this._des1.decryptBlock(A,p)},keySize:192/32,ivSize:64/32,blockSize:64/32});t.TripleDES=l._createHelper(c)})(),a.TripleDES})})(mt)),mt.exports}var ft={exports:{}},Xh=ft.exports,wa;function $h(){return wa||(wa=1,(function(e,s){(function(a,t,h){e.exports=t(k(),le(),ue(),oe(),X())})(Xh,function(a){return(function(){var t=a,h=t.lib,o=h.StreamCipher,l=t.algo,u=l.RC4=o.extend({_doReset:function(){for(var d=this._key,Q=d.words,i=d.sigBytes,g=this._S=[],f=0;f<256;f++)g[f]=f;for(var f=0,y=0;f<256;f++){var c=f%i,A=Q[c>>>2]>>>24-c%4*8&255;y=(y+g[f]+A)%256;var p=g[f];g[f]=g[y],g[y]=p}this._i=this._j=0},_doProcessBlock:function(d,Q){d[Q]^=n.call(this)},keySize:256/32,ivSize:0});function n(){for(var d=this._S,Q=this._i,i=this._j,g=0,f=0;f<4;f++){Q=(Q+1)%256,i=(i+d[Q])%256;var y=d[Q];d[Q]=d[i],d[i]=y,g|=d[(d[Q]+d[i])%256]<<24-f*8}return this._i=Q,this._j=i,g}t.RC4=o._createHelper(u);var r=l.RC4Drop=u.extend({cfg:u.cfg.extend({drop:192}),_doReset:function(){u._doReset.call(this);for(var d=this.cfg.drop;d>0;d--)n.call(this)}});t.RC4Drop=o._createHelper(r)})(),a.RC4})})(ft)),ft.exports}var gt={exports:{}},jh=gt.exports,ka;function Zh(){return ka||(ka=1,(function(e,s){(function(a,t,h){e.exports=t(k(),le(),ue(),oe(),X())})(jh,function(a){return(function(){var t=a,h=t.lib,o=h.StreamCipher,l=t.algo,u=[],n=[],r=[],d=l.Rabbit=o.extend({_doReset:function(){for(var i=this._key.words,g=this.cfg.iv,f=0;f<4;f++)i[f]=(i[f]<<8|i[f]>>>24)&16711935|(i[f]<<24|i[f]>>>8)&4278255360;var y=this._X=[i[0],i[3]<<16|i[2]>>>16,i[1],i[0]<<16|i[3]>>>16,i[2],i[1]<<16|i[0]>>>16,i[3],i[2]<<16|i[1]>>>16],c=this._C=[i[2]<<16|i[2]>>>16,i[0]&4294901760|i[1]&65535,i[3]<<16|i[3]>>>16,i[1]&4294901760|i[2]&65535,i[0]<<16|i[0]>>>16,i[2]&4294901760|i[3]&65535,i[1]<<16|i[1]>>>16,i[3]&4294901760|i[0]&65535];this._b=0;for(var f=0;f<4;f++)Q.call(this);for(var f=0;f<8;f++)c[f]^=y[f+4&7];if(g){var A=g.words,p=A[0],m=A[1],D=(p<<8|p>>>24)&16711935|(p<<24|p>>>8)&4278255360,B=(m<<8|m>>>24)&16711935|(m<<24|m>>>8)&4278255360,E=D>>>16|B&4294901760,C=B<<16|D&65535;c[0]^=D,c[1]^=E,c[2]^=B,c[3]^=C,c[4]^=D,c[5]^=E,c[6]^=B,c[7]^=C;for(var f=0;f<4;f++)Q.call(this)}},_doProcessBlock:function(i,g){var f=this._X;Q.call(this),u[0]=f[0]^f[5]>>>16^f[3]<<16,u[1]=f[2]^f[7]>>>16^f[5]<<16,u[2]=f[4]^f[1]>>>16^f[7]<<16,u[3]=f[6]^f[3]>>>16^f[1]<<16;for(var y=0;y<4;y++)u[y]=(u[y]<<8|u[y]>>>24)&16711935|(u[y]<<24|u[y]>>>8)&4278255360,i[g+y]^=u[y]},blockSize:128/32,ivSize:64/32});function Q(){for(var i=this._X,g=this._C,f=0;f<8;f++)n[f]=g[f];g[0]=g[0]+1295307597+this._b|0,g[1]=g[1]+3545052371+(g[0]>>>0<n[0]>>>0?1:0)|0,g[2]=g[2]+886263092+(g[1]>>>0<n[1]>>>0?1:0)|0,g[3]=g[3]+1295307597+(g[2]>>>0<n[2]>>>0?1:0)|0,g[4]=g[4]+3545052371+(g[3]>>>0<n[3]>>>0?1:0)|0,g[5]=g[5]+886263092+(g[4]>>>0<n[4]>>>0?1:0)|0,g[6]=g[6]+1295307597+(g[5]>>>0<n[5]>>>0?1:0)|0,g[7]=g[7]+3545052371+(g[6]>>>0<n[6]>>>0?1:0)|0,this._b=g[7]>>>0<n[7]>>>0?1:0;for(var f=0;f<8;f++){var y=i[f]+g[f],c=y&65535,A=y>>>16,p=((c*c>>>17)+c*A>>>15)+A*A,m=((y&4294901760)*y|0)+((y&65535)*y|0);r[f]=p^m}i[0]=r[0]+(r[7]<<16|r[7]>>>16)+(r[6]<<16|r[6]>>>16)|0,i[1]=r[1]+(r[0]<<8|r[0]>>>24)+r[7]|0,i[2]=r[2]+(r[1]<<16|r[1]>>>16)+(r[0]<<16|r[0]>>>16)|0,i[3]=r[3]+(r[2]<<8|r[2]>>>24)+r[1]|0,i[4]=r[4]+(r[3]<<16|r[3]>>>16)+(r[2]<<16|r[2]>>>16)|0,i[5]=r[5]+(r[4]<<8|r[4]>>>24)+r[3]|0,i[6]=r[6]+(r[5]<<16|r[5]>>>16)+(r[4]<<16|r[4]>>>16)|0,i[7]=r[7]+(r[6]<<8|r[6]>>>24)+r[5]|0}t.Rabbit=o._createHelper(d)})(),a.Rabbit})})(gt)),gt.exports}var yt={exports:{}},Jh=yt.exports,Ga;function Yh(){return Ga||(Ga=1,(function(e,s){(function(a,t,h){e.exports=t(k(),le(),ue(),oe(),X())})(Jh,function(a){return(function(){var t=a,h=t.lib,o=h.StreamCipher,l=t.algo,u=[],n=[],r=[],d=l.RabbitLegacy=o.extend({_doReset:function(){var i=this._key.words,g=this.cfg.iv,f=this._X=[i[0],i[3]<<16|i[2]>>>16,i[1],i[0]<<16|i[3]>>>16,i[2],i[1]<<16|i[0]>>>16,i[3],i[2]<<16|i[1]>>>16],y=this._C=[i[2]<<16|i[2]>>>16,i[0]&4294901760|i[1]&65535,i[3]<<16|i[3]>>>16,i[1]&4294901760|i[2]&65535,i[0]<<16|i[0]>>>16,i[2]&4294901760|i[3]&65535,i[1]<<16|i[1]>>>16,i[3]&4294901760|i[0]&65535];this._b=0;for(var c=0;c<4;c++)Q.call(this);for(var c=0;c<8;c++)y[c]^=f[c+4&7];if(g){var A=g.words,p=A[0],m=A[1],D=(p<<8|p>>>24)&16711935|(p<<24|p>>>8)&4278255360,B=(m<<8|m>>>24)&16711935|(m<<24|m>>>8)&4278255360,E=D>>>16|B&4294901760,C=B<<16|D&65535;y[0]^=D,y[1]^=E,y[2]^=B,y[3]^=C,y[4]^=D,y[5]^=E,y[6]^=B,y[7]^=C;for(var c=0;c<4;c++)Q.call(this)}},_doProcessBlock:function(i,g){var f=this._X;Q.call(this),u[0]=f[0]^f[5]>>>16^f[3]<<16,u[1]=f[2]^f[7]>>>16^f[5]<<16,u[2]=f[4]^f[1]>>>16^f[7]<<16,u[3]=f[6]^f[3]>>>16^f[1]<<16;for(var y=0;y<4;y++)u[y]=(u[y]<<8|u[y]>>>24)&16711935|(u[y]<<24|u[y]>>>8)&4278255360,i[g+y]^=u[y]},blockSize:128/32,ivSize:64/32});function Q(){for(var i=this._X,g=this._C,f=0;f<8;f++)n[f]=g[f];g[0]=g[0]+1295307597+this._b|0,g[1]=g[1]+3545052371+(g[0]>>>0<n[0]>>>0?1:0)|0,g[2]=g[2]+886263092+(g[1]>>>0<n[1]>>>0?1:0)|0,g[3]=g[3]+1295307597+(g[2]>>>0<n[2]>>>0?1:0)|0,g[4]=g[4]+3545052371+(g[3]>>>0<n[3]>>>0?1:0)|0,g[5]=g[5]+886263092+(g[4]>>>0<n[4]>>>0?1:0)|0,g[6]=g[6]+1295307597+(g[5]>>>0<n[5]>>>0?1:0)|0,g[7]=g[7]+3545052371+(g[6]>>>0<n[6]>>>0?1:0)|0,this._b=g[7]>>>0<n[7]>>>0?1:0;for(var f=0;f<8;f++){var y=i[f]+g[f],c=y&65535,A=y>>>16,p=((c*c>>>17)+c*A>>>15)+A*A,m=((y&4294901760)*y|0)+((y&65535)*y|0);r[f]=p^m}i[0]=r[0]+(r[7]<<16|r[7]>>>16)+(r[6]<<16|r[6]>>>16)|0,i[1]=r[1]+(r[0]<<8|r[0]>>>24)+r[7]|0,i[2]=r[2]+(r[1]<<16|r[1]>>>16)+(r[0]<<16|r[0]>>>16)|0,i[3]=r[3]+(r[2]<<8|r[2]>>>24)+r[1]|0,i[4]=r[4]+(r[3]<<16|r[3]>>>16)+(r[2]<<16|r[2]>>>16)|0,i[5]=r[5]+(r[4]<<8|r[4]>>>24)+r[3]|0,i[6]=r[6]+(r[5]<<16|r[5]>>>16)+(r[4]<<16|r[4]>>>16)|0,i[7]=r[7]+(r[6]<<8|r[6]>>>24)+r[5]|0}t.RabbitLegacy=o._createHelper(d)})(),a.RabbitLegacy})})(yt)),yt.exports}var ct={exports:{}},e0=ct.exports,Ha;function t0(){return Ha||(Ha=1,(function(e,s){(function(a,t,h){e.exports=t(k(),le(),ue(),oe(),X())})(e0,function(a){return(function(){var t=a,h=t.lib,o=h.BlockCipher,l=t.algo;const u=16,n=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],r=[[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946],[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055],[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504],[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462]];var d={pbox:[],sbox:[]};function Q(c,A){let p=A>>24&255,m=A>>16&255,D=A>>8&255,B=A&255,E=c.sbox[0][p]+c.sbox[1][m];return E=E^c.sbox[2][D],E=E+c.sbox[3][B],E}function i(c,A,p){let m=A,D=p,B;for(let E=0;E<u;++E)m=m^c.pbox[E],D=Q(c,m)^D,B=m,m=D,D=B;return B=m,m=D,D=B,D=D^c.pbox[u],m=m^c.pbox[u+1],{left:m,right:D}}function g(c,A,p){let m=A,D=p,B;for(let E=u+1;E>1;--E)m=m^c.pbox[E],D=Q(c,m)^D,B=m,m=D,D=B;return B=m,m=D,D=B,D=D^c.pbox[1],m=m^c.pbox[0],{left:m,right:D}}function f(c,A,p){for(let C=0;C<4;C++){c.sbox[C]=[];for(let b=0;b<256;b++)c.sbox[C][b]=r[C][b]}let m=0;for(let C=0;C<u+2;C++)c.pbox[C]=n[C]^A[m],m++,m>=p&&(m=0);let D=0,B=0,E=0;for(let C=0;C<u+2;C+=2)E=i(c,D,B),D=E.left,B=E.right,c.pbox[C]=D,c.pbox[C+1]=B;for(let C=0;C<4;C++)for(let b=0;b<256;b+=2)E=i(c,D,B),D=E.left,B=E.right,c.sbox[C][b]=D,c.sbox[C][b+1]=B;return!0}var y=l.Blowfish=o.extend({_doReset:function(){if(this._keyPriorReset!==this._key){var c=this._keyPriorReset=this._key,A=c.words,p=c.sigBytes/4;f(d,A,p)}},encryptBlock:function(c,A){var p=i(d,c[A],c[A+1]);c[A]=p.left,c[A+1]=p.right},decryptBlock:function(c,A){var p=g(d,c[A],c[A+1]);c[A]=p.left,c[A+1]=p.right},blockSize:64/32,keySize:128/32,ivSize:64/32});t.Blowfish=o._createHelper(y)})(),a.Blowfish})})(ct)),ct.exports}var a0=Pe.exports,Ka;function s0(){return Ka||(Ka=1,(function(e,s){(function(a,t,h){e.exports=t(k(),Ue(),Yo(),th(),le(),rh(),ue(),fa(),_t(),lh(),Da(),nh(),fh(),yh(),Nt(),xh(),oe(),X(),Eh(),Ch(),bh(),_h(),Rh(),Th(),Ph(),Mh(),wh(),Gh(),Kh(),Vh(),qh(),$h(),Zh(),Yh(),t0())})(a0,function(a){return a})})(Pe)),Pe.exports}var r0=s0();const za=oa(r0);class Va{configs=new Map;cache=new Map;getConfig(s){return this.configs.get(s)}register(s){this.configs.set(s.tag,s),s.items&&this.cache.set(s.tag,s.items)}unregister(s){this.configs.delete(s),this.cache.delete(s)}get(s){return this.cache.get(s)||[]}async asyncGet(s,a){const t=this.configs.get(s);return t?t.mode==="static"?this.getByConfig(t):t.mode==="async"?this.cache.has(s)?this.cache.get(s)||[]:this.asyncGetByConfig(t,a):[]:[]}getByConfig(s){return s.items||[]}async asyncGetByConfig(s,a={}){if(s.fetch){const t=await s.fetch(a||{});if(t){const[h,o]=s.keys||["name","id"];return this.deepFormat(t,h,o)}}return[]}deepFormat(s,a,t){return s.map(h=>{const o={label:h[a],value:h[t]};return h.children&&h.children.length>0&&(o.options=this.deepFormat(h.children,a,t)),o})}}x("DictionaryUtil",Va);function o0(e,s){return _gct.i18n.global.t(e,s)}var Wa=x("EditorRegisterConst",(e=>(e.PREFIX="EDITOR___",e))(Wa||{})),h0=x("EditorType",(e=>(e.LENGTH_UNIT="length-unit",e.COLOR="color",e.SPAN="span",e.TEXT="text",e.NUMBER="number",e.INFO="info",e.SELECT="select",e.RADIO="radio",e.PICKER="picker",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))(h0||{})),d0=x("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))(d0||{})),i0=x("FormContainerType",(e=>(e.FORM_TITLE_GROUP="form-title-group",e))(i0||{}));const ye=x("CoreConst",{TOKEN:"gct-token",TENANT:"gct-tenant"}),l0=x("STYLE_NAMESPACE_TAG","gct"),u0=x("PLUGIN_BASE_URL","/minio"),p0="is-";function pe(e,s,a,t,h){let o=`${e}-${s}`;return a&&(o+=`-${a}`),t&&(o+=`__${t}`),h&&(o+=`--${h}`),o}class qa{constructor(s,a){this.block=s,this.namespace=a||l0}namespace;b(s=""){return pe(this.namespace,this.block,s,"","")}e(s){return s?pe(this.namespace,this.block,"",s,""):""}m(s){return s?pe(this.namespace,this.block,"","",s):""}be(s,a){return s&&a?pe(this.namespace,this.block,s,a,""):""}em(s,a){return s&&a?pe(this.namespace,this.block,"",s,a):""}bm(s,a){return s&&a?pe(this.namespace,this.block,s,"",a):""}bem(s,a,t){return s&&a&&t?pe(this.namespace,this.block,s,a,t):""}is(s,a){return s&&a?`${p0}${s}`:""}cssVar(s){const a={};for(const t in s)s[t]&&(a[this.cssVarName(t)]=s[t]);return a}cssVarBlock(s){const a={};for(const t in s)s[t]&&(a[this.cssVarBlockName(t)]=s[t]);return a}cssVarName(s){return`--${this.namespace}-${s}`}cssVarBlockName(s){return`--${this.namespace}-${this.block}-${s}`}}x("Namespace",qa);var Rt,Xa;function n0(){if(Xa)return Rt;Xa=1;function e(h){if(typeof h!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(h))}function s(h,o){for(var l="",u=0,n=-1,r=0,d,Q=0;Q<=h.length;++Q){if(Q<h.length)d=h.charCodeAt(Q);else{if(d===47)break;d=47}if(d===47){if(!(n===Q-1||r===1))if(n!==Q-1&&r===2){if(l.length<2||u!==2||l.charCodeAt(l.length-1)!==46||l.charCodeAt(l.length-2)!==46){if(l.length>2){var i=l.lastIndexOf("/");if(i!==l.length-1){i===-1?(l="",u=0):(l=l.slice(0,i),u=l.length-1-l.lastIndexOf("/")),n=Q,r=0;continue}}else if(l.length===2||l.length===1){l="",u=0,n=Q,r=0;continue}}o&&(l.length>0?l+="/..":l="..",u=2)}else l.length>0?l+="/"+h.slice(n+1,Q):l=h.slice(n+1,Q),u=Q-n-1;n=Q,r=0}else d===46&&r!==-1?++r:r=-1}return l}function a(h,o){var l=o.dir||o.root,u=o.base||(o.name||"")+(o.ext||"");return l?l===o.root?l+u:l+h+u:u}var t={resolve:function(){for(var o="",l=!1,u,n=arguments.length-1;n>=-1&&!l;n--){var r;n>=0?r=arguments[n]:(u===void 0&&(u=process.cwd()),r=u),e(r),r.length!==0&&(o=r+"/"+o,l=r.charCodeAt(0)===47)}return o=s(o,!l),l?o.length>0?"/"+o:"/":o.length>0?o:"."},normalize:function(o){if(e(o),o.length===0)return".";var l=o.charCodeAt(0)===47,u=o.charCodeAt(o.length-1)===47;return o=s(o,!l),o.length===0&&!l&&(o="."),o.length>0&&u&&(o+="/"),l?"/"+o:o},isAbsolute:function(o){return e(o),o.length>0&&o.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var o,l=0;l<arguments.length;++l){var u=arguments[l];e(u),u.length>0&&(o===void 0?o=u:o+="/"+u)}return o===void 0?".":t.normalize(o)},relative:function(o,l){if(e(o),e(l),o===l||(o=t.resolve(o),l=t.resolve(l),o===l))return"";for(var u=1;u<o.length&&o.charCodeAt(u)===47;++u);for(var n=o.length,r=n-u,d=1;d<l.length&&l.charCodeAt(d)===47;++d);for(var Q=l.length,i=Q-d,g=r<i?r:i,f=-1,y=0;y<=g;++y){if(y===g){if(i>g){if(l.charCodeAt(d+y)===47)return l.slice(d+y+1);if(y===0)return l.slice(d+y)}else r>g&&(o.charCodeAt(u+y)===47?f=y:y===0&&(f=0));break}var c=o.charCodeAt(u+y),A=l.charCodeAt(d+y);if(c!==A)break;c===47&&(f=y)}var p="";for(y=u+f+1;y<=n;++y)(y===n||o.charCodeAt(y)===47)&&(p.length===0?p+="..":p+="/..");return p.length>0?p+l.slice(d+f):(d+=f,l.charCodeAt(d)===47&&++d,l.slice(d))},_makeLong:function(o){return o},dirname:function(o){if(e(o),o.length===0)return".";for(var l=o.charCodeAt(0),u=l===47,n=-1,r=!0,d=o.length-1;d>=1;--d)if(l=o.charCodeAt(d),l===47){if(!r){n=d;break}}else r=!1;return n===-1?u?"/":".":u&&n===1?"//":o.slice(0,n)},basename:function(o,l){if(l!==void 0&&typeof l!="string")throw new TypeError('"ext" argument must be a string');e(o);var u=0,n=-1,r=!0,d;if(l!==void 0&&l.length>0&&l.length<=o.length){if(l.length===o.length&&l===o)return"";var Q=l.length-1,i=-1;for(d=o.length-1;d>=0;--d){var g=o.charCodeAt(d);if(g===47){if(!r){u=d+1;break}}else i===-1&&(r=!1,i=d+1),Q>=0&&(g===l.charCodeAt(Q)?--Q===-1&&(n=d):(Q=-1,n=i))}return u===n?n=i:n===-1&&(n=o.length),o.slice(u,n)}else{for(d=o.length-1;d>=0;--d)if(o.charCodeAt(d)===47){if(!r){u=d+1;break}}else n===-1&&(r=!1,n=d+1);return n===-1?"":o.slice(u,n)}},extname:function(o){e(o);for(var l=-1,u=0,n=-1,r=!0,d=0,Q=o.length-1;Q>=0;--Q){var i=o.charCodeAt(Q);if(i===47){if(!r){u=Q+1;break}continue}n===-1&&(r=!1,n=Q+1),i===46?l===-1?l=Q:d!==1&&(d=1):l!==-1&&(d=-1)}return l===-1||n===-1||d===0||d===1&&l===n-1&&l===u+1?"":o.slice(l,n)},format:function(o){if(o===null||typeof o!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof o);return a("/",o)},parse:function(o){e(o);var l={root:"",dir:"",base:"",ext:"",name:""};if(o.length===0)return l;var u=o.charCodeAt(0),n=u===47,r;n?(l.root="/",r=1):r=0;for(var d=-1,Q=0,i=-1,g=!0,f=o.length-1,y=0;f>=r;--f){if(u=o.charCodeAt(f),u===47){if(!g){Q=f+1;break}continue}i===-1&&(g=!1,i=f+1),u===46?d===-1?d=f:y!==1&&(y=1):d!==-1&&(y=-1)}return d===-1||i===-1||y===0||y===1&&d===i-1&&d===Q+1?i!==-1&&(Q===0&&n?l.base=l.name=o.slice(1,i):l.base=l.name=o.slice(Q,i)):(Q===0&&n?(l.name=o.slice(1,d),l.base=o.slice(1,i)):(l.name=o.slice(Q,d),l.base=o.slice(Q,i)),l.ext=o.slice(d,i)),Q>0?l.dir=o.slice(0,Q-1):n&&(l.dir="/"),l},sep:"/",delimiter:":",win32:null,posix:null};return t.posix=t,Rt=t,Rt}var m0=n0();const J=oa(m0);class f0{static cache=new Map;static cacheModules=new Map;static module=new Map;static async loadPluginConfig(s,a,t=[]){const h=`${s}-${a}-${t.join("_")}`;if(this.cache.has(h))return this.cache.get(h);const o={client:a===Fe.WEB?"WEB":"MOBILE"};t.length>0&&(o.tag=t.join(","));const u=(await _api.platform.plugin.postGetTenantCompList(o)).data;return u.length>0&&this.cache.set(h,u),u}static async loadPlugins(s,a=[]){const t={};if(a.length>0){const h=a.map(l=>{const u=J.join(u0,l.url,"dist");return{imports:{[l.key]:`${u}/${s}.system.min.js?version=${l.version}`},styles:{[l.key]:`${u}/${s}.min.css?version=${l.version}`}}}),o=[];h.forEach(l=>{System.addImportMap(l),l.imports&&Object.keys(l.imports).forEach(u=>{const n=async()=>{try{const r=await System.import(u);t[u]=r,this.module.set(u,r)}catch(r){console.error(r)}};o.push(n())})}),await Promise.all(o)}return t}static async loadPlugin(s,a,t){t=["common",...t];const h=`${s}-${a}-${t.join("_")}`;try{const o=await this.loadPluginConfig(s,a,t);if(!this.cacheModules.has(h)){const l=[];o.forEach(n=>{n.plugins&&l.push(...n.plugins)});const u=await this.loadPlugins(s,l);this.cacheModules.set(h,u)}return[o,this.cacheModules.get(h)]}catch(o){console.error(o)}return[[],{}]}static async loadDesignPlugin(s,a,t=[]){try{const h=await this.loadPlugin(Ae.DESIGN,a,t),[o,l]=h;return o.forEach(u=>{u.plugins.forEach(r=>{const d=l[r.key];if(!d){console.error(`${r.key} 插件加载失败,请检查插件配置是否正确`);return}if(a===Fe.WEB){const Q=d.web??d.default;Q&&_gct.register.designer.web.register(r.key,()=>new Q)}else{const Q=d.mobile??d.default;Q&&_gct.register.designer.mobile.register(r.key,()=>new Q)}})}),h}catch(h){console.error(h)}return[[],{}]}static async loadDesignDeletedPlugins(s,a=[]){try{const t=await this.loadPlugins(Ae.DESIGN,a);a.forEach(h=>{const o=t[h.key];if(!o){console.error(`${h.key} 插件加载失败,请检查插件配置是否正确`);return}if(s===Fe.WEB){const l=o.web??o.default;l&&_gct.register.designer.web.register(h.key,()=>new l)}else{const l=o.mobile??o.default;l&&_gct.register.designer.mobile.register(h.key,()=>new l)}})}catch(t){console.error(t)}}static async loadMobilePlugin(s=[]){try{const a=await this.loadPlugins(Ae.MOBILE,s);s.forEach(t=>{if(!a[t.key]){console.error(`${t.key} 插件加载失败,请检查插件配置是否正确`);return}_gct.register.render.mobile.register(t.key,a[t.key].default)})}catch(a){console.error(a)}}static async loadWebPlugin(s=[]){try{const a=await this.loadPlugins(Ae.WEB,s);s.forEach(t=>{if(!a[t.key]){console.error(`${t.key} 插件加载失败,请检查插件配置是否正确`);return}_gct.register.render.web.register(t.key,a[t.key].default)})}catch(a){console.error(a)}}}x("PluginPgkUtil",f0);class g0{constructor(s,a=!1){this.isDev=a,this.url=new URL(s),this.baseDir=J.dirname(this.url.pathname)}baseDir;url;dir(s){return this.isDev===!0?s:this.url.origin+J.resolve(this.baseDir,s)}}x("PluginStaticResource",g0);function y0(e){if(e instanceof Array)e&&e.length>0&&e.splice(0,e.length);else if(e instanceof Object&&e)for(const s in e)Object.prototype.hasOwnProperty.call(e,s)&&delete e[s]}class c0{constructor(){this.map=new Map,this.maxListeners=100}setMaxListeners(s){this.maxListeners=s}getSize(s){return this.map.has(s)?this.map.get(s).length:0}addListener(s,a){if(a instanceof Function){this.map.has(s)||this.map.set(s,[]);const t=this.map.get(s);if(t.length<this.maxListeners)t.push(a);else throw new Error(`事件监听已达最大上限[${this.maxListeners}],无法新增监听!`)}}removeListener(s,a){if(this.map.has(s)){const t=this.map.get(s);if(t.length>0){for(let h=0;h<t.length;h++)if(t[h]===a){t.splice(h,1);break}}}}emit(s,...a){this.map.has(s)&&this.map.get(s).forEach(h=>{h(...a)})}async asyncEmit(s,...a){if(this.map.has(s)){const h=this.map.get(s).map(o=>o(...a));return Promise.all(h)}return[]}reset(){this.map.forEach(s=>{y0(s)}),this.map.clear()}}class $a{constructor(s){this.e=new c0,this.e.setMaxListeners(s||300)}getSize(s){return this.e.getSize(s)}on(s,a){this.e.addListener(s,a)}off(s,a){this.e.removeListener(s,a)}emit(s,...a){this.e.emit(s,...a)}asyncEmit(s,...a){return this.e.asyncEmit(s,...a)}reset(){this.e.reset()}}const{toString:D0}=Object.prototype;function x0(e){return v0(e)==="function"}const Q0={"[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 v0(e){return Q0[D0.call(e)]}function St(e,s,a=0,t=!1,h="/"){let o="";if(t&&!/^(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 u=location.hostname;u.indexOf(".")!==u.lastIndexOf(".")&&(o=`;domain=${u.substring(u.indexOf("."),u.length)}`)}if(a!==0){const l=a*24*60*60*1e3,u=new Date(new Date().getTime()+l);document.cookie=`${e}=${escape(s)};path=${h};expires=${u.toUTCString()}${o}`}else document.cookie=`${e}=${escape(s)};path=${h}${o}`}function ja(e,s){St(e,"",-1,s)}function Za(e){const s=new RegExp(`(^| )${e}=([^;]*)(;|$)`),a=document.cookie.match(s);return a&&a.length>1?unescape(a[2]):null}class Dt{constructor(){this.items=[]}get size(){return this.items.length}callSync(s,...a){const t=s||Object.create({});let h;for(let o=0;o<this.items.length;o++){const l=this.items[o];if(l.fn&&(h=l.fn(t,...a)),h===null){console.warn(`因${l.fn?l.fn.name:null}方法返回值为「null」,钩子中断执行。`,l);break}}return t}tap(s){if(s&&x0(s)){const a={mode:"sync"};a.fn=s,this.items.push(a)}}removeTap(s){if(s)for(let a=0;a<this.items.length;a++){const t=this.items[a];s===t.fn&&this.items.splice(a,1)}}clear(){this.items=[]}}function Ja(){return Za(ye.TOKEN)}function Ya(e){e?St(ye.TOKEN,e,7,!0):ja(ye.TOKEN,!0)}function A0(){return Za(ye.TENANT)}function E0(e){e?St(ye.TENANT,e,7,!0):ja(ye.TENANT,!0)}function es(){const e=location.pathname.replace("/src/projects","").split("/");return{aid:e[2],pid:e[3]}}const B0=x("isMobile",(()=>{const e=navigator.userAgent,s=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/,a=window.innerWidth<=768,t="ontouchstart"in window||navigator.maxTouchPoints>0;return s.test(e)||a&&t})());function ts(){return localStorage.getItem(Co)||"UTC+08:00"}function as(e,s){return Et(Ne(e),s,(a,t)=>{if(typeof a=="object"&&typeof t=="object")return Et(Ne(a),t,(h,o)=>Array.isArray(h)?Ht(h,o,Kt):void 0)})}function C0(e,s,a,t){return{install(h){e&&s&&_gct.register.editor.register(Wa.PREFIX+e,s),a&&h.component(t??a.name,a)}}}function ss(e){e.interceptors.request.use(s=>{if(s.headers||(s.headers=new zt),Object.assign(s.headers,{Token:Ja(),Source:B0?502:501,Lang:_gct.store.lang,"Tenant-Id":_gct.store.tenantId,Timezone:ts()}),!s.headers["App-Tag"])if(s.url.includes("/gct-apaas/")){const a=es();s.headers["App-Tag"]=a.aid,s.headers.Module="TENANT_CENTER"}else s.headers["App-Tag"]="__platform__";return[fe.TENANT_CENTER,fe.APP_DESIGNER,fe.WEB_RENDER].includes(_gct.store.projectName)?s.headers.Module="TENANT_CENTER":_gct.store.projectName===fe.BACKEND_MANAGEMENT&&(s.headers.Module="BACKEND_MANAGEMENT"),s})}const I0=wt("global-store",{state(){return new Jt},getters:{tenantList(){return this.userInfo.tenantList||[]}},actions:{setProjectName(e){this.$state.projectName=e},setTenantId(e){this.$state.tenantId=e},setLang(e){this.$state.lang=e},async login(e){const{username:s,password:a}=e,t=await _gct.api.platform.login.postSign({username:s,password:za.SHA256(a).toString(za.enc.Hex)});return this.$state.userInfo=t.data,Ya(t.data.token),t.data},async loadUserInfo(){const e=await _gct.api.platform.user.getInfo();return this.$state.userInfo=e.data,e.data},async loadTenantUserInfo(){const e=await _gct.api.platform.tenant.getUserInfo();return this.$state.tenantUserInfo=e.data,e.data}}});class rs{pinia=kt();store;constructor(){Gt(this.pinia),this.store=I0()}}x("GlobalStoreUtil",rs);class Tt{map=new Map;providers=new Map;hooks={register:new Dt,unregister:new Dt};register(s,a){this.map.set(s,a);const t=a();this.providers.set(s,t),this.hooks.register.callSync(null,s,t)}unregister(s){this.map.delete(s);const a=this.providers.get(s);a&&(this.hooks.unregister.callSync(null,s,a),this.providers.delete(s))}getProvider(s){return this.providers.get(s)}getKeys(){return Array.from(this.map.keys())}getProviders(){return Array.from(this.providers.values())}}x("DesignerRegister",Tt);class ce{static editors=new Map;static providers=new Map;static register(s,a){ce.editors.set(s,a)}static unregister(s){ce.editors.delete(s)}static get(s){if(this.providers.has(s))return this.providers.get(s);const a=ce.editors.get(s);if(a){const t=a();return this.providers.set(s,t),t}return null}}x("EditorRegister",ce);class De{static items=new Map;static register(s,a){De.items.set(s,a)}static unregister(s){De.items.delete(s)}static create(s){const a=De.items.get(s);return a?a():null}}x("FormItemRegister",De);class Ft{map=new Map;hooks={register:new Dt,unregister:new Dt};register(s,a){this.map.set(s,a),this.hooks.register.callSync(null,s,a)}unregister(s){this.map.delete(s),this.hooks.unregister.callSync(null,s)}get(s){return this.map.get(s)}keys(){return Array.from(this.map.keys())}}x("RenderRegister",Ft);var xt=(e=>(e.DEV="dev",e.TEST="test",e.PROD="prod",e))(xt||{});const b0=/^http:\/\/\d{1,3}(\.\d{1,3}){3}:(\d{1,5})$/,os=/^https?:\/\/([a-z0-9]+)-test\./,L0=/\/web-render|\/web\/|web-single\/|dev-single\/|test-single\//,_0=/\/web\/|\/web-single\//,N0=/\/web-render\//,R0=/\/dev-single\//,S0=/\/test-single\//;class T0{_testEnv=!1;_testTenantData={};_platformOrigin;_isHostMode=!1;constructor(){this._platformOrigin=location.origin||"",this._isHostMode=os.test(this._platformOrigin)}get isAppRun(){return L0.test(location.pathname)}get isAppProd(){return _0.test(location.pathname)}get isAppPreview(){return N0.test(location.pathname)}get isDevSingleEnv(){return R0.test(location.pathname)}get isTestEnv(){return S0.test(location.pathname)||this._testEnv}get platformOrigin(){return this._platformOrigin}get isHostMode(){return this._isHostMode}get testTenantData(){return this._testTenantData}async checkIsTestEnv(){let s=null;if(this._isHostMode){if(s=this._platformOrigin.match(os),this._testEnv=!!(s&&s[1]),this._testEnv){const a=await _api.platform.tenant.getInfoByPortOrDomain({domain:s[1]});Object.assign(this._testTenantData,a.data)}}else{s=this._platformOrigin.match(b0);const a=s&&s[2];if(a){const t=await _api.platform.tenant.getInfoByPortOrDomain({port:a});t.data&&(Object.assign(this._testTenantData,t.data),this._testEnv=t.data.testEnvPort===a)}}}getEnv(){return this.isTestEnv?xt.TEST:this.isAppProd?xt.PROD:xt.DEV}}class F0{i18n=Wt({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 s=this.getMessageUrl({locale:this.locale});await this.loadMessages(s)}async loadLocales(){const s=await(await fetch("/gct-platform/api/i18n-config/list")).json();if(s.code===200){const a=s.data.find(t=>t.defaultLanguage);this.locale=a.languageTag}}async loadMessages(s,a=this.locale){const o=(await(await fetch(s)).text()).split(`
15
- `).reduce((l,u)=>{const[n,...r]=u.split(":");return l[n]=r.join(":"),l},{});this.i18n.global.mergeLocaleMessage(a,o)}getMessageUrl(s){if("app"in s){const a=s.env==="dev"?`dev_${s.branch}`:s.env;return`minio/${s.app}/locale-js/${a}/${s.locale}__.json`}return`/minio/locale-js/${s.locale}__platform__.json`}}function P0(e){e.use(_gct.i18n)}const O0=[];class M0{router;constructor(){this.router=qt({history:Xt(),routes:O0})}async add(s){Array.isArray(s)?s.forEach(a=>this.add(a)):this.router.addRoute(s),await this.router.replace(this.router.currentRoute.value.fullPath)}}function U0(e){e.use(_gct.router)}class hs{i18nUtil=new F0;i18n=this.i18nUtil.i18n;t(s,a){return this.i18n.global.t(s,a)}storeUtil=new rs;store=this.storeUtil.store;routerUtil=new M0;router=this.routerUtil.router;message;dictionary=new Va;env=new T0;register={designer:{mobile:new Tt,web:new Tt},render:{mobile:new Ft,web:new Ft},editor:ce,formItem:De};async init(){await this.env.checkIsTestEnv()}}x("GctGlobal",hs);const w0=[{name:"appBranch",entityName:"app-branch",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appGlobalSettings",entityName:"app-global-settings",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appGrantedUser",entityName:"app-granted-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"post",method:"postBatch",path:"batch",hasQuery:!1,hasData:!0},{mode:"get",method:"getGrantedStatistic",path:"grantedStatistic",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getRemoveAndTransfer",path:"removeAndTransfer",hasQuery:!0,hasData:!1},{mode:"get",method:"getUngrantedList",path:"ungranted/list",hasQuery:!1,hasData:!1}]},{name:"appOrg",entityName:"app-org",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postTransferAndDelete",path:"transferAndDelete",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserAdd",path:"user/add",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserCreateAndAdd",path:"user/createAndAdd",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserInfo",path:"user/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserMove",path:"user/move",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserPageList",path:"user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserRemove",path:"user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserUpdate",path:"user/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appPublishLog",entityName:"app-publish-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appState",entityName:"app-state",apis:[{mode:"get",method:"getDraft",path:"draft",hasQuery:!1,hasData:!1}]},{name:"appUser",entityName:"app-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!1,hasData:!0},{mode:"put",method:"putDisable",path:"disable",hasQuery:!0,hasData:!1},{mode:"put",method:"putEnable",path:"enable",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRemove",path:"remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetDefaultPwd",path:"reset/default/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetDefaultSignPwd",path:"reset/default/signPwd",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"approvalLog",entityName:"approval-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"auditLog",entityName:"audit-log",apis:[{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getModules",path:"modules",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperateTypes",path:"operateTypes",hasQuery:!0,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0}]},{name:"basicConfig",entityName:"basic-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"get",method:"getAiRagEnabled",path:"aiRagEnabled",hasQuery:!1,hasData:!1},{mode:"get",method:"getDetail",path:"detail",hasQuery:!0,hasData:!1},{mode:"post",method:"postGlobal",path:"global",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postTheme",path:"theme",hasQuery:!1,hasData:!0},{mode:"put",method:"putKey",path:"{key}",hasQuery:!1,hasData:!0}]},{name:"bizEvent",entityName:"biz-event",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"bizProcessDefinition",entityName:"biz-process-definition",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteDeleteCategory",path:"deleteCategory",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"bizProcessDefinitionVersion",entityName:"biz-process-definition-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postDeploy",path:"deploy",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveAndDeploy",path:"saveAndDeploy",hasQuery:!1,hasData:!0},{mode:"get",method:"getId",path:"",hasQuery:!0,hasData:!1}]},{name:"bizServiceCrud",entityName:"biz-service-crud",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataModelList",path:"data-model/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getViewModelList",path:"view-model/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"bizService",entityName:"biz-service",apis:[{mode:"get",method:"getModelKeyBsKey",path:"{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postModelKeyBsKey",path:"{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putModelKeyBsKey",path:"{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteModelKeyBsKey",path:"{modelKey}/{bsKey}",hasQuery:!0,hasData:!1}]},{name:"bom",entityName:"bom",apis:[{mode:"post",method:"postImport",path:"import",hasQuery:!1,hasData:!1}]},{name:"category",entityName:"category",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetListRdoOrNdo",path:"getListRdoOrNdo",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListComplete",path:"listComplete",hasQuery:!0,hasData:!1},{mode:"get",method:"getPage",path:"page",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"categoryRelation",entityName:"category-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"chat",entityName:"chat",apis:[{mode:"post",method:"postImportExcel",path:"importExcel",hasQuery:!0,hasData:!1}]},{name:"codeTs",entityName:"code-ts",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1}]},{name:"commitLog",entityName:"commit-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCanPublishProdReleaseTagList",path:"canPublishProdReleaseTagList",hasQuery:!1,hasData:!1},{mode:"get",method:"getCanReleaseTagList",path:"canReleaseTagList",hasQuery:!1,hasData:!1},{mode:"post",method:"postCommit",path:"commit",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetLatestCommit",path:"getLatestCommit",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getReleaseInfo",path:"release/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getReleasePageList",path:"release/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getViewDetail",path:"viewDetail",hasQuery:!0,hasData:!1},{mode:"get",method:"getViewDraft",path:"viewDraft",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"commonInfoCard",entityName:"common-info-card",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetById",path:"getById",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postList",path:"list",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpdateName",path:"updateName",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"controlConfig",entityName:"control-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCategoryList",path:"category/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getSpecialPageList",path:"special/page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"customerComplaint",entityName:"customer-complaint",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getSync",path:"sync",hasQuery:!1,hasData:!1},{mode:"get",method:"getUpdateFeishu",path:"updateFeishu",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dashboard",entityName:"dashboard",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dataModel",entityName:"data-model",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dataSource",entityName:"data-source",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSelect",path:"select",hasQuery:!1,hasData:!0}]},{name:"dataTrace",entityName:"data-trace",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"designerCommon",entityName:"designer-common",apis:[{mode:"get",method:"getEnumModelFieldList",path:"enumModelField/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetApp",path:"getApp",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetCanBeUsedOrg",path:"getCanBeUsedOrg",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetCanBeUsedOrgUser",path:"getCanBeUsedOrgUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetUserGroupUser",path:"getUserGroupUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetVisibleOrg",path:"getVisibleOrg",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetVisibleOrgUser",path:"getVisibleOrgUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetVisibleUser",path:"getVisibleUser",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetVisibleUserAndVisibleOrgUser",path:"getVisibleUserAndVisibleOrgUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getListUserByIds",path:"listUserByIds",hasQuery:!0,hasData:!1},{mode:"get",method:"getTableEntityModelList",path:"table-entity-model/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadFile",path:"upload/file",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadLabelImage",path:"upload/label/image",hasQuery:!1,hasData:!1},{mode:"get",method:"getUserInfo",path:"user/info",hasQuery:!1,hasData:!1}]},{name:"designerLock",entityName:"designer-lock",apis:[{mode:"post",method:"postCancelOccupyPage",path:"cancelOccupyPage",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetPageOccupyMsg",path:"getPageOccupyMsg",hasQuery:!0,hasData:!1},{mode:"post",method:"postLockPage",path:"lockPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postOccupyPage",path:"occupyPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postUnLockPage",path:"unLockPage",hasQuery:!1,hasData:!0}]},{name:"designerOperateLog",entityName:"designer-operate-log",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"devops",entityName:"devops",apis:[{mode:"get",method:"getListAllDigitsFields",path:"listAllDigitsFields",hasQuery:!1,hasData:!1},{mode:"post",method:"postUpdateDigits",path:"updateDigits",hasQuery:!1,hasData:!0}]},{name:"difyChat",entityName:"dify-chat",apis:[{mode:"post",method:"postAsyncDocument",path:"asyncDocument",hasQuery:!1,hasData:!0},{mode:"post",method:"postChat",path:"chat",hasQuery:!1,hasData:!0}]},{name:"docControlStarted",entityName:"doc-control-started",apis:[{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"docControlTaskDone",entityName:"doc-control-task-done",apis:[{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"docControlTaskTodo",entityName:"doc-control-task-todo",apis:[{mode:"get",method:"getAllUserPageList",path:"all-user/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getCount",path:"count",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"docControl",entityName:"doc-control",apis:[{mode:"post",method:"postProcessApprove",path:"process/approve",hasQuery:!1,hasData:!0},{mode:"get",method:"getProcessInfo",path:"process/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postProcessInterfereReassign",path:"process/interfere/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessInterfereReturn",path:"process/interfere/return",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessJump",path:"process/jump",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReassign",path:"process/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessResubmit",path:"process/resubmit",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReturn",path:"process/return",hasQuery:!1,hasData:!0},{mode:"get",method:"getProcessStartProcess",path:"process/startProcess",hasQuery:!0,hasData:!1}]},{name:"docOutline",entityName:"doc-outline",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByInstance",path:"listByInstance",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByRefId",path:"listByRefId",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getSheet",path:"sheet",hasQuery:!0,hasData:!1},{mode:"get",method:"getSheetByInstance",path:"sheetByInstance",hasQuery:!0,hasData:!1},{mode:"get",method:"getSheetByRefId",path:"sheetByRefId",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"document",entityName:"document",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopy",path:"copy",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyVersionId",path:"copyVersion/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putDesignId",path:"design/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getDocumentDataClean",path:"documentDataClean",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetVersionById",path:"getVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListVersionById",path:"listVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveVersionById",path:"removeVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postSaveVersion",path:"saveVersion",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateVersionByIdId",path:"updateVersionById/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"edhrInstance",entityName:"edhr-instance",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByMaterialNo",path:"findByMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindMaterialNo",path:"findMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getReversePageList",path:"reverse/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getRunningPage",path:"running/page",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateInstanceStatusById4ArchivedId",path:"updateInstanceStatusById4Archived/{id}",hasQuery:!1,hasData:!1}]},{name:"edhrInstanceRelation",entityName:"edhr-instance-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getListTree",path:"list/tree",hasQuery:!0,hasData:!1},{mode:"get",method:"getListChild",path:"listChild",hasQuery:!0,hasData:!1}]},{name:"edhrInstanceSearchHistory",entityName:"edhr-instance-search-history",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1}]},{name:"edhrTmpl",entityName:"edhr-tmpl",apis:[{mode:"post",method:"postControl",path:"control",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postCopyVersionId",path:"copyVersion/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetVersionById",path:"getVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getListVersionById",path:"listVersionById",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveById",path:"removeById",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveVersionById",path:"removeVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveVersion",path:"saveVersion",hasQuery:!1,hasData:!0},{mode:"put",method:"putSetDefaultId",path:"setDefault/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putUpdateVersionByIdId",path:"updateVersionById/{id}",hasQuery:!1,hasData:!0}]},{name:"eleSearch",entityName:"ele-search",apis:[{mode:"get",method:"getSearchByKey",path:"searchByKey",hasQuery:!0,hasData:!1}]},{name:"enumModel",entityName:"enum-model",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSubmitWithFields",path:"submitWithFields",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateIconStateId",path:"updateIconState/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateTextStateId",path:"updateTextState/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"enumModelField",entityName:"enum-model-field",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"event",entityName:"event",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"eventLog",entityName:"event-log",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"excelTmpl",entityName:"excel-tmpl",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postConfig",path:"config",hasQuery:!1,hasData:!0},{mode:"get",method:"getDetail",path:"detail",hasQuery:!0,hasData:!1},{mode:"get",method:"getDownloadPlatId",path:"download-plat/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getDownloadId",path:"download/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInitTmpl",path:"init/tmpl",hasQuery:!0,hasData:!1},{mode:"post",method:"postInitTmpl",path:"init/tmpl",hasQuery:!0,hasData:!0},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postV1Config",path:"v1/config",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"excel",entityName:"excel",apis:[{mode:"get",method:"getDataDoImport",path:"data/doImport",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataExport",path:"data/export",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataImport",path:"data/import",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataPreview",path:"data/preview",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataReport",path:"data/report",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataValidate",path:"data/validate",hasQuery:!0,hasData:!1}]},{name:"fieldMeta",entityName:"field-meta",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCompleteDataVersion",path:"complete/dataVersion",hasQuery:!1,hasData:!1},{mode:"put",method:"putDecimalDigitsAllDigits",path:"decimal/digits/all/{digits}",hasQuery:!1,hasData:!1},{mode:"post",method:"postFuncCheck",path:"func/check",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListConditionField",path:"listConditionField",hasQuery:!0,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageGetRecycledList",path:"page/getRecycledList",hasQuery:!0,hasData:!1},{mode:"put",method:"putPageRecycledRestoreFieldId",path:"page/recycledRestore/{fieldId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postPreview",path:"preview",hasQuery:!1,hasData:!0},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"put",method:"putUniqueConstraintAddModelKeyFieldKeyType",path:"unique/constraint/add/{modelKey}/{fieldKey}/{type}",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"field",entityName:"field",apis:[{mode:"delete",method:"deleteRemove",path:"remove",hasQuery:!0,hasData:!1}]},{name:"fileResource",entityName:"file-resource",apis:[{mode:"post",method:"postBase64Upload",path:"base64Upload",hasQuery:!1,hasData:!0},{mode:"post",method:"postList",path:"list",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpload",path:"upload",hasQuery:!0,hasData:!1}]},{name:"fileTask",entityName:"file-task",apis:[{mode:"get",method:"getStart",path:"start",hasQuery:!1,hasData:!1},{mode:"post",method:"postStatus",path:"status",hasQuery:!1,hasData:!0},{mode:"post",method:"postSubmit",path:"submit",hasQuery:!1,hasData:!0}]},{name:"file",entityName:"file",apis:[{mode:"post",method:"postPdfEncode",path:"pdf/encode",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadImage",path:"upload/image",hasQuery:!0,hasData:!1}]},{name:"formRelate",entityName:"formRelate",apis:[{mode:"get",method:"getCategory",path:"category",hasQuery:!0,hasData:!1},{mode:"post",method:"postCategory",path:"category",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteCategory",path:"category",hasQuery:!0,hasData:!1},{mode:"put",method:"putCategoryDrag",path:"category/drag",hasQuery:!1,hasData:!0},{mode:"put",method:"putCategoryId",path:"category/{id}",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteDeleteCategory",path:"deleteCategory",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllCategory",path:"listAllCategory",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllVersion",path:"listAllVersion",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListAllModelKey",path:"page/listAllModelKey",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListFormAppendChild",path:"page/listFormAppendChild",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListFormNoChild",path:"page/listFormNoChild",hasQuery:!0,hasData:!1}]},{name:"frontOperateLog",entityName:"front-operate-log",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"globalMethod",entityName:"global-method",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCurrentTime",path:"currentTime",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"i18NInfo",entityName:"i18n-info",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getLangDownload",path:"lang/download",hasQuery:!0,hasData:!1},{mode:"post",method:"postLangUpload",path:"lang/upload",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putKey",path:"{key}",hasQuery:!1,hasData:!0}]},{name:"instanceRelation",entityName:"instance-relation",apis:[{mode:"post",method:"postBind",path:"bind",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteUnbind",path:"unbind",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateTitle",path:"updateTitle",hasQuery:!0,hasData:!1}]},{name:"ipaas",entityName:"ipaas",apis:[{mode:"post",method:"postWebhook",path:"webhook",hasQuery:!1,hasData:!0}]},{name:"job",entityName:"job",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCronValid",path:"cron/valid",hasQuery:!1,hasData:!0},{mode:"post",method:"postExec",path:"exec",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putStatusId",path:"status/{id}",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"jobLog",entityName:"job-log",apis:[{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"jsEngine",entityName:"js-engine",apis:[{mode:"get",method:"getExecKey",path:"exec/{key}",hasQuery:!0,hasData:!1},{mode:"post",method:"postExecKey",path:"exec/{key}",hasQuery:!0,hasData:!1},{mode:"post",method:"postExecute",path:"execute",hasQuery:!1,hasData:!0}]},{name:"label",entityName:"label",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopy",path:"copy",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyVersionId",path:"copyVersion/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getEntityInfo",path:"entity/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getEntityUpdateDatetimeSql",path:"entity/update/datetime/sql",hasQuery:!1,hasData:!1},{mode:"get",method:"getExecute",path:"execute",hasQuery:!1,hasData:!1},{mode:"get",method:"getExport",path:"export",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetVersionById",path:"getVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postImport",path:"import",hasQuery:!1,hasData:!1},{mode:"post",method:"postLabelDuplicateNameCheck",path:"labelDuplicateNameCheck",hasQuery:!1,hasData:!0},{mode:"get",method:"getLabelParentDataClean",path:"labelParentDataClean",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListFont",path:"listFont",hasQuery:!1,hasData:!1},{mode:"get",method:"getListVersionById",path:"listVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveVersionById",path:"removeVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postSaveVersion",path:"saveVersion",hasQuery:!1,hasData:!0},{mode:"get",method:"getTest",path:"test",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDesigner",path:"updateDesigner",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateVersionByIdId",path:"updateVersionById/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postXmlSetting",path:"xmlSetting",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"labelLog",entityName:"label-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"loginLog",entityName:"login-log",apis:[{mode:"post",method:"postUserLoginLogPage",path:"userLoginLogPage",hasQuery:!1,hasData:!0}]},{name:"medPro",entityName:"medPro",apis:[{mode:"post",method:"postModelMetaDataAssociation",path:"modelMeta/dataAssociation",hasQuery:!1,hasData:!0},{mode:"get",method:"getModelMetaModelDataAssociation",path:"modelMeta/modelDataAssociation",hasQuery:!0,hasData:!1}]},{name:"menuConfig",entityName:"menu-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getAvailableList",path:"available/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"mergeLog",entityName:"merge-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"messageRecord",entityName:"message-record",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"messageSetting",entityName:"message-setting",apis:[{mode:"get",method:"getFindAllByType",path:"findAllByType",hasQuery:!0,hasData:!1},{mode:"post",method:"postSendMessageByType",path:"sendMessageByType",hasQuery:!1,hasData:!0}]},{name:"messageTmpl",entityName:"message-tmpl",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListByModelKey",path:"listByModelKey",hasQuery:!0,hasData:!1},{mode:"put",method:"putOpened",path:"opened",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postProcessSend",path:"processSend",hasQuery:!1,hasData:!0},{mode:"post",method:"postSend",path:"send",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"mobileHomepage",entityName:"mobile-homepage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetSelected",path:"getSelected",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSelect",path:"select",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"mobilePage",entityName:"mobile-page",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyByIdId",path:"copyById/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"modelComprehensive",entityName:"model-comprehensive",apis:[{mode:"delete",method:"deleteBizServiceApi",path:"biz-service-api",hasQuery:!0,hasData:!1},{mode:"get",method:"getBizServiceApiListModelCategory",path:"biz-service-api/list/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"put",method:"putBizServiceApiId",path:"biz-service-api/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postBizServiceApiModelCategory",path:"biz-service-api/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postBizServiceGeneralModelCategoryModelKeyBsKey",path:"biz-service/general/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getBizServiceModelCategoryModelKeyBsKey",path:"biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postBizServiceModelCategoryModelKeyBsKey",path:"biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putBizServiceModelCategoryModelKeyBsKey",path:"biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteBizServiceModelCategoryModelKeyBsKey",path:"biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getEnumInfoModelCategory",path:"enum/info/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"post",method:"postExportModelCategoryModelKeyTmplKey",path:"export/{modelCategory}/{modelKey}/{tmplKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getFieldListModelCategory",path:"field/list/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"get",method:"getMethodListModelCategory",path:"method/list/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelDetailListByKeysModelCategory",path:"model/detail/listByKeys/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelDetailModelCategory",path:"model/detail/{modelCategory}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelForm",path:"model/form",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelSummary",path:"model/summary",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelSystem",path:"model/system",hasQuery:!1,hasData:!1},{mode:"post",method:"postQueryAllModelDataAndDrillData",path:"queryAllModelDataAndDrillData",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryFieldValueByRefChainDataModelCategory",path:"queryFieldValueByRefChainData/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryModelDataAndDrillData",path:"queryModelDataAndDrillData",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryRefChainDataModelCategory",path:"queryRefChainData/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryRefDataModelCategory",path:"queryRefData/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryRefDataByIdModelCategory",path:"queryRefDataById/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQueryRefDataByIdsModelCategory",path:"queryRefDataByIds/{modelCategory}",hasQuery:!1,hasData:!0},{mode:"post",method:"postQuerySearchRefChainData",path:"querySearchRefChainData",hasQuery:!1,hasData:!0},{mode:"get",method:"getSubModelList",path:"sub-model/list",hasQuery:!0,hasData:!1}]},{name:"modelData",entityName:"model-data",apis:[{mode:"post",method:"postAllModelLiquibaseSoftDeleteDataClean",path:"allModelLiquibaseSoftDeleteDataClean",hasQuery:!1,hasData:!1},{mode:"post",method:"postAllModelSoftDeleteDataClean",path:"allModelSoftDeleteDataClean",hasQuery:!1,hasData:!1},{mode:"get",method:"getCheckFieldValueExist",path:"checkFieldValueExist",hasQuery:!0,hasData:!1},{mode:"post",method:"postQueryRefData",path:"queryRefData",hasQuery:!1,hasData:!0},{mode:"post",method:"postSingleModelSoftDeleteDataClean",path:"singleModelSoftDeleteDataClean",hasQuery:!0,hasData:!1}]},{name:"modelMeta",entityName:"model-meta",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getAggList",path:"agg/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAggModel",path:"agg/model",hasQuery:!0,hasData:!1},{mode:"get",method:"getByKeys",path:"by/keys",hasQuery:!0,hasData:!1},{mode:"put",method:"putConstantModelKey",path:"constant/{modelKey}",hasQuery:!1,hasData:!0},{mode:"get",method:"getDetail",path:"detail",hasQuery:!0,hasData:!1},{mode:"put",method:"putDisplayModelKeyFieldKey",path:"display/{modelKey}/{fieldKey}",hasQuery:!1,hasData:!1},{mode:"get",method:"getEr",path:"er",hasQuery:!1,hasData:!1},{mode:"get",method:"getFindAllByTypeIn",path:"findAllByTypeIn",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAll",path:"list-all",hasQuery:!1,hasData:!1},{mode:"get",method:"getListAllModelAndFieldByName",path:"listAllModelAndFieldByName",hasQuery:!0,hasData:!1},{mode:"get",method:"getListMasterModel",path:"listMasterModel",hasQuery:!0,hasData:!1},{mode:"get",method:"getListModelReferencedBy",path:"listModelReferencedBy",hasQuery:!0,hasData:!1},{mode:"get",method:"getListSlaveModel",path:"listSlaveModel",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageGetRecycledList",path:"page/getRecycledList",hasQuery:!0,hasData:!1},{mode:"put",method:"putPageRecycledRestoreModelKey",path:"page/recycledRestore/{modelKey}",hasQuery:!1,hasData:!1},{mode:"get",method:"getPermissionEnabledList",path:"permission-enabled/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"put",method:"putSupportMessageModelKeyEnabled",path:"support-message/{modelKey}/{enabled}",hasQuery:!1,hasData:!1},{mode:"get",method:"getSupportProcess",path:"support-process",hasQuery:!1,hasData:!1},{mode:"get",method:"getTranslateModelFieldExp",path:"translateModelFieldExp",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0},{mode:"put",method:"putModelKeyEnabled",path:"{modelKey}/{enabled}",hasQuery:!1,hasData:!1}]},{name:"modelMethod",entityName:"model-method",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataModelList",path:"data-model/list",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getViewModelList",path:"view-model/list",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"model",entityName:"model",apis:[{mode:"delete",method:"deleteRemove",path:"remove",hasQuery:!0,hasData:!1}]},{name:"onlineFormChangeHistory",entityName:"online-form-change-history",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1}]},{name:"onlineFormInstance",entityName:"online-form-instance",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppendixFormList",path:"appendix/form/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataIds",path:"dataIds",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByMaterialNoAndDocOutlineId",path:"findByMaterialNoAndDocOutlineId",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByOfTmplIdAndEdhrInstanceId",path:"findByOfTmplIdAndEdhrInstanceId",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByTmplIdAndMaterialNo",path:"findByTmplIdAndMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindOfTaskBySerialNo4Change",path:"findOfTaskBySerialNo4Change",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindPage4EdhrInstance",path:"findPage4EdhrInstance",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindRelationInfoById",path:"findRelationInfoById",hasQuery:!0,hasData:!1},{mode:"get",method:"getFormPageList",path:"form/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetOne",path:"getOne",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetRelatedProduct",path:"getRelatedProduct",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoByRecordNo",path:"info/byRecordNo",hasQuery:!0,hasData:!1},{mode:"post",method:"postInfos",path:"infos",hasQuery:!1,hasData:!1},{mode:"post",method:"postInsert4Edhr",path:"insert4Edhr",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRefreshSnapshot",path:"refresh/snapshot",hasQuery:!0,hasData:!1},{mode:"get",method:"getRelateFormPageList",path:"relate/form/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRelatedInstAppend",path:"related/inst/append",hasQuery:!1,hasData:!0},{mode:"post",method:"postRelatedInstBind",path:"related/inst/bind",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteRelatedInstRemove",path:"related/inst/remove",hasQuery:!0,hasData:!1},{mode:"post",method:"postRelatedInstUnbind",path:"related/inst/unbind",hasQuery:!1,hasData:!0},{mode:"get",method:"getReverseTracePageList",path:"reverse/trace/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postTask",path:"task",hasQuery:!1,hasData:!0},{mode:"post",method:"postTaskPageList",path:"task/page/list",hasQuery:!0,hasData:!0},{mode:"delete",method:"deleteTaskRemoveOfInstId",path:"task/remove/{ofInstId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getTaskResendOfInstId",path:"task/resend/{ofInstId}",hasQuery:!1,hasData:!1},{mode:"put",method:"putTaskUpdate",path:"task/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putTaskId",path:"task/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getTracePageList",path:"trace/page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDescription",path:"updateDescription",hasQuery:!1,hasData:!0}]},{name:"onlineFormLog",entityName:"online-form-log",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1}]},{name:"onlineFormTmplLog",entityName:"online-form-tmpl-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"onlineFormTmpl",entityName:"online-form-tmpl",apis:[{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postCopyVersionId",path:"copyVersion/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getFormModelsId",path:"formModels/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetVersionById",path:"getVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postInfos",path:"infos",hasQuery:!1,hasData:!0},{mode:"get",method:"getListBaseAndProcessForm",path:"listBaseAndProcessForm",hasQuery:!0,hasData:!1},{mode:"get",method:"getListOnlineFormModels",path:"listOnlineFormModels",hasQuery:!0,hasData:!1},{mode:"get",method:"getListVersionById",path:"listVersionById",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelId",path:"model/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postRelease",path:"release",hasQuery:!0,hasData:!0},{mode:"delete",method:"deleteRemoveById",path:"removeById",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveVersionById",path:"removeVersionById",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveField",path:"saveField",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveOperation",path:"saveOperation",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveVersion",path:"saveVersion",hasQuery:!1,hasData:!0},{mode:"put",method:"putSetDefaultId",path:"setDefault/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getStash",path:"stash",hasQuery:!0,hasData:!1},{mode:"put",method:"putStashId",path:"stash/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDesignerId",path:"updateDesigner/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateVersionByIdId",path:"updateVersionById/{id}",hasQuery:!1,hasData:!0}]},{name:"onlineForm",entityName:"online-form",apis:[{mode:"post",method:"postBaseNotebookSubmit",path:"base/notebook/submit",hasQuery:!1,hasData:!0},{mode:"post",method:"postBaseSubmit",path:"base/submit",hasQuery:!1,hasData:!0},{mode:"post",method:"postBizBizServiceSummary",path:"biz/bizServiceSummary",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataInitProtocolData",path:"data-init/protocol/data",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataInitProtocolFieldMeta",path:"data-init/protocol/fieldMeta",hasQuery:!0,hasData:!1},{mode:"get",method:"getDataInitProtocolList",path:"data-init/protocol/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postProcessAbandon",path:"process/abandon",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessApprove",path:"process/approve",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessApproveQualification",path:"process/approveQualification",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessChange",path:"process/change",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessControl",path:"process/control",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessInterfereReassign",path:"process/interfere/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessInterfereReturn",path:"process/interfere/return",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessJump",path:"process/jump",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReassign",path:"process/reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessResubmitOf",path:"process/resubmitOf",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessReturn",path:"process/return",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessSave",path:"process/save",hasQuery:!1,hasData:!0},{mode:"post",method:"postProcessSubmit",path:"process/submit",hasQuery:!1,hasData:!0},{mode:"post",method:"postStash",path:"stash",hasQuery:!1,hasData:!0}]},{name:"online",entityName:"online",apis:[{mode:"get",method:"getClients",path:"clients",hasQuery:!0,hasData:!1},{mode:"get",method:"getExit",path:"exit",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"openapi",entityName:"openapi",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetApiInfo",path:"getApiInfo",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetApiInfos",path:"getApiInfos",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pageDesignerLog",entityName:"page-designer-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"permission",entityName:"permission",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"plat",entityName:"plat",apis:[{mode:"post",method:"postAppGlobal",path:"app/global",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppGlobalInfo",path:"app/global/info",hasQuery:!1,hasData:!1},{mode:"post",method:"postBase",path:"base",hasQuery:!1,hasData:!0},{mode:"post",method:"postOrg",path:"org",hasQuery:!1,hasData:!0},{mode:"post",method:"postSecurity",path:"security",hasQuery:!1,hasData:!0}]},{name:"pmProcessDefinition",entityName:"pm-process-definition",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllProcHasPublishedVersion",path:"listAllProcHasPublishedVersion",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListByPage",path:"page/listByPage",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmProcessDefinitionVersion",entityName:"pm-process-definition-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postDeploy",path:"deploy",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSave",path:"save",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveAndDeploy",path:"saveAndDeploy",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpdateProcessUser",path:"updateProcessUser",hasQuery:!1,hasData:!0},{mode:"get",method:"getId",path:"",hasQuery:!0,hasData:!1}]},{name:"pmProcessEngine",entityName:"pm-process-engine",apis:[{mode:"post",method:"postApprove",path:"approve",hasQuery:!1,hasData:!0},{mode:"get",method:"getHiTaskExtension",path:"hi-task/extension",hasQuery:!0,hasData:!1},{mode:"get",method:"getInitialTaskExtension",path:"initial-task/extension",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllAssignees",path:"listAllAssignees",hasQuery:!1,hasData:!1},{mode:"get",method:"getListAllInitiators",path:"listAllInitiators",hasQuery:!1,hasData:!1},{mode:"get",method:"getModel",path:"model",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postProcExecute",path:"procExecute",hasQuery:!1,hasData:!0},{mode:"get",method:"getProcInstExtension",path:"procInstExtension",hasQuery:!0,hasData:!1},{mode:"post",method:"postReassign",path:"reassign",hasQuery:!1,hasData:!0},{mode:"post",method:"postRefuse",path:"refuse",hasQuery:!1,hasData:!0},{mode:"post",method:"postReject",path:"reject",hasQuery:!1,hasData:!0},{mode:"post",method:"postResubmit",path:"resubmit",hasQuery:!1,hasData:!0},{mode:"post",method:"postStartProcInst",path:"startProcInst",hasQuery:!1,hasData:!0},{mode:"get",method:"getTaskExtension",path:"task/extension",hasQuery:!0,hasData:!1},{mode:"post",method:"postTerminate",path:"terminate",hasQuery:!1,hasData:!0},{mode:"post",method:"postWithdraw",path:"withdraw",hasQuery:!1,hasData:!0}]},{name:"printDesigner",entityName:"print-designer",apis:[{mode:"delete",method:"deleteCategory",path:"category",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getListAllVersion",path:"listAllVersion",hasQuery:!0,hasData:!1},{mode:"get",method:"getRdoPageBaseList",path:"rdo/page/base/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getRdoPageList",path:"rdo/page/list",hasQuery:!0,hasData:!1}]},{name:"printLog",entityName:"print-log",apis:[{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postPatchwork",path:"patchwork",hasQuery:!1,hasData:!0}]},{name:"print",entityName:"print",apis:[{mode:"post",method:"postGenerateZplCode",path:"generateZplCode",hasQuery:!1,hasData:!0},{mode:"post",method:"postLabelBackEndPrint",path:"labelBackEndPrint",hasQuery:!1,hasData:!0},{mode:"get",method:"getPrintDropdownList",path:"printDropdownList",hasQuery:!1,hasData:!1},{mode:"post",method:"postSendPrintData",path:"sendPrintData",hasQuery:!1,hasData:!0}]},{name:"process",entityName:"process",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processApprovalLog",entityName:"process-approval-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getApproveHistory",path:"approveHistory",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processApproveUser",entityName:"process-approve-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processDefinition",entityName:"process-definition",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postInitProcessAndProcessVersionType",path:"initProcessAndProcessVersion/{type}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processDefinitionVersion",entityName:"process-definition-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopyId",path:"copy/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPublishId",path:"publish/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getId",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processEngine",entityName:"process-engine",apis:[{mode:"post",method:"postExecute",path:"execute",hasQuery:!1,hasData:!0},{mode:"get",method:"getHiTaskExtension",path:"hi-task/extension",hasQuery:!0,hasData:!1},{mode:"get",method:"getInitialTaskExtension",path:"initial-task/extension",hasQuery:!0,hasData:!1},{mode:"get",method:"getModel",path:"model",hasQuery:!0,hasData:!1},{mode:"post",method:"postReassignment",path:"reassignment",hasQuery:!1,hasData:!0},{mode:"get",method:"getTaskExtension",path:"task/extension",hasQuery:!0,hasData:!1}]},{name:"processEvent",entityName:"process-event",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processGraph",entityName:"process-graph",apis:[{mode:"get",method:"getGraphInfo",path:"graphInfo",hasQuery:!0,hasData:!1}]},{name:"processInstance",entityName:"process-instance",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processInstanceRelation",entityName:"process-instance-relation-",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processMessageUser",entityName:"process-message-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processNodeDefinition",entityName:"process-node-definition",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processPathUser",entityName:"process-path-user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"processPath",entityName:"process-path",apis:[{mode:"get",method:"getFindAllByOfInstanceId",path:"findAllByOfInstanceId",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindAllByTmplId",path:"findAllByTmplId",hasQuery:!0,hasData:!1}]},{name:"processTaskDone",entityName:"process-task-done",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"processTaskTodo",entityName:"process-task-todo",apis:[{mode:"get",method:"getAllUserPageList",path:"all-user/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"processVersion",entityName:"process-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postActivateId",path:"activate/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putDeploy",path:"deploy",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1}]},{name:"processTest",entityName:"processTest",apis:[{mode:"get",method:"getCompleteTask",path:"completeTask",hasQuery:!0,hasData:!1},{mode:"get",method:"getDeploy",path:"deploy",hasQuery:!0,hasData:!1},{mode:"get",method:"getReadXml",path:"readXml",hasQuery:!0,hasData:!1},{mode:"get",method:"getSignal",path:"signal",hasQuery:!0,hasData:!1},{mode:"get",method:"getStart",path:"start",hasQuery:!0,hasData:!1},{mode:"get",method:"getUpdateVar",path:"updateVar",hasQuery:!0,hasData:!1},{mode:"get",method:"getWithdraw",path:"withdraw",hasQuery:!0,hasData:!1}]},{name:"productRelease",entityName:"product-release",apis:[{mode:"get",method:"getGetProductReleaseByMaterialNo",path:"getProductReleaseByMaterialNo",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetProductReleaseForm",path:"getProductReleaseForm",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"publishLog",entityName:"publish-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCreateRelease",path:"createRelease",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPublishToProd",path:"publishToProd",hasQuery:!1,hasData:!0},{mode:"post",method:"postPublishToTest",path:"publishToTest",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"regexp",entityName:"regexp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"report",entityName:"report",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDeploy",path:"deploy",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfos",path:"infos",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListType",path:"list/type",hasQuery:!1,hasData:!1},{mode:"get",method:"getListModelReport",path:"listModelReport",hasQuery:!0,hasData:!1},{mode:"get",method:"getListSystemModelFields",path:"listSystemModelFields",hasQuery:!0,hasData:!1},{mode:"get",method:"getListSystemModels",path:"listSystemModels",hasQuery:!1,hasData:!1},{mode:"put",method:"putMove",path:"move",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putUndeployId",path:"undeploy/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getUserPermissionId",path:"user/permission/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postViewPageList",path:"view/page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"reportDataSet",entityName:"report-data-set",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGenSql",path:"genSql",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postListByPage4DataSet",path:"listByPage4DataSet",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPreview",path:"preview",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpdateName",path:"updateName",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"reportData",entityName:"report-data",apis:[{mode:"post",method:"postListByPage",path:"listByPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postListByPage4Cross",path:"listByPage4Cross",hasQuery:!1,hasData:!0},{mode:"post",method:"postListStatistic",path:"listStatistic",hasQuery:!1,hasData:!0}]},{name:"role",entityName:"role",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putIdEnabled",path:"{id}/{enabled}",hasQuery:!1,hasData:!1}]},{name:"rolePermission",entityName:"role-permission",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"post",method:"postBulk",path:"bulk",hasQuery:!1,hasData:!0},{mode:"get",method:"getMenuList",path:"menu/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRemove",path:"remove",hasQuery:!1,hasData:!0}]},{name:"script",entityName:"script",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoByKey",path:"infoByKey",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"scriptAssistant",entityName:"script-assistant",apis:[{mode:"get",method:"getRag",path:"rag",hasQuery:!1,hasData:!1},{mode:"post",method:"postScriptComplete",path:"scriptComplete",hasQuery:!1,hasData:!0}]},{name:"scriptVersion",entityName:"script-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putSetVersionActive",path:"setVersionActive",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"scriptVersionLog",entityName:"script-version-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"serviceOrchestration",entityName:"service-orchestration",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoByKey",path:"infoByKey",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"serviceOrchestrationVersion",entityName:"service-orchestration-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putSetVersionActive",path:"setVersionActive",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"serviceOrchestrationVersionLog",entityName:"service-orchestration-version-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"signHistory",entityName:"sign-history",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"signLog",entityName:"sign-log",apis:[{mode:"post",method:"postOperators",path:"operators",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0}]},{name:"signature",entityName:"signature",apis:[{mode:"post",method:"postGetSignatureImage",path:"getSignatureImage",hasQuery:!1,hasData:!0},{mode:"post",method:"postGetSignatureUploadOrWriteImage",path:"getSignatureUploadOrWriteImage",hasQuery:!1,hasData:!0}]},{name:"sqlViewModel",entityName:"sql-view-model",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"sqlView",entityName:"sql-view",apis:[{mode:"post",method:"postBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1}]},{name:"stash",entityName:"stash",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByClientKey",path:"findByClientKey",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"subModelProcess",entityName:"sub-model-process",apis:[{mode:"post",method:"postAllSubModelDataClean",path:"allSubModelDataClean",hasQuery:!1,hasData:!1}]},{name:"sysConfig",entityName:"sys-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"systemVar",entityName:"system-var",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetSystemVarByKeys",path:"getSystemVarByKeys",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetVarByKeys",path:"getVarByKeys",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListSystemVarCache",path:"listSystemVarCache",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceLog",entityName:"trace-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getFindByTraceId",path:"findByTraceId",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceLogDetails",entityName:"trace-log-details",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppDataTracePageList",path:"app-data-trace/page/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoTree",path:"infoTree",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoTreeById",path:"infoTreeById",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListByRecodeId",path:"page/listByRecodeId",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceMainline",entityName:"trace-mainline",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceMainlineExt",entityName:"trace-mainline-ext",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"traceSetting",entityName:"trace-setting",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getTreeByModelKey",path:"treeByModelKey",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userGroup",entityName:"user-group",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getSearch",path:"search",hasQuery:!0,hasData:!1},{mode:"get",method:"getUserRolePermissionList",path:"user/role/permission/list",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userGroupRelation",entityName:"user-group-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postBatch",path:"batch",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"viewModel",entityName:"view-model",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteBizServiceModelKeyBsKey",path:"biz-service/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getFieldInfo",path:"field/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getSql",path:"sql",hasQuery:!0,hasData:!1},{mode:"put",method:"putSupportMessageModelKeyEnabled",path:"support-message/{modelKey}/{enabled}",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"wash",entityName:"wash",apis:[{mode:"get",method:"getWashDictLabelField",path:"washDictLabelField",hasQuery:!1,hasData:!1},{mode:"get",method:"getWashEdhrAndOfInst",path:"washEdhrAndOfInst",hasQuery:!1,hasData:!1}]},{name:"webpage",entityName:"webpage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCancelOccupyWebPage",path:"cancelOccupyWebPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postCopyByIdId",path:"copyById/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postGetWebPageOccupyMsg",path:"getWebPageOccupyMsg",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postLockWebPage",path:"lockWebPage",hasQuery:!1,hasData:!0},{mode:"post",method:"postOccupyWebPage",path:"occupyWebPage",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUnLockWebPage",path:"unLockWebPage",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"api",entityName:"api",apis:[{mode:"post",method:"postAppCreateBranch",path:"app/createBranch",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppCreateImportApp",path:"app/createImportApp",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppCreateIndex",path:"app/createIndex",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppCreateSelfBuiltApp",path:"app/createSelfBuiltApp",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppDeleteIndex",path:"app/deleteIndex",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteAppDropProdDb",path:"app/dropProdDb",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteAppDropTestDb",path:"app/dropTestDb",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppFieldMetaList",path:"app/field-meta/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetAppMenu",path:"app/getAppMenu",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetCurrentBranch",path:"app/getCurrentBranch",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetIndex",path:"app/getIndex",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetLatestBranch",path:"app/getLatestBranch",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetLatestCommit",path:"app/getLatestCommit",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppImportVersion",path:"app/importVersion",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppImportVersionPreview",path:"app/importVersionPreview",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppListBranch",path:"app/listBranch",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppMerge",path:"app/merge",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppMergeInfo",path:"app/merge/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppMergePageList",path:"app/merge/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppMergePreview",path:"app/mergePreview",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppModelMetaList",path:"app/model-meta/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppPublishLogInfo",path:"app/publishLogInfo",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppPublishLogPageList",path:"app/publishLogPageList",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppReportInfos",path:"app/report/infos",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppRevert",path:"app/revert",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppSwitchBranch",path:"app/switchBranch",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppVisibleMenu",path:"app/visible/menu",hasQuery:!0,hasData:!0},{mode:"post",method:"postAuditLogExport",path:"audit-log/export",hasQuery:!1,hasData:!0},{mode:"post",method:"postAuditLogInfo",path:"audit-log/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getAuditLogModules",path:"audit-log/modules",hasQuery:!0,hasData:!1},{mode:"get",method:"getAuditLogOperateTypes",path:"audit-log/operateTypes",hasQuery:!0,hasData:!1},{mode:"get",method:"getAuditLogOperators",path:"audit-log/operators",hasQuery:!0,hasData:!1},{mode:"post",method:"postAuditLogPageList",path:"audit-log/page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postAuditLogSave",path:"audit-log/save",hasQuery:!1,hasData:!0},{mode:"post",method:"postDatamoveExecute",path:"datamove/execute",hasQuery:!1,hasData:!0},{mode:"post",method:"postDatasourceColumnFormat",path:"datasource/column-format",hasQuery:!0,hasData:!0},{mode:"get",method:"getDatasourceInfo",path:"datasource/info",hasQuery:!1,hasData:!1},{mode:"post",method:"postEdhrProdTransferAllWorkItem",path:"edhr/prod/transferAllWorkItem",hasQuery:!1,hasData:!0},{mode:"post",method:"postEdhrTestTransferAllWorkItem",path:"edhr/test/transferAllWorkItem",hasQuery:!1,hasData:!0},{mode:"get",method:"getIeDataReport",path:"ie/data/report",hasQuery:!0,hasData:!1},{mode:"post",method:"postModelComprehensiveBizServiceGeneralBsModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/generalBs/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelComprehensiveBizServiceModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"post",method:"postModelComprehensiveBizServiceModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"put",method:"putModelComprehensiveBizServiceModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteModelComprehensiveBizServiceModelCategoryModelKeyBsKey",path:"model-comprehensive/biz-service/{modelCategory}/{modelKey}/{bsKey}",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcessListAll",path:"process/list/all",hasQuery:!1,hasData:!1}]}],k0=[{name:"agent",entityName:"agent",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"apk",entityName:"apk",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetActiveApp",path:"getActiveApp",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetIp",path:"getIp",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postUploadApk",path:"upload/apk",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!1}]},{name:"app",entityName:"app",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"putAppCleanUpId",path:"appCleanUp/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putAppRestoreIdUserId",path:"appRestore/{id}/{userId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getCheckAppMaintainerInTenantAppId",path:"checkAppMaintainerInTenant/{appId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postCreateBranchAppId",path:"createBranch/{appId}",hasQuery:!1,hasData:!0},{mode:"get",method:"getDatamoveApps",path:"datamove/apps",hasQuery:!1,hasData:!1},{mode:"put",method:"putDisableId",path:"disable/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putEnableId",path:"enable/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getFieldMetaList",path:"field-meta/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetAppCountTenantId",path:"getAppCount/{tenantId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetCurrentBranchAppId",path:"getCurrentBranch/{appId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetLatestCommitAppId",path:"getLatestCommit/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetMobileDbFileUrlAppId",path:"getMobileDbFileUrl/{appId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postImportVersionAppId",path:"importVersion/{appId}",hasQuery:!1,hasData:!0},{mode:"get",method:"getImportVersionPreviewAppId",path:"importVersionPreview/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListBranchAppId",path:"listBranch/{appId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getMergeInfoAppId",path:"merge/info/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getMergePageListAppId",path:"merge/page/list/{appId}",hasQuery:!0,hasData:!1},{mode:"post",method:"postMergeAppId",path:"merge/{appId}",hasQuery:!1,hasData:!0},{mode:"get",method:"getMergePreviewAppId",path:"mergePreview/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getModelMetaList",path:"model-meta/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageGetListReleasedApp",path:"page/getListReleasedApp",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageListReleasedApp",path:"page/listReleasedApp",hasQuery:!0,hasData:!1},{mode:"get",method:"getPublishLogInfoAppId",path:"publishLogInfo/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getPublishLogPageListAppId",path:"publishLogPageList/{appId}",hasQuery:!0,hasData:!1},{mode:"get",method:"getReportInfos",path:"report/infos",hasQuery:!0,hasData:!1},{mode:"post",method:"postRevertAppId",path:"revert/{appId}",hasQuery:!1,hasData:!0},{mode:"post",method:"postSwitchBranchAppId",path:"switchBranch/{appId}",hasQuery:!1,hasData:!0},{mode:"get",method:"getTenantApps",path:"tenant/apps",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantRoleRolesApps",path:"tenant/role/{roles}/apps",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantRoleRolesAppsCount",path:"tenant/role/{roles}/apps/count",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadAppPkg",path:"upload/appPkg",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"appMember",entityName:"app-member",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postListMulti",path:"list-multi",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putTransferIdTargetUserId",path:"transfer/{id}/{targetUserId}",hasQuery:!1,hasData:!1},{mode:"put",method:"putIdRole",path:"{id}/{role}",hasQuery:!1,hasData:!1}]},{name:"appSetting",entityName:"app-setting",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCheckAppUserAdmin",path:"checkAppUserAdmin",hasQuery:!0,hasData:!1},{mode:"get",method:"getCheckAppUserVisibility",path:"checkAppUserVisibility",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteDeveloperDelete",path:"developer/delete",hasQuery:!0,hasData:!1},{mode:"post",method:"postDeveloperSaveSettingBatch",path:"developer/saveSettingBatch",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfoByAppId",path:"infoByAppId",hasQuery:!0,hasData:!1},{mode:"post",method:"postSaveSetting",path:"saveSetting",hasQuery:!1,hasData:!0},{mode:"post",method:"postSaveSettingBatch",path:"saveSettingBatch",hasQuery:!1,hasData:!1}]},{name:"assets",entityName:"assets",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMoveAssetIdCategoryCategoryId",path:"move/{assetId}/category/{categoryId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUploadCategoryId",path:"upload/{categoryId}",hasQuery:!1,hasData:!1}]},{name:"auditLog",entityName:"audit-log",apis:[{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getModules",path:"modules",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperateTypes",path:"operateTypes",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0}]},{name:"biDataSet",entityName:"bi-data-set",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPreview",path:"preview",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"biFileDatasetConfig",entityName:"bi-file-dataset-config",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListDatasetid",path:"list-datasetid",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"biFile",entityName:"bi-file",apis:[{mode:"post",method:"postUpload",path:"upload",hasQuery:!0,hasData:!1}]},{name:"biShare",entityName:"bi-share",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"category",entityName:"category",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postAddDefaultCusComp",path:"addDefaultCusComp",hasQuery:!1,hasData:!1},{mode:"delete",method:"deleteDeleteDatasetCategory",path:"deleteDatasetCategory",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListDatasetCategory",path:"listDatasetCategory",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSaveDatasetCategory",path:"saveDatasetCategory",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dashboard",entityName:"dashboard",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"dataSource",entityName:"data-source",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"put",method:"put",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"putEnabled",path:"enabled",hasQuery:!1,hasData:!0},{mode:"post",method:"postExecuteUpdate",path:"executeUpdate",hasQuery:!1,hasData:!0},{mode:"get",method:"getFindById",path:"findById",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postQueryData",path:"queryData",hasQuery:!0,hasData:!1},{mode:"post",method:"postSqlColumnInformation",path:"sql/column/information",hasQuery:!1,hasData:!0},{mode:"post",method:"postTestConnect",path:"testConnect",hasQuery:!1,hasData:!0}]},{name:"dataTrace",entityName:"data-trace",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postExport",path:"export",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getOperators",path:"operators",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"database",entityName:"database",apis:[{mode:"post",method:"postAddDatabase",path:"addDatabase",hasQuery:!1,hasData:!0},{mode:"get",method:"getColumnInformation",path:"column/information",hasQuery:!0,hasData:!1},{mode:"get",method:"getDbInformation",path:"db/information",hasQuery:!0,hasData:!1},{mode:"post",method:"postGetDatabaseByPage",path:"getDatabaseByPage",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"delete",method:"deleteRemoveDatabase",path:"removeDatabase",hasQuery:!0,hasData:!1},{mode:"post",method:"postRunSql",path:"runSql",hasQuery:!1,hasData:!0},{mode:"get",method:"getTableDataPageList",path:"table/data/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getTableInformation",path:"table/information",hasQuery:!0,hasData:!1},{mode:"post",method:"postTestDatabaseConn",path:"testDatabaseConn",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDatabase",path:"updateDatabase",hasQuery:!1,hasData:!0},{mode:"get",method:"getViewInformation",path:"view/information",hasQuery:!0,hasData:!1}]},{name:"dataset",entityName:"dataset",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getChangeCategory",path:"change-category",hasQuery:!0,hasData:!1},{mode:"get",method:"getColumnValue",path:"column-value",hasQuery:!0,hasData:!1},{mode:"put",method:"putEncode",path:"encode",hasQuery:!0,hasData:!1},{mode:"post",method:"postGenColumn",path:"gen-column",hasQuery:!0,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoNoHeader",path:"infoNoHeader",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListCategoryDataset",path:"list-category-dataset",hasQuery:!0,hasData:!1},{mode:"get",method:"getListIds",path:"list/ids",hasQuery:!0,hasData:!1},{mode:"get",method:"getListKeys",path:"list/keys",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRunScript",path:"runScript",hasQuery:!1,hasData:!0},{mode:"post",method:"postRunScriptNoHeader",path:"runScriptNoHeader",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasetLog",entityName:"dataset-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasourceDevops",entityName:"datasource-devops",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postList",path:"list",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasourceMove",entityName:"datasource-move",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postMove",path:"move",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasourceMoveData",entityName:"datasource-move-data",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"datasourceMoveDetail",entityName:"datasource-move-detail",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"externalMessage",entityName:"external-message",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"fileTask",entityName:"file-task",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postBatchDownload",path:"batch/download",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"file",entityName:"file",apis:[{mode:"post",method:"postDataPreview",path:"data-preview",hasQuery:!1,hasData:!0},{mode:"post",method:"postUploadCommon",path:"upload-common",hasQuery:!1,hasData:!1},{mode:"post",method:"postUploadDataset",path:"upload-dataset",hasQuery:!1,hasData:!1},{mode:"post",method:"postUploadImage",path:"upload/image",hasQuery:!0,hasData:!1}]},{name:"frontRelease",entityName:"front-release",apis:[{mode:"get",method:"getCleanCache",path:"cleanCache",hasQuery:!1,hasData:!1}]},{name:"i18NConfig",entityName:"i18n-config",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"i18NInfo",entityName:"i18n-info",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postExternalLangSync",path:"external/lang/sync",hasQuery:!1,hasData:!1},{mode:"get",method:"getLangDownload",path:"lang/download",hasQuery:!0,hasData:!1},{mode:"post",method:"postLangJson",path:"lang/json",hasQuery:!0,hasData:!1},{mode:"post",method:"postLangTrans",path:"lang/trans",hasQuery:!0,hasData:!1},{mode:"post",method:"postLangUpload",path:"lang/upload",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putKey",path:"{key}",hasQuery:!1,hasData:!0}]},{name:"internalMessage",entityName:"internal-message",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putReadAll",path:"read/all",hasQuery:!1,hasData:!1},{mode:"put",method:"putReadId",path:"read/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getUnreadCount",path:"unread/count",hasQuery:!1,hasData:!1}]},{name:"invokeLog",entityName:"invoke-log",apis:[{mode:"get",method:"getExport",path:"export",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"knowledgeBase",entityName:"knowledge-base",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"knowledgeBaseChunk",entityName:"knowledge-base-chunk",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"knowledgeBaseDoc",entityName:"knowledge-base-doc",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"ldap",entityName:"ldap",apis:[{mode:"post",method:"postUploadCertificate",path:"upload/certificate",hasQuery:!1,hasData:!1}]},{name:"licenseUnbindLog",entityName:"license-unbind-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"license",entityName:"license",apis:[{mode:"get",method:"getActivate",path:"activate",hasQuery:!0,hasData:!1},{mode:"post",method:"postActivates",path:"activates",hasQuery:!0,hasData:!1},{mode:"post",method:"postActivatesOffline",path:"activatesOffline",hasQuery:!0,hasData:!1},{mode:"get",method:"getCheckLicense",path:"checkLicense",hasQuery:!1,hasData:!1},{mode:"get",method:"getClients",path:"clients",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetAppBasicInfo",path:"getAppBasicInfo",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetExpireMsg",path:"getExpireMsg",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetUsers",path:"getUsers",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getShareTag",path:"shareTag",hasQuery:!0,hasData:!1},{mode:"get",method:"getSourceTag",path:"sourceTag",hasQuery:!0,hasData:!1},{mode:"get",method:"getUnbind",path:"unbind",hasQuery:!0,hasData:!1},{mode:"get",method:"getUninstall",path:"uninstall",hasQuery:!1,hasData:!1},{mode:"get",method:"getVerify",path:"verify",hasQuery:!1,hasData:!1}]},{name:"loginLog",entityName:"login-log",apis:[{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"login",entityName:"login",apis:[{mode:"post",method:"postCheckApp",path:"checkApp",hasQuery:!1,hasData:!0},{mode:"post",method:"postSendMsg",path:"sendMsg",hasQuery:!1,hasData:!0},{mode:"post",method:"postSign",path:"sign",hasQuery:!1,hasData:!0},{mode:"get",method:"getSignOut",path:"signOut",hasQuery:!0,hasData:!1},{mode:"get",method:"getUserAppAuth",path:"userAppAuth",hasQuery:!0,hasData:!1}]},{name:"manager",entityName:"manager",apis:[{mode:"get",method:"getPlatPageList",path:"plat/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantPageList",path:"tenant/page/list",hasQuery:!0,hasData:!1}]},{name:"messageSetting",entityName:"message-setting",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetTypeCount",path:"getTypeCount",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMqttSend",path:"mqtt/send",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSendEmailMessage",path:"sendEmailMessage",hasQuery:!1,hasData:!0},{mode:"post",method:"postSendMessage",path:"sendMessage",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"minioFile",entityName:"minio-file",apis:[{mode:"post",method:"postBase64Upload",path:"base64Upload",hasQuery:!1,hasData:!0},{mode:"get",method:"getDownload",path:"download",hasQuery:!0,hasData:!1}]},{name:"model",entityName:"model",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"modelProvider",entityName:"model-provider",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"navMenu",entityName:"nav-menu",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetSelected",path:"getSelected",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postSelect",path:"select",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"navPage",entityName:"nav-page",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdateDesignerJsonId",path:"updateDesignerJson/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"openapiGroup",entityName:"openapi-group",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoAssociationModel",path:"info/associationModel",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoOpenapiInfo",path:"info/openapi/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoPageList",path:"info/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getListDownload",path:"list/download",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"openapiKeyGrant",entityName:"openapi-key-grant",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getOpenapiList",path:"openapi/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getOpenapiTenantList",path:"openapi/tenantList",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"org",entityName:"org",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"post",method:"postInputCheck",path:"inputCheck",hasQuery:!1,hasData:!0},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postOrgHavePersonCheck",path:"orgHavePersonCheck",hasQuery:!1,hasData:!0},{mode:"post",method:"postTransferAndDelete",path:"transferAndDelete",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserAdd",path:"user/add",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserCreateAndAdd",path:"user/createAndAdd",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserInfo",path:"user/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getUserListCurrentTenantUser",path:"user/listCurrentTenantUser",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserMove",path:"user/move",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserPageList",path:"user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserRemove",path:"user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserUpdate",path:"user/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"orgUserPicker",entityName:"org-user-picker",apis:[{mode:"get",method:"getManagementUserListByIds",path:"management/user/listByIds",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantManagementOrgList",path:"tenant/management/org/list",hasQuery:!1,hasData:!1},{mode:"get",method:"getTenantManagementOrgUserPageList",path:"tenant/management/org/user/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantManagementUserListByIds",path:"tenant/management/user/listByIds",hasQuery:!0,hasData:!1}]},{name:"permission",entityName:"permission",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"plat",entityName:"plat",apis:[{mode:"get",method:"getAppGlobalInfoAppId",path:"app/global/info/{appId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppGlobalAppId",path:"app/global/{appId}",hasQuery:!1,hasData:!0},{mode:"post",method:"postBase",path:"base",hasQuery:!1,hasData:!0},{mode:"post",method:"postDingtalk",path:"dingtalk",hasQuery:!1,hasData:!0},{mode:"post",method:"postEmail",path:"email",hasQuery:!1,hasData:!0},{mode:"post",method:"postFeishu",path:"feishu",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postLogin",path:"login",hasQuery:!1,hasData:!0},{mode:"post",method:"postOrg",path:"org",hasQuery:!1,hasData:!0},{mode:"post",method:"postSecurity",path:"security",hasQuery:!1,hasData:!0},{mode:"post",method:"postTheme",path:"theme",hasQuery:!1,hasData:!0},{mode:"post",method:"postUploadCertFile",path:"uploadCertFile",hasQuery:!1,hasData:!1},{mode:"post",method:"postUserRole",path:"user-role",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteUserRole",path:"user-role",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserRoleReset",path:"user-role/reset",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserField",path:"user/field",hasQuery:!1,hasData:!1},{mode:"get",method:"getVersion",path:"version",hasQuery:!1,hasData:!1},{mode:"post",method:"postWatermark",path:"watermark",hasQuery:!1,hasData:!0},{mode:"post",method:"postWxwork",path:"wxwork",hasQuery:!1,hasData:!0}]},{name:"plugin",entityName:"plugin",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCancelUpload",path:"cancelUpload",hasQuery:!1,hasData:!0},{mode:"put",method:"putDeleteCategory",path:"deleteCategory",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetImages",path:"getImages",hasQuery:!0,hasData:!1},{mode:"post",method:"postGetTenantCompList",path:"getTenantCompList",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postUploadZip",path:"uploadZip",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pluginVersion",entityName:"plugin-version",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"post",method:"postList",path:"list",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmProcessDelegate",entityName:"pm-process-delegate",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmProcessDelegateDetail",entityName:"pm-process-delegate-detail",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmProcessInstance",entityName:"pm-process-instance",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmTaskDone",entityName:"pm-task-done",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pmTaskTodo",entityName:"pm-task-todo",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pnPage",entityName:"pn-page",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"pnProject",entityName:"pn-project",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getChangeCategory",path:"change-category",hasQuery:!0,hasData:!1},{mode:"post",method:"postCopy",path:"copy",hasQuery:!1,hasData:!0},{mode:"get",method:"getExport",path:"export",hasQuery:!0,hasData:!1},{mode:"post",method:"postImport",path:"import",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoNoHeader",path:"infoNoHeader",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRelease",path:"release",hasQuery:!1,hasData:!0},{mode:"post",method:"postSavePage",path:"savePage",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"printLog",entityName:"print-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1}]},{name:"printResource",entityName:"print-resource",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetIpAddressStatus",path:"getIpAddressStatus",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetPrintCount",path:"getPrintCount",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByMacAddress",path:"listByMacAddress",hasQuery:!0,hasData:!1},{mode:"post",method:"postPrintTest",path:"printTest",hasQuery:!1,hasData:!1},{mode:"post",method:"postSendPrintData",path:"sendPrintData",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateRemarkId",path:"updateRemark/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"regexp",entityName:"regexp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"released",entityName:"released",apis:[{mode:"delete",method:"deleteAppDeletePublishedAppByTestId",path:"app/deletePublishedAppByTestId",hasQuery:!0,hasData:!1},{mode:"put",method:"putAppDisableAppId",path:"app/disable/{appId}",hasQuery:!1,hasData:!1},{mode:"put",method:"putAppEnableAppId",path:"app/enable/{appId}",hasQuery:!1,hasData:!1},{mode:"get",method:"getAppPublishedAppGetById",path:"app/publishedApp/getById",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppPublishedAppList",path:"app/publishedApp/list",hasQuery:!0,hasData:!1}]},{name:"rolePermission",entityName:"role-permission",apis:[{mode:"get",method:"getPlatList",path:"plat/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPlatRemove",path:"plat/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postPlatSingle",path:"plat/single",hasQuery:!1,hasData:!0},{mode:"get",method:"getTenantList",path:"tenant/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postTenantRemove",path:"tenant/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postTenantSingle",path:"tenant/single",hasQuery:!1,hasData:!0}]},{name:"role",entityName:"role",apis:[{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postPlat",path:"plat",hasQuery:!1,hasData:!0},{mode:"delete",method:"deletePlat",path:"plat",hasQuery:!0,hasData:!1},{mode:"get",method:"getPlatInfo",path:"plat/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPlatPageList",path:"plat/page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putPlatIdEnabled",path:"plat/{id}/{enabled}",hasQuery:!1,hasData:!1},{mode:"post",method:"postTenant",path:"tenant",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteTenant",path:"tenant",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantInfo",path:"tenant/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantPageList",path:"tenant/page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putTenantIdEnabled",path:"tenant/{id}/{enabled}",hasQuery:!1,hasData:!1}]},{name:"sealManagement",entityName:"seal-management",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getCheckName",path:"checkName",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"post",method:"postUpdatePassword",path:"updatePassword",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"seatMessage",entityName:"seat-message",apis:[{mode:"get",method:"getClose",path:"close",hasQuery:!1,hasData:!1}]},{name:"seat",entityName:"seat",apis:[{mode:"get",method:"getAppGetVisibleOrg",path:"app/getVisibleOrg",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppGetVisibleOrgUser",path:"app/getVisibleOrgUser",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppGetVisibleUser",path:"app/getVisibleUser",hasQuery:!1,hasData:!1},{mode:"post",method:"postAuth",path:"auth",hasQuery:!1,hasData:!1},{mode:"get",method:"getListAuthed",path:"listAuthed",hasQuery:!0,hasData:!1},{mode:"get",method:"getListNotAuth",path:"listNotAuth",hasQuery:!0,hasData:!1},{mode:"post",method:"postRemoveAuth",path:"removeAuth",hasQuery:!0,hasData:!1},{mode:"get",method:"getTotalinfos",path:"totalinfos",hasQuery:!1,hasData:!1}]},{name:"shortcut",entityName:"shortcut",apis:[{mode:"post",method:"postMenu",path:"menu",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteMenu",path:"menu",hasQuery:!0,hasData:!1},{mode:"get",method:"getMenuInfo",path:"menu/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getMenuList",path:"menu/list",hasQuery:!1,hasData:!1},{mode:"get",method:"getMenuListAppMenu",path:"menu/list/AppMenu",hasQuery:!0,hasData:!1},{mode:"get",method:"getMenuPageList",path:"menu/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postMenuSaveBatch",path:"menu/saveBatch",hasQuery:!1,hasData:!1},{mode:"put",method:"putMenuId",path:"menu/{id}",hasQuery:!1,hasData:!0}]},{name:"signLog",entityName:"sign-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"post",method:"postOperators",path:"operators",hasQuery:!1,hasData:!0},{mode:"post",method:"postPageList",path:"page/list",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"sms",entityName:"sms",apis:[{mode:"post",method:"postGetSignsAndTemplates",path:"getSignsAndTemplates",hasQuery:!1,hasData:!0},{mode:"post",method:"postSendMsg",path:"sendMsg",hasQuery:!1,hasData:!0}]},{name:"startedProcess",entityName:"started-process",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1}]},{name:"taskDelegate",entityName:"task-delegate",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postCancelId",path:"cancel/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"taskDone",entityName:"task-done",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1}]},{name:"taskTodo",entityName:"task-todo",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getProcess",path:"process",hasQuery:!1,hasData:!1}]},{name:"tenantDeveloper",entityName:"tenant-developer",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postRemoveAndHandover",path:"RemoveAndHandover",hasQuery:!1,hasData:!0},{mode:"get",method:"getGetUserMaintainerApp",path:"getUserMaintainerApp",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"tenant",entityName:"tenant",apis:[{mode:"put",method:"putDisableId",path:"disable/{id}",hasQuery:!1,hasData:!1},{mode:"put",method:"putEnableId",path:"enable/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getGetTenantIdByAppId",path:"getTenantIdByAppId",hasQuery:!0,hasData:!1},{mode:"get",method:"getGetTencentByDomain",path:"getTencentByDomain",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoByPortOrDomain",path:"info/byPortOrDomain",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementOrg",path:"management/org",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteManagementOrg",path:"management/org",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementOrgDrag",path:"management/org/drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getManagementOrgInfoId",path:"management/org/info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getManagementOrgList",path:"management/org/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postManagementOrgTransferAndDelete",path:"management/org/transferAndDelete",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementOrgUserAdd",path:"management/org/user/add",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementOrgUserCreateAndAdd",path:"management/org/user/createAndAdd",hasQuery:!1,hasData:!0},{mode:"get",method:"getManagementOrgUserInfo",path:"management/org/user/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementOrgUserMove",path:"management/org/user/move",hasQuery:!1,hasData:!0},{mode:"get",method:"getManagementOrgUserPageList",path:"management/org/user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementOrgUserRemove",path:"management/org/user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementOrgUserUpdate",path:"management/org/user/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putManagementOrgId",path:"management/org/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementUser",path:"management/user",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteManagementUser",path:"management/user",hasQuery:!1,hasData:!0},{mode:"put",method:"putManagementUserDisable",path:"management/user/disable",hasQuery:!0,hasData:!1},{mode:"put",method:"putManagementUserEnable",path:"management/user/enable",hasQuery:!0,hasData:!1},{mode:"get",method:"getManagementUserInfoId",path:"management/user/info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getManagementUserPageList",path:"management/user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postManagementUserRemove",path:"management/user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementUserResetDefaultPwd",path:"management/user/reset/default/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postManagementUserResetDefaultSignPwd",path:"management/user/reset/default/signPwd",hasQuery:!1,hasData:!0},{mode:"put",method:"putManagementUserId",path:"management/user/{id}",hasQuery:!1,hasData:!0},{mode:"put",method:"putUpdateDomainId",path:"updateDomain/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postUserRole",path:"user-role",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteUserRole",path:"user-role",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserRoleReset",path:"user-role/reset",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserInfo",path:"user/info",hasQuery:!1,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"user",entityName:"user",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfoId",path:"info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getInfoByIds",path:"infoByIds",hasQuery:!0,hasData:!1},{mode:"get",method:"getLastResetPwd",path:"last/reset/pwd",hasQuery:!1,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getListByTenantId",path:"listByTenantId",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgPlatImport",path:"org/plat/import",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgPlatTmpl",path:"org/plat/tmpl",hasQuery:!1,hasData:!0},{mode:"post",method:"postOrgTenantImport",path:"org/tenant/import",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgTenantImport4App",path:"org/tenant/import4App",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgTenantTmpl",path:"org/tenant/tmpl",hasQuery:!1,hasData:!0},{mode:"post",method:"postOrgTenantTmpl4App",path:"org/tenant/tmpl4App",hasQuery:!1,hasData:!0},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postPlatImport",path:"plat/import",hasQuery:!1,hasData:!1},{mode:"post",method:"postPlatTmpl",path:"plat/tmpl",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetAllpwd",path:"reset/allpwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetDefaultPwd",path:"reset/default/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetDefaultSignPwd",path:"reset/default/signPwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postResetPwd",path:"reset/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postSettings",path:"settings",hasQuery:!1,hasData:!0},{mode:"post",method:"postTenantImport",path:"tenant/import",hasQuery:!1,hasData:!1},{mode:"post",method:"postTenantImport4App",path:"tenant/import4App",hasQuery:!1,hasData:!1},{mode:"post",method:"postTenantTmpl",path:"tenant/tmpl",hasQuery:!1,hasData:!0},{mode:"post",method:"postTenantTmpl4App",path:"tenant/tmpl4App",hasQuery:!1,hasData:!0},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userExtra",entityName:"user-extra",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userInfoLog",entityName:"user-info-log",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"userPasswordHistory",entityName:"user-password-history",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!1,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"workbenchComponent",entityName:"workbench-component",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"workbenchComponentRelation",entityName:"workbench-component-relation",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"postDrag",path:"drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getInfo",path:"info",hasQuery:!0,hasData:!1},{mode:"get",method:"getList",path:"list",hasQuery:!0,hasData:!1},{mode:"get",method:"getPageList",path:"page/list",hasQuery:!0,hasData:!1},{mode:"put",method:"putUpdatePositionJson",path:"updatePositionJson",hasQuery:!1,hasData:!0},{mode:"put",method:"putWorkbenchComponentActiveId",path:"workbenchComponentActive/{id}",hasQuery:!0,hasData:!1},{mode:"put",method:"putId",path:"",hasQuery:!0,hasData:!0}]},{name:"clearTempDir",entityName:"clearTempDir",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1}]},{name:"deleteNotUseDir",entityName:"deleteNotUseDir",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1}]},{name:"getAttachmentInfoByPage",entityName:"getAttachmentInfoByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deleteCompInfo",entityName:"deleteCompInfo",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"deleteCompInfoType",entityName:"deleteCompInfoType",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllCompInfo",entityName:"getAllCompInfo",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getAllCompInfoByTypeId",entityName:"getAllCompInfoByTypeId",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllCompInfoType",entityName:"getAllCompInfoType",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getCompInfoById",entityName:"getCompInfoById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCompInfoByPage",entityName:"getCompInfoByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getCompInfoTypeById",entityName:"getCompInfoTypeById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCompInfoTypeByPage",entityName:"getCompInfoTypeByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"importCompInfoJson",entityName:"importCompInfoJson",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveCompInfo",entityName:"saveCompInfo",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveCompInfoType",entityName:"saveCompInfoType",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deleteCsvDatasource",entityName:"deleteCsvDatasource",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllCsvDatasource",entityName:"getAllCsvDatasource",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getContentToArray",entityName:"getContentToArray",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCsvDatasourceById",entityName:"getCsvDatasourceById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCsvDatasourceByName",entityName:"getCsvDatasourceByName",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getCsvDatasourceByPage",entityName:"getCsvDatasourceByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"parseCsvOrExcel",entityName:"parseCsvOrExcel",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"saveCsvDatasource",entityName:"saveCsvDatasource",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getDesignerData",entityName:"getDesignerData",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"deleteEchartTheme",entityName:"deleteEchartTheme",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllEchartTheme",entityName:"getAllEchartTheme",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getEchartThemeById",entityName:"getEchartThemeById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getEchartThemeByPage",entityName:"getEchartThemeByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getMyEchartThemes",entityName:"getMyEchartThemes",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getSysEchartThemes",entityName:"getSysEchartThemes",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"saveEchartTheme",entityName:"saveEchartTheme",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"buildEnshrineCompLibrary",entityName:"buildEnshrineCompLibrary",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"deleteEnshrineComp",entityName:"deleteEnshrineComp",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"deleteEnshrineCompGroup",entityName:"deleteEnshrineCompGroup",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllEnshrineCompGroups",entityName:"getAllEnshrineCompGroups",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getEnshrineCompByPage",entityName:"getEnshrineCompByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getEnshrineCompGroupById",entityName:"getEnshrineCompGroupById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getEnshrineCompGroupByPage",entityName:"getEnshrineCompGroupByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getLayoutItemObjById",entityName:"getLayoutItemObjById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"saveEnshrineComp",entityName:"saveEnshrineComp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveEnshrineCompGroup",entityName:"saveEnshrineCompGroup",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"searchEnshrineComp",entityName:"searchEnshrineComp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"api",entityName:"api",apis:[{mode:"get",method:"getAgentScriptAgent",path:"agent/scriptAgent",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsGetUserMasterOrg",path:"apaas-utils/getUserMasterOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsGetUserMasterOrgId",path:"apaas-utils/getUserMasterOrgId",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserAllOrgId",path:"apaas-utils/listUserAllOrgId",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserAllOrgIdIncludeParent",path:"apaas-utils/listUserAllOrgIdIncludeParent",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserAllPrincipalOrgId",path:"apaas-utils/listUserAllPrincipalOrgId",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserDirectSubordinate",path:"apaas-utils/listUserDirectSubordinate",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserIdUnderOrg",path:"apaas-utils/listUserIdUnderOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserIdUnderUserAllOrg",path:"apaas-utils/listUserIdUnderUserAllOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserIdUnderUserAllPrincipalOrg",path:"apaas-utils/listUserIdUnderUserAllPrincipalOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsListUserIdUnderUserMasterOrg",path:"apaas-utils/listUserIdUnderUserMasterOrg",hasQuery:!0,hasData:!1},{mode:"get",method:"getApaasUtilsPrintDropdownList",path:"apaas-utils/printDropdownList",hasQuery:!1,hasData:!1},{mode:"get",method:"getApaasUtilsSearchAllOrgOrUser",path:"apaas-utils/searchAllOrgOrUser",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppGrantedUser",path:"app-granted-user",hasQuery:!0,hasData:!0},{mode:"post",method:"postAppGrantedUserBatch",path:"app-granted-user/batch",hasQuery:!0,hasData:!0},{mode:"get",method:"getAppGrantedUserFindAllByDeleted",path:"app-granted-user/findAllByDeleted",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserGrantedStatistic",path:"app-granted-user/grantedStatistic",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserList",path:"app-granted-user/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserPageList",path:"app-granted-user/page/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserRemoveAndTransfer",path:"app-granted-user/removeAndTransfer",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGrantedUserUngrantedList",path:"app-granted-user/ungranted/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppSettingInfoByAppId",path:"app-setting/infoByAppId",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetDestBySource",path:"app/getDestBySource",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppGetSourceByDest",path:"app/getSourceByDest",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppListAppGrantedUserId",path:"app/listAppGrantedUserId",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppLockOrUnlockToPaas",path:"app/lockOrUnlockToPaas",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrg",path:"app/org",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteAppOrg",path:"app/org",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppOrgDrag",path:"app/org/drag",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppOrgInfoId",path:"app/org/info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getAppOrgList",path:"app/org/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppOrgSaveList",path:"app/org/save-list",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppOrgTransferAndDelete",path:"app/org/transferAndDelete",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrgUserAdd",path:"app/org/user/add",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrgUserCreateAndAdd",path:"app/org/user/createAndAdd",hasQuery:!0,hasData:!0},{mode:"get",method:"getAppOrgUserInfo",path:"app/org/user/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppOrgUserMove",path:"app/org/user/move",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppOrgUserPageList",path:"app/org/user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppOrgUserRemove",path:"app/org/user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppOrgUserUpdate",path:"app/org/user/update",hasQuery:!1,hasData:!0},{mode:"put",method:"putAppOrgId",path:"app/org/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getAppPublished",path:"app/published",hasQuery:!1,hasData:!1},{mode:"post",method:"postAppUpdateApaasAppSetting",path:"app/updateApaasAppSetting",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUser",path:"app/user",hasQuery:!0,hasData:!0},{mode:"delete",method:"deleteAppUser",path:"app/user",hasQuery:!0,hasData:!0},{mode:"put",method:"putAppUserDisable",path:"app/user/disable",hasQuery:!0,hasData:!1},{mode:"put",method:"putAppUserEnable",path:"app/user/enable",hasQuery:!0,hasData:!1},{mode:"get",method:"getAppUserInfoId",path:"app/user/info/{id}",hasQuery:!1,hasData:!1},{mode:"get",method:"getAppUserPageList",path:"app/user/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postAppUserRemove",path:"app/user/remove",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUserResetDefaultPwd",path:"app/user/reset/default/pwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUserResetDefaultSignPwd",path:"app/user/reset/default/signPwd",hasQuery:!1,hasData:!0},{mode:"post",method:"postAppUserSaveList",path:"app/user/save-list",hasQuery:!0,hasData:!1},{mode:"put",method:"putAppUserId",path:"app/user/{id}",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataSourceExecuteSelect",path:"data-source/executeSelect",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataSourceExecuteUpdate",path:"data-source/executeUpdate",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataSourceFindByKeyAndEnv",path:"data-source/findByKeyAndEnv",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataSourcePageList",path:"data-source/page/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getDataSourceQueryData",path:"data-source/queryData",hasQuery:!0,hasData:!1},{mode:"post",method:"postDataSourceSelect",path:"data-source/select",hasQuery:!0,hasData:!0},{mode:"get",method:"getDataSourceType",path:"data-source/type",hasQuery:!0,hasData:!1},{mode:"post",method:"postFileTaskList",path:"file-task/list",hasQuery:!1,hasData:!1},{mode:"post",method:"postFileTaskStatus",path:"file-task/status",hasQuery:!1,hasData:!0},{mode:"post",method:"postFileTaskSubmit",path:"file-task/submit",hasQuery:!1,hasData:!0},{mode:"get",method:"getKnowledgeBaseFindByIds",path:"knowledge-base/findByIds",hasQuery:!0,hasData:!1},{mode:"post",method:"postLoginLogUserLoginLogPage",path:"login-log/userLoginLogPage",hasQuery:!1,hasData:!0},{mode:"get",method:"getModelInfo",path:"model/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getMsgFindAllByType",path:"msg/findAllByType",hasQuery:!0,hasData:!1},{mode:"post",method:"postMsgSendEmailMessage",path:"msg/sendEmailMessage",hasQuery:!1,hasData:!0},{mode:"post",method:"postMsgSendMessage",path:"msg/sendMessage",hasQuery:!1,hasData:!0},{mode:"post",method:"postOpenapiGroup",path:"openapi-group",hasQuery:!1,hasData:!0},{mode:"put",method:"putOpenapiGroupEnabled",path:"openapi-group/enabled",hasQuery:!0,hasData:!1},{mode:"put",method:"putOpenapiGroupOpened",path:"openapi-group/opened",hasQuery:!0,hasData:!1},{mode:"put",method:"putOpenapiKeyGrantUpdateApi",path:"openapi-key-grant/updateApi",hasQuery:!0,hasData:!1},{mode:"get",method:"getOrgUserPickerAppGetCanBeUsedOrg",path:"org-user-picker/app/getCanBeUsedOrg",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgUserPickerAppGetCanBeUsedOrgUser",path:"org-user-picker/app/getCanBeUsedOrgUser",hasQuery:!1,hasData:!0},{mode:"get",method:"getOrgUserPickerAppGetVisibleOrg",path:"org-user-picker/app/getVisibleOrg",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgUserPickerAppGetVisibleOrgUser",path:"org-user-picker/app/getVisibleOrgUser",hasQuery:!1,hasData:!0},{mode:"get",method:"getOrgUserPickerAppGetVisibleUser",path:"org-user-picker/app/getVisibleUser",hasQuery:!0,hasData:!1},{mode:"get",method:"getOrgUserPickerAppListUserByIds",path:"org-user-picker/app/listUserByIds",hasQuery:!0,hasData:!1},{mode:"post",method:"postOrgFindAllByIdIn",path:"org/findAllByIdIn",hasQuery:!1,hasData:!1},{mode:"post",method:"postOrgList",path:"org/list",hasQuery:!0,hasData:!1},{mode:"get",method:"getOrgListAll",path:"org/listAll",hasQuery:!1,hasData:!1},{mode:"post",method:"postOrgPrincipals",path:"org/principals",hasQuery:!1,hasData:!1},{mode:"get",method:"getPlatAppGlobalInfoAppId",path:"plat/app/global/info/{appId}",hasQuery:!1,hasData:!1},{mode:"post",method:"postPlatAppGlobalAppId",path:"plat/app/global/{appId}",hasQuery:!1,hasData:!0},{mode:"post",method:"postPlatBase",path:"plat/base",hasQuery:!1,hasData:!0},{mode:"post",method:"postPlatOrg",path:"plat/org",hasQuery:!1,hasData:!0},{mode:"post",method:"postPlatSecurity",path:"plat/security",hasQuery:!1,hasData:!0},{mode:"post",method:"postPrintLogPageList",path:"print-log/page/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getPrintExchangePrinterName",path:"print/exchangePrinterName",hasQuery:!0,hasData:!1},{mode:"post",method:"postPrintSendPrintData",path:"print/sendPrintData",hasQuery:!1,hasData:!0},{mode:"delete",method:"deleteRegexpDelete",path:"regexp/delete",hasQuery:!0,hasData:!1},{mode:"get",method:"getRegexpInfo",path:"regexp/info",hasQuery:!0,hasData:!1},{mode:"get",method:"getRegexpList",path:"regexp/list",hasQuery:!1,hasData:!1},{mode:"get",method:"getRegexpPageList",path:"regexp/page/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postRegexpSave",path:"regexp/save",hasQuery:!1,hasData:!0},{mode:"put",method:"putRegexpUpdateId",path:"regexp/update/{id}",hasQuery:!1,hasData:!0},{mode:"post",method:"postReportDataExport",path:"report-data/export",hasQuery:!1,hasData:!0},{mode:"get",method:"getReportDataInfo",path:"report-data/info",hasQuery:!0,hasData:!1},{mode:"post",method:"postReportDataList",path:"report-data/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getReportDataPageInfo",path:"report-data/page-info",hasQuery:!0,hasData:!1},{mode:"get",method:"getReportDataProjectInfo",path:"report-data/project-info",hasQuery:!0,hasData:!1},{mode:"post",method:"postReportDetailDetail",path:"report-detail/detail",hasQuery:!1,hasData:!0},{mode:"post",method:"postReportDetailListStatistic",path:"report-detail/listStatistic",hasQuery:!1,hasData:!0},{mode:"post",method:"postSignLogOperators",path:"signLog/operators",hasQuery:!1,hasData:!0},{mode:"post",method:"postSignLogPageList",path:"signLog/page/list",hasQuery:!1,hasData:!0},{mode:"get",method:"getTenantInfoByPortOrDomain",path:"tenant/info/byPortOrDomain",hasQuery:!0,hasData:!1},{mode:"get",method:"getTenantOrgList",path:"tenant/org/list",hasQuery:!0,hasData:!1},{mode:"post",method:"postTenantUserSyncFromThirdParty",path:"tenant/userSyncFromThirdParty",hasQuery:!1,hasData:!0},{mode:"get",method:"getUserOrgPrincipal",path:"user/org/principal",hasQuery:!0,hasData:!1},{mode:"post",method:"postUserOrgPrincipals",path:"user/org/principals",hasQuery:!0,hasData:!1}]},{name:"copyFilter",entityName:"copyFilter",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deleteFilter",entityName:"deleteFilter",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllFilter",entityName:"getAllFilter",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getFilterById",entityName:"getFilterById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"saveFilter",entityName:"saveFilter",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"httpQuery",entityName:"httpQuery",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"clearLogLogin",entityName:"clearLogLogin",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1}]},{name:"getLogLoginByPage",entityName:"getLogLoginByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"clearLogOperate",entityName:"clearLogOperate",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1}]},{name:"deleteLogOperateById",entityName:"deleteLogOperateById",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getPnLogOperateByPage",entityName:"getPnLogOperateByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"uncompressLogOperateLayoutStr",entityName:"uncompressLogOperateLayoutStr",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deleteMapGeoJson",entityName:"deleteMapGeoJson",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getAdCodeByAliasName",entityName:"getAdCodeByAliasName",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getGeoJsonByAdCode",entityName:"getGeoJsonByAdCode",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getMapBaseInfoByLevel",entityName:"getMapBaseInfoByLevel",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getMapGeoJsonById",entityName:"getMapGeoJsonById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getMapGeoJsonByPage",entityName:"getMapGeoJsonByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveMapGeoJson",entityName:"saveMapGeoJson",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deletePageSnapshoot",entityName:"deletePageSnapshoot",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageSnapshootByEnabled",entityName:"getPageSnapshootByEnabled",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageSnapshootById",entityName:"getPageSnapshootById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageSnapshootsByPageId",entityName:"getPageSnapshootsByPageId",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"savePageSnapshoot",entityName:"savePageSnapshoot",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"setPageSnapshootEnabled",entityName:"setPageSnapshootEnabled",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"setPageSnapshootEnabledByPageId",entityName:"setPageSnapshootEnabledByPageId",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"attachmentResourceTransfer",entityName:"attachmentResourceTransfer",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deletePageTemplate",entityName:"deletePageTemplate",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"exportTemplate",entityName:"exportTemplate",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1},{mode:"head",method:"head",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"post",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"put",path:"",hasQuery:!0,hasData:!1},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"options",method:"options",path:"",hasQuery:!0,hasData:!1},{mode:"patch",method:"patch",path:"",hasQuery:!0,hasData:!1}]},{name:"getAllPageTemplate",entityName:"getAllPageTemplate",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getPageTemplateById",entityName:"getPageTemplateById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageTemplateByPage",entityName:"getPageTemplateByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getPageTemplateForCreatePageForm",entityName:"getPageTemplateForCreatePageForm",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getPageTemplateLayout",entityName:"getPageTemplateLayout",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getPageTemplateThemeJson",entityName:"getPageTemplateThemeJson",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"importTemplate",entityName:"importTemplate",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1},{mode:"head",method:"head",path:"",hasQuery:!1,hasData:!1},{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!1},{mode:"put",method:"put",path:"",hasQuery:!1,hasData:!1},{mode:"delete",method:"delete",path:"",hasQuery:!1,hasData:!1},{mode:"options",method:"options",path:"",hasQuery:!1,hasData:!1},{mode:"patch",method:"patch",path:"",hasQuery:!1,hasData:!1}]},{name:"savePageTemplate",entityName:"savePageTemplate",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"toggleEnabled",entityName:"toggleEnabled",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"deletePnResource",entityName:"deletePnResource",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"deletePnResourceGroup",entityName:"deletePnResourceGroup",apis:[{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1}]},{name:"getMyAllPnResourceGroup",entityName:"getMyAllPnResourceGroup",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getMyPnResourceByPage",entityName:"getMyPnResourceByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getPnResourceGroupById",entityName:"getPnResourceGroupById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"resourceTransferToPage",entityName:"resourceTransferToPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"savePnResourceGroup",entityName:"savePnResourceGroup",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"uploadFiles",entityName:"uploadFiles",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1},{mode:"head",method:"head",path:"",hasQuery:!0,hasData:!1},{mode:"post",method:"post",path:"",hasQuery:!0,hasData:!1},{mode:"put",method:"put",path:"",hasQuery:!0,hasData:!1},{mode:"delete",method:"delete",path:"",hasQuery:!0,hasData:!1},{mode:"options",method:"options",path:"",hasQuery:!0,hasData:!1},{mode:"patch",method:"patch",path:"",hasQuery:!0,hasData:!1}]},{name:"getMyShareCustomCompByPage",entityName:"getMyShareCustomCompByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getShareCustomCompById",entityName:"getShareCustomCompById",apis:[{mode:"get",method:"get",path:"",hasQuery:!0,hasData:!1}]},{name:"getShareCustomCompByPage",entityName:"getShareCustomCompByPage",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"saveShareCustomComp",entityName:"saveShareCustomComp",apis:[{mode:"post",method:"post",path:"",hasQuery:!1,hasData:!0}]},{name:"getPageTotalCount",entityName:"getPageTotalCount",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]},{name:"getProjectTotalCount",entityName:"getProjectTotalCount",apis:[{mode:"get",method:"get",path:"",hasQuery:!1,hasData:!1}]}];var ds=(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))(ds||{});const is=Vt.create();class he{static use(s){s(is)}static get(s,a={},t={},h={}){return this.request(s,a,t,{...h,method:"GET"})}static post(s,a={},t={},h={}){return this.request(s,a,t,{...h,method:"POST"})}static put(s,a={},t={},h={}){return this.request(s,a,t,{...h,method:"PUT"})}static delete(s,a={},t={},h={}){return this.request(s,a,t,{...h,method:"DELETE"})}static options(s,a={},t={},h={}){return this.request(s,a,t,{...h,method:"OPTIONS"})}static patch(s,a={},t={},h={}){return this.request(s,a,t,{...h,method:"PATCH"})}static head(s,a={},t={},h={}){return this.request(s,a,t,{...h,method:"HEAD"})}static async request(s,a,t,h={}){if(t){const l=Zt.stringify(t,{arrayFormat:"brackets"});l&&(s.includes("?")?s+=`&${l}`:s+=`?${l}`)}const o=await is.request(as({url:s,data:JSON.stringify(a||{}),params:t,timeout:120*1e3,headers:{"Content-Type":ds.JSON}},h));if(o.status>=200&&o.status<300)return o.data;throw o}}class G0{constructor(s,a){return this.url=s,new Proxy(this,{get(t,h){if(!(h in t)){const o=a.apis.find(l=>l.method===h);if(o){const l=`_${o.mode}`;o.hasData&&o.hasQuery?t[h]=(u,n,r)=>t[l](o.path,n,u,r):o.hasData?t[h]=function(u,n){return t[l](o.path,u,void 0,n)}:o.hasQuery?t[h]=function(u,n){return t[l](o.path,void 0,u,n)}:t[h]=function(u){return t[l](o.path,void 0,void 0,u)}}}return t[h]}})}_put(s,a,t,h){return he.put(t?.id?J.join(this.url,s,t.id):J.join(this.url,s),a||{},t||{},h)}_get(s,a,t,h){return he.get(J.join(this.url,s),a||{},t||{},h)}_delete(s,a,t,h){return he.delete(J.join(this.url,s),a||{},t||{},h)}_post(s,a,t,h){return he.post(J.join(this.url,s),a||{},t||{},h)}_options(s,a,t,h){return he.options(J.join(this.url,s),a||{},t||{},h)}_patch(s,a,t,h){return he.patch(J.join(this.url,s),a||{},t||{},h)}_head(s,a,t,h){return he.head(J.join(this.url,s),a||{},t||{},h)}}class ls{constructor(s,a){return new Proxy(this,{get(t,h){const o=a.find(l=>l.name===h);if(o)return h in t||(t[h]=new G0(J.join(s,o.entityName),o)),t[h]}})}}const us={apaas:new ls("/gct-apaas/api",w0),platform:new ls("/gct-platform/api",k0)};class ps{constructor(s){this.model=s,this.init()}evt=new $a;state=new It;item={};provider={};context={};params={};fields=[];modelMap={};init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent(),this.calcState()}initEvent(){}calcState(){}initFormItems(s){s.forEach(a=>{let t=null;if((a.type==="item"||a.type==="hidden")&&(this.fields.push(a.name),this.modelMap[a.name]=a),a.type==="item"&&(t=_gct.register.formItem.create(`${a.type}___${a.editor.type}___${a.name}`),t||(t=_gct.register.formItem.create(`${a.type}___${a.editor.type}`))),t||(t=_gct.register.formItem.create(a.type)),!t){console.error(`未找到表单项提供者:${a.type}`,a);return}if(this.provider[a.name]=t,a.type==="item"){const h=a;this.item[h.name]=t.createController(this,h)}else if(a.type==="hidden"){const h=a;this.item[h.name]=t.createController(this,h)}else if(a.type==="container"||a.container){const h=a;this.item[a.name]=t.createController(this,h),h.children&&this.initFormItems(h.children)}})}calcHidden(){Object.keys(this.item).forEach(a=>{const t=this.item[a];if(t.model.hidden){const h=t.model.hidden(this,t,this.state.data);h!=null&&(t.state.visible=!h)}})}getData(){const s={};return this.fields.forEach(a=>{const t=this.item[a];t&&(t.state.visible===!0||t.model.type==="hidden")&&(s[t.key]=t.value)}),s}resetData(){this.fields.forEach(s=>{const a=this.item[s];a&&a.reset()})}async load(){try{if(!this.model.loadRequest)return{};this.state.loading=!0;const s=await this.model.loadRequest({id:this.context.id});return this.fields.forEach(a=>{const t=this.item[a];t&&(t.value=s[t.key]),t.defaultValue()}),this.state.loaded=!0,s}finally{this.state.loading=!1}}destroy(){this.state.destroyed=!0,this.evt.reset(),this.fields.forEach(s=>{const a=this.item[s];a&&a.destroy()})}validate(){return Promise.resolve(!0)}validateItem(s){return Promise.resolve(!0)}loaded(){this.calcHidden(),this.fields.forEach(s=>{this.item[s].defaultValue()}),this.calcState()}mounted(){}}x("GctFormController",ps);class H0 extends ps{initEvent(){super.initEvent(),this.evt.on("change",(s,a,t)=>{if(this.model.watch){const o=this.model.watch[s];o&&o(this,a,t)}const h=this.item[s];h&&h.model.watch&&h.model.watch(this,h,a,t),a!=t&&this.calcHidden(),this.model.autosave===!0&&this.state.loading===!1&&this.autoSave()})}autoSave(){return this.save()}save(){const s=this.getData();return this.state.isNew===!0&&this.model.newRequest?this.model.newRequest(s):this.model.updateRequest?this.model.updateRequest({id:this.context.id},s):Promise.resolve(s)}}x("EditFormController",H0);function K0(e){const s=e();return s.state=Re(s.state),$t(()=>s.destroy()),s}class Pt{model;constructor(s){this.model=s}}x("EditorController",Pt);class ns{constructor(s){this.model=s,this.init()}evt=new $a;context={};params={};state=new It;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(s){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(s){s.forEach(a=>{let t=null;if(a.type==="item"&&(t=_gct.register.formItem.create(`${a.type}___${a.editor.type}___${a.name}`),t||(t=_gct.register.formItem.create(`${a.type}___${a.editor.type}`))),t||(t=_gct.register.formItem.create(a.type)),!t){console.error(`未找到表单项提供者:${a.type}`,a);return}if(this.provider[a.name]=t,a.type==="item"){const h=a;this.item[h.name]=t.createController(this,a)}else if(a.type==="container"){const h=a;this.item[a.name]=t.createController(this,a),h.children&&this.initFormItems(h.children)}})}getData(){return{}}resetData(){Object.keys(this.state.data).forEach(a=>{const t=this.state.data[a];t&&(typeof t=="object"?Array.isArray(t)?this.state.data[a]=[]:this.state.data[a]={}:this.state.data[a]=null)})}}x("FormController",ns);function z0(e){const s=new ns(e);return s.state=Re(s.state),s}class ne{constructor(s,a){this.form=s,this.model=a,this.init()}state=this.crateItemState();get data(){return this.form.state.data}init(){}destroy(){this.state.destroyed=!0}crateItemState(){return new re}}x("FormItemBasicController",ne);function V0(e){const s=e();return s.state=Re(s.state),s}class W0 extends ne{type="collapse-pane";crateItemState(){return new Yt}}x("FormCollapsePaneController",W0);class q0 extends ne{type="collapse";crateItemState(){return new ea}}x("FormCollapseController",q0);class X0 extends ne{type="tab";crateItemState(){return new ta}}x("FormTabController",X0);class $0 extends ne{type="tab-pane";crateItemState(){return new aa}}x("FormTabPaneController",$0);class j0 extends ne{type="group";crateItemState(){return new sa}}x("FormGroupController",j0);class Ot extends ne{get key(){return this.model.field??this.model.name}get value(){return this.form.state.data[this.key]}set value(s){const a=Ne(this.form.state.data[this.key]);this.form.state.data[this.key]=s,this.form.evt.emit("change",this.key,s,a),this.state.value=s}get editorValue(){return this.model.fields?this.model.fields.map(s=>this.form.item[s].value):this.value}set editorValue(s){this.model.fields?this.model.fields.forEach((a,t)=>{this.form.item[a].value=s?.[t]}):this.value=s}init(){if(super.init(),this.model.type!=="hidden"){const{editor:s}=this.model;this.state.readonly=s.readonly,s.disabled!=null&&(this.state.disabled=s.disabled)}if(this.model.dictionary){const{mode:s}=this.model.dictionary;s==="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 bt}}x("FormEditItemController",Ot);class Z0 extends Ot{type="item";async loadDictionary(s){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,s):this.model.dictionaryTag&&(this.state.options=await _gct.dictionary.asyncGet(this.model.dictionaryTag,s)),this.state.options}finally{this.state.loading=!1}}clearDictionary(){this.state.options=[]}crateItemState(){return new ra}}x("FormItemController",Z0);class J0 extends Ot{type="hidden"}x("FormHiddenItemController",J0);class Y0 extends Pt{}x("LengthUnitEditorController",Y0);class ed extends Pt{}x("ColorEditorController",ed);function ms(){return Bt("formController")}function td(e){let s=null;if(e){const t=ms().item[e];t&&(s=Se({get(){return t.value},set(h){typeof h=="string"&&(h=h.trim()),!(typeof h!="object"&&t.value==h)&&(t.value=h)}}))}else{let a=Ct().proxy;const t=a.$props,h=a.$emit;s=Se({get:()=>t.value,set:o=>{typeof o=="string"&&(o=o.trim()),!(typeof o!="object"&&t.value==o)&&h("update:value",o)}}),a=null}return s}function ad(e,s){let a=Ct().proxy;const t=a.$props,h=a.$emit,o=e?e.length:0,l=s?s.length:0,u=Se({get:()=>{if(!t.value)return"";let n=t.value;return o>0&&n.startsWith(e)&&(n=n.substring(o)),l>0&&n.endsWith(s)&&(n=n.substring(0,n.length-l)),n},set:n=>{if(t.value===n)return;if(typeof n=="string"&&(n=n.trim()),n==""){h("update:value","");return}let r=n;o>0&&(r=e+r),l>0&&(r=r+s),h("update:value",r)}});return a=null,u}function sd(e){const s=Bt("modal");return s&&e&&(s.ok=e),s}function rd(e){return new qa(e)}function fs(e){return typeof e<"u"}function od(e){const s=Te(e||""),a=Te(!1),t=Te(!1);return jt(s,h=>{fs(h)&&(t.value=!0,a.value=gs(h))},{immediate:!!e,flush:"sync"}),{clipboardRef:s,isSuccessRef:a,copiedRef:t}}function gs(e,{target:s=document.body}={}){const a=document.createElement("textarea"),t=document.activeElement;a.value=e,a.setAttribute("readonly",""),a.style.contain="strict",a.style.position="absolute",a.style.left="-9999px",a.style.fontSize="12pt";const h=document.getSelection();let o;h&&h.rangeCount>0&&(o=h.getRangeAt(0)),s.append(a),a.select(),a.selectionStart=0,a.selectionEnd=e.length;let l=!1;try{l=document.execCommand("copy")}catch(u){throw new Error(u)}return a.remove(),o&&h&&(h.removeAllRanges(),h.addRange(o)),t&&t.focus(),l}const me={UNAUTHORIZED:401,FORBIDDEN:403,NOT_FOUND:404,INTERNAL_SERVER_ERROR:500,BAD_GATEWAY:502,SERVICE_UNAVAILABLE:503,GATEWAY_TIMEOUT:504};class hd{handle(s){console.error(s)}}class dd{handle(s){console.error(s)}}class id{handle(s){if(s.type===ae.AJAX){new ys().handle(s);return}console.error(s)}}class ys{handle(s){const a=this._extractStatusCode(s.message);if(a)switch(a){case me.UNAUTHORIZED:this._handleUnauthorized();break;case me.FORBIDDEN:this._handleForbidden();break;case me.NOT_FOUND:this._handleNotFound();break;case me.INTERNAL_SERVER_ERROR:case me.BAD_GATEWAY:case me.SERVICE_UNAVAILABLE:case me.GATEWAY_TIMEOUT:this._handleServerError(a);break;default:this._handleGenericHttpError(s);break}else this._handleGenericHttpError(s)}_extractStatusCode(s){const a=s.match(/HTTP\s+(\d{3})|Business\s+Error\s+\[(\d+)\]/);return a?parseInt(a[1]||a[2],10):null}_handleGenericHttpError(s){s.message.includes("Business Error")?console.debug("Handling business error:",s.message):s.message.includes("Network")?console.debug("Handling network error:",s.message):console.debug("Handling HTTP error:",s.message)}_handleUnauthorized(){console.warn("Unauthorized access, redirecting to login...")}_handleForbidden(){console.warn("Access forbidden")}_handleNotFound(){console.warn("Resource not found")}_handleServerError(s){console.warn(`Server error: ${s}`)}}class cs{static _strategies=new Map;static init(){this.registerStrategy(ae.SCRIPT,new hd),this.registerStrategy(ae.VUE,new dd),this.registerStrategy(ae.PROMISE,new id),this.registerStrategy(ae.AJAX,new ys)}static getStrategy(s){return this._strategies.get(s)}static registerStrategy(s,a){this._strategies.set(s,a)}}class se{static _instance;constructor(){this._initializeStrategies()}static getInstance(){return se._instance||(se._instance=new se),se._instance}static init(){se.getInstance()}static handleVueError(s,a,t){const h={type:ae.VUE,message:`Vue Error: ${s.message} | Info: ${t}`,stack:s.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(h)}static reportError(s,a=ae.SCRIPT){const t={type:a,message:s.message,stack:s.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(t)}_initializeStrategies(){cs.init()}_processError(s){cs.getStrategy(s.type)?.handle(s)}}async function ld(e){se.init(),e.config.errorHandler=(s,a,t)=>{se.handleVueError(s,a,t)},e.config.warnHandler=(s,a,t)=>{console.warn(`Vue Warning: ${s}`),t&&console.warn("Trace:",t)},window.addEventListener("error",s=>{se.reportError(new Error(s.message),ae.SCRIPT)}),window.addEventListener("unhandledrejection",s=>{se.reportError(s.reason,ae.PROMISE)})}class ud{async init(){const s=await _api.platform.plat.getList();console.debug("plat",s.data)}}const pd=new ud;async function nd(e){await ld(e),he.use(ss),P0(e),U0(e),await _gct.init(),await pd.init()}function Ds(){if(window._gct){console.warn("核心包已安装,请勿重复安装!");return}console.info("核心包安装成功!"),window._gct=new hs,Object.defineProperty(window._gct,"api",{get(){return us}}),Object.defineProperty(window,"_api",{get(){return us}})}})}}));
7
+ \`\`\`
8
+ version: ${a.version}
9
+ userAgent: ${navigator.userAgent}
10
+ timeBetweenLoadAndGet: ${s-n}
11
+ visitorId: ${a.visitorId}
12
+ components: ${on(r)}
13
+ \`\`\``),a}}}function Bo(){if(!(window.__fpjs_d_m||Math.random()>=.001))try{const e=new XMLHttpRequest;e.open("get",`https://m1.openfpcdn.io/fingerprintjs/v${Pt}/npm-monitoring`,!0),e.send()}catch(e){console.error(e)}}async function Fo(e={}){var t;(!((t=e.monitoring)!==null&&t!==void 0)||t)&&Bo();const{delayFallback:n,debug:i}=e;await ko(n);const s=Oo({cache:{},debug:i});return Go(s,i)}var Wo={load:Fo,hashComponents:cn,componentsToDebugString:on};const ln="FINGERPRINT";function un(){return typeof window<"u"&&typeof navigator<"u"}function Ho(){if(!un())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 Vo(){return(await Wo.load()).get()}async function Fe(){if(!un())return"unknown/unknown";const{type:e,name:t}=Ho(),n=e==="web";if(n){const r=localStorage.getItem(ln);if(r)return`${t}/${r}`}const s=(await Vo()).visitorId;return n&&localStorage.setItem(ln,s),`${t}/${s}`}function dn(){let e=sessionStorage.getItem("currentPageTag");return e||(e=Date.now().toString(),sessionStorage.setItem("currentPageTag",e)),e}class D{static _DEFAULT_CONFIG={id:"id",children:"children",pid:"pid",deep:!0};static _getConfig(t){return Object.assign({},D._DEFAULT_CONFIG,t)}static listToTree(t,n={},i){const s=D._getConfig(n),r=new Map,a=[],{id:c,children:d,pid:f,deep:l}=s;for(const u of t){const g=u;l?g[d]=g[d]??void 0:g[d]=g[f]==="ROOT"?g[d]??[]:[],r.set(g[c],i(u))}for(const u of t){const g=u,m=r.get(g[f]);if(m){const b=m;b[d]||(b[d]=[]),b[d].push(i(u))}else a.push(i(u))}return a}static treeToList(t,n={}){const{children:i}=D._getConfig(n),s=[...t];for(let r=0;r<s.length;r++){const c=s[r][i];Array.isArray(c)&&s.splice(r+1,0,...c)}return s}static findNode(t,n,i={}){const{children:s}=D._getConfig(i),r=t?[...t]:[];for(const a of r){if(n(a))return a;const d=a[s];Array.isArray(d)&&r.push(...d)}return null}static findNodeAll(t,n,i={}){const{children:s}=D._getConfig(i),r=t?[...t]:[],a=[];for(const c of r){n(c)&&a.push(c);const f=c[s];Array.isArray(f)&&r.push(...f)}return a}static findPath(t,n,i={}){const{children:s}=D._getConfig(i),r=[],a=t?[...t]:[],c=new Set;for(;a.length;){const d=a[0];if(c.has(d))r.pop(),a.shift();else{c.add(d);const l=d[s];if(Array.isArray(l)&&a.unshift(...l),r.push(d),n(d))return r}}return null}static findClosestParent(t,n,i,s={}){const{id:r}=D._getConfig(s);return D.findPath(t,c=>c[r]===n,s)?.reverse().find(c=>i(c))}static list_to_tree(t,n=i=>i){const i={},s=[];for(let r=0;r<t.length;r++){const a=t[r];i[a.id]=r,a.children=[]}for(const r of t)if(r.parentId==="ROOT"||!r.parentId)s.push(n(r));else{const a=r,c=i[r.parentId];c!==void 0&&t[c].children?.push(n(a))}return s}static getAllParentPath(t,n){return(D.findPath(t,s=>s.path===n)||[]).map(s=>s.path)}static traverseAndBuildTree(t,n,i={}){i=this._getConfig(i);const{children:s}=i;return t.map(r=>{const a=n(r)||r;return s&&r[s]&&r[s].length>0&&(a[s]=this.traverseAndBuildTree(r.children,n)),a})}}o("TreeHelper",D);const Wl=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 s=e.margin;s&&(s.top!=null&&s.top!=""&&!t.includes("marginTop")&&(n["margin-top"]=s.top),s.right!=null&&s.right!=""&&!t.includes("marginRight")&&(n["margin-right"]=s.right),s.bottom!=null&&s.bottom!=""&&!t.includes("marginBottom")&&(n["margin-bottom"]=s.bottom),s.left!=null&&s.left!=""&&!t.includes("marginLeft")&&(n["margin-left"]=s.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 a=e.border;return a&&(a.topLeftRadius!=null&&a.topLeftRadius!=""&&!t.includes("borderTopLeftRadius")&&(n["border-top-left-radius"]=a.topLeftRadius),a.topRightRadius!=null&&a.topRightRadius!=""&&!t.includes("borderTopRightRadius")&&(n["border-top-right-radius"]=a.topRightRadius),a.bottomLeftRadius!=null&&a.bottomLeftRadius!=""&&!t.includes("borderBottomLeftRadius")&&(n["border-bottom-left-radius"]=a.bottomLeftRadius),a.bottomRightRadius!=null&&a.bottomRightRadius!=""&&!t.includes("borderBottomRightRadius")&&(n["border-bottom-right-radius"]=a.bottomRightRadius),a.top&&(a.top.color!=null&&a.top.color!=""&&!t.includes("borderTopColor")&&(n["border-top-color"]=a.top.color),a.top.width!=null&&a.top.width!=""&&!t.includes("borderTopWidth")&&(n["border-top-width"]=a.top.width),a.top.style&&!t.includes("borderTopStyle")&&(n["border-top-style"]=a.top.style)),a.right&&(a.right.color!=null&&a.right.color!=""&&!t.includes("borderRightColor")&&(n["border-right-color"]=a.right.color),a.right.width!=null&&a.right.width!=""&&!t.includes("borderRightWidth")&&(n["border-right-width"]=a.right.width),a.right.style&&!t.includes("borderRightStyle")&&(n["border-right-style"]=a.right.style)),a.bottom&&(a.bottom.color!=null&&a.bottom.color!=""&&!t.includes("borderBottomColor")&&(n["border-bottom-color"]=a.bottom.color),a.bottom.width!=null&&a.bottom.width!=""&&!t.includes("borderBottomWidth")&&(n["border-bottom-width"]=a.bottom.width),a.bottom.style&&!t.includes("borderBottomStyle")&&(n["border-bottom-style"]=a.bottom.style)),a.left&&(a.left.color!=null&&a.left.color!=""&&!t.includes("borderLeftColor")&&(n["border-left-color"]=a.left.color),a.left.width!=null&&a.left.width!=""&&!t.includes("borderLeftWidth")&&(n["border-left-width"]=a.left.width),a.left.style&&!t.includes("borderLeftStyle")&&(n["border-left-style"]=a.left.style))),e.border_radius&&(n["border-radius"]=`${e.border_radius}px`),n}),Hl=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 fn(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 Xo(e,t){const{target:n="_blank",noopener:i=!0,noreferrer:s=!0,genUrlData:r,routePath:a="",optionStr:c=""}=t||{},d=[];i&&d.push("noopener=yes"),s&&d.push("noreferrer=yes");let f=e;r&&(f=fn(f,r)),a&&(f+=a);let l=d.join(",");return c&&(l=l?`${l},${c}`:c),window.open(f,n,l)}const xo=J("global-store",{state(){return new gt},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=Dt(e);t&&(this.context=t)}},async loadAppInfo(){const e=await _api.apaas.designerCommon.getGetApp();console.log(e),this.appInfo=e},setProjectName(e){this.projectName=e},setLang(e){this.lang=e}}});class hn{pinia=qe();store;constructor(){et(this.pinia),this.store=xo()}}o("GlobalStoreUtil",hn);class gn{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",gn);class mn{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",mn);class ge{map=new Map;hooks={register:new Ot,unregister:new Ot};register(t,n){this.map.set(t,n),this.hooks.register.callSync(null,t,n)}unregister(t){this.map.delete(t),this.hooks.unregister.callSync(null,t)}get(t){return this.map.get(t)}keys(){return Array.from(this.map.keys())}}o("RenderRegister",ge);var me=o("EnvironmentType",(e=>(e.DEV="dev",e.TEST="test",e.PROD="prod",e))(me||{}));const jo=o("IP_REG",/^http:\/\/\d{1,3}(\.\d{1,3}){3}:(\d{1,5})$/),bn=o("HOST_REG",/^https?:\/\/([a-z0-9]+)-test\./),Ko=o("APP_RUN_PATH_REG",/\/web-render|\/web\/|web-single\/|dev-single\/|test-single\//),$o=o("APP_PROD_PATH_REG",/\/web\/|\/web-single\//),Zo=o("APP_PREVIEW_PATH_REG",/\/web-render\//),Jo=o("DEV_SINGLE_PATH_REG",/\/dev-single\//),Yo=o("TEST_SINGLE_PATH_REG",/\/test-single\//);class En{_testEnv=!1;_testTenantData={};_platformOrigin;_isHostMode=!1;constructor(){this._platformOrigin=location.origin||"",this._isHostMode=bn.test(this._platformOrigin)}get isAppRun(){return Ko.test(location.pathname)}get isAppProd(){return $o.test(location.pathname)}get isAppPreview(){return Zo.test(location.pathname)}get isDevSingleEnv(){return Jo.test(location.pathname)}get isTestEnv(){return Yo.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(bn),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(jo);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?me.TEST:this.isAppProd?me.PROD:me.DEV}}o("EnvironmentManager",En);class pn{i18n=ot({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(`
14
+ `).reduce((a,c)=>{const[d,...f]=c.split(":");return a[d]=f.join(":"),a},{});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",pn);function Rn(e){e.use(_gct.i18n)}const zo=[];class Qo{router;constructor(){this.router=ct({history:lt(),routes:zo})}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 qo(e){e.use(_gct.router)}class Tn{i18nUtil=new pn;i18n=this.i18nUtil.i18n;t(t,n){return this.i18n.global.t(t,n)}storeUtil=new hn;store=this.storeUtil.store;routerUtil=new Qo;router=this.routerUtil.router;message;dictionary=new St;env=new En;register={render:{pad:new ge,mobile:new ge,web:new ge},editor:new gn,formItem:new mn};async init(){await this.env.checkIsTestEnv(),await this.store.init()}}o("GctGlobal",Tn);class Sn{constructor(t){this.model=t,this.init()}evt=new vt;state=new ve;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 s=n;this.item[s.name]=i.createController(this,s)}else if(n.type==="hidden"){const s=n;this.item[s.name]=i.createController(this,s)}else if(n.type==="container"||n.container){const s=n;this.item[n.name]=i.createController(this,s),s.children&&this.initFormItems(s.children)}})}calcHidden(){Object.keys(this.item).forEach(n=>{const i=this.item[n];if(i.model.hidden){const s=i.model.hidden(this,i,this.state.data);s!=null&&(i.state.visible=!s)}})}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",Sn);class ec extends Sn{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 s=this.item[t];s&&s.model.watch&&s.model.watch(this,s,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",ec);function tc(e){const t=e();return t.state=v(t.state),_e(()=>t.destroy()),t}class We{model;constructor(t){this.model=t}}o("EditorController",We);class An{constructor(t){this.model=t,this.init()}evt=new vt;context={};params={};state=new ve;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 s=n;this.item[s.name]=i.createController(this,n)}else if(n.type==="container"){const s=n;this.item[n.name]=i.createController(this,n),s.children&&this.initFormItems(s.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",An);function nc(e){const t=new An(e);return t.state=v(t.state),t}class x{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 B}}o("FormItemBasicController",x);function ic(e){const t=e();return t.state=v(t.state),t}class rc extends x{type="collapse-pane";crateItemState(){return new mt}}o("FormCollapsePaneController",rc);class ac extends x{type="collapse";crateItemState(){return new bt}}o("FormCollapseController",ac);class sc extends x{type="tab";crateItemState(){return new Et}}o("FormTabController",sc);class oc extends x{type="tab-pane";crateItemState(){return new pt}}o("FormTabPaneController",oc);class cc extends x{type="group";crateItemState(){return new Rt}}o("FormGroupController",cc);class He extends x{get key(){return this.model.field??this.model.name}get value(){return this.form.state.data[this.key]}set value(t){const n=H(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 Ne}}o("FormEditItemController",He);class lc extends He{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 Tt}}o("FormItemController",lc);class uc extends He{type="hidden"}o("FormHiddenItemController",uc);class dc extends We{}o("LengthUnitEditorController",dc);class fc extends We{}o("ColorEditorController",fc);function hc(){return ce(aa)}function _n(){return ce("formController")}function gc(e){let t=null;if(e){const i=_n().item[e];i&&(t=w({get(){return i.value},set(s){typeof s=="string"&&(s=s.trim()),!(typeof s!="object"&&i.value==s)&&(i.value=s)}}))}else{let n=Ie().proxy;const i=n.$props,s=n.$emit;t=w({get:()=>i.value,set:r=>{typeof r=="string"&&(r=r.trim()),!(typeof r!="object"&&i.value==r)&&s("update:value",r)}}),n=null}return t}function mc(e,t){let n=Ie().proxy;const i=n.$props,s=n.$emit,r=e?e.length:0,a=t?t.length:0,c=w({get:()=>{if(!i.value)return"";let d=i.value;return r>0&&d.startsWith(e)&&(d=d.substring(r)),a>0&&d.endsWith(t)&&(d=d.substring(0,d.length-a)),d},set:d=>{if(i.value===d)return;if(d==""){s("update:value","");return}let f=d;r>0&&(f=e+f),a>0&&(f=f+t),s("update:value",f)}});return n=null,c}function bc(e){const t=ce("modal");return t&&e&&(t.ok=e),t}function Ec(e){return new _t(e)}function pc(){return w(()=>window.$wujie?.props)}function Rc(){const e=rt({});return at(()=>{const t=n=>{n.data?.type==="IFRAME_PROPS"&&(e.value=n.data.props)};window.addEventListener("message",t),window.parent.postMessage({type:"IFRAME_READY"},"*"),_e(()=>{window.removeEventListener("message",t)})}),w(()=>e.value)}function Tc(){return w(()=>window.$wujie.bus)}function In(e){return typeof e<"u"}function Sc(e){const t=y(e||""),n=y(!1),i=y(!1);return ne(t,s=>{In(s)&&(i.value=!0,n.value=Ln(s))},{immediate:!!e,flush:"sync"}),{clipboardRef:t,isSuccessRef:n,copiedRef:i}}function Ln(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 s=document.getSelection();let r;s&&s.rangeCount>0&&(r=s.getRangeAt(0)),t.append(n),n.select(),n.selectionStart=0,n.selectionEnd=e.length;let a=!1;try{a=document.execCommand("copy")}catch(c){throw new Error(c)}return n.remove(),r&&s&&(s.removeAllRanges(),s.addRange(r)),i&&i.focus(),a}const j={UNAUTHORIZED:401,FORBIDDEN:403,NOT_FOUND:404,INTERNAL_SERVER_ERROR:500,BAD_GATEWAY:502,SERVICE_UNAVAILABLE:503,GATEWAY_TIMEOUT:504};class Ac{handle(t){console.error(t)}}class _c{handle(t){console.error(t)}}class Ic{handle(t){if(t.type===k.AJAX){new vn().handle(t);return}console.error(t)}}class vn{handle(t){const n=this._extractStatusCode(t.message);if(n)switch(n){case j.UNAUTHORIZED:this._handleUnauthorized();break;case j.FORBIDDEN:this._handleForbidden();break;case j.NOT_FOUND:this._handleNotFound();break;case j.INTERNAL_SERVER_ERROR:case j.BAD_GATEWAY:case j.SERVICE_UNAVAILABLE:case j.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 Ve{static _strategies=new Map;static init(){this.registerStrategy(k.SCRIPT,new Ac),this.registerStrategy(k.VUE,new _c),this.registerStrategy(k.PROMISE,new Ic),this.registerStrategy(k.AJAX,new vn)}static getStrategy(t){return this._strategies.get(t)}static registerStrategy(t,n){this._strategies.set(t,n)}}o("ErrorStrategyFactory",Ve);class U{static _instance;constructor(){this._initializeStrategies()}static getInstance(){return U._instance||(U._instance=new U),U._instance}static init(){U.getInstance()}static handleVueError(t,n,i){const s={type:k.VUE,message:`Vue Error: ${t.message} | Info: ${i}`,stack:t.stack,timestamp:Date.now(),userAgent:navigator.userAgent};this._instance._processError(s)}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(){Ve.init()}_processError(t){Ve.getStrategy(t.type)?.handle(t)}}o("ErrorHandler",U);async function Nn(e){U.init(),e.config.errorHandler=(t,n,i)=>{U.handleVueError(t,n,i)},e.config.warnHandler=(t,n,i)=>{console.warn(`Vue Warning: ${t}`),i&&console.warn("Trace:",i)},window.addEventListener("error",t=>{U.reportError(new Error(t.message),k.SCRIPT)}),window.addEventListener("unhandledrejection",t=>{U.reportError(t.reason,k.PROMISE)})}var K=o("LoginSortTypeEnum",(e=>(e.SYSTEM="SYSTEM",e.THIRD_PARTY="THIRD_PARTY",e))(K||{})),T=o("LoginTypeEnum",(e=>(e.ACCOUNT="ACCOUNT",e.DOMAIN_ACCOUNT="DOMAIN_ACCOUNT",e.MOBILE="MOBILE",e.DINGDING="DINGDING",e.FEISHU="FEISHU",e.QIYEWEIXIN="QIYEWEIXIN",e))(T||{})),_=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))(_||{})),Lc=o("PassRule",(e=>(e.NUMBER="NUMBER",e.LOWERCASE="LOWERCASE",e.UPPERCASE="UPPERCASE",e.SPECHARS="SPECHARS",e))(Lc||{})),vc=o("KickRuleEnum",(e=>(e.SAME_END="SAME_END",e.DIFFERENT_END="DIFFERENT_END",e))(vc||{})),Xe=o("DeployModeEnum",(e=>(e.STANDARD="STANDARD",e.INDEPENDENT_APP="INDEPENDENT_APP",e))(Xe||{}));const Nc={[T.ACCOUNT]:{icon:"icon-a-Accountnumber",color:"#0E81EC"},[T.DOMAIN_ACCOUNT]:{icon:"icon-a-Domainaccount",color:"#FFAB06"},[T.MOBILE]:{icon:"icon-a-Cellphone",color:"#6A70FE"},[T.DINGDING]:{icon:"DingdingIcon"},[T.FEISHU]:{icon:"FeishuIcon"},[T.QIYEWEIXIN]:{icon:"QiyeweixinIcon"}},yn=o("SYSTEM_LOGIN_KEYS",[T.ACCOUNT,T.DOMAIN_ACCOUNT,T.MOBILE]),On=o("OTHER_LOGIN_KEYS",[T.DINGDING,T.FEISHU,T.QIYEWEIXIN]),be=o("getLoginTypeOptions",e=>e?e.map(t=>({id:t,label:t,value:t,...Nc[t]})):[]),yc=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}]),Oc=o("MENU_COLLAPSED_WIDTH",46),wc=o("MENU_WIDTH_RANGE",[100,1e3]),Mc=o("THEME_COLORS",["#026AC8","#0DAA9C"]),Cc=o("WATERMARK_INIT_DATA",{openWatermark:!1,watermarkContent:"custom",fontSize:16,color:"#000000",verticalAlign:"middle",textAlign:"center",text:"${username}",transparent:15,width:1600,height:1080}),Ee=v({copyright:'© 2016-<span class="ownInput">${当前年份}</span> 冠骋信息技术(苏州)有限公司 版权所有',description:"",icon:"",loadingImage:"",logo:"",name:"冠骋云PaaS平台",thumbnail:"",version:"暂未支持"});function Dc(e=!0){const t=()=>e?_api.platform.plat.postBase(Se({...Ee},"version")):_api.apaas.plat.postBase(Se({...Ee},"version"));function n(i,s=!0){const{value:r}=i;if(r)try{Object.assign(Ee,s?JSON.parse(r):r,{version:(void 0).version})}catch(a){console.warn(a)}}return{basicSetting:Ee,setBasicSetting:n,postBasicSetting:t}}const xe=v({deployMode:Xe.STANDARD}),Uc=w(()=>xe.deployMode===Xe.INDEPENDENT_APP);function Pc(e){const{value:t}=e;if(t)try{Object.assign(xe,JSON.parse(t))}catch(n){console.warn(n)}}function kc(){return{deploySetting:xe,setDeploySetting:Pc,isIndependentApp:Uc}}const je=y([T.ACCOUNT]),Ke=y([]),$e=y(be(yn)),Ze=y(be(On)),P=v({theme:"full",title:"欢迎登录冠骋云PaaS平台",subtitle:"让数字化赋能客户成功!",logo:"",banner:"",loginModeConfigs:[],openIDOAuthConfigs:[],sortJson:"",defaultAuthType:T.ACCOUNT}),te=v(new Map([[T.ACCOUNT,{address:"",authType:T.ACCOUNT,relationField:"",enabled:0}],[T.DOMAIN_ACCOUNT,{address:"",authType:T.DOMAIN_ACCOUNT,relationField:"",domainSuffix:"",relationFieldName:"",enabled:0}],[T.MOBILE,{smsServiceProvider:"",smsKey:"",smsKeySecret:"",smsTemplateCode:"",smsSignName:"",phoneNumb:"",smsSdkAppId:"",authType:T.MOBILE,enabled:0}],[T.DINGDING,{appId:"",authType:T.DINGDING,secret:"",redirectURL:"",enabled:0}],[T.FEISHU,{appId:"",authType:T.FEISHU,secret:"",redirectURL:"",enabled:0}],[T.QIYEWEIXIN,{appId:"",agentId:"",authType:T.QIYEWEIXIN,secret:"",redirectURL:"",enabled:0,certFileName:""}]]));function Gc(){return{loginSetting:P,postLoginSetting:async()=>{[...je.value,...Ke.value].forEach(i=>{const s=te.get(i);s&&(s.enabled=1)}),P.loginModeConfigs=yn.map(i=>te.get(i)).filter(i=>i!==void 0),P.openIDOAuthConfigs=On.map(i=>te.get(i)).filter(i=>i!==void 0),P.sortJson=JSON.stringify({[K.SYSTEM]:$e.value.map(i=>i.id),[K.THIRD_PARTY]:Ze.value.map(i=>i.id)}),await _api.platform.plat.postLogin(P)},setLoginSetting:n=>{if(n&&n.value){const i=JSON.parse(n.value);for(const r in i)r in P&&(P[r]=i[r]);if(oe(i,"sortJson")&&!it(i.sortJson)){const r=JSON.parse(i.sortJson);oe(r,K.SYSTEM)&&($e.value=be(r[K.SYSTEM])),oe(r,K.THIRD_PARTY)&&(Ze.value=be(r[K.THIRD_PARTY]))}P.loginModeConfigs?.forEach(r=>{te.set(r.authType,{...r,enabled:0})});const s=P.loginModeConfigs?.filter(r=>r.enabled).map(r=>r.authType)||[];s.push(T.ACCOUNT),je.value=[...new Set(s)],P.openIDOAuthConfigs?.forEach(r=>{te.set(r.authType,{...r,enabled:0})}),Ke.value=P.openIDOAuthConfigs?.filter(r=>r.enabled).map(r=>r.authType)||[]}},loginModeAuthTypes:je,openIDOAuthAuthTypes:Ke,sysLoginSort:$e,openIDOAuthAuthSort:Ze,loginModeConfig:te}}const $=v({initialPassword:"123456",initialSignPassword:"12345678",enableIdentifier:1,enableDeleteAccount:1,enableDeleteUser:0,requiredFields:[],supportLoginFields:["username_"],extFieldConfigs:[],orgExtFieldConfigs:[]}),Je=y([...yc]),wn=y([]);function Bc(e=!0){const t=async()=>{const i=JSON.parse(JSON.stringify($));e?await _api.platform.plat.postOrg(i):await _api.apaas.plat.postOrg(i)};function n(i){const{value:s}=i;if(s)try{const r=JSON.parse(s);for(const a in r)a=="supportLoginFields"&&(r.supportLoginFields=r.supportLoginFields.filter(c=>c!=="username_"));Object.assign($,r),$.extFieldConfigs&&$.extFieldConfigs.length&&$.extFieldConfigs.forEach(a=>{Je.value=Je.value.filter(c=>(c.value==a.relationField&&wn.value.push(c),c.value!==a.relationField))}),$.extFieldConfigs=JSON.parse(JSON.stringify(r.extFieldConfigs))}catch(r){console.warn(r)}}return{orgSetting:$,setOrgSetting:n,postOrgSetting:t,relationFields:Je,relationFiledsCopy:wn}}const pe=v({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 Fc(e=!0){const t=async()=>{e?await _api.platform.plat.postSecurity(pe):await _api.apaas.plat.postSecurity(pe)};function n(i){const{value:s}=i;if(s)try{Object.assign(pe,JSON.parse(s))}catch(r){console.warn(r)}}return{securitySetting:pe,postSecuritySetting:t,setSecuritySetting:n}}const Re=v({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"}),Ye=y(!1),Wc=Oc,Hc=wc,Vc=Mc,Xc=()=>{Re.colorMode};ne(()=>Re.colorMode,e=>{e&&Xc()});function xc(){const e=async()=>{};function t(i){const{value:s}=i;if(s)try{Object.assign(Re,JSON.parse(s))}catch(r){console.warn(r)}}function n(){Ye.value=!Ye.value}return{themeSetting:Re,setThemeSetting:t,postThemeSetting:e,menuCollapsed:Ye,toggleMenuCollapsed:n,menuCollapsedWidth:Wc,menuWidthRange:Hc,themeColors:Vc}}const ze=v({...Cc});function jc(){const e=async()=>{const n=JSON.stringify(ze);await _api.platform.plat.postWatermark({value:n})};function t(n){const{value:i}=n;if(i)try{Object.assign(ze,JSON.parse(i))}catch(s){console.warn(s)}}return{watermarkSetting:ze,postWatermarkSetting:e,setWatermarkSetting:t}}const Mn=v({});function Kc(e){Object.assign(Mn,e)}function $c(){return{projectSetting:Mn,setProjectConfig:Kc}}const Zc=o("usePlatformConfigStore",J("platform-config",()=>{const e=Dc(),t=Gc(),n=Bc(),i=Fc(),s=xc(),r=jc(),a=kc(),c=$c();async function d(){const l=await _api.platform.plat.getList(),u={};l&&l.length>0&&l.forEach(g=>{if(g.value)try{u[g.configEnum]=JSON.parse(g.value)}catch(m){console.warn(`${g.configEnum}配置解析失败`,m,g)}}),u[_.BASIC]&&e.setBasicSetting(u[_.BASIC]),u[_.LOGIN]&&t.setLoginSetting(u[_.LOGIN]),u[_.ORGANIZATION]&&n.setOrgSetting(u[_.ORGANIZATION]),u[_.SECURITY]&&i.setSecuritySetting(u[_.SECURITY]),u[_.THEME]&&s.setThemeSetting(u[_.THEME]),u[_.WATERMARK]&&r.setWatermarkSetting(u[_.WATERMARK]),u[_.DEPLOY]&&a.setDeploySetting(u[_.DEPLOY]),console.debug("平台配置初始化完成",u)}async function f(){const l=await _api.apaas.basicConfig.getDetail({configEnum:_.THEME});l&&s.setThemeSetting(l)}return{init:d,renderInit:f,...e,...t,...n,...i,...s,...r,...a,...c}})),Vl=o("useUserStore",J("user",{state:()=>({userInfo:{},roleList:[],sessionTimeout:!1,lastUpdateTime:0}),getters:{getUserInfo(e){return e.userInfo}},actions:{async login(e,{hasError:t}={}){try{const n=await Jc(e,t),{token:i,signWay:s}=n;return sessionStorage.setItem("signWay",s),wt(i),this.afterLoginAction()}catch(n){return Promise.reject(n)}},async getUserInfoAction(e){if(!le&&!e)return null;const t=await _api.platform.user.getInfo({headers:{Token:e}});return this.setUserInfo(t),t},async afterLoginSingleApp(){},async afterLoginAction(){if(!le)return null},async logout(){await Yc()},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 Jc(e,{hasError:t=!0}={}){const n=await Fe();return await _api.platform.login.postSign(e,{headers:{browser:n,"Auth-Code":e.authCode,hasError:t}})}async function Yc(){const e=sessionStorage.getItem("currentPlatOrAppId"),t=_gct.env.getEnv(),n=await Fe(),i={appId:e&&JSON.parse(e).appId,platform:e&&JSON.parse(e).type,env:t},s=dn();await _api.platform.login.getSignOut(i,{headers:{browser:n,pagetag:s}})}const Xl=o("useTenantStore",J("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}}})),xl=o("usePermissionStore",J("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 zc(e){await Nn(e),ut.use(Ut),Rn(e),qo(e),await _gct.init(),await Zc().init()}function Cn(){if(window._gct){console.warn("核心包已安装,请勿重复安装!");return}console.info("核心包安装成功!"),window._gct=new Tn,Object.defineProperty(window._gct,"api",{get(){return Le}}),Object.defineProperty(window,"_api",{get(){return Le}})}})}}));