@hed-hog/core 0.0.295 → 0.0.297

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 (146) hide show
  1. package/dist/auth/auth.controller.d.ts +5 -5
  2. package/dist/auth/auth.service.d.ts +5 -5
  3. package/dist/challenge/challenge.service.d.ts +2 -2
  4. package/dist/core.module.d.ts.map +1 -1
  5. package/dist/core.module.js +4 -1
  6. package/dist/core.module.js.map +1 -1
  7. package/dist/dashboard/dashboard-core/dashboard-core.controller.d.ts +1 -1
  8. package/dist/dashboard/dashboard-core/dashboard-core.service.d.ts +2 -2
  9. package/dist/index.d.ts +13 -0
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +14 -0
  12. package/dist/index.js.map +1 -1
  13. package/dist/integration/index.d.ts +4 -0
  14. package/dist/integration/index.d.ts.map +1 -0
  15. package/dist/integration/index.js +20 -0
  16. package/dist/integration/index.js.map +1 -0
  17. package/dist/integration/integration-api.validation.d.ts +2 -0
  18. package/dist/integration/integration-api.validation.d.ts.map +1 -0
  19. package/dist/integration/integration-api.validation.js +126 -0
  20. package/dist/integration/integration-api.validation.js.map +1 -0
  21. package/dist/integration/integration.module.d.ts +3 -0
  22. package/dist/integration/integration.module.d.ts.map +1 -0
  23. package/dist/integration/integration.module.js +54 -0
  24. package/dist/integration/integration.module.js.map +1 -0
  25. package/dist/integration/services/domain-event.publisher.d.ts +31 -0
  26. package/dist/integration/services/domain-event.publisher.d.ts.map +1 -0
  27. package/dist/integration/services/domain-event.publisher.js +79 -0
  28. package/dist/integration/services/domain-event.publisher.js.map +1 -0
  29. package/dist/integration/services/event-subscriber.registry.d.ts +37 -0
  30. package/dist/integration/services/event-subscriber.registry.d.ts.map +1 -0
  31. package/dist/integration/services/event-subscriber.registry.js +86 -0
  32. package/dist/integration/services/event-subscriber.registry.js.map +1 -0
  33. package/dist/integration/services/inbox.service.d.ts +55 -0
  34. package/dist/integration/services/inbox.service.d.ts.map +1 -0
  35. package/dist/integration/services/inbox.service.js +173 -0
  36. package/dist/integration/services/inbox.service.js.map +1 -0
  37. package/dist/integration/services/index.d.ts +12 -0
  38. package/dist/integration/services/index.d.ts.map +1 -0
  39. package/dist/integration/services/index.js +28 -0
  40. package/dist/integration/services/index.js.map +1 -0
  41. package/dist/integration/services/integration-developer-api.service.d.ts +30 -0
  42. package/dist/integration/services/integration-developer-api.service.d.ts.map +1 -0
  43. package/dist/integration/services/integration-developer-api.service.js +55 -0
  44. package/dist/integration/services/integration-developer-api.service.js.map +1 -0
  45. package/dist/integration/services/integration-link.service.d.ts +52 -0
  46. package/dist/integration/services/integration-link.service.d.ts.map +1 -0
  47. package/dist/integration/services/integration-link.service.js +128 -0
  48. package/dist/integration/services/integration-link.service.js.map +1 -0
  49. package/dist/integration/services/integration-settings.service.d.ts +23 -0
  50. package/dist/integration/services/integration-settings.service.d.ts.map +1 -0
  51. package/dist/integration/services/integration-settings.service.js +81 -0
  52. package/dist/integration/services/integration-settings.service.js.map +1 -0
  53. package/dist/integration/services/outbox-polling.coordinator.d.ts +45 -0
  54. package/dist/integration/services/outbox-polling.coordinator.d.ts.map +1 -0
  55. package/dist/integration/services/outbox-polling.coordinator.js +143 -0
  56. package/dist/integration/services/outbox-polling.coordinator.js.map +1 -0
  57. package/dist/integration/services/outbox.notifier.d.ts +30 -0
  58. package/dist/integration/services/outbox.notifier.d.ts.map +1 -0
  59. package/dist/integration/services/outbox.notifier.js +57 -0
  60. package/dist/integration/services/outbox.notifier.js.map +1 -0
  61. package/dist/integration/services/outbox.processor.d.ts +42 -0
  62. package/dist/integration/services/outbox.processor.d.ts.map +1 -0
  63. package/dist/integration/services/outbox.processor.job.d.ts +43 -0
  64. package/dist/integration/services/outbox.processor.job.d.ts.map +1 -0
  65. package/dist/integration/services/outbox.processor.job.js +100 -0
  66. package/dist/integration/services/outbox.processor.job.js.map +1 -0
  67. package/dist/integration/services/outbox.processor.js +208 -0
  68. package/dist/integration/services/outbox.processor.js.map +1 -0
  69. package/dist/integration/services/outbox.service.d.ts +53 -0
  70. package/dist/integration/services/outbox.service.d.ts.map +1 -0
  71. package/dist/integration/services/outbox.service.js +149 -0
  72. package/dist/integration/services/outbox.service.js.map +1 -0
  73. package/dist/integration/types/event.types.d.ts +88 -0
  74. package/dist/integration/types/event.types.d.ts.map +1 -0
  75. package/dist/integration/types/event.types.js +35 -0
  76. package/dist/integration/types/event.types.js.map +1 -0
  77. package/dist/integration/types/index.d.ts +3 -0
  78. package/dist/integration/types/index.d.ts.map +1 -0
  79. package/dist/integration/types/index.js +19 -0
  80. package/dist/integration/types/index.js.map +1 -0
  81. package/dist/integration/types/subscriber.types.d.ts +31 -0
  82. package/dist/integration/types/subscriber.types.d.ts.map +1 -0
  83. package/dist/integration/types/subscriber.types.js +3 -0
  84. package/dist/integration/types/subscriber.types.js.map +1 -0
  85. package/dist/oauth/oauth.controller.js.map +1 -1
  86. package/dist/oauth/oauth.service.d.ts +3 -3
  87. package/dist/oauth/oauth.service.d.ts.map +1 -1
  88. package/dist/oauth/oauth.service.js.map +1 -1
  89. package/dist/profile/profile.controller.d.ts +6 -6
  90. package/dist/profile/profile.service.d.ts +6 -6
  91. package/dist/session/session.controller.d.ts +2 -2
  92. package/dist/session/session.service.d.ts +3 -3
  93. package/dist/setting/setting.controller.d.ts +13 -9
  94. package/dist/setting/setting.controller.d.ts.map +1 -1
  95. package/dist/setting/setting.service.d.ts +14 -10
  96. package/dist/setting/setting.service.d.ts.map +1 -1
  97. package/dist/setting/setting.service.js +21 -1
  98. package/dist/setting/setting.service.js.map +1 -1
  99. package/dist/user/user.controller.d.ts +6 -6
  100. package/dist/user/user.service.d.ts +12 -12
  101. package/hedhog/data/dashboard_component_role.yaml +223 -223
  102. package/hedhog/data/dashboard_role.yaml +18 -18
  103. package/hedhog/data/route.yaml +2 -0
  104. package/hedhog/data/setting_group.yaml +955 -470
  105. package/hedhog/data/setting_subgroup.yaml +303 -0
  106. package/hedhog/frontend/app/configurations/[slug]/components/setting-field.tsx.ejs +44 -18
  107. package/hedhog/frontend/app/configurations/[slug]/page.tsx.ejs +134 -27
  108. package/hedhog/frontend/app/configurations/layout.tsx.ejs +84 -23
  109. package/hedhog/frontend/app/dashboard/components/widgets/permissions-chart.tsx.ejs +62 -62
  110. package/hedhog/frontend/app/dashboard/page.tsx.ejs +29 -29
  111. package/hedhog/frontend/app/preferences/page.tsx.ejs +2 -5
  112. package/hedhog/table/inbox_event.yaml +40 -0
  113. package/hedhog/table/integration_link.yaml +33 -0
  114. package/hedhog/table/outbox_event.yaml +45 -0
  115. package/hedhog/table/setting.yaml +7 -0
  116. package/hedhog/table/setting_subgroup.yaml +19 -0
  117. package/package.json +8 -8
  118. package/src/ai/ai.service.ts +3 -3
  119. package/src/auth/auth.controller.ts +11 -11
  120. package/src/auth/auth.service.ts +8 -8
  121. package/src/core.module.ts +4 -1
  122. package/src/index.ts +15 -0
  123. package/src/integration/README.md +397 -0
  124. package/src/integration/USAGE_EXAMPLE.md +279 -0
  125. package/src/integration/index.ts +4 -0
  126. package/src/integration/integration-api.validation.ts +154 -0
  127. package/src/integration/integration.module.ts +53 -0
  128. package/src/integration/services/domain-event.publisher.ts +136 -0
  129. package/src/integration/services/event-subscriber.registry.ts +89 -0
  130. package/src/integration/services/inbox.service.ts +218 -0
  131. package/src/integration/services/index.ts +12 -0
  132. package/src/integration/services/integration-developer-api.service.ts +96 -0
  133. package/src/integration/services/integration-link.service.ts +154 -0
  134. package/src/integration/services/integration-settings.service.ts +128 -0
  135. package/src/integration/services/outbox-polling.coordinator.ts +146 -0
  136. package/src/integration/services/outbox.notifier.ts +48 -0
  137. package/src/integration/services/outbox.processor.job.ts +97 -0
  138. package/src/integration/services/outbox.processor.ts +266 -0
  139. package/src/integration/services/outbox.service.ts +209 -0
  140. package/src/integration/types/event.types.ts +93 -0
  141. package/src/integration/types/index.ts +3 -0
  142. package/src/integration/types/subscriber.types.ts +37 -0
  143. package/src/oauth/oauth.controller.ts +17 -17
  144. package/src/oauth/oauth.service.ts +20 -20
  145. package/src/setting/setting.service.ts +27 -2
  146. package/src/task/task.service.ts +5 -5
@@ -4,18 +4,18 @@
4
4
  en: General
5
5
  pt: Geral
6
6
  description:
7
- en: General settings and configurations.
8
- pt: Configurações e definições gerais.
7
+ en: General system settings and basic configurations
8
+ pt: Configurações gerais do sistema e configurações básicas
9
9
  relations:
10
10
  setting:
11
11
  - slug: url
12
12
  type: string
13
13
  name:
14
- en: Base URL
15
- pt: URL Base
14
+ en: System URL
15
+ pt: URL do Sistema
16
16
  description:
17
- en: The base URL of the system
18
- pt: A URL base do sistema
17
+ en: The public-facing base URL of the system for client requests and redirects
18
+ pt: A URL base acessível publicamente do sistema para requisições e redirecionamentos de clientes
19
19
  value: http://localhost:3200
20
20
  user_override: false
21
21
  - slug: api-url
@@ -24,19 +24,19 @@
24
24
  en: API URL
25
25
  pt: URL da API
26
26
  description:
27
- en: The API URL of the system
28
- pt: A URL da API do sistema
27
+ en: The endpoint URL where the API server is accessible
28
+ pt: A URL do endpoint onde o servidor da API está acessível
29
29
  value: http://localhost:3100
30
30
  user_override: false
31
31
  - slug: installed
32
32
  type: boolean
33
33
  component: switch
34
34
  name:
35
- en: Installed
36
- pt: Instalado
35
+ en: Installation Status
36
+ pt: Status de Instalação
37
37
  description:
38
- en: Whether the system has already been installed
39
- pt: Se o sistema ja foi instalado
38
+ en: Indicates whether the system has completed initial setup and installation procedures
39
+ pt: Indica se o sistema completou os procedimentos de instalação e configuração inicial
40
40
  value: false
41
41
  user_override: false
42
42
  - slug: maintenance
@@ -45,64 +45,62 @@
45
45
  en: Maintenance
46
46
  pt: Manutenção
47
47
  description:
48
- en: Database maintenance and cleanup settings.
49
- pt: Configurações de manutenção e limpeza do banco de dados.
48
+ en: Database maintenance, cleanup operations, and retention policies for long-term system health
49
+ pt: Manutenção do banco de dados, operações de limpeza e políticas de retenção para a saúde do sistema a longo prazo
50
50
  relations:
51
51
  setting:
52
52
  - slug: cleanup-batch-limit
53
53
  type: number
54
54
  component: input-number
55
55
  name:
56
- en: Cleanup Batch Limit
57
- pt: Limite de Lote de Limpeza
56
+ en: Batch Limit
57
+ pt: Limite de Lote
58
58
  description:
59
- en: Maximum number of records to delete per cleanup task execution to avoid long table locks
60
- pt: Número máximo de registros a deletar por execução de tarefa de limpeza para evitar locks prolongados da tabela
59
+ en: Maximum number of records to delete per cleanup task execution. Smaller values prevent long table locks but increase cleanup duration
60
+ pt: Número máximo de registros a deletar por execução de tarefa de limpeza. Valores menores evitam locks prolongados mas aumentam a duração da limpeza
61
61
  value: 20000
62
62
  user_override: false
63
+ subgroup_id:
64
+ where:
65
+ slug: database-cleanup
63
66
  - slug: session-retention-days
64
67
  type: number
65
68
  component: input-number
66
69
  name:
67
- en: Session Retention Days
68
- pt: Dias de Retenção de Sessão
70
+ en: Retention Period
71
+ pt: Período de Retenção
69
72
  description:
70
- en: Number of days to retain expired sessions before permanent deletion for audit purposes
71
- pt: Número de dias para reter sessões expiradas antes da exclusão permanente para fins de auditoria
73
+ en: Number of days to retain expired sessions before permanent deletion. Required for audit trails and compliance purposes
74
+ pt: Número de dias para reter sessões expiradas antes da exclusão permanente. Necessário para trilhas de auditoria e fins de conformidade
72
75
  value: 90
73
76
  user_override: false
77
+ subgroup_id:
78
+ where:
79
+ slug: session-retention
74
80
  - slug: authentication
75
81
  icon: lock-password
76
82
  name:
77
83
  en: Authentication
78
84
  pt: Autenticação
79
85
  description:
80
- en: Configure the authentication settings.
81
- pt: Configurar as definições de autenticação.
86
+ en: Configure authentication methods, security policies, and credentials for user access control
87
+ pt: Configure métodos de autenticação, políticas de segurança e credenciais para controle de acesso de usuários
82
88
  relations:
83
89
  setting:
84
90
  - slug: disable-authentication-with-email-and-password
85
91
  type: boolean
86
92
  component: switch
87
93
  name:
88
- en: Disable Authentication with Email and Password
89
- pt: Desabilitar Autenticação com Email e Senha
94
+ en: Disable Email/Password Auth
95
+ pt: Desabilitar Auth Email/Senha
90
96
  description:
91
- en: Disable the authentication with email and password, allowing only OAuth and passwordless authentication methods
92
- pt: Desabilitar a autenticação com email e senha, permitindo apenas métodos de autenticação OAuth e sem senha
93
- value: false
94
- user_override: false
95
- - slug: require-mfa
96
- type: boolean
97
- component: switch
98
- name:
99
- en: Require MFA
100
- pt: Exigir MFA
101
- description:
102
- en: Require all users to have at least one active MFA method
103
- pt: Exigir que todos os usuários tenham pelo menos um método de MFA ativo
97
+ en: Prevent user authentication using email and password credentials, enforcing OAuth or passwordless authentication
98
+ pt: Impedir autenticação de usuários usando credenciais de email e senha, forçando autenticação OAuth ou sem senha
104
99
  value: false
105
100
  user_override: false
101
+ subgroup_id:
102
+ where:
103
+ slug: email-password-auth
106
104
  - slug: require-email-verification
107
105
  type: boolean
108
106
  component: switch
@@ -110,144 +108,208 @@
110
108
  en: Require Email Verification
111
109
  pt: Exigir Verificação de Email
112
110
  description:
113
- en: Only allow user registration with verified email addresses
114
- pt: Permitir apenas cadastros de usuários com endereços de email verificados
111
+ en: Require users to verify their email address before account activation and system access
112
+ pt: Exigir que os usuários verifiquem seus endereços de email antes da ativação da conta e acesso ao sistema
115
113
  value: false
116
114
  user_override: false
117
- - slug: refresh-token-expiration-minutes
115
+ subgroup_id:
116
+ where:
117
+ slug: email-password-auth
118
+ - slug: password-min-length
118
119
  type: number
119
120
  component: input-number
120
121
  name:
121
- en: Refresh Token Expiration Minutes
122
- pt: Minutos de Expiração do Token de Atualização
122
+ en: Minimum Length
123
+ pt: Comprimento Mínimo
123
124
  description:
124
- en: The number of minutes before a refresh token expires
125
- pt: O número de minutos antes de um token de atualização expirar
126
- value: 43200
125
+ en: Minimum number of characters required for passwords
126
+ pt: Número mínimo de caracteres obrigatórios para senhas
127
+ value: 6
127
128
  user_override: false
128
- - slug: access-token-expiration-minutes
129
+ subgroup_id:
130
+ where:
131
+ slug: password-policy
132
+ - slug: password-min-uppercase
129
133
  type: number
130
134
  component: input-number
131
135
  name:
132
- en: Access Token Expiration Minutes
133
- pt: Minutos de Expiração do Token de Acesso
136
+ en: Uppercase Letters
137
+ pt: Letras Maiúsculas
134
138
  description:
135
- en: The number of minutes before an access token expires
136
- pt: O número de minutos antes de um token de acesso expirar
137
- value: 15
139
+ en: Minimum number of uppercase letters (A-Z) required in passwords
140
+ pt: Número mínimo de letras maiúsculas (A-Z) obrigatórias em senhas
141
+ value: 0
138
142
  user_override: false
139
- - slug: mfa-challenge-expiration-minutes
143
+ subgroup_id:
144
+ where:
145
+ slug: password-policy
146
+ - slug: password-min-numbers
140
147
  type: number
141
148
  component: input-number
142
149
  name:
143
- en: MFA Challenge Expiration Minutes
144
- pt: Minutos de Expiração do Desafio MFA
150
+ en: Numeric Digits
151
+ pt: Dígitos Numéricos
145
152
  description:
146
- en: The number of minutes before a multifactor authentication challenge expires
147
- pt: O número de minutos antes de um desafio de autenticação multifatorial expirar
148
- value: 15
153
+ en: Minimum number of numeric digits (0-9) required in passwords
154
+ pt: Número mínimo de dígitos numéricos (0-9) obrigatórios em senhas
155
+ value: 0
156
+ user_override: false
157
+ subgroup_id:
158
+ where:
159
+ slug: password-policy
160
+ - slug: password-min-symbols
161
+ type: number
162
+ component: input-number
163
+ name:
164
+ en: Special Symbols
165
+ pt: Símbolos Especiais
166
+ description:
167
+ en: Minimum number of special characters (!@#$%^&*) required in passwords
168
+ pt: Número mínimo de caracteres especiais (!@#$%^&*) obrigatórios em senhas
169
+ value: 0
170
+ user_override: false
171
+ subgroup_id:
172
+ where:
173
+ slug: password-policy
174
+ - slug: email-host-whitelist
175
+ type: array
176
+ name:
177
+ en: Allowed Domains
178
+ pt: Domínios Permitidos
179
+ description:
180
+ en: List of email domain names allowed for registration. Leave empty to allow all domains
181
+ pt: Lista de nomes de domínios de email permitidos para registro. Deixe vazio para permitir todos os domínios
182
+ value: '[]'
183
+ user_override: false
184
+ component: input-tags
185
+ subgroup_id:
186
+ where:
187
+ slug: email-restrictions
188
+ - slug: email-host-blacklist
189
+ type: array
190
+ name:
191
+ en: Blocked Domains
192
+ pt: Domínios Bloqueados
193
+ description:
194
+ en: List of email domain names blocked from registration and login
195
+ pt: Lista de nomes de domínios de email bloqueados para registro e login
196
+ value: '[]'
149
197
  user_override: false
198
+ component: input-tags
199
+ subgroup_id:
200
+ where:
201
+ slug: email-restrictions
202
+ - slug: require-mfa
203
+ type: boolean
204
+ component: switch
205
+ name:
206
+ en: Require MFA
207
+ pt: Exigir MFA
208
+ description:
209
+ en: Enforce multi-factor authentication for all users to enhance security
210
+ pt: Forçar autenticação multifatorial para todos os usuários para aumentar a segurança
211
+ value: false
212
+ user_override: false
213
+ subgroup_id:
214
+ where:
215
+ slug: mfa-general
150
216
  - slug: mfa-issuer
151
217
  type: string
152
218
  name:
153
- en: Issuer
154
- pt: Emissor
219
+ en: Issuer Name
220
+ pt: Nome do Emissor
155
221
  description:
156
- en: The issuer of the multifactor authentication
157
- pt: O emissor da autenticação multifatorial
222
+ en: Application name displayed in authenticator apps (e.g., Google Authenticator, Authy)
223
+ pt: Nome do aplicativo exibido em aplicativos autenticadores (por exemplo, Google Authenticator, Authy)
158
224
  value: Hedhog
225
+ user_override: false
226
+ subgroup_id:
227
+ where:
228
+ slug: mfa-general
159
229
  - slug: mfa-window
160
230
  type: number
161
231
  component: input-number
162
232
  name:
163
- en: Window
164
- pt: Janela
233
+ en: Tolerance Window
234
+ pt: Janela de Tolerância
165
235
  description:
166
- en: The window value defines the tolerance margin for multifactor authentication, allowing to verify tokens that are within a specific range of counters (HOTP) or time periods (TOTP), both before and after the expected value.
167
- pt: O valor window define a margem de tolerância para autenticação multifatorial, permitindo verificar tokens que estão dentro de um intervalo específico de contadores (HOTP) ou períodos de tempo (TOTP), tanto antes quanto depois do valor esperado.
236
+ en: Number of time periods (30-second intervals) to accept as valid before/after the current token. Higher values increase security tolerance
237
+ pt: Número de períodos de tempo (intervalos de 30 segundos) para aceitar como válido antes/depois do token atual. Valores maiores aumentam a tolerância de segurança
168
238
  value: 1
239
+ user_override: false
240
+ subgroup_id:
241
+ where:
242
+ slug: mfa-totp
169
243
  - slug: mfa-setp
170
244
  type: number
171
245
  component: input-number
172
246
  name:
173
- en: Step
174
- pt: Passo
247
+ en: Time Step (seconds)
248
+ pt: Intervalo de Tempo (segundos)
175
249
  description:
176
- en: The step in seconds that determines how long a code will be available in the user's app for multifactor authentication
177
- pt: O passo em segundos que determina por quanto tempo um código ficará disponível no aplicativo do usuário para autenticação multifatorial
250
+ en: Duration in seconds each one-time password code remains valid. Standard is 30 seconds
251
+ pt: Duração em segundos que cada código de senha única permanece válido. O padrão é 30 segundos
178
252
  value: 30
179
- - slug: password-min-length
253
+ user_override: false
254
+ subgroup_id:
255
+ where:
256
+ slug: mfa-totp
257
+ - slug: mfa-email-code-length
180
258
  type: number
181
259
  component: input-number
182
260
  name:
183
- en: Password Minimum Length
184
- pt: Comprimento Mínimo da Senha
261
+ en: Code Length
262
+ pt: Comprimento do Código
185
263
  description:
186
- en: The minimum length required for user passwords
187
- pt: O comprimento mínimo exigido para senhas de usuários
264
+ en: Number of digits for email-based MFA codes sent to user email
265
+ pt: Número de dígitos para códigos de MFA baseados em email enviados para o email do usuário
188
266
  value: 6
189
- - slug: password-min-uppercase
190
- type: number
191
- component: input-number
192
- name:
193
- en: Password Minimum Uppercase Letters
194
- pt: Mínimo de Letras Maiúsculas na Senha
195
- description:
196
- en: The minimum number of uppercase letters required for user passwords
197
- pt: O número mínimo de letras maiúsculas exigidas para senhas de usuários
198
- value: 0
199
- - slug: password-min-numbers
267
+ user_override: false
268
+ subgroup_id:
269
+ where:
270
+ slug: mfa-email
271
+ - slug: mfa-challenge-expiration-minutes
200
272
  type: number
201
273
  component: input-number
202
274
  name:
203
- en: Password Minimum Numbers
204
- pt: Mínimo de Números na Senha
275
+ en: Challenge Expiration
276
+ pt: Expiração do Desafio
205
277
  description:
206
- en: The minimum number of numeric digits required for user passwords
207
- pt: O número mínimo de dígitos numéricos exigidos para senhas de usuários
208
- value: 0
209
- - slug: password-min-symbols
278
+ en: Minutes before an MFA challenge expires and becomes invalid
279
+ pt: Minutos antes de um desafio de MFA expirar e se tornar inválido
280
+ value: 15
281
+ user_override: false
282
+ subgroup_id:
283
+ where:
284
+ slug: mfa-general
285
+ - slug: access-token-expiration-minutes
210
286
  type: number
211
287
  component: input-number
212
288
  name:
213
- en: Password Minimum Symbols
214
- pt: Mínimo de Símbolos na Senha
289
+ en: Access Token Lifetime
290
+ pt: Duração do Token de Acesso
215
291
  description:
216
- en: The minimum number of special symbols required for user passwords
217
- pt: O número mínimo de símbolos especiais exigidos para senhas de usuários
218
- value: 0
219
- - slug: email-host-whitelist
220
- type: array
221
- name:
222
- en: Email Host Whitelist
223
- pt: Lista de Hosts de Email Permitidos
224
- description:
225
- en: The list of allowed email hosts for user registration and login
226
- pt: A lista de hosts de email permitidos para registro e login de usuários
227
- value: '[]'
228
- user_override: false
229
- component: input-tags
230
- - slug: email-host-blacklist
231
- type: array
232
- name:
233
- en: Email Host Blacklist
234
- pt: Lista de Hosts de Email Bloqueados
235
- description:
236
- en: The list of blocked email hosts for user registration and login
237
- pt: A lista de hosts de email bloqueados para registro e login de usuários
238
- value: '[]'
292
+ en: Minutes before an access token expires. Shorter durations improve security but increase token refresh frequency
293
+ pt: Minutos antes de um token de acesso expirar. Durações mais curtas melhoram a segurança mas aumentam a frequência de atualização de tokens
294
+ value: 15
239
295
  user_override: false
240
- component: input-tags
241
- - slug: mfa-email-code-length
296
+ subgroup_id:
297
+ where:
298
+ slug: token-configuration
299
+ - slug: refresh-token-expiration-minutes
242
300
  type: number
243
301
  component: input-number
244
302
  name:
245
- en: MFA Email Code Length
246
- pt: Comprimento do Código de Email MFA
303
+ en: Refresh Token Lifetime
304
+ pt: Duração do Token de Atualização
247
305
  description:
248
- en: The length of the multifactor authentication email code
249
- pt: O comprimento do código de email de autenticação multifatorial
250
- value: 6
306
+ en: Minutes before a refresh token expires. Used to obtain new access tokens without re-authentication
307
+ pt: Minutos antes de um token de atualização expirar. Usado para obter novos tokens de acesso sem re-autenticação
308
+ value: 43200
309
+ user_override: false
310
+ subgroup_id:
311
+ where:
312
+ slug: token-configuration
251
313
  - slug: max-concurrent-sessions
252
314
  type: number
253
315
  component: input-number
@@ -255,18 +317,21 @@
255
317
  en: Max Concurrent Sessions
256
318
  pt: Máximo de Sessões Simultâneas
257
319
  description:
258
- en: Maximum number of active sessions per user. Set to 0 for unlimited sessions. When limit is reached, oldest sessions will be expired automatically.
259
- pt: Número máximo de sessões ativas por usuário. Defina como 0 para sessões ilimitadas. Quando o limite for atingido, as sessões mais antigas serão expiradas automaticamente.
320
+ en: Maximum number of active sessions per user (0 = unlimited). Oldest sessions expire automatically when limit is reached
321
+ pt: Número máximo de sessões ativas por usuário (0 = ilimitado). As sessões mais antigas expiram automaticamente quando o limite é atingido
260
322
  value: 0
261
323
  user_override: false
324
+ subgroup_id:
325
+ where:
326
+ slug: session-management
262
327
  - slug: localization
263
328
  icon: world
264
329
  name:
265
330
  en: Localization
266
331
  pt: Localização
267
332
  description:
268
- en: Configure the localization setting.
269
- pt: Configurar as definições de localização.
333
+ en: Configure language, timezone, and date/time formatting globally or per-user preference
334
+ pt: Configure idioma, fuso horário e formatação de data/hora globalmente ou por preferência do usuário
270
335
  relations:
271
336
  setting:
272
337
  - slug: language
@@ -275,10 +340,8 @@
275
340
  en: Default Language
276
341
  pt: Idioma Padrão
277
342
  description:
278
- en: The system default language, each user can have their own preferred language
279
- pt:
280
- O idioma padrão do sistema, cada usuário pode ter o seu próprio idioma
281
- preferido
343
+ en: System default language for all users. Each user can override this with their own preference
344
+ pt: Idioma padrão do sistema para todos os usuários. Cada usuário pode substituir isso com sua própria preferência
282
345
  value: en
283
346
  user_override: true
284
347
  component: combobox
@@ -288,6 +351,9 @@
288
351
  order: 0
289
352
  - value: pt
290
353
  order: 1
354
+ subgroup_id:
355
+ where:
356
+ slug: regional-settings
291
357
  - slug: timezone
292
358
  type: string
293
359
  component: combobox
@@ -295,8 +361,8 @@
295
361
  en: Timezone
296
362
  pt: Fuso Horário
297
363
  description:
298
- en: The timezone to use
299
- pt: O fuso horário a utilizar
364
+ en: Default timezone for the system. Users can override this setting based on their location
365
+ pt: Fuso horário padrão para o sistema. Os usuários podem substituir essa configuração com base em sua localização
300
366
  value: UTC
301
367
  user_override: true
302
368
  relations:
@@ -317,6 +383,9 @@
317
383
  order: 6
318
384
  - value: Australia/Sydney
319
385
  order: 7
386
+ subgroup_id:
387
+ where:
388
+ slug: regional-settings
320
389
  - slug: time-format
321
390
  type: string
322
391
  component: combobox
@@ -324,8 +393,8 @@
324
393
  en: Time Format
325
394
  pt: Formato de Hora
326
395
  description:
327
- en: How times will be displayed
328
- pt: Como as horas serão exibidas
396
+ en: How times are displayed throughout the system (24-hour or 12-hour format)
397
+ pt: Como os horários são exibidos em todo o sistema (formato 24 horas ou 12 horas)
329
398
  value: HH:mm:ss
330
399
  user_override: true
331
400
  relations:
@@ -340,6 +409,9 @@
340
409
  order: 3
341
410
  - value: hh:mm
342
411
  order: 4
412
+ subgroup_id:
413
+ where:
414
+ slug: date-time-formats
343
415
  - slug: date-format
344
416
  type: string
345
417
  component: combobox
@@ -347,8 +419,8 @@
347
419
  en: Date Format
348
420
  pt: Formato de Data
349
421
  description:
350
- en: How dates will be displayed
351
- pt: Como as datas serão exibidas
422
+ en: How dates are displayed throughout the system
423
+ pt: Como as datas são exibidas em todo o sistema
352
424
  value: dd/MM/yyyy
353
425
  user_override: true
354
426
  relations:
@@ -359,24 +431,27 @@
359
431
  order: 1
360
432
  - value: yyyy-MM-dd
361
433
  order: 2
434
+ subgroup_id:
435
+ where:
436
+ slug: date-time-formats
362
437
  - slug: oauth
363
438
  icon: brand-auth0
364
439
  name:
365
440
  en: OAuth
366
441
  pt: OAuth
367
442
  description:
368
- en: OAuth settings and configurations.
369
- pt: Configurações e definições do OAuth.
443
+ en: Configure OAuth providers and authentication settings for third-party identity integration
444
+ pt: Configure provedores OAuth e configurações de autenticação para integração de identidade de terceiros
370
445
  relations:
371
446
  setting:
372
447
  - slug: providers
373
448
  type: array
374
449
  name:
375
- en: Providers
376
- pt: Provedores
450
+ en: Enabled Providers
451
+ pt: Provedores Habilitados
377
452
  description:
378
- en: The OAuth providers accepted
379
- pt: Os provedores de OAuth aceitos
453
+ en: List of OAuth providers available for user authentication
454
+ pt: Lista de provedores OAuth disponíveis para autenticação de usuários
380
455
  value: '[]'
381
456
  component: checkbox
382
457
  relations:
@@ -391,15 +466,18 @@
391
466
  order: 3
392
467
  - value: microsoft-entra-id
393
468
  order: 4
469
+ subgroup_id:
470
+ where:
471
+ slug: oauth-general
394
472
  - slug: oauth-role-assignment
395
473
  type: array
396
474
  component: checkbox
397
475
  name:
398
- en: OAuth Role Assignment
399
- pt: Atribuição de Função OAuth
476
+ en: Default Role
477
+ pt: Função Padrão
400
478
  description:
401
- en: The role assigned to users who register via OAuth. If not set, the default role will be assigned.
402
- pt: A função atribuída aos usuários que se registram via OAuth. Se não definido, a função padrão será atribuída.
479
+ en: Role automatically assigned to new users registering via OAuth providers. If not set, the system default role is used
480
+ pt: Função atribuída automaticamente a novos usuários registrados via provedores OAuth. Se não definido, a função padrão do sistema é usada
403
481
  value: ""
404
482
  user_override: false
405
483
  relations:
@@ -410,35 +488,44 @@
410
488
  order: 1
411
489
  - value: user
412
490
  order: 2
491
+ subgroup_id:
492
+ where:
493
+ slug: oauth-general
413
494
  - slug: microsoft_entra_id_client_id
414
495
  type: string
415
496
  name:
416
- en: Microsoft Entra ID Client ID
417
- pt: ID do Cliente Microsoft Entra ID
497
+ en: Client ID
498
+ pt: ID do Cliente
418
499
  description:
419
- en: The client ID for Microsoft Entra ID OAuth
420
- pt: O ID do cliente para o OAuth do Microsoft Entra ID
500
+ en: Azure/Microsoft Entra ID application client ID for OAuth authentication
501
+ pt: ID do cliente da aplicação Azure/Microsoft Entra ID para autenticação OAuth
421
502
  value: ""
422
503
  user_override: false
504
+ subgroup_id:
505
+ where:
506
+ slug: microsoft-entra-id
423
507
  - slug: microsoft_entra_id_client_secret
424
508
  type: secret
425
509
  component: input-secret
426
510
  name:
427
- en: Microsoft Entra ID Client Secret
428
- pt: Segredo do Cliente Microsoft Entra ID
511
+ en: Client Secret
512
+ pt: Segredo do Cliente
429
513
  description:
430
- en: The client secret for Microsoft Entra ID OAuth
431
- pt: O segredo do cliente para o OAuth do Microsoft Entra ID
514
+ en: Microsoft Entra ID OAuth client secret credential
515
+ pt: Credencial de segredo do cliente OAuth do Microsoft Entra ID
432
516
  value: ""
433
517
  user_override: false
518
+ subgroup_id:
519
+ where:
520
+ slug: microsoft-entra-id
434
521
  - slug: microsoft_entra_id_scopes
435
522
  type: array
436
523
  name:
437
- en: Microsoft Entra ID Scopes
438
- pt: Escopos do Microsoft Entra ID
524
+ en: OAuth Scopes
525
+ pt: Escopos OAuth
439
526
  description:
440
- en: The scopes for Microsoft Entra ID OAuth
441
- pt: Os escopos para o OAuth do Microsoft Entra ID
527
+ en: Permissions requested from the user during Microsoft Entra ID OAuth flow
528
+ pt: Permissões solicitadas ao usuário durante o fluxo OAuth do Microsoft Entra ID
442
529
  value: '["openid","profile","email","User.Read","offline_access"]'
443
530
  component: checkbox
444
531
  relations:
@@ -449,47 +536,60 @@
449
536
  order: 1
450
537
  - value: email
451
538
  order: 2
539
+ subgroup_id:
540
+ where:
541
+ slug: microsoft-entra-id
452
542
  - slug: microsoft_entra_id_tenant_id
453
543
  type: string
454
544
  name:
455
- en: Microsoft Entra ID Tenant ID
456
- pt: ID do Tenant Microsoft Entra ID
545
+ en: Tenant ID
546
+ pt: ID do Tenant
457
547
  description:
458
- en: The Azure AD tenant ID for corporate Microsoft Entra ID (Azure AD) authentication. Leave empty to use common endpoint for personal Microsoft accounts.
459
- pt: O ID do tenant do Azure AD para autenticação corporativa Microsoft Entra ID (Azure AD). Deixe vazio para usar o endpoint comum para contas pessoais da Microsoft.
548
+ en: Azure AD tenant ID for corporate Microsoft Entra ID authentication. Leave empty for personal Microsoft account endpoint
549
+ pt: ID do tenant do Azure AD para autenticação empresarial Microsoft Entra ID. Deixe vazio para o endpoint de conta pessoal da Microsoft
460
550
  value: ""
461
551
  user_override: false
552
+ subgroup_id:
553
+ where:
554
+ slug: microsoft-entra-id
462
555
  - slug: google_client_id
463
556
  type: string
464
557
  name:
465
- en: Google Client ID
466
- pt: ID do Cliente Google
558
+ en: Client ID
559
+ pt: ID do Cliente
467
560
  description:
468
- en: The client ID for Google OAuth
469
- pt: O ID do cliente para o OAuth do Google
561
+ en: Google OAuth application client ID
562
+ pt: ID do cliente da aplicação OAuth do Google
470
563
  value: ""
471
564
  user_override: false
565
+ subgroup_id:
566
+ where:
567
+ slug: google
472
568
  - slug: google_client_secret
473
569
  type: secret
474
570
  component: input-secret
475
571
  name:
476
- en: Google Client Secret
477
- pt: Segredo do Cliente Google
572
+ en: Client Secret
573
+ pt: Segredo do Cliente
478
574
  description:
479
- en: The client secret for Google OAuth
480
- pt: O segredo do cliente para o OAuth do Google
575
+ en: Google OAuth client secret credential
576
+ pt: Credencial de segredo do cliente OAuth do Google
481
577
  value: ""
482
578
  user_override: false
579
+ subgroup_id:
580
+ where:
581
+ slug: google
483
582
  - slug: google_scopes
484
583
  type: array
485
584
  name:
486
- en: Google Scopes
487
- pt: Escopos do Google
585
+ en: OAuth Scopes
586
+ pt: Escopos OAuth
488
587
  description:
489
- en: The scopes for Google OAuth
490
- pt: Os escopos para o OAuth do Google
588
+ en: Permissions requested from the user during Google OAuth flow
589
+ pt: Permissões solicitadas ao usuário durante o fluxo OAuth do Google
491
590
  value: '["email","profile"]'
492
591
  component: checkbox
592
+ user_override: false
493
593
  relations:
494
594
  setting_list:
495
595
  - value: email
@@ -498,36 +598,44 @@
498
598
  order: 1
499
599
  - value: openid
500
600
  order: 2
501
- user_override: false
601
+ subgroup_id:
602
+ where:
603
+ slug: google
502
604
  - slug: facebook_client_id
503
605
  type: string
504
606
  name:
505
- en: Facebook Client ID
506
- pt: ID do Cliente Facebook
607
+ en: Client ID
608
+ pt: ID do Cliente
507
609
  description:
508
- en: The client ID for Facebook OAuth
509
- pt: O ID do cliente para o OAuth do Facebook
610
+ en: Facebook OAuth application client ID
611
+ pt: ID do cliente da aplicação OAuth do Facebook
510
612
  value: ""
511
613
  user_override: false
614
+ subgroup_id:
615
+ where:
616
+ slug: facebook
512
617
  - slug: facebook_client_secret
513
618
  type: secret
514
619
  component: input-secret
515
620
  name:
516
- en: Facebook Client Secret
517
- pt: Segredo do Cliente Facebook
621
+ en: Client Secret
622
+ pt: Segredo do Cliente
518
623
  description:
519
- en: The client secret for Facebook OAuth
520
- pt: O segredo do cliente para o OAuth do Facebook
624
+ en: Facebook OAuth client secret credential
625
+ pt: Credencial de segredo do cliente OAuth do Facebook
521
626
  value: ""
522
627
  user_override: false
628
+ subgroup_id:
629
+ where:
630
+ slug: facebook
523
631
  - slug: facebook_scopes
524
632
  type: array
525
633
  name:
526
- en: Facebook Scopes
527
- pt: Escopos do Facebook
634
+ en: OAuth Scopes
635
+ pt: Escopos OAuth
528
636
  description:
529
- en: The scopes for Facebook OAuth
530
- pt: Os escopos para o OAuth do Facebook
637
+ en: Permissions requested from the user during Facebook OAuth flow
638
+ pt: Permissões solicitadas ao usuário durante o fluxo OAuth do Facebook
531
639
  value: '["id","emails","name","displayName","photos"]'
532
640
  user_override: false
533
641
  component: checkbox
@@ -543,35 +651,44 @@
543
651
  order: 3
544
652
  - value: photos
545
653
  order: 4
654
+ subgroup_id:
655
+ where:
656
+ slug: facebook
546
657
  - slug: microsoft_client_id
547
658
  type: string
548
659
  name:
549
- en: Microsoft Client ID
550
- pt: ID do Cliente Microsoft
660
+ en: Client ID
661
+ pt: ID do Cliente
551
662
  description:
552
- en: The client ID for Microsoft OAuth
553
- pt: O ID do cliente para o OAuth da Microsoft
663
+ en: Microsoft OAuth application client ID (Office/Personal)
664
+ pt: ID do cliente da aplicação OAuth da Microsoft (Office/Personal)
554
665
  value: ""
555
666
  user_override: false
667
+ subgroup_id:
668
+ where:
669
+ slug: microsoft
556
670
  - slug: microsoft_client_secret
557
671
  type: secret
558
672
  component: input-secret
559
673
  name:
560
- en: Microsoft Client Secret
561
- pt: Segredo do Cliente Microsoft
674
+ en: Client Secret
675
+ pt: Segredo do Cliente
562
676
  description:
563
- en: The client secret for Microsoft OAuth
564
- pt: O segredo do cliente para o OAuth da Microsoft
677
+ en: Microsoft OAuth client secret credential
678
+ pt: Credencial de segredo do cliente OAuth da Microsoft
565
679
  value: ""
566
680
  user_override: false
681
+ subgroup_id:
682
+ where:
683
+ slug: microsoft
567
684
  - slug: microsoft_scopes
568
685
  type: array
569
686
  name:
570
- en: Microsoft Scopes
571
- pt: Escopos da Microsoft
687
+ en: OAuth Scopes
688
+ pt: Escopos OAuth
572
689
  description:
573
- en: The scopes for Microsoft OAuth
574
- pt: Os escopos para o OAuth da Microsoft
690
+ en: Permissions requested from the user during Microsoft OAuth flow
691
+ pt: Permissões solicitadas ao usuário durante o fluxo OAuth da Microsoft
575
692
  value: '["openid","profile","email","User.Read","offline_access"]'
576
693
  component: checkbox
577
694
  relations:
@@ -586,46 +703,58 @@
586
703
  order: 3
587
704
  - value: offline_access
588
705
  order: 4
706
+ subgroup_id:
707
+ where:
708
+ slug: microsoft
589
709
  user_override: false
590
710
  - slug: microsoft_tenant_id
591
711
  type: string
592
712
  name:
593
- en: Microsoft Tenant ID
594
- pt: ID do Tenant Microsoft
713
+ en: Tenant ID
714
+ pt: ID do Tenant
595
715
  description:
596
- en: The Azure AD tenant ID for corporate Microsoft Entra ID (Azure AD) authentication. Leave empty to use common endpoint for personal Microsoft accounts.
597
- pt: O ID do tenant do Azure AD para autenticação corporativa Microsoft Entra ID (Azure AD). Deixe vazio para usar o endpoint comum para contas pessoais da Microsoft.
716
+ en: Azure AD tenant ID for corporate authentication (optional for personal accounts)
717
+ pt: ID do tenant do Azure AD para autenticação corporativa (opcional para contas pessoais)
598
718
  value: ""
599
719
  user_override: false
720
+ subgroup_id:
721
+ where:
722
+ slug: microsoft
600
723
  - slug: github_client_id
601
724
  type: string
602
725
  name:
603
- en: GitHub Client ID
604
- pt: ID do Cliente GitHub
726
+ en: Client ID
727
+ pt: ID do Cliente
605
728
  description:
606
- en: The client ID for GitHub OAuth
607
- pt: O ID do cliente para o OAuth do GitHub
729
+ en: GitHub OAuth application client ID
730
+ pt: ID do cliente da aplicação OAuth do GitHub
608
731
  value: ""
609
732
  user_override: false
733
+ subgroup_id:
734
+ where:
735
+ slug: github
610
736
  - slug: github_client_secret
611
737
  type: secret
612
738
  component: input-secret
613
739
  name:
614
- en: GitHub Client Secret
615
- pt: Segredo do Cliente GitHub
740
+ en: Client Secret
741
+ pt: Segredo do Cliente
616
742
  description:
617
- en: The client secret for GitHub OAuth
618
- pt: O segredo do cliente para o OAuth do GitHub
743
+ en: GitHub OAuth client secret credential
744
+ pt: Credencial de segredo do cliente OAuth do GitHub
619
745
  value: ""
620
746
  user_override: false
747
+ subgroup_id:
748
+ where:
749
+ slug: github
621
750
  - slug: github_scopes
622
751
  type: array
623
752
  name:
624
- en: GitHub Scopes
625
- pt: Escopos do GitHub
753
+ en: OAuth Scopes
754
+ pt: Escopos OAuth
626
755
  description:
627
- en: The scopes for GitHub OAuth
628
- pt: Os escopos para o OAuth do GitHub
756
+ en: Permissions requested from the user during GitHub OAuth flow
757
+ pt: Permissões solicitadas ao usuário durante o fluxo OAuth do GitHub
629
758
  value: '["read:user","user:email"]'
630
759
  component: checkbox
631
760
  relations:
@@ -633,7 +762,11 @@
633
762
  - value: read:user
634
763
  order: 0
635
764
  - value: user:email
765
+
636
766
  order: 1
767
+ subgroup_id:
768
+ where:
769
+ slug: github
637
770
  user_override: false
638
771
  - slug: appearance
639
772
  icon: palette
@@ -641,8 +774,8 @@
641
774
  en: Appearance
642
775
  pt: Aparência
643
776
  description:
644
- en: Configure the appearance setting.
645
- pt: Configurar as definições de aparência.
777
+ en: Customize visual appearance, themes, colors, branding, and UI layout for the entire system
778
+ pt: Customize aparência visual, temas, cores, marca e layout da UI para todo o sistema
646
779
  relations:
647
780
  setting:
648
781
  - slug: theme-mode
@@ -651,8 +784,8 @@
651
784
  en: Theme Mode
652
785
  pt: Modo de Tema
653
786
  description:
654
- en: The theme mode to use
655
- pt: O modo de tema a utilizar
787
+ en: Select between light, dark, or system-default theme mode
788
+ pt: Selecione entre modo de tema claro, escuro ou padrão do sistema
656
789
  value: system
657
790
  component: combobox
658
791
  user_override: true
@@ -663,15 +796,19 @@
663
796
  - value: dark
664
797
  order: 1
665
798
  - value: system
799
+
666
800
  order: 2
801
+ subgroup_id:
802
+ where:
803
+ slug: theme-selector
667
804
  - slug: theme-primary-light
668
805
  type: string
669
806
  name:
670
- en: Primary Color (Light)
671
- pt: Cor Primária (Claro)
807
+ en: Primary Color
808
+ pt: Cor Primária
672
809
  description:
673
- en: The primary color for light theme
674
- pt: A cor primária para o tema claro
810
+ en: Main brand color used for buttons, links, and highlights in light theme
811
+ pt: Cor de marca principal usada para botões, links e realces em tema claro
675
812
  value: "#ff760c"
676
813
  component: color-picker
677
814
  relations:
@@ -688,14 +825,17 @@
688
825
  order: 4
689
826
  - value: "#ff760c"
690
827
  order: 5
828
+ subgroup_id:
829
+ where:
830
+ slug: light-theme-colors
691
831
  - slug: theme-primary-foreground-light
692
832
  type: string
693
833
  name:
694
- en: Primary Color Foreground (Light)
695
- pt: Contraste da Cor Primária (Claro)
834
+ en: Primary Contrast
835
+ pt: Contraste Primário
696
836
  description:
697
- en: The primary color foreground for light theme
698
- pt: O contraste da cor primária para o tema claro
837
+ en: Text/foreground color for primary buttons and elements in light theme
838
+ pt: Cor de texto/foreground para botões primários e elementos em tema claro
699
839
  value: "#ffffff"
700
840
  component: color-picker
701
841
  relations:
@@ -706,14 +846,17 @@
706
846
  order: 1
707
847
  - value: "#f4f4f5"
708
848
  order: 2
849
+ subgroup_id:
850
+ where:
851
+ slug: light-theme-colors
709
852
  - slug: theme-secondary-light
710
853
  type: string
711
854
  name:
712
- en: Secondary Color (Light)
713
- pt: Cor Secundária (Claro)
855
+ en: Secondary Color
856
+ pt: Cor Secundária
714
857
  description:
715
- en: The secondary color for light theme
716
- pt: A cor secundária para o tema claro
858
+ en: Secondary accent color for less prominent UI elements in light theme
859
+ pt: Cor de acento secundária para elementos de UI menos proeminentes em tema claro
717
860
  value: "#f4f4f5"
718
861
  component: color-picker
719
862
  relations:
@@ -721,17 +864,21 @@
721
864
  - value: "#f4f4f5"
722
865
  order: 0
723
866
  - value: "#e4e4e7"
867
+
724
868
  order: 1
725
869
  - value: "#d4d4d8"
726
870
  order: 2
871
+ subgroup_id:
872
+ where:
873
+ slug: light-theme-colors
727
874
  - slug: theme-secondary-foreground-light
728
875
  type: string
729
876
  name:
730
- en: Secondary Color Foreground (Light)
731
- pt: Contraste da Cor Secundária (Claro)
877
+ en: Secondary Contrast
878
+ pt: Contraste Secundário
732
879
  description:
733
- en: The secondary color foreground for light theme
734
- pt: O contraste da cor secundária para o tema claro
880
+ en: Text/foreground color for secondary elements in light theme
881
+ pt: Cor de texto/foreground para elementos secundários em tema claro
735
882
  value: "#18181b"
736
883
  component: color-picker
737
884
  relations:
@@ -740,14 +887,17 @@
740
887
  order: 0
741
888
  - value: "#09090b"
742
889
  order: 1
890
+ subgroup_id:
891
+ where:
892
+ slug: light-theme-colors
743
893
  - slug: theme-accent-light
744
894
  type: string
745
895
  name:
746
- en: Accent Color (Light)
747
- pt: Cor de Realce (Claro)
896
+ en: Accent Color
897
+ pt: Cor de Acento
748
898
  description:
749
- en: The accent color for light theme
750
- pt: A cor de realce para o tema claro
899
+ en: Accent color for interactive elements and focus states in light theme
900
+ pt: Cor de acento para elementos interativos e estados de foco em tema claro
751
901
  value: "#f4f4f5"
752
902
  component: color-picker
753
903
  relations:
@@ -758,14 +908,17 @@
758
908
  order: 1
759
909
  - value: "#d4d4d8"
760
910
  order: 2
911
+ subgroup_id:
912
+ where:
913
+ slug: light-theme-colors
761
914
  - slug: theme-accent-foreground-light
762
915
  type: string
763
916
  name:
764
- en: Accent Color Foreground (Light)
765
- pt: Contraste da Cor de Realce (Claro)
917
+ en: Accent Contrast
918
+ pt: Contraste de Acento
766
919
  description:
767
- en: The accent color foreground for light theme
768
- pt: O contraste da cor de realce para o tema claro
920
+ en: Text/foreground color for accented elements in light theme
921
+ pt: Cor de texto/foreground para elementos com acento em tema claro
769
922
  value: "#18181b"
770
923
  component: color-picker
771
924
  relations:
@@ -774,14 +927,17 @@
774
927
  order: 0
775
928
  - value: "#09090b"
776
929
  order: 1
930
+ subgroup_id:
931
+ where:
932
+ slug: light-theme-colors
777
933
  - slug: theme-muted-light
778
934
  type: string
779
935
  name:
780
- en: Muted Color (Light)
781
- pt: Cor Suave (Claro)
936
+ en: Muted Color
937
+ pt: Cor Suave
782
938
  description:
783
- en: The muted color for light theme
784
- pt: A cor suave para o tema claro
939
+ en: Subtle background color for disabled or subtle UI elements in light theme
940
+ pt: Cor de fundo sutil para elementos de UI desabilitados ou sutis em tema claro
785
941
  value: "#f4f4f5"
786
942
  component: color-picker
787
943
  relations:
@@ -792,14 +948,17 @@
792
948
  order: 1
793
949
  - value: "#d4d4d8"
794
950
  order: 2
951
+ subgroup_id:
952
+ where:
953
+ slug: light-theme-colors
795
954
  - slug: theme-muted-foreground-light
796
955
  type: string
797
956
  name:
798
- en: Muted Color Foreground (Light)
799
- pt: Contraste da Cor Suave (Claro)
957
+ en: Muted Contrast
958
+ pt: Contraste Suave
800
959
  description:
801
- en: The muted color foreground for light theme
802
- pt: O contraste da cor suave para o tema claro
960
+ en: Text/foreground color for muted or disabled elements in light theme
961
+ pt: Cor de texto/foreground para elementos silenciosos ou desabilitados em tema claro
803
962
  value: "#71717a"
804
963
  component: color-picker
805
964
  relations:
@@ -809,71 +968,88 @@
809
968
  - value: "#52525b"
810
969
  order: 1
811
970
  - value: "#3f3f46"
971
+
812
972
  order: 2
973
+ subgroup_id:
974
+ where:
975
+ slug: light-theme-colors
813
976
  - slug: theme-background-light
814
977
  type: string
815
978
  name:
816
- en: Background Color (Light)
817
- pt: Cor de Fundo (Claro)
979
+ en: Page Background
980
+ pt: Fundo da Página
818
981
  description:
819
- en: The background color for light theme
820
- pt: A cor de fundo para o tema claro
982
+ en: Main background color for page content in light theme
983
+ pt: Cor de fundo principal para conteúdo da página em tema claro
821
984
  value: "#ffffff"
822
985
  component: color-picker
823
986
  relations:
824
987
  setting_list:
825
988
  - value: "#ffffff"
989
+
826
990
  order: 0
991
+ subgroup_id:
992
+ where:
993
+ slug: light-theme-colors
827
994
  - slug: theme-background-foreground-light
828
995
  type: string
829
996
  name:
830
- en: Background Color Foreground (Light)
831
- pt: Contraste da Cor de Fundo (Claro)
997
+ en: Page Text Color
998
+ pt: Cor do Texto da Página
832
999
  description:
833
- en: The background color foreground for light theme
834
- pt: O contraste da cor de fundo para o tema claro
1000
+ en: Default text color for page content in light theme
1001
+ pt: Cor de texto padrão para conteúdo da página em tema claro
835
1002
  value: "#09090b"
836
1003
  component: color-picker
837
1004
  relations:
838
1005
  setting_list:
839
- - value: "#09090b"
840
- order: 0
1006
+ - value: "#09090b"
1007
+ order: 0
1008
+ subgroup_id:
1009
+ where:
1010
+ slug: light-theme-colors
841
1011
  - slug: theme-card-light
842
1012
  type: string
843
1013
  name:
844
- en: Card Color (Light)
845
- pt: Cor do Card (Claro)
1014
+ en: Card Background
1015
+ pt: Fundo da Card
846
1016
  description:
847
- en: The card color for light theme
848
- pt: A cor do card para o tema claro
1017
+ en: Background color for cards and panels in light theme
1018
+ pt: Cor de fundo para cards e painéis em tema claro
849
1019
  value: "#ffffff"
850
1020
  component: color-picker
851
1021
  relations:
852
1022
  setting_list:
853
- - value: "#ffffff"
854
- order: 0
1023
+ - value: "#ffffff"
1024
+ order: 0
1025
+ subgroup_id:
1026
+ where:
1027
+ slug: light-theme-colors
855
1028
  - slug: theme-card-foreground-light
856
1029
  type: string
857
1030
  name:
858
- en: Card Color Foreground (Light)
859
- pt: Contraste da Cor do Card (Claro)
1031
+ en: Card Text Color
1032
+ pt: Cor do Texto da Card
860
1033
  description:
861
- en: The card color foreground for light theme
862
- pt: O contraste da cor do card para o tema claro
1034
+ en: Text color for content within cards in light theme
1035
+ pt: Cor do texto para conteúdo em cards em tema claro
863
1036
  value: "#09090b"
864
1037
  component: color-picker
865
1038
  relations:
866
1039
  setting_list:
867
1040
  - value: "#09090b"
868
1041
  order: 0
1042
+ subgroup_id:
1043
+ where:
1044
+ slug: light-theme-colors
869
1045
  - slug: theme-primary-dark
870
1046
  type: string
871
1047
  name:
872
- en: Primary Color (Dark)
873
- pt: Cor Primária (Escuro)
1048
+ en: Primary Color
1049
+ pt: Cor Primária
874
1050
  description:
875
- en: The primary color for dark theme
876
- pt: A cor primária para o tema escuro
1051
+ en: Main brand color used for buttons, links, and highlights in dark theme
1052
+ pt: Cor de marca principal usada para botões, links e realces em tema escuro
877
1053
  value: "#ff760c"
878
1054
  component: color-picker
879
1055
  relations:
@@ -890,14 +1066,17 @@
890
1066
  order: 4
891
1067
  - value: "#ff760c"
892
1068
  order: 5
1069
+ subgroup_id:
1070
+ where:
1071
+ slug: dark-theme-colors
893
1072
  - slug: theme-primary-foreground-dark
894
1073
  type: string
895
1074
  name:
896
- en: Primary Color Foreground (Dark)
897
- pt: Contraste da Cor Primária (Escuro)
1075
+ en: Primary Contrast
1076
+ pt: Contraste Primário
898
1077
  description:
899
- en: The primary color foreground for dark theme
900
- pt: O contraste da cor primária para o tema escuro
1078
+ en: Text/foreground color for primary buttons and elements in dark theme
1079
+ pt: Cor de texto/foreground para botões primários e elementos em tema escuro
901
1080
  value: "#ffffff"
902
1081
  component: color-picker
903
1082
  relations:
@@ -906,14 +1085,17 @@
906
1085
  order: 0
907
1086
  - value: "#fafafa"
908
1087
  order: 1
1088
+ subgroup_id:
1089
+ where:
1090
+ slug: dark-theme-colors
909
1091
  - slug: theme-secondary-dark
910
1092
  type: string
911
1093
  name:
912
- en: Secondary Color (Dark)
913
- pt: Cor Secundária (Escuro)
1094
+ en: Secondary Color
1095
+ pt: Cor Secundária
914
1096
  description:
915
- en: The secondary color for dark theme
916
- pt: A cor secundária para o tema escuro
1097
+ en: Secondary accent color for less prominent UI elements in dark theme
1098
+ pt: Cor de acento secundária para elementos de UI menos proeminentes em tema escuro
917
1099
  value: "#27272a"
918
1100
  component: color-picker
919
1101
  relations:
@@ -924,14 +1106,17 @@
924
1106
  order: 1
925
1107
  - value: "#52525b"
926
1108
  order: 2
1109
+ subgroup_id:
1110
+ where:
1111
+ slug: dark-theme-colors
927
1112
  - slug: theme-secondary-foreground-dark
928
1113
  type: string
929
1114
  name:
930
- en: Secondary Color Foreground (Dark)
931
- pt: Contraste da Cor Secundária (Escuro)
1115
+ en: Secondary Contrast
1116
+ pt: Contraste Secundário
932
1117
  description:
933
- en: The secondary color foreground for dark theme
934
- pt: O contraste da cor secundária para o tema escuro
1118
+ en: Text/foreground color for secondary elements in dark theme
1119
+ pt: Cor de texto/foreground para elementos secundários em tema escuro
935
1120
  value: "#fafafa"
936
1121
  component: color-picker
937
1122
  relations:
@@ -942,14 +1127,17 @@
942
1127
  order: 1
943
1128
  - value: "#e4e4e7"
944
1129
  order: 2
1130
+ subgroup_id:
1131
+ where:
1132
+ slug: dark-theme-colors
945
1133
  - slug: theme-accent-dark
946
1134
  type: string
947
1135
  name:
948
- en: Accent Color (Dark)
949
- pt: Cor de Realce (Escuro)
1136
+ en: Accent Color
1137
+ pt: Cor de Acento
950
1138
  description:
951
- en: The accent color for dark theme
952
- pt: A cor de realce para o tema escuro
1139
+ en: Accent color for interactive elements and focus states in dark theme
1140
+ pt: Cor de acento para elementos interativos e estados de foco em tema escuro
953
1141
  value: "#27272a"
954
1142
  component: color-picker
955
1143
  relations:
@@ -959,15 +1147,19 @@
959
1147
  - value: "#3f3f46"
960
1148
  order: 1
961
1149
  - value: "#52525b"
1150
+
962
1151
  order: 2
1152
+ subgroup_id:
1153
+ where:
1154
+ slug: dark-theme-colors
963
1155
  - slug: theme-accent-foreground-dark
964
1156
  type: string
965
1157
  name:
966
- en: Accent Color Foreground (Dark)
967
- pt: Contraste da Cor de Realce (Escuro)
1158
+ en: Accent Contrast
1159
+ pt: Contraste de Acento
968
1160
  description:
969
- en: The accent color foreground for dark theme
970
- pt: O contraste da cor de realce para o tema escuro
1161
+ en: Text/foreground color for accented elements in dark theme
1162
+ pt: Cor de texto/foreground para elementos com acento em tema escuro
971
1163
  value: "#fafafa"
972
1164
  component: color-picker
973
1165
  relations:
@@ -977,15 +1169,19 @@
977
1169
  - value: "#f4f4f5"
978
1170
  order: 1
979
1171
  - value: "#e4e4e7"
1172
+
980
1173
  order: 2
1174
+ subgroup_id:
1175
+ where:
1176
+ slug: dark-theme-colors
981
1177
  - slug: theme-muted-dark
982
1178
  type: string
983
1179
  name:
984
- en: Muted Color (Dark)
985
- pt: Cor Suave (Escuro)
1180
+ en: Muted Color
1181
+ pt: Cor Suave
986
1182
  description:
987
- en: The muted color for dark theme
988
- pt: A cor suave para o tema escuro
1183
+ en: Subtle background color for disabled or subtle UI elements in dark theme
1184
+ pt: Cor de fundo sutil para elementos de UI desabilitados ou sutis em tema escuro
989
1185
  value: "#27272a"
990
1186
  component: color-picker
991
1187
  relations:
@@ -996,14 +1192,17 @@
996
1192
  order: 1
997
1193
  - value: "#52525b"
998
1194
  order: 2
1195
+ subgroup_id:
1196
+ where:
1197
+ slug: dark-theme-colors
999
1198
  - slug: theme-muted-foreground-dark
1000
1199
  type: string
1001
1200
  name:
1002
- en: Muted Color Foreground (Dark)
1003
- pt: Contraste da Cor Suave (Escuro)
1201
+ en: Muted Contrast
1202
+ pt: Contraste Suave
1004
1203
  description:
1005
- en: The muted color foreground for dark theme
1006
- pt: O contraste da cor suave para o tema escuro
1204
+ en: Text/foreground color for muted or disabled elements in dark theme
1205
+ pt: Cor de texto/foreground para elementos silenciosos ou desabilitados em tema escuro
1007
1206
  value: "#a1a1aa"
1008
1207
  component: color-picker
1009
1208
  relations:
@@ -1014,144 +1213,183 @@
1014
1213
  order: 1
1015
1214
  - value: "#52525b"
1016
1215
  order: 2
1216
+ subgroup_id:
1217
+ where:
1218
+ slug: dark-theme-colors
1017
1219
  - slug: theme-background-dark
1018
1220
  type: string
1019
1221
  name:
1020
- en: Background Color (Dark)
1021
- pt: Cor de Fundo (Escuro)
1222
+ en: Page Background
1223
+ pt: Fundo da Página
1022
1224
  description:
1023
- en: The background color for dark theme
1024
- pt: A cor de fundo para o tema escuro
1225
+ en: Main background color for page content in dark theme
1226
+ pt: Cor de fundo principal para conteúdo da página em tema escuro
1025
1227
  value: "#09090b"
1026
1228
  component: color-picker
1027
1229
  relations:
1028
1230
  setting_list:
1029
1231
  - value: "#09090b"
1030
1232
  order: 0
1233
+ subgroup_id:
1234
+ where:
1235
+ slug: dark-theme-colors
1031
1236
  - slug: theme-background-foreground-dark
1032
1237
  type: string
1033
1238
  name:
1034
- en: Background Color Foreground (Dark)
1035
- pt: Contraste da Cor de Fundo (Escuro)
1239
+ en: Page Text Color
1240
+ pt: Cor do Texto da Página
1036
1241
  description:
1037
- en: The background color foreground for dark theme
1038
- pt: O contraste da cor de fundo para o tema escuro
1242
+ en: Default text color for page content in dark theme
1243
+ pt: Cor de texto padrão para conteúdo da página em tema escuro
1039
1244
  value: "#fafafa"
1040
1245
  component: color-picker
1041
1246
  relations:
1042
1247
  setting_list:
1043
1248
  - value: "#fafafa"
1044
1249
  order: 0
1250
+ subgroup_id:
1251
+ where:
1252
+ slug: dark-theme-colors
1045
1253
  - slug: theme-card-dark
1046
1254
  type: string
1047
1255
  name:
1048
- en: Card Color (Dark)
1049
- pt: Cor do Card (Escuro)
1256
+ en: Card Background
1257
+ pt: Fundo da Card
1050
1258
  description:
1051
- en: The card color for dark theme
1052
- pt: A cor do card para o tema escuro
1259
+ en: Background color for cards and panels in dark theme
1260
+ pt: Cor de fundo para cards e painéis em tema escuro
1053
1261
  value: "#09090b"
1054
1262
  component: color-picker
1055
1263
  relations:
1056
1264
  setting_list:
1057
1265
  - value: "#09090b"
1058
1266
  order: 0
1267
+ subgroup_id:
1268
+ where:
1269
+ slug: dark-theme-colors
1059
1270
  - slug: theme-card-foreground-dark
1060
1271
  type: string
1061
1272
  name:
1062
- en: Card Color Foreground (Dark)
1063
- pt: Contraste da Cor do Card (Escuro)
1273
+ en: Card Text Color
1274
+ pt: Cor do Texto da Card
1064
1275
  description:
1065
- en: The card color foreground for dark theme
1066
- pt: O contraste da cor do card para o tema escuro
1276
+ en: Text color for content within cards in dark theme
1277
+ pt: Cor do texto para conteúdo em cards em tema escuro
1067
1278
  value: "#fafafa"
1068
1279
  component: color-picker
1069
1280
  relations:
1070
1281
  setting_list:
1071
1282
  - value: "#fafafa"
1072
1283
  order: 0
1284
+ subgroup_id:
1285
+ where:
1286
+ slug: dark-theme-colors
1073
1287
  - slug: theme-radius
1074
1288
  type: string
1075
1289
  name:
1076
- en: Radius
1077
- pt: Raio
1290
+ en: Border Radius
1291
+ pt: Raio da Borda
1078
1292
  description:
1079
- en: The radius to use
1080
- pt: O raio a utilizar
1293
+ en: Global border radius value in rem units (affects corners of buttons, cards, etc.)
1294
+ pt: Valor de raio de borda global em unidades rem (afeta cantos de botões, cards, etc.)
1081
1295
  value: "0.5"
1296
+ subgroup_id:
1297
+ where:
1298
+ slug: theme-customization
1082
1299
  - slug: theme-font
1083
1300
  type: string
1084
1301
  name:
1085
1302
  en: Font Family
1086
1303
  pt: Família de Fontes
1087
1304
  description:
1088
- en: The font to use
1089
- pt: A fonte a utilizar
1305
+ en: CSS font stack used throughout the system
1306
+ pt: Stack de fontes CSS usado em todo o sistema
1090
1307
  value: ui-sans-serif, system-ui, sans-serif
1308
+ subgroup_id:
1309
+ where:
1310
+ slug: theme-customization
1091
1311
  - slug: theme-text-size
1092
1312
  type: string
1093
1313
  name:
1094
- en: Text Size
1095
- pt: Tamanho do Texto
1314
+ en: Base Text Size
1315
+ pt: Tamanho de Texto Base
1096
1316
  description:
1097
- en: Text size of the application
1098
- pt: Tamanho do texto da aplicação
1317
+ en: Scale factor for text sizes (1.0 = normal, >1.0 = larger, <1.0 = smaller)
1318
+ pt: Fator de escala para tamanhos de texto (1.0 = normal, >1.0 = maior, <1.0 = menor)
1099
1319
  value: "1"
1320
+ subgroup_id:
1321
+ where:
1322
+ slug: theme-customization
1100
1323
  - slug: menu-width
1101
1324
  type: string
1102
1325
  name:
1103
- en: Menu Width
1104
- pt: Largura do Menu
1326
+ en: Sidebar Width
1327
+ pt: Largura da Barra Lateral
1105
1328
  description:
1106
- en: Menu width of the application
1107
- pt: Largura do Menu da aplicação
1329
+ en: Width of the left sidebar menu in rem units
1330
+ pt: Largura do menu da barra lateral esquerda em unidades rem
1108
1331
  value: "18"
1332
+ subgroup_id:
1333
+ where:
1334
+ slug: theme-customization
1109
1335
  - slug: image-url
1110
1336
  type: string
1111
1337
  component: input-file
1112
1338
  name:
1113
- en: System Image URL
1114
- pt: URL da Imagem do Sistema
1339
+ en: Logo Image
1340
+ pt: Imagem do Logo
1115
1341
  description:
1116
- en: System Image URL to use
1117
- pt: URL da Imagem do Sistema a utilizar
1342
+ en: URL to the system logo/brand image (SVG or PNG recommended)
1343
+ pt: URL para a imagem do logo/marca do sistema (SVG ou PNG recomendado)
1118
1344
  value: /logo.svg
1345
+ subgroup_id:
1346
+ where:
1347
+ slug: branding
1119
1348
  - slug: icon-url
1120
1349
  type: string
1121
1350
  component: input-file
1122
1351
  name:
1123
- en: System Icon URL
1124
- pt: URL da Ícone do Sistema
1352
+ en: Favicon
1353
+ pt: Favicon
1125
1354
  description:
1126
- en: System Icon URL to use
1127
- pt: URL da Ícone do Sistema a utilizar
1355
+ en: URL to the system favicon displayed in browser tabs
1356
+ pt: URL para o favicon do sistema exibido nas abas do navegador
1128
1357
  value: /logo.svg
1358
+ subgroup_id:
1359
+ where:
1360
+ slug: branding
1129
1361
  - slug: system-name
1130
1362
  type: string
1131
1363
  name:
1132
1364
  en: System Name
1133
1365
  pt: Nome do Sistema
1134
1366
  description:
1135
- en: System Name to use
1136
- pt: Nome do Sistema a utilizar
1367
+ en: Display name of the system shown in headers and browser titles
1368
+ pt: Nome de exibição do sistema mostrado em headers e títulos de navegador
1137
1369
  value: Hedhog
1370
+ subgroup_id:
1371
+ where:
1372
+ slug: branding
1138
1373
  - slug: system-slogan
1139
1374
  type: string
1140
1375
  name:
1141
- en: System Slogan
1142
- pt: Slogan do Sistema
1376
+ en: Tagline
1377
+ pt: Slogan
1143
1378
  description:
1144
- en: System Slogan to use
1145
- pt: Slogan do Sistema a utilizar
1379
+ en: Short tagline or subtitle displayed under the system name
1380
+ pt: Slogan curto ou subtítulo exibido sob o nome do sistema
1146
1381
  value: Administration Panel
1382
+ subgroup_id:
1383
+ where:
1384
+ slug: branding
1147
1385
  - slug: file-storage
1148
1386
  icon: folder
1149
1387
  name:
1150
1388
  en: File Storage
1151
- pt: Armazenamento
1389
+ pt: Armazenamento de Arquivos
1152
1390
  description:
1153
- en: Configure the file storage setting.
1154
- pt: Configurar as definições de armazenamento de arquivos.
1391
+ en: Configure file storage backend, accepted file types, and size limits for uploads
1392
+ pt: Configure backend de armazenamento de arquivos, tipos de arquivo aceitos e limites de tamanho para uploads
1155
1393
  relations:
1156
1394
  setting:
1157
1395
  - slug: storage
@@ -1160,8 +1398,8 @@
1160
1398
  en: Storage Provider
1161
1399
  pt: Provedor de Armazenamento
1162
1400
  description:
1163
- en: The storage to use
1164
- pt: O armazenamento a utilizar
1401
+ en: Select the backend service for file storage (local filesystem, AWS S3, Azure Blob, or Google Cloud)
1402
+ pt: Selecione o serviço backend para armazenamento de arquivos (sistema de arquivos local, AWS S3, Azure Blob ou Google Cloud)
1165
1403
  value: local
1166
1404
  component: combobox
1167
1405
  relations:
@@ -1174,14 +1412,17 @@
1174
1412
  order: 2
1175
1413
  - value: gcs
1176
1414
  order: 3
1415
+ subgroup_id:
1416
+ where:
1417
+ slug: storage-general
1177
1418
  - slug: storage-accept-mimetype
1178
1419
  type: array
1179
1420
  name:
1180
- en: Accept Mime Types
1181
- pt: Aceitar Tipos MIME
1421
+ en: Allowed File Types
1422
+ pt: Tipos de Arquivo Permitidos
1182
1423
  description:
1183
- en: The accepted mime types
1184
- pt: Os tipos MIME aceitos
1424
+ en: MIME types accepted for file uploads (e.g., images, documents, videos)
1425
+ pt: Tipos MIME aceitos para upload de arquivos (por exemplo, imagens, documentos, vídeos)
1185
1426
  value: '["application/pdf","image/jpeg","image/png","image/gif"]'
1186
1427
  component: checkbox
1187
1428
  relations:
@@ -1204,128 +1445,164 @@
1204
1445
  order: 7
1205
1446
  - value: text/plain
1206
1447
  order: 8
1448
+ subgroup_id:
1449
+ where:
1450
+ slug: storage-general
1207
1451
  - slug: storage-max-size
1208
1452
  type: number
1209
1453
  name:
1210
1454
  en: Max File Size
1211
1455
  pt: Tamanho Máximo do Arquivo
1212
1456
  description:
1213
- en: The maximum file size in bytes
1214
- pt: O tamanho máximo do arquivo em bytes
1457
+ en: Maximum file size in bytes (10485760 = 10 MB, 52428800 = 50 MB)
1458
+ pt: Tamanho máximo do arquivo em bytes (10485760 = 10 MB, 52428800 = 50 MB)
1215
1459
  value: 10485760
1460
+ subgroup_id:
1461
+ where:
1462
+ slug: storage-general
1216
1463
  - slug: storage-local-path
1217
1464
  type: string
1218
1465
  name:
1219
- en: Local Path
1220
- pt: Caminho Local
1466
+ en: Local Directory
1467
+ pt: Diretório Local
1221
1468
  description:
1222
- en: The local path to store file
1223
- pt: O caminho local para armazenar arquivos
1469
+ en: Folder path on the server for local file storage. Must be writable by the application
1470
+ pt: Caminho da pasta no servidor para armazenamento de arquivos local. Deve ser gravável pela aplicação
1224
1471
  value: storage
1472
+ subgroup_id:
1473
+ where:
1474
+ slug: local-storage
1225
1475
  - slug: storage-s3-key
1226
1476
  type: string
1227
1477
  name:
1228
- en: S3 Key
1229
- pt: Chave S3
1478
+ en: Access Key ID
1479
+ pt: ID da Chave de Acesso
1230
1480
  description:
1231
- en: The S3 key
1232
- pt: A chave S3
1481
+ en: AWS Access Key ID for S3 authentication
1482
+ pt: ID da chave de acesso AWS para autenticação S3
1233
1483
  value: ''
1484
+ subgroup_id:
1485
+ where:
1486
+ slug: s3-storage
1234
1487
  - slug: storage-s3-secret
1235
1488
  type: secret
1236
1489
  component: input-secret
1237
1490
  name:
1238
- en: S3 Secret
1239
- pt: Segredo S3
1491
+ en: Secret Access Key
1492
+ pt: Chave de Acesso Secreta
1240
1493
  description:
1241
- en: The S3 secret
1242
- pt: O segredo S3
1494
+ en: AWS secret access key for S3 authentication
1495
+ pt: Chave de acesso secreta AWS para autenticação S3
1243
1496
  value: ''
1497
+ subgroup_id:
1498
+ where:
1499
+ slug: s3-storage
1244
1500
  - slug: storage-s3-region
1245
1501
  type: string
1246
1502
  name:
1247
- en: S3 Region
1248
- pt: Região S3
1503
+ en: AWS Region
1504
+ pt: Região AWS
1249
1505
  description:
1250
- en: The S3 region
1251
- pt: A região S3
1506
+ en: AWS region where the S3 bucket is located
1507
+ pt: Região AWS onde o bucket S3 está localizado
1252
1508
  value: 'us-east-1'
1509
+ subgroup_id:
1510
+ where:
1511
+ slug: s3-storage
1253
1512
  - slug: storage-s3-bucket
1254
1513
  type: string
1255
1514
  name:
1256
- en: S3 Bucket
1257
- pt: Bucket S3
1515
+ en: Bucket Name
1516
+ pt: Nome do Bucket
1258
1517
  description:
1259
- en: The S3 bucket
1260
- pt: O bucket S3
1518
+ en: S3 bucket name for storing uploaded files
1519
+ pt: Nome do bucket S3 para armazenar arquivos enviados
1261
1520
  value: ''
1521
+ subgroup_id:
1522
+ where:
1523
+ slug: s3-storage
1262
1524
  - slug: storage-abs-account
1263
1525
  type: string
1264
1526
  name:
1265
- en: ABS Account
1266
- pt: Conta ABS
1527
+ en: Storage Account
1528
+ pt: Conta de Armazenamento
1267
1529
  description:
1268
- en: The Azure Blob Storage account
1269
- pt: A conta de armazenamento de blob do Azure
1530
+ en: Azure storage account name (without .blob.core.windows.net)
1531
+ pt: Nome da conta de armazenamento do Azure (sem .blob.core.windows.net)
1270
1532
  value: ''
1533
+ subgroup_id:
1534
+ where:
1535
+ slug: abs-storage
1271
1536
  - slug: storage-abs-key
1272
1537
  type: secret
1273
1538
  component: input-secret
1274
1539
  name:
1275
- en: ABS Key
1276
- pt: Chave ABS
1540
+ en: Account Key
1541
+ pt: Chave da Conta
1277
1542
  description:
1278
- en: The Azure Blob Storage key
1279
- pt: A chave de armazenamento de blob do Azure
1543
+ en: Azure storage account access key for authentication
1544
+ pt: Chave de acesso da conta de armazenamento do Azure para autenticação
1280
1545
  value: ''
1546
+ subgroup_id:
1547
+ where:
1548
+ slug: abs-storage
1281
1549
  - slug: storage-abs-container
1282
1550
  type: string
1283
1551
  name:
1284
- en: ABS Container
1285
- pt: Container ABS
1552
+ en: Container Name
1553
+ pt: Nome do Contêiner
1286
1554
  description:
1287
- en: The Azure Blob Storage container
1288
- pt: O contêiner de armazenamento de blob do Azure
1555
+ en: Azure Blob Storage container name for storing uploaded files
1556
+ pt: Nome do contêiner de armazenamento de blob do Azure para armazenar arquivos enviados
1289
1557
  value: ''
1558
+ subgroup_id:
1559
+ where:
1560
+ slug: abs-storage
1290
1561
  - slug: storage-gcs-keyfile
1291
1562
  type: secret
1292
1563
  component: input-secret
1293
1564
  name:
1294
- en: GCS Keyfile
1295
- pt: Arquivo de Chave GCS
1565
+ en: Service Account Key
1566
+ pt: Chave da Conta de Serviço
1296
1567
  description:
1297
- en: The Google Cloud Storage keyfile
1298
- pt: O arquivo de chave de armazenamento do Google Cloud
1568
+ en: JSON keyfile contents for Google Cloud service account authentication
1569
+ pt: Conteúdo do arquivo de chaves JSON para autenticação da conta de serviço do Google Cloud
1299
1570
  value: ''
1571
+ subgroup_id:
1572
+ where:
1573
+ slug: gcs-storage
1300
1574
  - slug: 'mail'
1301
1575
  icon: mail
1302
1576
  name:
1303
1577
  en: Mail
1304
1578
  pt: Email
1305
1579
  description:
1306
- en: Configure the mail setting.
1307
- pt: Configurar as definições de email.
1580
+ en: Configure email service provider, sender address, and credentials for system notifications
1581
+ pt: Configure provedor de serviço de email, endereço do remetente e credenciais para notificações do sistema
1308
1582
  relations:
1309
1583
  setting:
1310
1584
  - slug: configured-mail
1311
1585
  type: boolean
1312
1586
  name:
1313
- en: Configured Mail
1587
+ en: Email Configured
1314
1588
  pt: Email Configurado
1315
1589
  description:
1316
- en: Indicates if the mail is configured
1317
- pt: Indica se o email está configurado
1590
+ en: Indicates whether email notifications are fully configured and operational
1591
+ pt: Indica se as notificações de email estão totalmente configuradas e operacionais
1318
1592
  value: false
1319
1593
  user_override: false
1320
1594
  component: switch
1595
+ subgroup_id:
1596
+ where:
1597
+ slug: mail-general
1321
1598
  - slug: mail-provider
1322
1599
  type: string
1323
1600
  name:
1324
- en: Mail Provider
1601
+ en: Email Provider
1325
1602
  pt: Provedor de Email
1326
1603
  description:
1327
- en: The mail provider to use
1328
- pt: O provedor de email a utilizar
1604
+ en: Email service provider to use for sending notifications
1605
+ pt: Provedor de serviço de email a usar para enviar notificações
1329
1606
  value: SES
1330
1607
  component: combobox
1331
1608
  relations:
@@ -1335,139 +1612,347 @@
1335
1612
  - value: GMAIL
1336
1613
  order: 1
1337
1614
  - value: SES
1615
+
1338
1616
  order: 2
1617
+ subgroup_id:
1618
+ where:
1619
+ slug: mail-general
1339
1620
  - slug: mail-from
1340
1621
  type: string
1341
1622
  name:
1342
- en: Mail From
1343
- pt: Email de Remetente
1623
+ en: Sender Address
1624
+ pt: Endereço do Remetente
1344
1625
  description:
1345
- en: The mail from address
1346
- pt: O endereço de email do remetente
1626
+ en: Email address used as the "From" field for outgoing system emails
1627
+ pt: Endereço de email usado como campo "De" para emails de saída do sistema
1347
1628
  value: no-reply@hedhog.com
1348
- - slug: mail-gmail-client-id
1349
- type: string
1350
- name:
1351
- en: Gmail Client ID
1352
- pt: ID do Cliente Gmail
1353
- description:
1354
- en: The Gmail OAuth client ID
1355
- pt: O ID do cliente OAuth do Gmail
1356
- value: ''
1357
- - slug: mail-gmail-client-secret
1358
- type: secret
1359
- component: input-secret
1360
- name:
1361
- en: Gmail Client Secret
1362
- pt: Segredo do Cliente Gmail
1363
- description:
1364
- en: The Gmail OAuth client secret
1365
- pt: O segredo do cliente OAuth do Gmail
1366
- value: ''
1367
- - slug: mail-gmail-refresh-token
1368
- type: string
1369
- name:
1370
- en: Gmail Refresh Token
1371
- pt: Token de Atualização Gmail
1372
- description:
1373
- en: The Gmail OAuth refresh token
1374
- pt: O token de atualização OAuth do Gmail
1375
- value: ''
1629
+ subgroup_id:
1630
+ where:
1631
+ slug: mail-general
1376
1632
  - slug: mail-smtp-host
1377
1633
  type: string
1378
1634
  name:
1379
- en: SMTP Host
1380
- pt: Host SMTP
1635
+ en: SMTP Server
1636
+ pt: Servidor SMTP
1381
1637
  description:
1382
- en: The SMTP server host
1383
- pt: O host do servidor SMTP
1638
+ en: Hostname or IP address of the SMTP server
1639
+ pt: Nome do host ou endereço IP do servidor SMTP
1384
1640
  value: ''
1641
+ subgroup_id:
1642
+ where:
1643
+ slug: smtp-config
1385
1644
  - slug: mail-smtp-port
1386
1645
  type: number
1387
1646
  name:
1388
1647
  en: SMTP Port
1389
1648
  pt: Porta SMTP
1390
1649
  description:
1391
- en: The SMTP server port
1392
- pt: A porta do servidor SMTP
1650
+ en: SMTP server port (typically 587 for TLS or 465 for SSL)
1651
+ pt: Porta do servidor SMTP (geralmente 587 para TLS ou 465 para SSL)
1393
1652
  value: 587
1653
+ subgroup_id:
1654
+ where:
1655
+ slug: smtp-config
1394
1656
  - slug: mail-smtp-secure
1395
1657
  type: boolean
1396
1658
  name:
1397
- en: SMTP Secure
1398
- pt: SMTP Seguro
1659
+ en: Secure Connection
1660
+ pt: Conexão Segura
1399
1661
  description:
1400
- en: Use secure connection for SMTP
1401
- pt: Usar conexão segura para SMTP
1662
+ en: Use TLS/SSL encryption for SMTP connection
1663
+ pt: Usar criptografia TLS/SSL para conexão SMTP
1402
1664
  value: false
1665
+ subgroup_id:
1666
+ where:
1667
+ slug: smtp-config
1403
1668
  - slug: mail-client-secret
1404
1669
  type: secret
1405
1670
  component: input-secret
1406
1671
  name:
1407
- en: Mail Client Secret
1408
- pt: Segredo do Cliente de Email
1672
+ en: SMTP Password
1673
+ pt: Senha SMTP
1674
+ description:
1675
+ en: Authentication password for SMTP server
1676
+ pt: Senha de autenticação do servidor SMTP
1677
+ value: ''
1678
+ subgroup_id:
1679
+ where:
1680
+ slug: smtp-config
1681
+ - slug: mail-gmail-client-id
1682
+ type: string
1683
+ name:
1684
+ en: Client ID
1685
+ pt: ID do Cliente
1409
1686
  description:
1410
- en: The mail client secret
1411
- pt: O segredo do cliente de email
1687
+ en: Google OAuth application client ID for Gmail API
1688
+ pt: ID do cliente da aplicação Google OAuth para API do Gmail
1412
1689
  value: ''
1690
+ subgroup_id:
1691
+ where:
1692
+ slug: gmail-config
1693
+ - slug: mail-gmail-client-secret
1694
+ type: secret
1695
+ component: input-secret
1696
+ name:
1697
+ en: Client Secret
1698
+ pt: Segredo do Cliente
1699
+ description:
1700
+ en: Google OAuth client secret for Gmail API authentication
1701
+ pt: Segredo do cliente Google OAuth para autenticação da API do Gmail
1702
+ value: ''
1703
+ subgroup_id:
1704
+ where:
1705
+ slug: gmail-config
1706
+ - slug: mail-gmail-refresh-token
1707
+ type: string
1708
+ name:
1709
+ en: Refresh Token
1710
+ pt: Token de Atualização
1711
+ description:
1712
+ en: OAuth refresh token for maintaining long-term access to Gmail API
1713
+ pt: Token de atualização OAuth para manter acesso de longo prazo à API do Gmail
1714
+ value: ''
1715
+ subgroup_id:
1716
+ where:
1717
+ slug: gmail-config
1413
1718
  - slug: mail-aws-access-key-id
1414
1719
  type: string
1415
1720
  name:
1416
1721
  en: AWS Access Key ID
1417
1722
  pt: ID da Chave de Acesso AWS
1418
1723
  description:
1419
- en: The AWS access key ID for SES
1420
- pt: O ID da chave de acesso AWS para SES
1724
+ en: AWS IAM access key for Amazon SES service
1725
+ pt: Chave de acesso IAM da AWS para o serviço Amazon SES
1421
1726
  value: ''
1727
+ subgroup_id:
1728
+ where:
1729
+ slug: ses-config
1422
1730
  - slug: mail-aws-secret-access-key
1423
1731
  type: secret
1424
1732
  component: input-secret
1425
1733
  name:
1426
- en: AWS Secret Access Key
1427
- pt: Chave de Acesso Secreta AWS
1734
+ en: AWS Secret Key
1735
+ pt: Chave Secreta AWS
1428
1736
  description:
1429
- en: The AWS secret access key for SES
1430
- pt: A chave de acesso secreta AWS para SES
1737
+ en: AWS IAM secret key for Amazon SES authentication
1738
+ pt: Chave secreta IAM da AWS para autenticação do Amazon SES
1431
1739
  value: ''
1740
+ subgroup_id:
1741
+ where:
1742
+ slug: ses-config
1432
1743
  - slug: mail-aws-region
1433
1744
  type: string
1434
1745
  name:
1435
1746
  en: AWS Region
1436
1747
  pt: Região AWS
1437
1748
  description:
1438
- en: The AWS region for SES
1439
- pt: A região AWS para SES
1749
+ en: AWS region where SES service is configured
1750
+ pt: Região AWS onde o serviço SES está configurado
1440
1751
  value: 'us-east-1'
1752
+ subgroup_id:
1753
+ where:
1754
+ slug: ses-config
1441
1755
  - slug: ai
1442
1756
  icon: brain
1443
1757
  name:
1444
1758
  en: Artificial Intelligence
1445
1759
  pt: Inteligência Artificial
1446
1760
  description:
1447
- en: Configure providers and credentials for AI integrations.
1448
- pt: Configure provedores e credenciais para integrações de IA.
1761
+ en: Configure AI service providers and API credentials for intelligent system features
1762
+ pt: Configure provedores de serviço de IA e credenciais de API para recursos inteligentes do sistema
1449
1763
  relations:
1450
1764
  setting:
1451
1765
  - slug: ai-openai-api-key
1452
1766
  type: secret
1453
1767
  component: input-secret
1454
1768
  name:
1455
- en: OpenAI API Key
1456
- pt: Chave de API OpenAI
1769
+ en: API Key
1770
+ pt: Chave de API
1457
1771
  description:
1458
- en: API key used to authenticate requests to OpenAI.
1459
- pt: Chave de API usada para autenticar requisições na OpenAI.
1772
+ en: OpenAI API key for GPT models and other OpenAI services
1773
+ pt: Chave de API OpenAI para modelos GPT e outros serviços OpenAI
1460
1774
  value: ''
1461
1775
  user_override: false
1776
+ subgroup_id:
1777
+ where:
1778
+ slug: openai
1462
1779
  - slug: ai-gemini-api-key
1463
1780
  type: secret
1464
1781
  component: input-secret
1465
1782
  name:
1466
- en: Gemini API Key
1467
- pt: Chave de API Gemini
1783
+ en: API Key
1784
+ pt: Chave de API
1468
1785
  description:
1469
- en: API key used to authenticate requests to Google Gemini.
1470
- pt: Chave de API usada para autenticar requisições no Google Gemini.
1786
+ en: Google AI API key for Gemini models and Google generative AI services
1787
+ pt: Chave de API do Google AI para modelos Gemini e serviços de IA generativa do Google
1471
1788
  value: ''
1472
1789
  user_override: false
1473
-
1790
+ subgroup_id:
1791
+ where:
1792
+ slug: gemini
1793
+ - slug: integration
1794
+ icon: webhook
1795
+ name:
1796
+ en: Integration
1797
+ pt: Integração
1798
+ description:
1799
+ en: Configure event-driven architecture with outbox pattern for reliable cross-module event processing
1800
+ pt: Configure arquitetura orientada por eventos com padrão outbox para processamento confiável de eventos entre módulos
1801
+ relations:
1802
+ setting:
1803
+ - slug: outbox-enabled
1804
+ type: boolean
1805
+ component: switch
1806
+ name:
1807
+ en: Outbox System
1808
+ pt: Sistema de Caixa de Saída
1809
+ description:
1810
+ en: Enable the event outbox system for reliable event delivery across modules
1811
+ pt: Habilitar o sistema de caixa de saída de eventos para entrega confiável de eventos entre módulos
1812
+ value: true
1813
+ user_override: false
1814
+ subgroup_id:
1815
+ where:
1816
+ slug: outbox-general
1817
+ - slug: outbox-processor-enabled
1818
+ type: boolean
1819
+ component: switch
1820
+ name:
1821
+ en: Background Processor
1822
+ pt: Processador em Segundo Plano
1823
+ description:
1824
+ en: Enable the background job that processes and publishes pending events
1825
+ pt: Habilitar o trabalho em segundo plano que processa e publica eventos pendentes
1826
+ value: true
1827
+ user_override: false
1828
+ subgroup_id:
1829
+ where:
1830
+ slug: outbox-general
1831
+ - slug: outbox-startup-drain-enabled
1832
+ type: boolean
1833
+ component: switch
1834
+ name:
1835
+ en: Startup Drain
1836
+ pt: Drenagem na Inicialização
1837
+ description:
1838
+ en: Process all pending events immediately on application startup before accepting traffic
1839
+ pt: Processar todos os eventos pendentes imediatamente na inicialização da aplicação antes de aceitar tráfego
1840
+ value: true
1841
+ user_override: false
1842
+ subgroup_id:
1843
+ where:
1844
+ slug: startup-behavior
1845
+ - slug: outbox-startup-drain-batch-size
1846
+ type: number
1847
+ component: input-number
1848
+ name:
1849
+ en: Batch Size
1850
+ pt: Tamanho de Lote
1851
+ description:
1852
+ en: Number of events processed per iteration during startup drain
1853
+ pt: Número de eventos processados por iteração durante a drenagem na inicialização
1854
+ value: 50
1855
+ user_override: false
1856
+ subgroup_id:
1857
+ where:
1858
+ slug: startup-behavior
1859
+ - slug: outbox-batch-size
1860
+ type: number
1861
+ component: input-number
1862
+ name:
1863
+ en: Batch Size
1864
+ pt: Tamanho do Lote
1865
+ description:
1866
+ en: Number of events to process in each background processor iteration during normal operation
1867
+ pt: Número de eventos a processar em cada iteração do processador em segundo plano durante operação normal
1868
+ value: 10
1869
+ user_override: false
1870
+ subgroup_id:
1871
+ where:
1872
+ slug: processing-config
1873
+ - slug: outbox-polling-interval-ms
1874
+ type: number
1875
+ component: input-number
1876
+ name:
1877
+ en: Active Poll Interval
1878
+ pt: Intervalo de Sondagem Ativa
1879
+ description:
1880
+ en: Milliseconds between processor polls when events are pending. Lower values = faster processing but higher CPU
1881
+ pt: Milissegundos entre sondagens quando eventos estão pendentes. Valores menores = processamento mais rápido mas maior CPU
1882
+ value: 5000
1883
+ user_override: false
1884
+ subgroup_id:
1885
+ where:
1886
+ slug: processing-config
1887
+ - slug: outbox-idle-polling-interval-ms
1888
+ type: number
1889
+ component: input-number
1890
+ name:
1891
+ en: Idle Poll Interval
1892
+ pt: Intervalo de Sondagem Ociosa
1893
+ description:
1894
+ en: Milliseconds between processor polls when no events are waiting. Higher values = lower CPU usage during idle
1895
+ pt: Milissegundos entre sondagens quando não há eventos esperando. Valores maiores = menor uso de CPU em ocioso
1896
+ value: 30000
1897
+ user_override: false
1898
+ subgroup_id:
1899
+ where:
1900
+ slug: processing-config
1901
+ - slug: outbox-processing-lease-ms
1902
+ type: number
1903
+ component: input-number
1904
+ name:
1905
+ en: Processing Lock Duration
1906
+ pt: Duração do Lock de Processamento
1907
+ description:
1908
+ en: Milliseconds an event stays locked while being processed before becoming available for retry
1909
+ pt: Milissegundos que um evento fica bloqueado durante o processamento antes de ficar disponível para reprocessamento
1910
+ value: 30000
1911
+ user_override: false
1912
+ subgroup_id:
1913
+ where:
1914
+ slug: retry-config
1915
+ - slug: outbox-max-attempts
1916
+ type: number
1917
+ component: input-number
1918
+ name:
1919
+ en: Max Retry Attempts
1920
+ pt: Máximo de Tentativas de Reprocessamento
1921
+ description:
1922
+ en: Maximum number of times an event is retried before being moved to dead letter queue
1923
+ pt: Número máximo de vezes que um evento é reprocessado antes de ser movido para fila de letra morta
1924
+ value: 3
1925
+ user_override: false
1926
+ subgroup_id:
1927
+ where:
1928
+ slug: retry-config
1929
+ - slug: outbox-retry-base-delay-ms
1930
+ type: number
1931
+ component: input-number
1932
+ name:
1933
+ en: Retry Base Delay
1934
+ pt: Atraso Base de Reprocessamento
1935
+ description:
1936
+ en: Initial delay in milliseconds for exponential backoff. Increases by 2x with each retry attempt
1937
+ pt: Atraso inicial em milissegundos para retirada exponencial. Aumenta 2x a cada tentativa de reprocessamento
1938
+ value: 1000
1939
+ user_override: false
1940
+ subgroup_id:
1941
+ where:
1942
+ slug: retry-config
1943
+ - slug: outbox-dead-letter-enabled
1944
+ type: boolean
1945
+ component: switch
1946
+ name:
1947
+ en: Dead Letter Queue
1948
+ pt: Fila de Letra Morta
1949
+ description:
1950
+ en: Move permanently failed events to dead letter status for manual review and recovery
1951
+ pt: Mover eventos com falha permanente para status de letra morta para revisão e recuperação manuais
1952
+ value: true
1953
+ user_override: false
1954
+ subgroup_id:
1955
+ where:
1956
+ slug: retry-config
1957
+
1958
+