cc-core-cli 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (291) hide show
  1. package/README.md +107 -0
  2. package/admin/.env +10 -0
  3. package/admin/docker-compose.yml +9 -0
  4. package/bin/index.js +113 -0
  5. package/genpkg/core-lib/package.json +49 -0
  6. package/package.json +28 -0
  7. package/template/media/system/icons/company.svg +1 -0
  8. package/template/media/system/icons/deploy.svg +2 -0
  9. package/template/media/system/icons/entities.svg +55 -0
  10. package/template/media/system/icons/gateway.svg +1 -0
  11. package/template/media/system/icons/import-export.svg +41 -0
  12. package/template/media/system/icons/integration.svg +1 -0
  13. package/template/media/system/icons/master_data.svg +53 -0
  14. package/template/media/system/icons/monitoring.svg +114 -0
  15. package/template/media/system/icons/provider.svg +1 -0
  16. package/template/media/system/icons/report.svg +69 -0
  17. package/template/media/system/icons/schedule.svg +1 -0
  18. package/template/media/system/icons/security.svg +1 -0
  19. package/template/media/system/icons/storage.svg +1 -0
  20. package/template/media/system/icons/template.svg +44 -0
  21. package/template/media/system/icons/theme-layout.svg +1 -0
  22. package/template/newrelic.sh +15 -0
  23. package/template/package-lock.json +13944 -0
  24. package/template/package.json +165 -0
  25. package/template/src/app.controller.ts +33 -0
  26. package/template/src/app.module.ts +163 -0
  27. package/template/src/app.service.ts +21 -0
  28. package/template/src/app_cluster.service.ts +58 -0
  29. package/template/src/core/core.controller.ts +410 -0
  30. package/template/src/core/core.module.ts +86 -0
  31. package/template/src/core/core.service.ts +715 -0
  32. package/template/src/core/setting/_settings/about.layout.json +49 -0
  33. package/template/src/core/setting/_settings/cache.layout.json +309 -0
  34. package/template/src/core/setting/_settings/schedule.layout.json +132 -0
  35. package/template/src/core/setting/_settings/security.layout.json +1622 -0
  36. package/template/src/core/setting/_settings/storage.layout.json +520 -0
  37. package/template/src/core/setting/_settings/swagger.layout.json +128 -0
  38. package/template/src/core/setting/_settings/theme_layout.layout.json +1195 -0
  39. package/template/src/main.ts +299 -0
  40. package/template/src/modules/modules.ts +16 -0
  41. package/template/tsconfig.build.json +4 -0
  42. package/template/tsconfig.json +22 -0
  43. package/template/version.json +5 -0
  44. package/template_admin/.env +10 -0
  45. package/template_admin/README.md +29 -0
  46. package/template_admin/config/service-account.json +1 -0
  47. package/template_admin/index.js +63 -0
  48. package/template_admin/newrelic.js +78 -0
  49. package/template_admin/next.config.js +76 -0
  50. package/template_admin/package-lock.json +7379 -0
  51. package/template_admin/package.json +23 -0
  52. package/template_admin/pages/404.js +13 -0
  53. package/template_admin/pages/[...url_key].js +21 -0
  54. package/template_admin/pages/_app.js +10 -0
  55. package/template_admin/pages/_document.js +43 -0
  56. package/template_admin/pages/callback.js +13 -0
  57. package/template_admin/pages/cognito.js +13 -0
  58. package/template_admin/pages/confirmpassword.js +12 -0
  59. package/template_admin/pages/forgotpassword.js +12 -0
  60. package/template_admin/pages/index.js +13 -0
  61. package/template_admin/pages/login.js +13 -0
  62. package/template_admin/pages/maintenance.js +12 -0
  63. package/template_admin/pages/newrelic.js +78 -0
  64. package/template_admin/pages/password_expired.js +13 -0
  65. package/template_admin/pages/permission_denied.js +13 -0
  66. package/template_admin/pages/profile.js +14 -0
  67. package/template_admin/pages/setting/[...setting_url_key].js +13 -0
  68. package/template_admin/pages/setting/entities/[subList]/detail.js +14 -0
  69. package/template_admin/pages/setting/entities/[subList]/detail_compare.js +8 -0
  70. package/template_admin/pages/setting/entities/[subList]/index.js +7 -0
  71. package/template_admin/pages/setting/entities/detail/index.js +14 -0
  72. package/template_admin/pages/setting/entities/index.js +14 -0
  73. package/template_admin/pages/social.js +13 -0
  74. package/template_admin/pages/token_expired.js +12 -0
  75. package/template_admin/public/icon-192x192.png +0 -0
  76. package/template_admin/public/icon-256x256.png +0 -0
  77. package/template_admin/public/icon-384x384.png +0 -0
  78. package/template_admin/public/icon-512x512.png +0 -0
  79. package/template_admin/public/manifest.json +32 -0
  80. package/template_admin/public/static/images/aws-cognito.png +0 -0
  81. package/template_admin/public/static/images/bin_icon.svg +1 -0
  82. package/template_admin/public/static/images/color-picker.png +0 -0
  83. package/template_admin/public/static/images/csv_icon.svg +1 -0
  84. package/template_admin/public/static/images/default-file.png +0 -0
  85. package/template_admin/public/static/images/default-img.png +0 -0
  86. package/template_admin/public/static/images/default-map.png +0 -0
  87. package/template_admin/public/static/images/default-profile.png +0 -0
  88. package/template_admin/public/static/images/doc_icon.svg +1 -0
  89. package/template_admin/public/static/images/exe_icon.svg +1 -0
  90. package/template_admin/public/static/images/gif_icon.svg +1 -0
  91. package/template_admin/public/static/images/google.png +0 -0
  92. package/template_admin/public/static/images/id-connect.png +0 -0
  93. package/template_admin/public/static/images/iso_icon.svg +1 -0
  94. package/template_admin/public/static/images/json_icon.png +0 -0
  95. package/template_admin/public/static/images/lang/af-ZA.svg +41 -0
  96. package/template_admin/public/static/images/lang/ar-AE.svg +38 -0
  97. package/template_admin/public/static/images/lang/ar-BH.svg +36 -0
  98. package/template_admin/public/static/images/lang/ar-DZ.svg +40 -0
  99. package/template_admin/public/static/images/lang/ar-EG.svg +38 -0
  100. package/template_admin/public/static/images/lang/ar-IQ.svg +46 -0
  101. package/template_admin/public/static/images/lang/ar-JO.svg +39 -0
  102. package/template_admin/public/static/images/lang/ar-KW.svg +38 -0
  103. package/template_admin/public/static/images/lang/ar-LB.svg +40 -0
  104. package/template_admin/public/static/images/lang/ar-LY.svg +41 -0
  105. package/template_admin/public/static/images/lang/ar-MA.svg +36 -0
  106. package/template_admin/public/static/images/lang/ar-OM.svg +70 -0
  107. package/template_admin/public/static/images/lang/ar-QA.svg +36 -0
  108. package/template_admin/public/static/images/lang/ar-SA.svg +62 -0
  109. package/template_admin/public/static/images/lang/ar-TN.svg +40 -0
  110. package/template_admin/public/static/images/lang/ar-YE.svg +37 -0
  111. package/template_admin/public/static/images/lang/az-AZ.svg +41 -0
  112. package/template_admin/public/static/images/lang/be-BY.svg +38 -0
  113. package/template_admin/public/static/images/lang/bg-BG.svg +37 -0
  114. package/template_admin/public/static/images/lang/bs-BA.svg +48 -0
  115. package/template_admin/public/static/images/lang/ca-ES.svg +89 -0
  116. package/template_admin/public/static/images/lang/cs-CZ.svg +37 -0
  117. package/template_admin/public/static/images/lang/cy-GB.svg +43 -0
  118. package/template_admin/public/static/images/lang/da-DK.svg +36 -0
  119. package/template_admin/public/static/images/lang/de-AT.svg +39 -0
  120. package/template_admin/public/static/images/lang/de-CH.svg +36 -0
  121. package/template_admin/public/static/images/lang/de-DE.svg +37 -0
  122. package/template_admin/public/static/images/lang/de-LI.svg +45 -0
  123. package/template_admin/public/static/images/lang/de-LU.svg +37 -0
  124. package/template_admin/public/static/images/lang/dv-MV.svg +37 -0
  125. package/template_admin/public/static/images/lang/el-GR.svg +46 -0
  126. package/template_admin/public/static/images/lang/en-AU.svg +51 -0
  127. package/template_admin/public/static/images/lang/en-BZ.svg +196 -0
  128. package/template_admin/public/static/images/lang/en-CA.svg +43 -0
  129. package/template_admin/public/static/images/lang/en-GB.svg +43 -0
  130. package/template_admin/public/static/images/lang/en-IE.svg +37 -0
  131. package/template_admin/public/static/images/lang/en-JM.svg +40 -0
  132. package/template_admin/public/static/images/lang/en-NZ.svg +51 -0
  133. package/template_admin/public/static/images/lang/en-PH.svg +51 -0
  134. package/template_admin/public/static/images/lang/en-SG.svg +44 -0
  135. package/template_admin/public/static/images/lang/en-TT.svg +40 -0
  136. package/template_admin/public/static/images/lang/en-US.svg +88 -0
  137. package/template_admin/public/static/images/lang/en-ZA.svg +41 -0
  138. package/template_admin/public/static/images/lang/en-ZW.svg +50 -0
  139. package/template_admin/public/static/images/lang/es-AR.svg +41 -0
  140. package/template_admin/public/static/images/lang/es-BO.svg +101 -0
  141. package/template_admin/public/static/images/lang/es-CL.svg +38 -0
  142. package/template_admin/public/static/images/lang/es-CO.svg +37 -0
  143. package/template_admin/public/static/images/lang/es-CR.svg +111 -0
  144. package/template_admin/public/static/images/lang/es-DO.svg +103 -0
  145. package/template_admin/public/static/images/lang/es-EC.svg +87 -0
  146. package/template_admin/public/static/images/lang/es-ES.svg +89 -0
  147. package/template_admin/public/static/images/lang/es-GT.svg +109 -0
  148. package/template_admin/public/static/images/lang/es-HN.svg +46 -0
  149. package/template_admin/public/static/images/lang/es-MX.svg +60 -0
  150. package/template_admin/public/static/images/lang/es-NI.svg +82 -0
  151. package/template_admin/public/static/images/lang/es-PA.svg +41 -0
  152. package/template_admin/public/static/images/lang/es-PE.svg +37 -0
  153. package/template_admin/public/static/images/lang/es-PR.svg +43 -0
  154. package/template_admin/public/static/images/lang/es-PY.svg +41 -0
  155. package/template_admin/public/static/images/lang/es-SV.svg +115 -0
  156. package/template_admin/public/static/images/lang/es-UY.svg +75 -0
  157. package/template_admin/public/static/images/lang/es-VE.svg +49 -0
  158. package/template_admin/public/static/images/lang/et-EE.svg +37 -0
  159. package/template_admin/public/static/images/lang/eu-ES.svg +89 -0
  160. package/template_admin/public/static/images/lang/fa-IR.svg +81 -0
  161. package/template_admin/public/static/images/lang/fi-FI.svg +36 -0
  162. package/template_admin/public/static/images/lang/fr-BE.svg +37 -0
  163. package/template_admin/public/static/images/lang/fr-CA.svg +43 -0
  164. package/template_admin/public/static/images/lang/fr-CH.svg +36 -0
  165. package/template_admin/public/static/images/lang/fr-FR.svg +37 -0
  166. package/template_admin/public/static/images/lang/fr-LU.svg +37 -0
  167. package/template_admin/public/static/images/lang/fr-MC.svg +36 -0
  168. package/template_admin/public/static/images/lang/gl-ES.svg +89 -0
  169. package/template_admin/public/static/images/lang/gu-IN.svg +59 -0
  170. package/template_admin/public/static/images/lang/he-IL.svg +37 -0
  171. package/template_admin/public/static/images/lang/hi-IN.svg +59 -0
  172. package/template_admin/public/static/images/lang/hr-BA.svg +48 -0
  173. package/template_admin/public/static/images/lang/hr-HR.svg +101 -0
  174. package/template_admin/public/static/images/lang/hu-HU.svg +37 -0
  175. package/template_admin/public/static/images/lang/hy-AM.svg +37 -0
  176. package/template_admin/public/static/images/lang/id-ID.svg +36 -0
  177. package/template_admin/public/static/images/lang/is-IS.svg +37 -0
  178. package/template_admin/public/static/images/lang/it-CH.svg +36 -0
  179. package/template_admin/public/static/images/lang/it-IT.svg +37 -0
  180. package/template_admin/public/static/images/lang/ja-JP.svg +36 -0
  181. package/template_admin/public/static/images/lang/ka-GE.svg +42 -0
  182. package/template_admin/public/static/images/lang/kk-KZ.svg +72 -0
  183. package/template_admin/public/static/images/lang/kn-IN.svg +59 -0
  184. package/template_admin/public/static/images/lang/ko-KR.svg +57 -0
  185. package/template_admin/public/static/images/lang/kok-IN.svg +59 -0
  186. package/template_admin/public/static/images/lang/ky-KG.svg +54 -0
  187. package/template_admin/public/static/images/lang/lt-LT.svg +37 -0
  188. package/template_admin/public/static/images/lang/lv-LV.svg +36 -0
  189. package/template_admin/public/static/images/lang/mi-NZ.svg +51 -0
  190. package/template_admin/public/static/images/lang/mk-MK.svg +46 -0
  191. package/template_admin/public/static/images/lang/mn-MN.svg +50 -0
  192. package/template_admin/public/static/images/lang/mr-IN.svg +59 -0
  193. package/template_admin/public/static/images/lang/ms-BN.svg +47 -0
  194. package/template_admin/public/static/images/lang/ms-MY.svg +53 -0
  195. package/template_admin/public/static/images/lang/mt-MT.svg +50 -0
  196. package/template_admin/public/static/images/lang/nb-NO.svg +37 -0
  197. package/template_admin/public/static/images/lang/nl-BE.svg +37 -0
  198. package/template_admin/public/static/images/lang/nl-NL.svg +37 -0
  199. package/template_admin/public/static/images/lang/nn-NO.svg +37 -0
  200. package/template_admin/public/static/images/lang/ns-ZA.svg +41 -0
  201. package/template_admin/public/static/images/lang/pa-IN.svg +59 -0
  202. package/template_admin/public/static/images/lang/pl-PL.svg +36 -0
  203. package/template_admin/public/static/images/lang/ps-AR.svg +68 -0
  204. package/template_admin/public/static/images/lang/pt-BR.svg +51 -0
  205. package/template_admin/public/static/images/lang/pt-PT.svg +55 -0
  206. package/template_admin/public/static/images/lang/qu-BO.svg +101 -0
  207. package/template_admin/public/static/images/lang/qu-EC.svg +87 -0
  208. package/template_admin/public/static/images/lang/qu-PE.svg +37 -0
  209. package/template_admin/public/static/images/lang/ro-RO.svg +37 -0
  210. package/template_admin/public/static/images/lang/ru-RU.svg +37 -0
  211. package/template_admin/public/static/images/lang/sa-IN.svg +59 -0
  212. package/template_admin/public/static/images/lang/se-FI.svg +36 -0
  213. package/template_admin/public/static/images/lang/se-NO.svg +37 -0
  214. package/template_admin/public/static/images/lang/se-SE.svg +36 -0
  215. package/template_admin/public/static/images/lang/sk-SK.svg +41 -0
  216. package/template_admin/public/static/images/lang/sl-SI.svg +51 -0
  217. package/template_admin/public/static/images/lang/sq-AL.svg +36 -0
  218. package/template_admin/public/static/images/lang/sr-BA.svg +48 -0
  219. package/template_admin/public/static/images/lang/sr-SP.svg +79 -0
  220. package/template_admin/public/static/images/lang/sv-FI.svg +36 -0
  221. package/template_admin/public/static/images/lang/sv-SE.svg +36 -0
  222. package/template_admin/public/static/images/lang/sw-KE.svg +55 -0
  223. package/template_admin/public/static/images/lang/syr-SY.svg +41 -0
  224. package/template_admin/public/static/images/lang/ta-IN.svg +59 -0
  225. package/template_admin/public/static/images/lang/te-IN.svg +59 -0
  226. package/template_admin/public/static/images/lang/th-TH.svg +40 -0
  227. package/template_admin/public/static/images/lang/tl-PH.svg +51 -0
  228. package/template_admin/public/static/images/lang/tn-ZA.svg +41 -0
  229. package/template_admin/public/static/images/lang/tr-TR.svg +39 -0
  230. package/template_admin/public/static/images/lang/tt-RU.svg +37 -0
  231. package/template_admin/public/static/images/lang/uk-UA.svg +36 -0
  232. package/template_admin/public/static/images/lang/ur-PK.svg +40 -0
  233. package/template_admin/public/static/images/lang/vi-VN.svg +36 -0
  234. package/template_admin/public/static/images/lang/xh-ZA.svg +41 -0
  235. package/template_admin/public/static/images/lang/zh-CN.svg +42 -0
  236. package/template_admin/public/static/images/lang/zh-HK.svg +42 -0
  237. package/template_admin/public/static/images/lang/zh-SG.svg +44 -0
  238. package/template_admin/public/static/images/lang/zh-TW.svg +43 -0
  239. package/template_admin/public/static/images/lang/zu-ZA.svg +41 -0
  240. package/template_admin/public/static/images/logo-company-default.svg +1 -0
  241. package/template_admin/public/static/images/logo.png +0 -0
  242. package/template_admin/public/static/images/m_logo.png +0 -0
  243. package/template_admin/public/static/images/maintenance-icon.png +0 -0
  244. package/template_admin/public/static/images/member_logo.png +0 -0
  245. package/template_admin/public/static/images/pdf_icon.svg +1 -0
  246. package/template_admin/public/static/images/png_icon.svg +1 -0
  247. package/template_admin/public/static/images/security.png +0 -0
  248. package/template_admin/public/static/images/translation.svg +82 -0
  249. package/template_admin/public/static/images/txt_icon.svg +1 -0
  250. package/template_admin/public/static/images/widget-bubble.png +0 -0
  251. package/template_admin/public/static/images/widget-column.png +0 -0
  252. package/template_admin/public/static/images/widget-combo.png +0 -0
  253. package/template_admin/public/static/images/widget-doughnut.png +0 -0
  254. package/template_admin/public/static/images/widget-line.png +0 -0
  255. package/template_admin/public/static/images/widget-pie.png +0 -0
  256. package/template_admin/public/static/images/widget-scatter.png +0 -0
  257. package/template_admin/public/static/images/widget-summary_box.png +0 -0
  258. package/template_admin/public/static/images/widget-treemap.png +0 -0
  259. package/template_admin/public/static/images/xls_icon.svg +1 -0
  260. package/template_admin/public/static/images/xml_icon.svg +1 -0
  261. package/template_admin/public/static/images/zip_icon.svg +1 -0
  262. package/template_admin/public/static/styles/activity_log.less +157 -0
  263. package/template_admin/public/static/styles/calendar.less +132 -0
  264. package/template_admin/public/static/styles/collections.less +123 -0
  265. package/template_admin/public/static/styles/compute_field.less +250 -0
  266. package/template_admin/public/static/styles/custom-antd.less +78 -0
  267. package/template_admin/public/static/styles/custom.less +0 -0
  268. package/template_admin/public/static/styles/custom_icon.less +556 -0
  269. package/template_admin/public/static/styles/date_search.less +53 -0
  270. package/template_admin/public/static/styles/detail.less +2670 -0
  271. package/template_admin/public/static/styles/entities.less +891 -0
  272. package/template_admin/public/static/styles/filter.less +24 -0
  273. package/template_admin/public/static/styles/filter_new.less +154 -0
  274. package/template_admin/public/static/styles/hook.less +136 -0
  275. package/template_admin/public/static/styles/import_export.less +62 -0
  276. package/template_admin/public/static/styles/input.less +386 -0
  277. package/template_admin/public/static/styles/layout.less +1211 -0
  278. package/template_admin/public/static/styles/login.less +222 -0
  279. package/template_admin/public/static/styles/mainheader.less +32 -0
  280. package/template_admin/public/static/styles/permission_denied.less +13 -0
  281. package/template_admin/public/static/styles/print_template.less +36 -0
  282. package/template_admin/public/static/styles/rabbitmq.less +3 -0
  283. package/template_admin/public/static/styles/restful.less +22 -0
  284. package/template_admin/public/static/styles/setting.less +409 -0
  285. package/template_admin/public/static/styles/style.less +1736 -0
  286. package/template_admin/public/static/styles/system.less +11 -0
  287. package/template_admin/public/static/styles/versioning_control.less +24 -0
  288. package/template_admin/public/static/styles/wysiwyg.less +8 -0
  289. package/template_admin/theme/main.less +1 -0
  290. package/template_admin/theme/vars.less +34 -0
  291. package/template_admin/version.json +1 -0
@@ -0,0 +1,1622 @@
1
+ {
2
+ "detail": {
3
+ "title": {},
4
+ "blocks": [
5
+ {
6
+ "key": "b2011b040e3d13cb22a0",
7
+ "type": "column",
8
+ "layout": {
9
+ "num_of_col": 2,
10
+ "fields": [
11
+ [
12
+ {
13
+ "field": "switch",
14
+ "type": "standard_component",
15
+ "unique_key": "standard_component_switch_fdbf631109fd402c3f7f",
16
+ "key": "multiple_session",
17
+ "label": "Multiple Session",
18
+ "default_value": true,
19
+ "link_type": "key",
20
+ "yes_label": "Yes",
21
+ "no_label": "No",
22
+ "trigger": [],
23
+ "name": "multiple_session"
24
+ }
25
+ ],
26
+ []
27
+ ]
28
+ }
29
+ },
30
+ {
31
+ "key": "8cda8a009154eea31a02",
32
+ "type": "column",
33
+ "layout": {
34
+ "num_of_col": 2,
35
+ "fields": [
36
+ [
37
+ {
38
+ "field": "label",
39
+ "type": "standard_component",
40
+ "unique_key": "standard_component_label_4cb6a115b3902a168a6c",
41
+ "label": "Authentication",
42
+ "entity": "test_setting",
43
+ "format": "<p><br></p><h3>Authentication</h3>",
44
+ "hide_label": true
45
+ }
46
+ ],
47
+ []
48
+ ]
49
+ }
50
+ },
51
+ {
52
+ "key": "427b62cfffb85619a198",
53
+ "type": "collapse",
54
+ "allow_add": false,
55
+ "data_source": "",
56
+ "body": [
57
+ {
58
+ "title": "2FA",
59
+ "key": "5a1d8b64d1cb13922c76",
60
+ "blocks": [
61
+ {
62
+ "key": "61afc154382c153f0cba",
63
+ "type": "column",
64
+ "layout": {
65
+ "num_of_col": 2,
66
+ "fields": [
67
+ [
68
+ {
69
+ "field": "switch",
70
+ "type": "standard_component",
71
+ "unique_key": "standard_component_switch_d53783b828587befa50a",
72
+ "key": "enable",
73
+ "label": "Enable",
74
+ "link_type": "key",
75
+ "yes_label": "Yes",
76
+ "no_label": "No",
77
+ "trigger": [
78
+ {
79
+ "field": "standard_component_select_6db3a7c7d9769e34645f",
80
+ "method": "required",
81
+ "value": "${ authenticator.enable }"
82
+ },
83
+ {
84
+ "field": "standard_component_input_750b3f453ebceb8531bc",
85
+ "method": "required",
86
+ "value": "${ authenticator.enable }"
87
+ },
88
+ {
89
+ "field": "standard_component_select_Aud6cVFHhZV19ov42ls8",
90
+ "method": "required",
91
+ "value": "${ authenticator.enable }"
92
+ },
93
+ {
94
+ "field": "standard_component_select_0Ri8NMhfYtbbs3uvo8SN",
95
+ "method": "required",
96
+ "value": "${ authenticator.enable }"
97
+ },
98
+ {
99
+ "field": "standard_component_select_0zBv9Cf4m2wJI1FyxlQD",
100
+ "method": "show",
101
+ "value": "'${ authenticator.type }' === 'otp' ? true : false"
102
+ },
103
+ {
104
+ "field": "standard_component_select_Aud6cVFHhZV19ov42ls8",
105
+ "method": "show",
106
+ "value": "'${ authenticator.type }' === 'otp' ? true : false"
107
+ },
108
+ {
109
+ "field": "standard_component_select_0Ri8NMhfYtbbs3uvo8SN",
110
+ "method": "show",
111
+ "value": "'${ authenticator.type }' === 'otp' ? true : false"
112
+ },
113
+ {
114
+ "field": "standard_component_input_750b3f453ebceb8531bc",
115
+ "method": "show",
116
+ "value": " '${ authenticator.type }' !== 'otp' ? true : false "
117
+ }
118
+ ]
119
+ }
120
+ ],
121
+ []
122
+ ]
123
+ }
124
+ },
125
+ {
126
+ "key": "1c362201cf4c5907343b",
127
+ "type": "column",
128
+ "layout": {
129
+ "num_of_col": 2,
130
+ "fields": [
131
+ [
132
+ {
133
+ "field": "select",
134
+ "type": "standard_component",
135
+ "unique_key": "standard_component_select_6db3a7c7d9769e34645f",
136
+ "key": "type",
137
+ "label": "Authenticator Type",
138
+ "required": false,
139
+ "default_value": "application",
140
+ "link_type": "key",
141
+ "entity": "custom",
142
+ "options": [
143
+ "application",
144
+ "otp"
145
+ ],
146
+ "mode": "single",
147
+ "trigger": [
148
+ {
149
+ "field": "standard_component_select_0Ri8NMhfYtbbs3uvo8SN",
150
+ "method": "show",
151
+ "value": "'${ authenticator.type }' === 'otp' ? true : false"
152
+ },
153
+ {
154
+ "field": "standard_component_select_Aud6cVFHhZV19ov42ls8",
155
+ "method": "show",
156
+ "value": "'${ authenticator.type }' === 'otp' ? true : false"
157
+ },
158
+ {
159
+ "field": "standard_component_select_0zBv9Cf4m2wJI1FyxlQD",
160
+ "method": "show",
161
+ "value": "'${ authenticator.type }' === 'otp' ? true : false"
162
+ },
163
+ {
164
+ "field": "standard_component_input_750b3f453ebceb8531bc",
165
+ "method": "show",
166
+ "value": " '${ authenticator.type }' !== 'otp' ? true : false "
167
+ }
168
+ ]
169
+ },
170
+ {
171
+ "field": "select",
172
+ "type": "standard_component",
173
+ "unique_key": "standard_component_select_Aud6cVFHhZV19ov42ls8",
174
+ "key": "sms_template",
175
+ "label": "SMS Template",
176
+ "required": false,
177
+ "link_type": "key",
178
+ "entity": "other_entity",
179
+ "entity_system": true,
180
+ "key_value": "code",
181
+ "display_template": "${ name }",
182
+ "list_template": "",
183
+ "options": [],
184
+ "relate_ref": "template",
185
+ "mode": "single",
186
+ "filters": [
187
+ {
188
+ "field": "type",
189
+ "condition": "is",
190
+ "value": "sms",
191
+ "field_data": {
192
+ "type": "options"
193
+ }
194
+ }
195
+ ],
196
+ "trigger": []
197
+ }
198
+ ],
199
+ [
200
+ {
201
+ "field": "input",
202
+ "type": "standard_component",
203
+ "unique_key": "standard_component_input_750b3f453ebceb8531bc",
204
+ "key": "app_name",
205
+ "label": "App Name",
206
+ "required": false,
207
+ "link_type": "key",
208
+ "entity": "not_use",
209
+ "input_type": "single_line",
210
+ "trigger": []
211
+ },
212
+ {
213
+ "field": "select",
214
+ "type": "standard_component",
215
+ "unique_key": "standard_component_select_0zBv9Cf4m2wJI1FyxlQD",
216
+ "key": "default_gateway",
217
+ "label": "Default Gateway",
218
+ "required": false,
219
+ "default_value": "email",
220
+ "link_type": "key",
221
+ "entity": "custom",
222
+ "options": [
223
+ "email",
224
+ "sms"
225
+ ],
226
+ "mode": "single",
227
+ "trigger": []
228
+ },
229
+ {
230
+ "field": "select",
231
+ "type": "standard_component",
232
+ "unique_key": "standard_component_select_0Ri8NMhfYtbbs3uvo8SN",
233
+ "key": "email_template",
234
+ "label": "Email Template",
235
+ "required": false,
236
+ "link_type": "key",
237
+ "entity": "other_entity",
238
+ "entity_system": true,
239
+ "key_value": "code",
240
+ "display_template": "${ name }",
241
+ "list_template": "",
242
+ "options": [],
243
+ "relate_ref": "template",
244
+ "mode": "single",
245
+ "filters": [
246
+ {
247
+ "field": "type",
248
+ "condition": "is",
249
+ "value": "email",
250
+ "field_data": {
251
+ "type": "options"
252
+ }
253
+ }
254
+ ],
255
+ "trigger": [],
256
+ "name": "email_template"
257
+ }
258
+ ]
259
+ ]
260
+ }
261
+ }
262
+ ],
263
+ "source_key": "authenticator",
264
+ "actions": []
265
+ },
266
+ {
267
+ "source_key": "recaptcha",
268
+ "title": "Recaptcha",
269
+ "actions": [],
270
+ "blocks": [
271
+ {
272
+ "key": "06b2394dd2c1b9d30580",
273
+ "type": "column",
274
+ "layout": {
275
+ "num_of_col": 2,
276
+ "fields": [
277
+ [
278
+ {
279
+ "field": "switch",
280
+ "type": "standard_component",
281
+ "unique_key": "standard_component_switch_bed0f50b02e5f748a8fe",
282
+ "key": "enable",
283
+ "label": "Enable",
284
+ "link_type": "key",
285
+ "yes_label": "Yes",
286
+ "no_label": "No",
287
+ "trigger": [
288
+ {
289
+ "field": "standard_component_select_5f2ec4543b6b5e06b3c2",
290
+ "method": "required",
291
+ "value": "${ recaptcha.enable }"
292
+ },
293
+ {
294
+ "field": "standard_component_input_642e7bdca42a65819c84",
295
+ "method": "required",
296
+ "value": "${ recaptcha.enable }"
297
+ },
298
+ {
299
+ "field": "standard_component_input_18ffb1cbd14656cbebd2",
300
+ "method": "required",
301
+ "value": "${ recaptcha.enable }"
302
+ }
303
+ ]
304
+ }
305
+ ],
306
+ []
307
+ ]
308
+ }
309
+ },
310
+ {
311
+ "key": "61698d8fd4ce01e917b7",
312
+ "type": "column",
313
+ "layout": {
314
+ "num_of_col": 2,
315
+ "fields": [
316
+ [
317
+ {
318
+ "field": "select",
319
+ "type": "standard_component",
320
+ "unique_key": "standard_component_select_5f2ec4543b6b5e06b3c2",
321
+ "key": "version",
322
+ "label": "Version",
323
+ "required": false,
324
+ "default_value": "2",
325
+ "link_type": "key",
326
+ "entity": "custom",
327
+ "options": [
328
+ "2",
329
+ "3"
330
+ ],
331
+ "mode": "single",
332
+ "trigger": []
333
+ },
334
+ {
335
+ "field": "input",
336
+ "type": "standard_component",
337
+ "unique_key": "standard_component_input_642e7bdca42a65819c84",
338
+ "key": "site_key",
339
+ "label": "Site Key",
340
+ "required": false,
341
+ "link_type": "key",
342
+ "entity": "not_use",
343
+ "input_type": "single_line",
344
+ "trigger": []
345
+ }
346
+ ],
347
+ [
348
+ {
349
+ "field": "switch",
350
+ "type": "standard_component",
351
+ "unique_key": "standard_component_switch_888a275e9c4f981c6e61",
352
+ "key": "capture_ip_address",
353
+ "label": "Capture IP Address",
354
+ "link_type": "key",
355
+ "yes_label": "Yes",
356
+ "no_label": "No",
357
+ "trigger": []
358
+ },
359
+ {
360
+ "field": "input",
361
+ "type": "standard_component",
362
+ "unique_key": "standard_component_input_18ffb1cbd14656cbebd2",
363
+ "key": "secret_key",
364
+ "label": "Secret Key",
365
+ "required": false,
366
+ "link_type": "key",
367
+ "input_type": "password",
368
+ "trigger": []
369
+ }
370
+ ]
371
+ ]
372
+ }
373
+ }
374
+ ],
375
+ "key": "6ed3072c667474055ab2"
376
+ },
377
+ {
378
+ "source_key": "otp_setting",
379
+ "title": "OTP Setting",
380
+ "actions": [],
381
+ "blocks": [
382
+ {
383
+ "key": "O3qW033hHl2AS6YeMrQI",
384
+ "type": "column",
385
+ "layout": {
386
+ "num_of_col": 2,
387
+ "fields": [
388
+ [
389
+ {
390
+ "field": "input_number",
391
+ "type": "standard_component",
392
+ "unique_key": "standard_component_input_number_cbfaa33411f2d11b31b4",
393
+ "key": "sms_ttl",
394
+ "label": "OTP timeout",
395
+ "required": true,
396
+ "default_value": 60,
397
+ "link_type": "key",
398
+ "min_value": 1,
399
+ "suffix": "secound",
400
+ "trigger": [],
401
+ "decimal_place": 0,
402
+ "name": "sms_ttl"
403
+ },
404
+ {
405
+ "field": "switch",
406
+ "type": "standard_component",
407
+ "unique_key": "standard_component_switch_11cc22a01dda82776e04",
408
+ "key": "sms_enable_universal",
409
+ "label": "Enable Universal",
410
+ "default_value": false,
411
+ "link_type": "key",
412
+ "yes_label": "Yes",
413
+ "no_label": "No",
414
+ "trigger": [],
415
+ "name": "sms_enable_universal"
416
+ }
417
+ ],
418
+ [
419
+ {
420
+ "field": "input",
421
+ "type": "standard_component",
422
+ "unique_key": "standard_component_input_153e1ce73a9edad7ae36",
423
+ "key": "sms_universal_otp",
424
+ "label": "Universal Otp",
425
+ "required": true,
426
+ "link_type": "key",
427
+ "entity": "not_use",
428
+ "input_type": "single_line",
429
+ "reg_exp_pattern": "^[0-9]{6}$",
430
+ "trigger": [],
431
+ "name": "sms_universal_otp"
432
+ },
433
+ {
434
+ "field": "input_number",
435
+ "type": "standard_component",
436
+ "unique_key": "standard_component_input_number_cbfaa33411f2d11b31b2",
437
+ "key": "rate_limit",
438
+ "label": "Rate Limit",
439
+ "required": true,
440
+ "link_type": "key",
441
+ "min_value": 0,
442
+ "suffix": "seconds",
443
+ "trigger": [],
444
+ "decimal_place": 0,
445
+ "name": "rate_limit"
446
+ }
447
+ ]
448
+ ]
449
+ }
450
+ },
451
+ {
452
+ "key": "jT05hnHLWZ9E977ErTFd",
453
+ "type": "column",
454
+ "layout": {
455
+ "num_of_col": 2,
456
+ "fields": [
457
+ [],
458
+ []
459
+ ]
460
+ }
461
+ }
462
+ ],
463
+ "key": "o76ujiUg5OKHupm7twhR"
464
+ },
465
+ {
466
+ "source_key": "activate_account",
467
+ "title": "Activate Account",
468
+ "actions": [],
469
+ "blocks": [
470
+ {
471
+ "key": "v4JdH4roNx38QyKQchom",
472
+ "type": "column",
473
+ "layout": {
474
+ "num_of_col": 2,
475
+ "fields": [
476
+ [
477
+ {
478
+ "field": "switch",
479
+ "type": "standard_component",
480
+ "unique_key": "standard_component_switch_11cc22a01dda82776f74",
481
+ "key": "send_email",
482
+ "label": "Send Activate Email",
483
+ "default_value": false,
484
+ "link_type": "key",
485
+ "yes_label": "Yes",
486
+ "no_label": "No",
487
+ "trigger": [],
488
+ "name": "send_email"
489
+ },
490
+ {
491
+ "field": "select",
492
+ "type": "standard_component",
493
+ "unique_key": "standard_component_select_1wAJ4X68TTaHarH28rzD",
494
+ "key": "default_gateway",
495
+ "label": "Default Gateway",
496
+ "required": true,
497
+ "default_value": "email",
498
+ "link_type": "key",
499
+ "entity": "custom",
500
+ "options": [
501
+ "email",
502
+ "sms"
503
+ ],
504
+ "mode": "single",
505
+ "trigger": []
506
+ }
507
+ ],
508
+ [
509
+ {
510
+ "field": "select",
511
+ "type": "standard_component",
512
+ "unique_key": "standard_component_select_2515f923008c80fc48d1",
513
+ "key": "activate_email_template",
514
+ "label": "Activate Email Template",
515
+ "required": true,
516
+ "link_type": "key",
517
+ "entity": "other_entity",
518
+ "entity_system": true,
519
+ "key_value": "code",
520
+ "display_template": "${ name }",
521
+ "list_template": "",
522
+ "options": [],
523
+ "relate_ref": "template",
524
+ "mode": "single",
525
+ "filters": [
526
+ {
527
+ "field": "type",
528
+ "condition": "is",
529
+ "value": "email",
530
+ "field_data": {
531
+ "type": "options"
532
+ }
533
+ }
534
+ ],
535
+ "trigger": [],
536
+ "name": "activate_email_template"
537
+ }
538
+ ]
539
+ ]
540
+ }
541
+ },
542
+ {
543
+ "key": "CGiD3cc0bJB7Zryx59Q2",
544
+ "type": "column",
545
+ "layout": {
546
+ "num_of_col": 2,
547
+ "fields": [
548
+ [
549
+ {
550
+ "field": "select",
551
+ "type": "standard_component",
552
+ "unique_key": "standard_component_select_14bd5b73c3880d8bb5fb",
553
+ "key": "sms_template",
554
+ "label": "SMS Template",
555
+ "required": true,
556
+ "link_type": "key",
557
+ "entity": "other_entity",
558
+ "entity_system": true,
559
+ "key_value": "code",
560
+ "display_template": "${ name }",
561
+ "list_template": "",
562
+ "options": [],
563
+ "relate_ref": "template",
564
+ "mode": "single",
565
+ "filters": [
566
+ {
567
+ "field": "type",
568
+ "condition": "is",
569
+ "value": "sms",
570
+ "field_data": {
571
+ "type": "options"
572
+ }
573
+ }
574
+ ],
575
+ "trigger": []
576
+ }
577
+ ],
578
+ [
579
+ {
580
+ "field": "select",
581
+ "type": "standard_component",
582
+ "unique_key": "standard_component_select_2515f923008c80fc46e2",
583
+ "key": "email_template",
584
+ "label": "Email Template",
585
+ "required": true,
586
+ "link_type": "key",
587
+ "entity": "other_entity",
588
+ "entity_system": true,
589
+ "key_value": "code",
590
+ "display_template": "${ name }",
591
+ "list_template": "",
592
+ "options": [],
593
+ "relate_ref": "template",
594
+ "mode": "single",
595
+ "filters": [
596
+ {
597
+ "field": "type",
598
+ "condition": "is",
599
+ "value": "email",
600
+ "field_data": {
601
+ "type": "options"
602
+ }
603
+ }
604
+ ],
605
+ "trigger": [],
606
+ "name": "email_template"
607
+ }
608
+ ]
609
+ ]
610
+ }
611
+ }
612
+ ],
613
+ "key": "Mt9VNd4V8hVq98vQckQ0"
614
+ }
615
+ ]
616
+ },
617
+ {
618
+ "key": "e909d46de6171de6546f",
619
+ "type": "column",
620
+ "layout": {
621
+ "num_of_col": 2,
622
+ "fields": [
623
+ [
624
+ {
625
+ "field": "label",
626
+ "type": "standard_component",
627
+ "unique_key": "standard_component_label_4eee7ffcb45dae7b41f7",
628
+ "entity": "test_setting",
629
+ "format": "<p><br></p><h3>Methods</h3>"
630
+ }
631
+ ],
632
+ []
633
+ ]
634
+ }
635
+ },
636
+ {
637
+ "key": "e86241d834fac3bfda29",
638
+ "type": "collapse",
639
+ "allow_add": false,
640
+ "data_source": "",
641
+ "body": [
642
+ {
643
+ "title": "Local",
644
+ "key": "6e7fe61b76c672cf6d74",
645
+ "blocks": [
646
+ {
647
+ "key": "43790b5ecfc448b6be44491",
648
+ "type": "column",
649
+ "layout": {
650
+ "num_of_col": 2,
651
+ "fields": [
652
+ [
653
+ {
654
+ "field": "switch",
655
+ "type": "standard_component",
656
+ "unique_key": "standard_component_switch_a26c563fabf3fe68890a",
657
+ "key": "enable",
658
+ "label": "Enable",
659
+ "link_type": "key",
660
+ "yes_label": "Yes",
661
+ "no_label": "No",
662
+ "trigger": [
663
+ {
664
+ "field": "standard_component_select_d9eaf72b0160a758d150",
665
+ "method": "required",
666
+ "value": "${ local.enable }"
667
+ },
668
+ {
669
+ "field": "standard_component_select_002f2e9997c14e1fc589",
670
+ "method": "required",
671
+ "value": "${ local.enable }"
672
+ },
673
+ {
674
+ "field": "standard_component_entity_layout_f13e44643b4016da8215",
675
+ "method": "required",
676
+ "value": "${ local.enable }"
677
+ },
678
+ {
679
+ "field": "standard_component_input_a1f96ce6d5af5e332c58",
680
+ "method": "required",
681
+ "value": "${ local.enable }"
682
+ },
683
+ {
684
+ "field": "standard_component_input_1ebb195a6ceeb91b4a12",
685
+ "method": "required",
686
+ "value": "${ local.enable }"
687
+ },
688
+ {
689
+ "field": "standard_component_input_number_9fe0ee075d1d832fb6a5",
690
+ "method": "required",
691
+ "value": "${ local.enable }"
692
+ },
693
+ {
694
+ "field": "standard_component_input_number_734abbecc2c8b78b8985",
695
+ "method": "required",
696
+ "value": "${ local.enable }"
697
+ },
698
+ {
699
+ "field": "standard_component_input_number_896d40ba7c1a77c358a8",
700
+ "method": "required",
701
+ "value": "${ local.enable }"
702
+ },
703
+ {
704
+ "field": "standard_component_input_number_82ffaf7e3421ee18a52d",
705
+ "method": "required",
706
+ "value": "${ local.enable }"
707
+ },
708
+ {
709
+ "field": "standard_component_input_number_1df1a6bc6dea36f3de2a",
710
+ "method": "required",
711
+ "value": "${ local.enable }"
712
+ },
713
+ {
714
+ "field": "standard_component_input_number_0350cc557982fae53b4f",
715
+ "method": "required",
716
+ "value": "${ local.enable }"
717
+ },
718
+ {
719
+ "field": "standard_component_input_number_d341ad497c7810ea6526",
720
+ "method": "required",
721
+ "value": "${ local.enable }"
722
+ },
723
+ {
724
+ "field": "standard_component_input_number_5c5669785cfa8acefcc1",
725
+ "method": "required",
726
+ "value": "${ local.enable }"
727
+ }
728
+ ]
729
+ }
730
+ ],
731
+ [
732
+ {
733
+ "field": "switch",
734
+ "type": "standard_component",
735
+ "unique_key": "standard_component_switch_e0759b4f5ffa18d59e79",
736
+ "key": "allow_registration",
737
+ "label": "Allow Registration Process",
738
+ "link_type": "key",
739
+ "yes_label": "Yes",
740
+ "no_label": "No",
741
+ "read_only": false,
742
+ "trigger": []
743
+ }
744
+ ]
745
+ ]
746
+ }
747
+ },
748
+ {
749
+ "key": "2895a0fb6965426aa638a",
750
+ "type": "column",
751
+ "layout": {
752
+ "num_of_col": 2,
753
+ "fields": [
754
+ [
755
+ {
756
+ "field": "switch",
757
+ "type": "standard_component",
758
+ "unique_key": "standard_component_switch_a26c563fkiswfe68890a",
759
+ "key": "remember",
760
+ "label": "Remember",
761
+ "link_type": "key",
762
+ "yes_label": "Yes",
763
+ "no_label": "No",
764
+ "trigger": []
765
+ }
766
+ ],
767
+ []
768
+ ]
769
+ }
770
+ },
771
+ {
772
+ "key": "4c8c83d501a2cd47e57c",
773
+ "type": "column",
774
+ "layout": {
775
+ "num_of_col": 2,
776
+ "fields": [
777
+ [
778
+ {
779
+ "field": "entity_layout",
780
+ "type": "standard_component",
781
+ "unique_key": "standard_component_entity_layout_f13e44643b4016da8215",
782
+ "key": "change_expired_password_form",
783
+ "label": "Change Expired Password Form",
784
+ "required": false,
785
+ "link_type": "key",
786
+ "entity": "other_entity",
787
+ "relate_ref": "user",
788
+ "trigger": []
789
+ },
790
+ {
791
+ "field": "input",
792
+ "type": "standard_component",
793
+ "unique_key": "standard_component_input_1ebb195a6ceeb91b4a12",
794
+ "key": "expires_in",
795
+ "label": "Expire in",
796
+ "description": "minutes(m), hours(h), days(d), weeks(w)",
797
+ "required": false,
798
+ "link_type": "key",
799
+ "entity": "not_use",
800
+ "input_type": "single_line",
801
+ "trigger": []
802
+ }
803
+ ],
804
+ [
805
+ {
806
+ "field": "input",
807
+ "type": "standard_component",
808
+ "unique_key": "standard_component_input_a1f96ce6d5af5e332c58",
809
+ "key": "secret_key",
810
+ "label": "Secret Key",
811
+ "required": false,
812
+ "link_type": "key",
813
+ "input_type": "password",
814
+ "trigger": []
815
+ }
816
+ ]
817
+ ]
818
+ }
819
+ },
820
+ {
821
+ "key": "c872daf0f067325ae62d",
822
+ "type": "column",
823
+ "layout": {
824
+ "num_of_col": 2,
825
+ "fields": [
826
+ [
827
+ {
828
+ "field": "switch",
829
+ "type": "standard_component",
830
+ "unique_key": "standard_component_switch_e5f6b85c5d9751bba31e",
831
+ "key": "password_policy_complexity_require",
832
+ "label": "Password must meet complexity requirements",
833
+ "link_type": "key",
834
+ "yes_label": "Yes",
835
+ "no_label": "No",
836
+ "trigger": []
837
+ }
838
+ ],
839
+ []
840
+ ]
841
+ }
842
+ },
843
+ {
844
+ "key": "816c277a1736b04abf9d",
845
+ "type": "column",
846
+ "layout": {
847
+ "num_of_col": 2,
848
+ "fields": [
849
+ [
850
+ {
851
+ "field": "input_number",
852
+ "type": "standard_component",
853
+ "unique_key": "standard_component_input_number_9fe0ee075d1d832fb6a5",
854
+ "key": "password_policy_min_password_age",
855
+ "label": "Minimum password age",
856
+ "required": false,
857
+ "link_type": "key",
858
+ "min_value": 1,
859
+ "suffix": "days",
860
+ "trigger": [],
861
+ "decimal_place": 0
862
+ },
863
+ {
864
+ "field": "input_number",
865
+ "type": "standard_component",
866
+ "unique_key": "standard_component_input_number_896d40ba7c1a77c358a8",
867
+ "key": "password_policy_min_password_length",
868
+ "label": "Minimum password length",
869
+ "required": false,
870
+ "default_value": 6,
871
+ "link_type": "key",
872
+ "min_value": 6,
873
+ "trigger": [],
874
+ "decimal_place": 0
875
+ }
876
+ ],
877
+ [
878
+ {
879
+ "field": "input_number",
880
+ "type": "standard_component",
881
+ "unique_key": "standard_component_input_number_734abbecc2c8b78b8985",
882
+ "key": "password_policy_max_password_age",
883
+ "label": "Maximum password age",
884
+ "required": false,
885
+ "link_type": "key",
886
+ "min_value": 1,
887
+ "suffix": "days",
888
+ "trigger": [],
889
+ "decimal_place": 0
890
+ },
891
+ {
892
+ "field": "input_number",
893
+ "type": "standard_component",
894
+ "unique_key": "standard_component_input_number_82ffaf7e3421ee18a52d",
895
+ "key": "password_policy_enforce_password_history",
896
+ "label": "Enforce password history",
897
+ "required": false,
898
+ "link_type": "key",
899
+ "min_value": 0,
900
+ "suffix": "passwords remembered",
901
+ "trigger": [],
902
+ "decimal_place": 0
903
+ }
904
+ ]
905
+ ]
906
+ }
907
+ },
908
+ {
909
+ "key": "2f8d466f3ff82cfd9d6a",
910
+ "type": "column",
911
+ "layout": {
912
+ "num_of_col": 2,
913
+ "fields": [
914
+ [
915
+ {
916
+ "field": "input_number",
917
+ "type": "standard_component",
918
+ "unique_key": "standard_component_input_number_1df1a6bc6dea36f3de2a",
919
+ "key": "lockout_policy_threshold",
920
+ "label": "Account lockout threshold",
921
+ "required": false,
922
+ "link_type": "key",
923
+ "min_value": 0,
924
+ "suffix": "invalid logon attempts",
925
+ "trigger": [],
926
+ "decimal_place": 0
927
+ },
928
+ {
929
+ "field": "input_number",
930
+ "type": "standard_component",
931
+ "unique_key": "standard_component_input_number_d341ad497c7810ea6526",
932
+ "key": "lockout_policy_reset_counter",
933
+ "label": "Reset account lockout counter after",
934
+ "required": false,
935
+ "link_type": "key",
936
+ "min_value": 0,
937
+ "suffix": "minutes",
938
+ "trigger": [],
939
+ "decimal_place": 0
940
+ }
941
+ ],
942
+ [
943
+ {
944
+ "field": "input_number",
945
+ "type": "standard_component",
946
+ "unique_key": "standard_component_input_number_0350cc557982fae53b4f",
947
+ "key": "lockout_policy_duration",
948
+ "label": "Account lockout duration",
949
+ "required": false,
950
+ "link_type": "key",
951
+ "min_value": 0,
952
+ "suffix": "minutes",
953
+ "trigger": [],
954
+ "decimal_place": 0
955
+ },
956
+ {
957
+ "field": "input_number",
958
+ "type": "standard_component",
959
+ "unique_key": "standard_component_input_number_5c5669785cfa8acefcc1",
960
+ "key": "lockout_policy_unused_suspended",
961
+ "label": "Suspended accounts that have not been unused",
962
+ "required": false,
963
+ "link_type": "key",
964
+ "min_value": 0,
965
+ "suffix": "days",
966
+ "trigger": [],
967
+ "decimal_place": 0
968
+ }
969
+ ]
970
+ ]
971
+ }
972
+ }
973
+ ],
974
+ "source_key": "local",
975
+ "actions": []
976
+ },
977
+ {
978
+ "title": "Google",
979
+ "source_key": "google",
980
+ "actions": [],
981
+ "blocks": [
982
+ {
983
+ "key": "92404a6b03747f510eb2",
984
+ "type": "column",
985
+ "layout": {
986
+ "num_of_col": 2,
987
+ "fields": [
988
+ [
989
+ {
990
+ "field": "switch",
991
+ "type": "standard_component",
992
+ "unique_key": "standard_component_switch_0d21c5915144e6a9cd7b",
993
+ "key": "enable",
994
+ "label": "Enable",
995
+ "link_type": "key",
996
+ "yes_label": "Yes",
997
+ "no_label": "No",
998
+ "trigger": [
999
+ {
1000
+ "field": "standard_component_input_084ec33985a4dcca8c90",
1001
+ "method": "required",
1002
+ "value": "${ google.enable }"
1003
+ },
1004
+ {
1005
+ "field": "standard_component_input_b795173d28cf4845bd26",
1006
+ "method": "required",
1007
+ "value": "${ google.enable }"
1008
+ },
1009
+ {
1010
+ "field": "standard_component_input_fbe2f45171f67eb7c5cb",
1011
+ "method": "required",
1012
+ "value": "${ google.enable }"
1013
+ },
1014
+ {
1015
+ "field": "standard_component_input_1f3a591f40fc4749e0af",
1016
+ "method": "required",
1017
+ "value": "${ google.enable }"
1018
+ },
1019
+ {
1020
+ "field": "standard_component_input_574165b79fcdd9d24869",
1021
+ "method": "required",
1022
+ "value": "${ google.enable }"
1023
+ }
1024
+ ]
1025
+ }
1026
+ ],
1027
+ []
1028
+ ]
1029
+ }
1030
+ },
1031
+ {
1032
+ "key": "2f611d6b425f6005bcff",
1033
+ "type": "column",
1034
+ "layout": {
1035
+ "num_of_col": 2,
1036
+ "fields": [
1037
+ [
1038
+ {
1039
+ "field": "input",
1040
+ "type": "standard_component",
1041
+ "unique_key": "standard_component_input_084ec33985a4dcca8c90",
1042
+ "key": "allow_domain",
1043
+ "label": "Allow Domain",
1044
+ "required": false,
1045
+ "link_type": "key",
1046
+ "entity": "not_use",
1047
+ "input_type": "single_line",
1048
+ "trigger": []
1049
+ },
1050
+ {
1051
+ "field": "input",
1052
+ "type": "standard_component",
1053
+ "unique_key": "standard_component_input_b795173d28cf4845bd26",
1054
+ "key": "client_id",
1055
+ "label": "Client Id",
1056
+ "required": false,
1057
+ "link_type": "key",
1058
+ "entity": "not_use",
1059
+ "input_type": "single_line",
1060
+ "trigger": []
1061
+ },
1062
+ {
1063
+ "field": "input",
1064
+ "type": "standard_component",
1065
+ "unique_key": "standard_component_input_fbe2f45171f67eb7c5cb",
1066
+ "key": "expires_in",
1067
+ "label": "Expire In",
1068
+ "description": "minutes(m), hours(h), days(d), weeks(w)",
1069
+ "required": false,
1070
+ "link_type": "key",
1071
+ "entity": "not_use",
1072
+ "input_type": "single_line",
1073
+ "trigger": []
1074
+ }
1075
+ ],
1076
+ [
1077
+ {
1078
+ "field": "input",
1079
+ "type": "standard_component",
1080
+ "unique_key": "standard_component_input_1f3a591f40fc4749e0af",
1081
+ "key": "redirect_url",
1082
+ "label": "Redirect Url",
1083
+ "required": false,
1084
+ "link_type": "key",
1085
+ "entity": "not_use",
1086
+ "input_type": "single_line",
1087
+ "trigger": []
1088
+ },
1089
+ {
1090
+ "field": "input",
1091
+ "type": "standard_component",
1092
+ "unique_key": "standard_component_input_574165b79fcdd9d24869",
1093
+ "key": "client_secret",
1094
+ "label": "Client Secret",
1095
+ "required": false,
1096
+ "link_type": "key",
1097
+ "input_type": "password",
1098
+ "trigger": []
1099
+ }
1100
+ ]
1101
+ ]
1102
+ }
1103
+ }
1104
+ ],
1105
+ "key": "75aaa3d7e0e7c7948786"
1106
+ },
1107
+ {
1108
+ "source_key": "cognito",
1109
+ "title": "Cognito",
1110
+ "actions": [],
1111
+ "blocks": [
1112
+ {
1113
+ "key": "481cfa4925ac6079c4e8",
1114
+ "type": "column",
1115
+ "layout": {
1116
+ "num_of_col": 2,
1117
+ "fields": [
1118
+ [
1119
+ {
1120
+ "field": "switch",
1121
+ "type": "standard_component",
1122
+ "unique_key": "standard_component_switch_9cf24c324e0f29b0f2f0",
1123
+ "key": "enable",
1124
+ "label": "Enable",
1125
+ "link_type": "key",
1126
+ "yes_label": "Yes",
1127
+ "no_label": "No",
1128
+ "trigger": [
1129
+ {
1130
+ "field": "standard_component_input_f4f5a3350dc108ee0369",
1131
+ "method": "required",
1132
+ "value": "${ cognito.enable }"
1133
+ },
1134
+ {
1135
+ "field": "standard_component_input_82408b873f8487ca9c82",
1136
+ "method": "required",
1137
+ "value": "${ cognito.enable }"
1138
+ },
1139
+ {
1140
+ "field": "standard_component_input_299184484bf3b2fe4261",
1141
+ "method": "required",
1142
+ "value": "${ cognito.enable }"
1143
+ },
1144
+ {
1145
+ "field": "standard_component_input_ffdead2e41e8a50b8ac1",
1146
+ "method": "required",
1147
+ "value": "${ cognito.enable }"
1148
+ },
1149
+ {
1150
+ "field": "standard_component_input_d3424b489b79f24367ef",
1151
+ "method": "required",
1152
+ "value": "${ cognito.enable }"
1153
+ },
1154
+ {
1155
+ "field": "standard_component_input_182c102e7bb8ad4a95df",
1156
+ "method": "required",
1157
+ "value": "${ cognito.enable }"
1158
+ }
1159
+ ]
1160
+ }
1161
+ ],
1162
+ []
1163
+ ]
1164
+ }
1165
+ },
1166
+ {
1167
+ "key": "6420bb8c3280387e3190",
1168
+ "type": "column",
1169
+ "layout": {
1170
+ "num_of_col": 2,
1171
+ "fields": [
1172
+ [
1173
+ {
1174
+ "field": "input",
1175
+ "type": "standard_component",
1176
+ "unique_key": "standard_component_input_f4f5a3350dc108ee0369",
1177
+ "key": "domain",
1178
+ "label": "Domain",
1179
+ "required": false,
1180
+ "link_type": "key",
1181
+ "entity": "not_use",
1182
+ "input_type": "single_line",
1183
+ "trigger": []
1184
+ },
1185
+ {
1186
+ "field": "input",
1187
+ "type": "standard_component",
1188
+ "unique_key": "standard_component_input_82408b873f8487ca9c82",
1189
+ "key": "client_id",
1190
+ "label": "Client Id",
1191
+ "required": false,
1192
+ "link_type": "key",
1193
+ "entity": "not_use",
1194
+ "input_type": "single_line",
1195
+ "trigger": []
1196
+ },
1197
+ {
1198
+ "field": "input",
1199
+ "type": "standard_component",
1200
+ "unique_key": "standard_component_input_299184484bf3b2fe4261",
1201
+ "key": "region",
1202
+ "label": "Region",
1203
+ "required": false,
1204
+ "link_type": "key",
1205
+ "entity": "not_use",
1206
+ "input_type": "single_line",
1207
+ "trigger": []
1208
+ }
1209
+ ],
1210
+ [
1211
+ {
1212
+ "field": "input",
1213
+ "type": "standard_component",
1214
+ "unique_key": "standard_component_input_ffdead2e41e8a50b8ac1",
1215
+ "key": "scope",
1216
+ "label": "Scope",
1217
+ "required": false,
1218
+ "link_type": "key",
1219
+ "entity": "not_use",
1220
+ "input_type": "single_line",
1221
+ "trigger": []
1222
+ },
1223
+ {
1224
+ "field": "input",
1225
+ "type": "standard_component",
1226
+ "unique_key": "standard_component_input_d3424b489b79f24367ef",
1227
+ "key": "client_secret",
1228
+ "label": "Client Secret",
1229
+ "required": false,
1230
+ "link_type": "key",
1231
+ "input_type": "password",
1232
+ "trigger": []
1233
+ },
1234
+ {
1235
+ "field": "input",
1236
+ "type": "standard_component",
1237
+ "unique_key": "standard_component_input_182c102e7bb8ad4a95df",
1238
+ "key": "pool_id",
1239
+ "label": "Pool Id",
1240
+ "required": false,
1241
+ "link_type": "key",
1242
+ "entity": "not_use",
1243
+ "input_type": "single_line",
1244
+ "trigger": []
1245
+ }
1246
+ ]
1247
+ ]
1248
+ }
1249
+ }
1250
+ ],
1251
+ "key": "b2cf518e6b02d6a36c2c"
1252
+ },
1253
+ {
1254
+ "source_key": "ldap",
1255
+ "title": "LDAP",
1256
+ "actions": [],
1257
+ "blocks": [
1258
+ {
1259
+ "key": "501cfa4925ac6079c4e8",
1260
+ "type": "column",
1261
+ "layout": {
1262
+ "num_of_col": 2,
1263
+ "fields": [
1264
+ [
1265
+ {
1266
+ "field": "switch",
1267
+ "type": "standard_component",
1268
+ "unique_key": "standard_component_switch_50f24c324e0f29b0f2f0",
1269
+ "key": "enable",
1270
+ "label": "Enable",
1271
+ "link_type": "key",
1272
+ "yes_label": "Yes",
1273
+ "no_label": "No",
1274
+ "trigger": [
1275
+ {
1276
+ "field": "standard_component_input_50f5a3350dc108ee0369",
1277
+ "method": "required",
1278
+ "value": "${ ldap.enable }"
1279
+ },
1280
+ {
1281
+ "field": "standard_component_input_50408b873f8487ca9c82",
1282
+ "method": "required",
1283
+ "value": "${ ldap.enable }"
1284
+ },
1285
+ {
1286
+ "field": "standard_component_input_509184484bf3b2fe4261",
1287
+ "method": "required",
1288
+ "value": "${ ldap.enable }"
1289
+ },
1290
+ {
1291
+ "field": "standard_component_input_50dead2e41e8a50b8ac1",
1292
+ "method": "required",
1293
+ "value": "${ ldap.enable }"
1294
+ },
1295
+ {
1296
+ "field": "standard_component_input_50424b489b79f24367ef",
1297
+ "method": "required",
1298
+ "value": "${ ldap.enable }"
1299
+ },
1300
+ {
1301
+ "field": "standard_component_input_502c102e7bb8ad4a95df",
1302
+ "method": "required",
1303
+ "value": "${ ldap.enable }"
1304
+ },
1305
+ {
1306
+ "field": "advanced_component_mapping_data_5044dd50c3c33358d818",
1307
+ "method": "required",
1308
+ "value": "${ ldap.enable }"
1309
+ }
1310
+ ]
1311
+ }
1312
+ ],
1313
+ []
1314
+ ]
1315
+ }
1316
+ },
1317
+ {
1318
+ "key": "5020bb8c3280387e3190",
1319
+ "type": "column",
1320
+ "layout": {
1321
+ "num_of_col": 2,
1322
+ "fields": [
1323
+ [
1324
+ {
1325
+ "field": "input",
1326
+ "type": "standard_component",
1327
+ "unique_key": "standard_component_input_50f5a3350dc108ee0369",
1328
+ "key": "url",
1329
+ "label": "Url",
1330
+ "required": false,
1331
+ "link_type": "key",
1332
+ "entity": "not_use",
1333
+ "input_type": "single_line",
1334
+ "trigger": []
1335
+ },
1336
+ {
1337
+ "field": "input",
1338
+ "type": "standard_component",
1339
+ "unique_key": "standard_component_input_50408b873f8487ca9c82",
1340
+ "key": "bind_dn",
1341
+ "label": "Bind DN",
1342
+ "required": false,
1343
+ "link_type": "key",
1344
+ "entity": "not_use",
1345
+ "input_type": "single_line",
1346
+ "trigger": []
1347
+ },
1348
+ {
1349
+ "field": "input",
1350
+ "type": "standard_component",
1351
+ "unique_key": "standard_component_input_50dead2e41e8a50b8ac1",
1352
+ "key": "search_base",
1353
+ "label": "Search Base",
1354
+ "required": false,
1355
+ "link_type": "key",
1356
+ "entity": "not_use",
1357
+ "input_type": "single_line",
1358
+ "trigger": []
1359
+ }
1360
+ ],
1361
+ [
1362
+ {
1363
+ "field": "input",
1364
+ "type": "standard_component",
1365
+ "unique_key": "standard_component_input_502c102e7bb8ad4a95df",
1366
+ "key": "expires_in",
1367
+ "label": "Expires In",
1368
+ "required": false,
1369
+ "link_type": "key",
1370
+ "entity": "not_use",
1371
+ "input_type": "single_line",
1372
+ "trigger": []
1373
+ },
1374
+ {
1375
+ "field": "input",
1376
+ "type": "standard_component",
1377
+ "unique_key": "standard_component_input_509184484bf3b2fe4261",
1378
+ "key": "bind_credentials",
1379
+ "label": "Bind Credentials",
1380
+ "required": false,
1381
+ "link_type": "key",
1382
+ "entity": "not_use",
1383
+ "input_type": "single_line",
1384
+ "trigger": []
1385
+ },
1386
+ {
1387
+ "field": "input",
1388
+ "type": "standard_component",
1389
+ "unique_key": "standard_component_input_50424b489b79f24367ef",
1390
+ "key": "search_filter",
1391
+ "label": "Search Filter",
1392
+ "required": false,
1393
+ "link_type": "key",
1394
+ "input_type": "password",
1395
+ "trigger": []
1396
+ }
1397
+ ]
1398
+ ]
1399
+ }
1400
+ },
1401
+ {
1402
+ "key": "5020bb8c3280387e3191",
1403
+ "type": "column",
1404
+ "layout": {
1405
+ "num_of_col": 1,
1406
+ "fields": [
1407
+ [
1408
+ {
1409
+ "field": "mapping_data",
1410
+ "type": "advanced_component",
1411
+ "label": "LDAP Profile mapping",
1412
+ "unique_key": "advanced_component_mapping_data_5044dd50c3c33358d818",
1413
+ "key": "profile_mapping",
1414
+ "link_type": "key",
1415
+ "hide_label": false,
1416
+ "input_type": "json",
1417
+ "output_type": "json",
1418
+ "source_mapping_option": {
1419
+ "entity": "other_entity",
1420
+ "relate_ref": "user"
1421
+ },
1422
+ "destination_mapping_option": {
1423
+ "entity": "custom",
1424
+ "relate_ref": "[{\"field\":\"username\",\"type\":\"string\",\"children\":[]}]"
1425
+ },
1426
+ "show_example": true
1427
+ }
1428
+ ]
1429
+ ]
1430
+ }
1431
+ }
1432
+ ],
1433
+ "key": "b2cf518e6b02d6a36c3d"
1434
+ },
1435
+ {
1436
+ "source_key": "id_connect",
1437
+ "title": "ID Connect",
1438
+ "actions": [],
1439
+ "blocks": [
1440
+ {
1441
+ "key": "dW8vKWuZ9R7NT621qNbJ",
1442
+ "type": "column",
1443
+ "layout": {
1444
+ "num_of_col": 2,
1445
+ "fields": [
1446
+ [
1447
+ {
1448
+ "field": "switch",
1449
+ "type": "standard_component",
1450
+ "unique_key": "standard_component_switch_B5F8Aix8ZOAjWxQTazCS",
1451
+ "key": "enable",
1452
+ "label": "Enable",
1453
+ "link_type": "key",
1454
+ "yes_label": "Yes",
1455
+ "no_label": "No",
1456
+ "trigger": [
1457
+ {
1458
+ "field": "standard_component_input_HXgyDy6gnmKB0T6mSFa7",
1459
+ "method": "required",
1460
+ "value": "${ id_connect.enable }"
1461
+ },
1462
+ {
1463
+ "field": "standard_component_input_3J7azgndKxkwxSZ2zZqk",
1464
+ "method": "required",
1465
+ "value": "${ id_connect.enable }"
1466
+ },
1467
+ {
1468
+ "field": "standard_component_select_5f42db19246a83de0567",
1469
+ "method": "required",
1470
+ "value": "${ id_connect.enable }"
1471
+ },
1472
+ {
1473
+ "field": "standard_component_input_DNbIAAmvAPaksUVvXfBQ",
1474
+ "method": "required",
1475
+ "value": "${ id_connect.enable }"
1476
+ },
1477
+ {
1478
+ "field": "standard_component_input_Z2a3N29KtSvOQTvdRwkq",
1479
+ "method": "required",
1480
+ "value": "${ id_connect.enable }"
1481
+ }
1482
+ ]
1483
+ }
1484
+ ],
1485
+ []
1486
+ ]
1487
+ }
1488
+ },
1489
+ {
1490
+ "key": "O7OBBeJ9IpIavLZpbe2A",
1491
+ "type": "column",
1492
+ "layout": {
1493
+ "num_of_col": 2,
1494
+ "fields": [
1495
+ [
1496
+ {
1497
+ "field": "input",
1498
+ "type": "standard_component",
1499
+ "unique_key": "standard_component_input_HXgyDy6gnmKB0T6mSFa7",
1500
+ "key": "domain",
1501
+ "label": "Domain",
1502
+ "required": false,
1503
+ "link_type": "key",
1504
+ "entity": "not_use",
1505
+ "input_type": "single_line",
1506
+ "trigger": []
1507
+ },
1508
+ {
1509
+ "field": "input",
1510
+ "type": "standard_component",
1511
+ "unique_key": "standard_component_input_3J7azgndKxkwxSZ2zZqk",
1512
+ "key": "client_id",
1513
+ "label": "Client Id",
1514
+ "required": false,
1515
+ "link_type": "key",
1516
+ "entity": "not_use",
1517
+ "input_type": "single_line",
1518
+ "trigger": []
1519
+ }
1520
+ ],
1521
+ [
1522
+ {
1523
+ "field": "input",
1524
+ "type": "standard_component",
1525
+ "unique_key": "standard_component_input_Z2a3N29KtSvOQTvdRwkq",
1526
+ "key": "domain_api",
1527
+ "label": "Domain Apin",
1528
+ "required": false,
1529
+ "link_type": "key",
1530
+ "entity": "not_use",
1531
+ "input_type": "single_line",
1532
+ "trigger": []
1533
+ },
1534
+ {
1535
+ "field": "input",
1536
+ "type": "standard_component",
1537
+ "unique_key": "standard_component_input_DNbIAAmvAPaksUVvXfBQ",
1538
+ "key": "client_secret",
1539
+ "label": "Client Secret",
1540
+ "required": false,
1541
+ "link_type": "key",
1542
+ "input_type": "password",
1543
+ "trigger": []
1544
+ },
1545
+ {
1546
+ "field": "select",
1547
+ "type": "standard_component",
1548
+ "unique_key": "standard_component_select_5f42db19246a83de0567",
1549
+ "key": "scope",
1550
+ "label": "Scope",
1551
+ "required": false,
1552
+ "link_type": "key",
1553
+ "mode": "tags",
1554
+ "allow_duplicate": false,
1555
+ "entity": "custom",
1556
+ "trigger": []
1557
+ }
1558
+ ]
1559
+ ]
1560
+ }
1561
+ },
1562
+ {
1563
+ "key": "BuIyObgIA8Wtjifuj0Od",
1564
+ "type": "column",
1565
+ "layout": {
1566
+ "num_of_col": 1,
1567
+ "fields": [
1568
+ [
1569
+ {
1570
+ "field": "mapping_data",
1571
+ "type": "advanced_component",
1572
+ "label": "ID Connect Mpping Profile",
1573
+ "unique_key": "advanced_component_mapping_data_6rcaXQrvnpopUxwer9pw",
1574
+ "key": "profile_mapping",
1575
+ "link_type": "key",
1576
+ "hide_label": false,
1577
+ "input_type": "json",
1578
+ "output_type": "json",
1579
+ "source_mapping_option": {
1580
+ "entity": "other_entity",
1581
+ "relate_ref": "user"
1582
+ },
1583
+ "destination_mapping_option": {
1584
+ "entity": "custom",
1585
+ "relate_ref": "[{\"field\":\"first_name\",\"type\":\"string\",\"children\":[]},{\"field\":\"last_name\",\"type\":\"string\",\"children\":[]},{\"field\":\"full_name\",\"type\":\"string\",\"children\":[]},{\"field\":\"user_id\",\"type\":\"string\",\"children\":[]},{\"field\":\"organization\",\"type\":\"string\",\"children\":[]},{\"field\":\"email\",\"type\":\"string\",\"children\":[]},{\"field\":\"phone_no\",\"type\":\"string\",\"children\":[]},{\"field\":\"username\",\"type\":\"string\",\"children\":[]}]"
1586
+ },
1587
+ "show_example": true
1588
+ }
1589
+ ]
1590
+ ]
1591
+ }
1592
+ }
1593
+ ],
1594
+ "key": "dFF5E7jp7TQUp1QNDj9A"
1595
+ }
1596
+ ]
1597
+ }
1598
+ ],
1599
+ "redirect_mode": "not_redirect"
1600
+ },
1601
+ "name": "Security",
1602
+ "code": "security",
1603
+ "type": [
1604
+ "form"
1605
+ ],
1606
+ "allow_actions": [
1607
+ {
1608
+ "action": "create",
1609
+ "role_restrictions": []
1610
+ },
1611
+ {
1612
+ "action": "update",
1613
+ "role_restrictions": []
1614
+ }
1615
+ ],
1616
+ "deploy_package_settings": [
1617
+ "auth"
1618
+ ],
1619
+ "restriction": [],
1620
+ "hide_activity_log": true,
1621
+ "hide_refresh": true
1622
+ }