cc-core-cli 1.0.133 → 1.0.136

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 (75) hide show
  1. package/bin/index.js +4 -4
  2. package/package.json +1 -1
  3. package/template/admin_v3/src/pages/api/database/[type]/index.ts +23 -0
  4. package/template/admin_v3/src/pages/api/layout_chart_widget/[name]/index.ts +18 -0
  5. package/template/admin_v3/src/pages/api/layout_chart_widget/compare_matrix.ts +17 -0
  6. package/template/admin_v3/src/pages/api/redis/[type]/[connect]/index.ts +20 -0
  7. package/template/admin_v3/src/pages/api/redis/custom.ts +10 -0
  8. package/template/admin_v3/src/pages/api/setting/module/[code].ts +34 -0
  9. package/template/admin_v3/src/pages/api/template/[type].ts +21 -0
  10. package/template/admin_v3/src/pages/api/template/bulk_print/[id].ts +15 -0
  11. package/template/admin_v3/src/pages/api/template/print/[id]/[doc_ref].ts +11 -0
  12. package/template/core/src/main.ts +4 -1
  13. package/template/core_v3/Dockerfile +60 -0
  14. package/template/core_v3/_env +12 -0
  15. package/template/core_v3/_gitignore +52 -0
  16. package/template/core_v3/_npmrc +1 -0
  17. package/template/core_v3/buildspec.yml +29 -0
  18. package/template/core_v3/docker-compose.yml +11 -0
  19. package/template/core_v3/jest.config.js +43 -0
  20. package/template/core_v3/newrelic.sh +15 -0
  21. package/template/core_v3/package.json +54 -0
  22. package/template/core_v3/post-install.js +34 -0
  23. package/template/core_v3/sonar-project.properties +27 -0
  24. package/template/core_v3/src/app.controller.ts +39 -0
  25. package/template/core_v3/src/app.module.ts +174 -0
  26. package/template/core_v3/src/app.service.ts +21 -0
  27. package/template/core_v3/src/app_cluster.service.ts +61 -0
  28. package/template/core_v3/src/core/core.controller.ts +444 -0
  29. package/template/core_v3/src/core/core.module.ts +90 -0
  30. package/template/core_v3/src/core/core.service.ts +737 -0
  31. package/template/core_v3/src/core/setting/_settings/about.layout.json +105 -0
  32. package/template/core_v3/src/core/setting/_settings/cache.layout.json +309 -0
  33. package/template/core_v3/src/core/setting/_settings/global_login.json +299 -0
  34. package/template/core_v3/src/core/setting/_settings/header_footer.json +83 -0
  35. package/template/core_v3/src/core/setting/_settings/import_export.layout.json +69 -0
  36. package/template/core_v3/src/core/setting/_settings/list_detail.json +685 -0
  37. package/template/core_v3/src/core/setting/_settings/logs.layout.json +39 -0
  38. package/template/core_v3/src/core/setting/_settings/queue.layout.json +63 -0
  39. package/template/core_v3/src/core/setting/_settings/schedule.layout.json +132 -0
  40. package/template/core_v3/src/core/setting/_settings/security.layout.json +1110 -0
  41. package/template/core_v3/src/core/setting/_settings/storage.layout.json +158 -0
  42. package/template/core_v3/src/core/setting/_settings/swagger.layout.json +128 -0
  43. package/template/core_v3/src/core/setting/_settings/toast.json +344 -0
  44. package/template/core_v3/src/main.ts +308 -0
  45. package/template/core_v3/src/modules/modules.ts +16 -0
  46. package/template/core_v3/src/private.controller.ts +18 -0
  47. package/template/core_v3/storage/documents/index.html +14 -0
  48. package/template/core_v3/storage/public/system/menu/icons/company.svg +1 -0
  49. package/template/core_v3/storage/public/system/menu/icons/deploy.svg +2 -0
  50. package/template/core_v3/storage/public/system/menu/icons/entities.svg +55 -0
  51. package/template/core_v3/storage/public/system/menu/icons/files.svg +1 -0
  52. package/template/core_v3/storage/public/system/menu/icons/gateway.svg +1 -0
  53. package/template/core_v3/storage/public/system/menu/icons/import-export.svg +41 -0
  54. package/template/core_v3/storage/public/system/menu/icons/integration.svg +1 -0
  55. package/template/core_v3/storage/public/system/menu/icons/master_data.svg +53 -0
  56. package/template/core_v3/storage/public/system/menu/icons/modules.svg +79 -0
  57. package/template/core_v3/storage/public/system/menu/icons/monitoring.svg +114 -0
  58. package/template/core_v3/storage/public/system/menu/icons/pipeline.svg +1 -0
  59. package/template/core_v3/storage/public/system/menu/icons/provider.svg +1 -0
  60. package/template/core_v3/storage/public/system/menu/icons/report.svg +69 -0
  61. package/template/core_v3/storage/public/system/menu/icons/schedule.svg +1 -0
  62. package/template/core_v3/storage/public/system/menu/icons/security.svg +1 -0
  63. package/template/core_v3/storage/public/system/menu/icons/storage.svg +1 -0
  64. package/template/core_v3/storage/public/system/menu/icons/template.svg +44 -0
  65. package/template/core_v3/storage/public/system/menu/icons/theme-layout.svg +1 -0
  66. package/template/core_v3/test/__mocks__/cc-core-lib.d.ts +161 -0
  67. package/template/core_v3/test/__mocks__/cc-core-lib.js +311 -0
  68. package/template/core_v3/test/__mocks__/pdf-img-convert.js +5 -0
  69. package/template/core_v3/test/jest.setup.ts +25 -0
  70. package/template/core_v3/tsconfig.build.json +4 -0
  71. package/template/core_v3/tsconfig.json +22 -0
  72. package/template/core_v3/tsconfig.test.json +17 -0
  73. package/template/core_v3/version.json +5 -0
  74. package/template/admin_v3/src/pages/api/redis/[connect]/index.ts +0 -0
  75. package/template/admin_v3/src/pages/api/redis/index.ts +0 -0
@@ -0,0 +1,158 @@
1
+ {
2
+ "detail": {
3
+ "title": {},
4
+ "blocks": [
5
+ {
6
+ "key": "4519096f7e240dfccabb",
7
+ "type": "column",
8
+ "layout": {
9
+ "num_of_col": 2,
10
+ "fields": [
11
+ [
12
+ {
13
+ "field": "select",
14
+ "type": "standard_component",
15
+ "unique_key": "standard_component_select_64f9fdcec14ee7588294",
16
+ "key": "provider",
17
+ "label": "Provider",
18
+ "required": true,
19
+ "default_value": "local",
20
+ "link_type": "key",
21
+ "entity": "custom",
22
+ "options": [],
23
+ "mode": "single",
24
+ "trigger": []
25
+ }
26
+ ],
27
+ [
28
+ {
29
+ "field": "input_number",
30
+ "type": "standard_component",
31
+ "unique_key": "standard_component_input_number_a9b7fab99bc03d575064",
32
+ "key": "limit_file_size",
33
+ "label": "Limit File Size",
34
+ "required": true,
35
+ "default_value": 10,
36
+ "link_type": "key",
37
+ "min_value": 1,
38
+ "suffix": "MB",
39
+ "trigger": [],
40
+ "decimal_place": 0
41
+ }
42
+ ]
43
+ ]
44
+ }
45
+ },
46
+ {
47
+ "key": "25c2ae93963e82af8eac",
48
+ "type": "column",
49
+ "layout": {
50
+ "num_of_col": 2,
51
+ "fields": [
52
+ [
53
+ {
54
+ "field": "select",
55
+ "type": "standard_component",
56
+ "unique_key": "standard_component_select_3f755cb598943ceaa947",
57
+ "key": "allow_extension_file",
58
+ "label": "Allow Extension File",
59
+ "required": true,
60
+ "default_value": [
61
+ "pdf",
62
+ "xlsx",
63
+ "xls",
64
+ "csv",
65
+ "doc",
66
+ "txt",
67
+ "jpg",
68
+ "png",
69
+ "gif",
70
+ "iso",
71
+ "zip",
72
+ "exe",
73
+ "json",
74
+ "bin",
75
+ "xml",
76
+ "deb",
77
+ "gz"
78
+ ],
79
+ "link_type": "key",
80
+ "entity": "custom",
81
+ "options": [],
82
+ "mode": "tags",
83
+ "trigger": []
84
+ }
85
+ ],
86
+ [
87
+ {
88
+ "field": "select",
89
+ "type": "standard_component",
90
+ "unique_key": "standard_component_select_KNvkDcpBUVP83JtEBvfG",
91
+ "key": "allow_image_extension_file",
92
+ "label": "Allow Image Extension File",
93
+ "required": true,
94
+ "default_value": [
95
+ "jpeg",
96
+ "jpg",
97
+ "gif",
98
+ "png"
99
+ ],
100
+ "link_type": "key",
101
+ "entity": "custom",
102
+ "options": [],
103
+ "mode": "tags",
104
+ "trigger": []
105
+ }
106
+ ]
107
+ ]
108
+ }
109
+ },
110
+ {
111
+ "key": "uh43ldy2q36h2vsk5rul",
112
+ "type": "column",
113
+ "layout": {
114
+ "num_of_col": 2,
115
+ "fields": [
116
+ [
117
+ {
118
+ "field": "input",
119
+ "type": "standard_component",
120
+ "unique_key": "standard_component_input_8nrv8onfikvxy0ee7g5o",
121
+ "key": "api_domain",
122
+ "label": "API Domain",
123
+ "required": true,
124
+ "link_type": "key",
125
+ "entity": "not_use",
126
+ "input_type": "single_line",
127
+ "trigger": []
128
+ }
129
+ ],
130
+ []
131
+ ]
132
+ }
133
+ }
134
+ ],
135
+ "redirect_mode": "not_redirect"
136
+ },
137
+ "name": "Storage",
138
+ "code": "storage",
139
+ "type": [
140
+ "form"
141
+ ],
142
+ "allow_actions": [
143
+ {
144
+ "action": "create",
145
+ "role_restrictions": []
146
+ },
147
+ {
148
+ "action": "update",
149
+ "role_restrictions": []
150
+ }
151
+ ],
152
+ "deploy_package_settings": [
153
+ "media"
154
+ ],
155
+ "restriction": [],
156
+ "hide_activity_log": true,
157
+ "show_refresh": false
158
+ }
@@ -0,0 +1,128 @@
1
+ {
2
+ "detail": {
3
+ "title": {},
4
+ "blocks": [
5
+ {
6
+ "key": "4519096f7e240dfccabb",
7
+ "type": "column",
8
+ "layout": {
9
+ "num_of_col": 2,
10
+ "fields": [
11
+ [
12
+ {
13
+ "field": "input",
14
+ "type": "standard_component",
15
+ "unique_key": "standard_component_input_4b5e45f150ffb34a6150",
16
+ "key": "owner",
17
+ "label": "Owner",
18
+ "required": true,
19
+ "link_type": "key",
20
+ "entity": "not_use",
21
+ "input_type": "single_line",
22
+ "trigger": [
23
+ {
24
+ "field": "standard_component_label_b72763a3115a2adf3392",
25
+ "method": "show",
26
+ "value": "!_.isEmpty('${ owner }') & !_.isEmpty('${ doc_name }')"
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ "field": "input",
32
+ "type": "standard_component",
33
+ "unique_key": "standard_component_input_4b5e45f150ffb34a6151",
34
+ "key": "api_key",
35
+ "label": "Api Key",
36
+ "required": true,
37
+ "link_type": "key",
38
+ "entity": "not_use",
39
+ "input_type": "single_line",
40
+ "trigger": []
41
+ }
42
+ ],
43
+ [
44
+ {
45
+ "field": "input",
46
+ "type": "standard_component",
47
+ "unique_key": "standard_component_input_4b5e45f150ffb34a6152",
48
+ "key": "doc_name",
49
+ "label": "Document Name",
50
+ "required": true,
51
+ "link_type": "key",
52
+ "entity": "not_use",
53
+ "input_type": "single_line",
54
+ "trigger": [
55
+ {
56
+ "field": "standard_component_label_b72763a3115a2adf3392",
57
+ "method": "show",
58
+ "value": "!_.isEmpty('${ owner }') & !_.isEmpty('${ doc_name }')"
59
+ }
60
+ ]
61
+ }
62
+ ]
63
+ ]
64
+ }
65
+ },
66
+ {
67
+ "key": "142b4521325612b5a522",
68
+ "type": "column",
69
+ "layout": {
70
+ "num_of_col": 1,
71
+ "fields": [
72
+ [
73
+ {
74
+ "field": "label",
75
+ "type": "standard_component",
76
+ "unique_key": "standard_component_label_b72763a3115a2adf3392",
77
+ "label": "Doc URL",
78
+ "format": "<p><a href=\"https://app.swaggerhub.com/apis-docs/${ owner }/${ doc_name }\" target=\"_blank\">https://app.swaggerhub.com/apis-docs/${ owner }/${ doc_name }</a></p>"
79
+ }
80
+ ]
81
+ ]
82
+ }
83
+ }
84
+ ],
85
+ "redirect_mode": "not_redirect"
86
+ },
87
+ "name": "Swagger",
88
+ "code": "swagger",
89
+ "type": [
90
+ "form"
91
+ ],
92
+ "allow_actions": [
93
+ {
94
+ "action": "create",
95
+ "role_restrictions": []
96
+ },
97
+ {
98
+ "action": "update",
99
+ "role_restrictions": []
100
+ }
101
+ ],
102
+ "_custom_actions": [
103
+ {
104
+ "system": true,
105
+ "name": "Publish",
106
+ "enabled": true,
107
+ "allow_layouts": [
108
+ "swagger"
109
+ ],
110
+ "type": "internal",
111
+ "show_on": "detail",
112
+ "export_filter": false,
113
+ "confirm": true,
114
+ "internal_actions": [
115
+ {
116
+ "path": "/swagger/publish",
117
+ "method": "patch"
118
+ }
119
+ ]
120
+ }
121
+ ],
122
+ "deploy_package_settings": [
123
+ "swagger"
124
+ ],
125
+ "restriction": [],
126
+ "hide_activity_log": true,
127
+ "show_refresh": false
128
+ }
@@ -0,0 +1,344 @@
1
+ {
2
+ "detail": {
3
+ "title": {},
4
+ "blocks": [
5
+ {
6
+ "key": "i46newwwd9wufibb4ptr",
7
+ "type": "column",
8
+ "layout": {
9
+ "num_of_col": 6,
10
+ "fields": [
11
+ [
12
+ {
13
+ "field": "select",
14
+ "type": "standard_component",
15
+ "unique_key": "standard_component_select_0cxyw03hbs5427eijg6r",
16
+ "key": "toast.toast_position",
17
+ "label": "Position",
18
+ "required": true,
19
+ "default_value": "top-center",
20
+ "link_type": "key",
21
+ "entity": "custom",
22
+ "options": [
23
+ "top-center",
24
+ "top-right",
25
+ "top-left",
26
+ "bottom-right",
27
+ "bottom-left",
28
+ "bottom-center"
29
+ ],
30
+ "mode": "single",
31
+ "trigger": []
32
+ }
33
+ ],
34
+ [
35
+ {
36
+ "field": "select",
37
+ "type": "standard_component",
38
+ "unique_key": "standard_component_select_k8d950b4knx45vxukfx1",
39
+ "key": "toast.toast_size",
40
+ "label": "Size",
41
+ "required": true,
42
+ "default_value": "full",
43
+ "link_type": "key",
44
+ "entity": "custom",
45
+ "options": [
46
+ "full",
47
+ "normal"
48
+ ],
49
+ "mode": "single",
50
+ "trigger": []
51
+ }
52
+ ],
53
+ [
54
+ {
55
+ "field": "input_number",
56
+ "type": "standard_component",
57
+ "unique_key": "standard_component_input_number_97y2zta2kuohyhgxfg49",
58
+ "key": "toast.toast_delay",
59
+ "label": "Auto Close Delay",
60
+ "default_value": 10,
61
+ "link_type": "key",
62
+ "min_value": 1,
63
+ "suffix": "second",
64
+ "trigger": [],
65
+ "decimal_place": 0
66
+ }
67
+ ],
68
+ [
69
+ {
70
+ "field": "switch",
71
+ "type": "standard_component",
72
+ "unique_key": "standard_component_switch_uevds270y7bqkjvos1u1",
73
+ "key": "toast.toast_icon_close",
74
+ "label": "Close on click",
75
+ "default_value": false,
76
+ "link_type": "key",
77
+ "yes_label": "Yes",
78
+ "no_label": "No",
79
+ "trigger": [],
80
+ "name": "toast_icon_close"
81
+ }
82
+ ]
83
+ ]
84
+ }
85
+ },
86
+ {
87
+ "key": "j9v9g1p15fhskppmz6vg",
88
+ "type": "column",
89
+ "layout": {
90
+ "num_of_col": 2,
91
+ "fields": [
92
+ [
93
+ {
94
+ "field": "label",
95
+ "type": "standard_component",
96
+ "unique_key": "standard_component_label_5lbdt9u61ytip7g8zkdr",
97
+ "label": "Success",
98
+ "entity": "test_setting",
99
+ "format": "<p><strong style=\"font-size: 1.17em;\">Success</strong><br></p>",
100
+ "hide_label": true
101
+ }
102
+ ],
103
+ []
104
+ ]
105
+ }
106
+ },
107
+ {
108
+ "key": "upst94ymxe9mxxg9sn7j",
109
+ "type": "column",
110
+ "layout": {
111
+ "num_of_col": 6,
112
+ "fields": [
113
+ [
114
+ {
115
+ "field": "color_picker",
116
+ "type": "standard_component",
117
+ "unique_key": "standard_component_color_picker_n7plflwjce1220h4boyj",
118
+ "key": "toast.toast_success_background_color",
119
+ "label": "Background Color",
120
+ "link_type": "key",
121
+ "trigger": [],
122
+ "allow_alpha": false
123
+ }
124
+ ],
125
+ [
126
+ {
127
+ "field": "color_picker",
128
+ "type": "standard_component",
129
+ "unique_key": "standard_component_color_picker_szlzjdctdfse21vajxaa",
130
+ "key": "toast.toast_success_title_color",
131
+ "label": "Title Color",
132
+ "link_type": "key",
133
+ "trigger": [],
134
+ "allow_alpha": false
135
+ }
136
+ ],
137
+ [
138
+ {
139
+ "field": "color_picker",
140
+ "type": "standard_component",
141
+ "unique_key": "standard_component_color_picker_g9atv7eoun8pjann7r53",
142
+ "key": "toast.toast_success_description_color",
143
+ "label": "Description Color",
144
+ "link_type": "key",
145
+ "trigger": [],
146
+ "allow_alpha": false
147
+ }
148
+ ],
149
+ [
150
+ {
151
+ "field": "input_icon",
152
+ "type": "standard_component",
153
+ "unique_key": "standard_component_color_picker_txk36zueb3po52loyi14",
154
+ "key": "toast.toast_success_icon",
155
+ "label": "Icon",
156
+ "link_type": "key",
157
+ "trigger": [],
158
+ "allow_alpha": false
159
+ }
160
+ ]
161
+ ]
162
+ }
163
+ },
164
+ {
165
+ "key": "jngh2k4gnvpi318zr9gv",
166
+ "type": "column",
167
+ "layout": {
168
+ "num_of_col": 2,
169
+ "fields": [
170
+ [
171
+ {
172
+ "field": "label",
173
+ "type": "standard_component",
174
+ "unique_key": "standard_component_label_foz8dgwh9i4egqierj01",
175
+ "label": "Warning",
176
+ "entity": "test_setting",
177
+ "format": "<p><strong style=\"font-size: 1.17em;\">Warning</strong><br></p>",
178
+ "hide_label": true
179
+ }
180
+ ],
181
+ []
182
+ ]
183
+ }
184
+ },
185
+ {
186
+ "key": "2jzd0me81e3s6qzcpfku",
187
+ "type": "column",
188
+ "layout": {
189
+ "num_of_col": 6,
190
+ "fields": [
191
+ [
192
+ {
193
+ "field": "color_picker",
194
+ "type": "standard_component",
195
+ "unique_key": "standard_component_color_picker_shibr219f12e5hvlrml8",
196
+ "key": "toast.toast_warning_background_color",
197
+ "label": "Background Color",
198
+ "link_type": "key",
199
+ "trigger": [],
200
+ "allow_alpha": false
201
+ }
202
+ ],
203
+ [
204
+ {
205
+ "field": "color_picker",
206
+ "type": "standard_component",
207
+ "unique_key": "standard_component_color_picker_xxmon5qym40fs2rcacur",
208
+ "key": "toast.toast_warning_title_color",
209
+ "label": "Title Color",
210
+ "link_type": "key",
211
+ "trigger": [],
212
+ "allow_alpha": false
213
+ }
214
+ ],
215
+ [
216
+ {
217
+ "field": "color_picker",
218
+ "type": "standard_component",
219
+ "unique_key": "standard_component_color_picker_jrvq8h7s7j315xwt256f",
220
+ "key": "toast.toast_warning_description_color",
221
+ "label": "Description Color",
222
+ "link_type": "key",
223
+ "trigger": [],
224
+ "allow_alpha": false
225
+ }
226
+ ],
227
+ [
228
+ {
229
+ "field": "input_icon",
230
+ "type": "standard_component",
231
+ "unique_key": "standard_component_color_picker_b55rbarjdja210hrol3s",
232
+ "key": "toast.toast_warning_icon",
233
+ "label": "Icon",
234
+ "link_type": "key",
235
+ "trigger": [],
236
+ "allow_alpha": false
237
+ }
238
+ ]
239
+ ]
240
+ }
241
+ },
242
+ {
243
+ "key": "ozwgbp3ibwxt2hkyz1o8",
244
+ "type": "column",
245
+ "layout": {
246
+ "num_of_col": 2,
247
+ "fields": [
248
+ [
249
+ {
250
+ "field": "label",
251
+ "type": "standard_component",
252
+ "unique_key": "standard_component_label_whbnp0az2nxih6te7be2",
253
+ "label": "Error",
254
+ "entity": "test_setting",
255
+ "format": "<p><strong style=\"font-size: 1.17em;\">Error</strong><br></p>",
256
+ "hide_label": true
257
+ }
258
+ ],
259
+ []
260
+ ]
261
+ }
262
+ },
263
+ {
264
+ "key": "xq8f99olnf4l68e0bxi9",
265
+ "type": "column",
266
+ "layout": {
267
+ "num_of_col": 6,
268
+ "fields": [
269
+ [
270
+ {
271
+ "field": "color_picker",
272
+ "type": "standard_component",
273
+ "unique_key": "standard_component_color_picker_jnwu0vkwut00tqukkzs9",
274
+ "key": "toast.toast_error_background_color",
275
+ "label": "Background Color",
276
+ "link_type": "key",
277
+ "trigger": [],
278
+ "allow_alpha": false
279
+ }
280
+ ],
281
+ [
282
+ {
283
+ "field": "color_picker",
284
+ "type": "standard_component",
285
+ "unique_key": "standard_component_color_picker_6nlhesbbdvdk9e3d0hf1",
286
+ "key": "toast.toast_error_title_color",
287
+ "label": "Title Color",
288
+ "link_type": "key",
289
+ "trigger": [],
290
+ "allow_alpha": false
291
+ }
292
+ ],
293
+ [
294
+ {
295
+ "field": "color_picker",
296
+ "type": "standard_component",
297
+ "unique_key": "standard_component_color_picker_ie93e244xxm7r7wg4uep",
298
+ "key": "toast.toast_error_description_color",
299
+ "label": "Description Color",
300
+ "link_type": "key",
301
+ "trigger": [],
302
+ "allow_alpha": false
303
+ }
304
+ ],
305
+ [
306
+ {
307
+ "field": "input_icon",
308
+ "type": "standard_component",
309
+ "unique_key": "standard_component_color_picker_qcf6m48g8ki6vg7kvdb1",
310
+ "key": "toast.toast_error_icon",
311
+ "label": "Icon",
312
+ "link_type": "key",
313
+ "trigger": [],
314
+ "allow_alpha": false
315
+ }
316
+ ]
317
+ ]
318
+ }
319
+ }
320
+ ],
321
+ "redirect_mode": "refresh"
322
+ },
323
+ "name": "Toast",
324
+ "code": "toast",
325
+ "type": [
326
+ "form"
327
+ ],
328
+ "allow_actions": [
329
+ {
330
+ "action": "create",
331
+ "role_restrictions": []
332
+ },
333
+ {
334
+ "action": "update",
335
+ "role_restrictions": []
336
+ }
337
+ ],
338
+ "deploy_package_settings": [
339
+ "general"
340
+ ],
341
+ "restriction": [],
342
+ "hide_activity_log": true,
343
+ "show_refresh": false
344
+ }