@stack-spot/portal-network 0.183.0 → 0.184.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/CHANGELOG.md +2412 -2405
  2. package/dist/api/account.js +1 -1
  3. package/dist/api/agent-tools.js +1 -1
  4. package/dist/api/agent.js +1 -1
  5. package/dist/api/ai.js +1 -1
  6. package/dist/api/apiManagement.js +1 -1
  7. package/dist/api/apiRuntime.js +1 -1
  8. package/dist/api/cloudAccount.js +1 -1
  9. package/dist/api/cloudPlatform.js +1 -1
  10. package/dist/api/cloudPlatformHorizon.js +1 -1
  11. package/dist/api/cloudRuntimes.js +1 -1
  12. package/dist/api/cloudServices.js +1 -1
  13. package/dist/api/codeShift.js +1 -1
  14. package/dist/api/content.js +1 -1
  15. package/dist/api/dataIntegration.js +1 -1
  16. package/dist/api/discover.js +1 -1
  17. package/dist/api/genAiInference.js +1 -1
  18. package/dist/api/insights.js +1 -1
  19. package/dist/api/notification.js +1 -1
  20. package/dist/api/secrets.js +1 -1
  21. package/dist/api/serviceCatalog.js +1 -1
  22. package/dist/api/workspace-ai.js +1 -1
  23. package/dist/api/workspace.js +1 -1
  24. package/dist/api/workspaceManager.d.ts +16 -10
  25. package/dist/api/workspaceManager.d.ts.map +1 -1
  26. package/dist/api/workspaceManager.js +11 -1
  27. package/dist/api/workspaceManager.js.map +1 -1
  28. package/dist/api/workspaceSearchEngine.js +1 -1
  29. package/dist/client/workspace-manager.d.ts +6 -0
  30. package/dist/client/workspace-manager.d.ts.map +1 -1
  31. package/dist/client/workspace-manager.js +10 -1
  32. package/dist/client/workspace-manager.js.map +1 -1
  33. package/package.json +6 -6
  34. package/scripts/generate-apis.ts +134 -134
  35. package/src/api/account.ts +8367 -8367
  36. package/src/api/agent-tools.ts +2169 -2169
  37. package/src/api/agent.ts +1083 -1083
  38. package/src/api/ai.ts +3388 -3388
  39. package/src/api/apiManagement.ts +570 -570
  40. package/src/api/apiRuntime.ts +2103 -2103
  41. package/src/api/cloudAccount.ts +1239 -1239
  42. package/src/api/cloudPlatform.ts +927 -927
  43. package/src/api/cloudPlatformHorizon.ts +2655 -2655
  44. package/src/api/cloudRuntimes.ts +2043 -2043
  45. package/src/api/cloudServices.ts +1445 -1445
  46. package/src/api/codeShift.ts +3481 -3481
  47. package/src/api/content.ts +9785 -9785
  48. package/src/api/dataIntegration.ts +1657 -1657
  49. package/src/api/discover.ts +435 -435
  50. package/src/api/eventBus.ts +171 -171
  51. package/src/api/genAiInference.ts +603 -603
  52. package/src/api/insights.ts +310 -310
  53. package/src/api/notification.ts +334 -334
  54. package/src/api/secrets.ts +342 -342
  55. package/src/api/serviceCatalog.ts +2908 -2908
  56. package/src/api/workflows.ts +1669 -1669
  57. package/src/api/workspace-ai.ts +677 -677
  58. package/src/api/workspace.ts +5889 -5889
  59. package/src/api/workspaceManager.ts +2951 -2936
  60. package/src/api/workspaceSearchEngine.ts +153 -153
  61. package/src/api-addresses.ts +120 -120
  62. package/src/apis-itau.json +225 -225
  63. package/src/apis.json +225 -225
  64. package/src/client/account.ts +902 -902
  65. package/src/client/agent-tools.ts +210 -210
  66. package/src/client/agent.ts +81 -81
  67. package/src/client/ai.ts +395 -395
  68. package/src/client/api-management.ts +40 -40
  69. package/src/client/cloud-account.ts +70 -70
  70. package/src/client/cloud-platform-horizon.ts +113 -113
  71. package/src/client/cloud-platform.ts +163 -163
  72. package/src/client/cloud-runtimes.ts +129 -129
  73. package/src/client/cloud-services.ts +94 -94
  74. package/src/client/code-shift.ts +349 -349
  75. package/src/client/content.ts +538 -538
  76. package/src/client/data-integration.ts +191 -191
  77. package/src/client/discover.ts +89 -89
  78. package/src/client/event-bus.ts +84 -84
  79. package/src/client/gen-ai-inference.ts +65 -65
  80. package/src/client/insights.ts +28 -28
  81. package/src/client/notification.ts +32 -32
  82. package/src/client/runtime-manager.ts +76 -76
  83. package/src/client/secrets.ts +60 -60
  84. package/src/client/types.ts +377 -377
  85. package/src/client/workflow.ts +83 -83
  86. package/src/client/workspace-ai.ts +191 -191
  87. package/src/client/workspace-manager.ts +564 -560
  88. package/src/client/workspace-search.ts +39 -39
  89. package/src/client/workspace.ts +480 -480
  90. package/src/error/DefaultAPIError.ts +151 -151
  91. package/src/error/FileUploadError.ts +18 -18
  92. package/src/error/IgnoredErrorCodes.ts +3 -3
  93. package/src/error/StackspotAPIError.ts +101 -101
  94. package/src/error/StreamCanceledError.ts +10 -10
  95. package/src/error/StreamError.ts +7 -7
  96. package/src/error/StreamJsonError.ts +10 -10
  97. package/src/error/dictionary/account.ts +58 -58
  98. package/src/error/dictionary/action-details.ts +20 -20
  99. package/src/error/dictionary/action.ts +211 -211
  100. package/src/error/dictionary/agent-tools.ts +75 -75
  101. package/src/error/dictionary/ai-inference.ts +28 -28
  102. package/src/error/dictionary/base.ts +22 -22
  103. package/src/error/dictionary/cloud-platform.ts +82 -82
  104. package/src/error/dictionary/cnt-fields.ts +14 -14
  105. package/src/error/dictionary/cnt.ts +103 -103
  106. package/src/error/dictionary/code-shift.ts +12 -12
  107. package/src/error/dictionary/rte.ts +24 -24
  108. package/src/error/dictionary/rtm.ts +10 -10
  109. package/src/error/dictionary/secrets.ts +14 -14
  110. package/src/error/dictionary/workspace-ai.ts +10 -10
  111. package/src/error/dictionary/workspace-details.ts +15 -15
  112. package/src/error/dictionary/workspace-fields.ts +10 -10
  113. package/src/error/dictionary/workspace.ts +209 -209
  114. package/src/error/types.ts +21 -21
  115. package/src/index.ts +43 -43
  116. package/src/network/AutoInfiniteQuery.ts +115 -115
  117. package/src/network/AutoMutation.ts +27 -27
  118. package/src/network/AutoOperation.ts +73 -73
  119. package/src/network/AutoQuery.ts +75 -75
  120. package/src/network/ManualInfiniteQuery.ts +95 -95
  121. package/src/network/ManualMutation.ts +40 -40
  122. package/src/network/ManualOperation.ts +52 -52
  123. package/src/network/ManualQuery.ts +82 -82
  124. package/src/network/NetworkClient.ts +167 -167
  125. package/src/network/ReactQueryNetworkClient.ts +312 -312
  126. package/src/network/react-query-client.ts +14 -14
  127. package/src/network/types.ts +294 -294
  128. package/src/types.ts +1 -1
  129. package/src/utils/StreamedArray.tsx +146 -146
  130. package/src/utils/StreamedJson.tsx +166 -166
  131. package/src/utils/remove-authorization-param.ts +6 -6
  132. package/src/utils/string.ts +19 -19
  133. package/src/utils/use-extended-list.ts +80 -80
  134. package/src/utils/use-streamed-array.ts +17 -17
  135. package/tsconfig.build.json +4 -4
  136. package/tsconfig.json +10 -10
@@ -1,76 +1,76 @@
1
- import { Dictionary } from '@stack-spot/portal-translate'
2
-
3
- export const agentToolsDictionary = {
4
- en: {
5
- AGENT_1000_INVALID_JWT: 'Invalid JWT token',
6
- AGENT_1001_DECODE_JWT_ERROR: 'Error decoding JWT token',
7
- AGENTS_6000_FORBIDDEN_1: 'Insufficient permissions',
8
- AGENTS_6000_FORBIDDEN_2: 'You do not have permission to access the specified secret.',
9
- AGENTS_6000_FORBIDDEN_3: 'Toolkit publication is restricted to account secrets or if secrets are not present.',
10
- AGENT_1002_STRUCT_OUTPUT_WITH_BUILTIN_TOOLS_NOT_PERMITED: 'Structured output cannot be used alongside with builtin tools',
11
- AGENT_1003_REQUIRED_LLM_PARAM_NOT_PROVIDED: 'Required parameter of llm model was not provided',
12
- AGENT_1004_INVALID_LLM_PARAM: "The parameter '{param}' is invalid",
13
- AGENT_1005_INVALID_KNOWLEDGE_SOURCE_ID: 'Knowledge source is invalid',
14
- AGENT_1006_INVALID_LLM_PARAM_VALUE_TYPE: 'LLM param value is invalid',
15
- AGENT_1007_LLM_PARAM_VALUE_IS_REQUIRED: 'LLM param value is required',
16
- AGENT_1008_INVALID_ULID_FOR_MODEL_ID: 'Invalid ulid passed for model id',
17
- AGENT_1009_INVALID_STRUCTURE_OUTPUT_SCHEMA: 'Structure output schema is invalid. Please, check our documentation or contact our support',
18
- AGENT_1010_STRUCTURED_OUTPUT_SCHEMA_CONTAINS_INVALID_DATA: 'Your structure output schema contains invalid data. Please, check our documentation or contact our support',
19
- AGENT_1011_AGENT_WITH_SLUG_ALREADY_EXISTS: 'An agent with this slug already exists',
20
- AGENT_1013_INVALID_VISIBILITY: 'Visibility is invalid',
21
- AGENT_1015_AGENT_HAS_PERSONAL_SECRET_TOOL: 'It is not possible to publish this agent, because it has a tool with a personal secret',
22
- AGENT_2002_INVALID_VISIBILITY_CHANGE: 'Cannot change visibility',
23
- AGENT_2003_SECRETS_WITH_SAME_TYPE: 'Secrets with the same type are not allowed.',
24
- TOOL_1200_TOOL_IN_USE: 'You have a tool that is already in use by an Agent and therefore cannot be removed.',
25
- AGENT_1101_TOOLKIT_IN_USE: 'The toolkit is already in use by an Agent and therefore cannot be removed.',
26
- AGENT_1101_TOOLKIT_INVALID_CREDENTIAL_TYPE: 'Your toolkit has an invalid type of authorization. Only Client Credentials, and API Key are accepted.',
27
- AGENT_1102_TOOLKIT_AUTHENTICATION_FAILED: 'An error occurred during authentication in the toolkit.',
28
- AGENT_1105_TOOLKIT_WITH_PERSONAL_SECRET: 'It is not possible to share the agent, as it has a tool with a personal secret. Remove the tool or replace it with an organization secret.',
29
- AGENT_1012_AGENT_NOT_FOUND: 'Agent with id was not found',
30
- AGENT_1014_AGENT_TOOL_NOT_FOUND: 'Agent Tool with id was not found',
31
- AGENT_1100_TOOLKIT_NOT_FOUND: 'Toolkit with id was not found',
32
- TOOL_1201_TOOL_NOT_FOUND: 'Tool was not found',
33
- TOOL_1202_INVALID_SUB_AGENT_ASSIGNMENT: 'Cannot assign sub-agents, this agent is already a sub-agent of another agent.',
34
- TOOL_1203_INVALID_SUB_AGENT_SELF_ASSIGNMENT: 'Agent cannot be assigned as its own tool. Please select a different agent.',
35
- TOOL_1204_INVALID_SUB_AGENT_AS_ORCHESTRATOR: 'Cannot assign an orchestrator agent as a sub-agent to another orchestrator. Only single-level agent delegation is supported.',
36
- AGENT_5000_UNEXPECTED_ERROR: 'An unexpected error occurred. Try again later or contact our support',
37
- AGENT_2000_ACCOUNT_API_ERROR: 'Error with Account API integration',
38
- AGENT_2001_IAM_API_ERROR: 'Error with IAM API integration',
39
- },
40
- pt: {
41
- AGENT_1000_INVALID_JWT: 'Token JWT inválido',
42
- AGENT_1001_DECODE_JWT_ERROR: 'Erro ao decodificar o token JWT',
43
- AGENTS_6000_FORBIDDEN_1: 'Permissões insuficientes',
44
- AGENTS_6000_FORBIDDEN_2: 'Você não tem permissão para acessar o segredo especificado.',
45
- AGENTS_6000_FORBIDDEN_3: 'A publicação do toolkit é restrita a segredos de conta ou se segredos não estiverem presentes.',
46
- AGENT_1002_STRUCT_OUTPUT_WITH_BUILTIN_TOOLS_NOT_PERMITED: 'A saída estruturada não pode ser usada juntamente com ferramentas internas.',
47
- AGENT_1003_REQUIRED_LLM_PARAM_NOT_PROVIDED: 'Parâmetro obrigatório do modelo LLM não foi fornecido',
48
- AGENT_1004_INVALID_LLM_PARAM: "O parâmetro '{param}' é inválido",
49
- AGENT_1005_INVALID_KNOWLEDGE_SOURCE_ID: 'Fonte de conhecimento inválida',
50
- AGENT_1006_INVALID_LLM_PARAM_VALUE_TYPE: 'Valor do parâmetro LLM é inválido',
51
- AGENT_1007_LLM_PARAM_VALUE_IS_REQUIRED: 'Valor do parâmetro LLM é obrigatório',
52
- AGENT_1008_INVALID_ULID_FOR_MODEL_ID: 'ULID inválido fornecido para o ID do modelo',
53
- AGENT_1009_INVALID_STRUCTURE_OUTPUT_SCHEMA: 'O schema de saída da estrutura é inválido. Por favor, verifique nossa documentação ou entre em contato com o suporte',
54
- AGENT_1010_STRUCTURED_OUTPUT_SCHEMA_CONTAINS_INVALID_DATA: 'Seu schema de saída da estrutura contém dados inválidos. Por favor, verifique nossa documentação ou entre em contato com o suporte',
55
- AGENT_1011_AGENT_WITH_SLUG_ALREADY_EXISTS: 'Já existe um agente com este slug',
56
- AGENT_1013_INVALID_VISIBILITY: 'Visibilidade inválida',
57
- AGENT_1015_AGENT_HAS_PERSONAL_SECRET_TOOL: 'Não é possível publicar este agente, pois ele possui uma ferramenta com segredo pessoal',
58
- AGENT_2002_INVALID_VISIBILITY_CHANGE: 'Não é possível alterar a visibilidade',
59
- AGENT_2003_SECRETS_WITH_SAME_TYPE: 'Segredos do mesmo tipo não são permitidos.',
60
- TOOL_1200_TOOL_IN_USE: 'Você possui uma ferramenta que já está em uso por um agente e, portanto, não pode ser removida.',
61
- AGENT_1101_TOOLKIT_IN_USE: 'O toolkit já está em uso por um agente e, portanto, não pode ser removido.',
62
- AGENT_1101_TOOLKIT_INVALID_CREDENTIAL_TYPE: 'Seu toolkit possui um tipo de autorização inválido. Apenas Client Credentials e API Key são aceitos.',
63
- AGENT_1102_TOOLKIT_AUTHENTICATION_FAILED: 'Ocorreu um erro durante a autenticação no toolkit.',
64
- AGENT_1105_TOOLKIT_WITH_PERSONAL_SECRET: 'Não é possível compartilhar o agente, pois ele possui uma ferramenta com segredo pessoal. Remova a ferramenta ou substitua por um segredo da organização.',
65
- AGENT_1012_AGENT_NOT_FOUND: 'Agente com o ID informado não foi encontrado',
66
- AGENT_1014_AGENT_TOOL_NOT_FOUND: 'Ferramenta do agente com o ID informado não foi encontrada',
67
- AGENT_1100_TOOLKIT_NOT_FOUND: 'Toolkit com o ID informado não foi encontrado',
68
- TOOL_1201_TOOL_NOT_FOUND: 'Ferramenta não encontrada',
69
- TOOL_1202_INVALID_SUB_AGENT_ASSIGNMENT: 'Não é possível atribuir subagentes, este agente já é subagente de outro agente.',
70
- TOOL_1203_INVALID_SUB_AGENT_SELF_ASSIGNMENT: 'O agente não pode ser atribuído como sua própria ferramenta. Por favor, selecione outro agente.',
71
- TOOL_1204_INVALID_SUB_AGENT_AS_ORCHESTRATOR: 'Não é possível atribuir um agente orquestrador como subagente de outro orquestrador. Apenas delegação de agente em um único nível é suportada.',
72
- AGENT_5000_UNEXPECTED_ERROR: 'Ocorreu um erro inesperado. Tente novamente mais tarde ou entre em contato com o suporte',
73
- AGENT_2000_ACCOUNT_API_ERROR: 'Erro na integração com a API de Conta',
74
- AGENT_2001_IAM_API_ERROR: 'Erro na integração com a API IAM',
75
- },
1
+ import { Dictionary } from '@stack-spot/portal-translate'
2
+
3
+ export const agentToolsDictionary = {
4
+ en: {
5
+ AGENT_1000_INVALID_JWT: 'Invalid JWT token',
6
+ AGENT_1001_DECODE_JWT_ERROR: 'Error decoding JWT token',
7
+ AGENTS_6000_FORBIDDEN_1: 'Insufficient permissions',
8
+ AGENTS_6000_FORBIDDEN_2: 'You do not have permission to access the specified secret.',
9
+ AGENTS_6000_FORBIDDEN_3: 'Toolkit publication is restricted to account secrets or if secrets are not present.',
10
+ AGENT_1002_STRUCT_OUTPUT_WITH_BUILTIN_TOOLS_NOT_PERMITED: 'Structured output cannot be used alongside with builtin tools',
11
+ AGENT_1003_REQUIRED_LLM_PARAM_NOT_PROVIDED: 'Required parameter of llm model was not provided',
12
+ AGENT_1004_INVALID_LLM_PARAM: "The parameter '{param}' is invalid",
13
+ AGENT_1005_INVALID_KNOWLEDGE_SOURCE_ID: 'Knowledge source is invalid',
14
+ AGENT_1006_INVALID_LLM_PARAM_VALUE_TYPE: 'LLM param value is invalid',
15
+ AGENT_1007_LLM_PARAM_VALUE_IS_REQUIRED: 'LLM param value is required',
16
+ AGENT_1008_INVALID_ULID_FOR_MODEL_ID: 'Invalid ulid passed for model id',
17
+ AGENT_1009_INVALID_STRUCTURE_OUTPUT_SCHEMA: 'Structure output schema is invalid. Please, check our documentation or contact our support',
18
+ AGENT_1010_STRUCTURED_OUTPUT_SCHEMA_CONTAINS_INVALID_DATA: 'Your structure output schema contains invalid data. Please, check our documentation or contact our support',
19
+ AGENT_1011_AGENT_WITH_SLUG_ALREADY_EXISTS: 'An agent with this slug already exists',
20
+ AGENT_1013_INVALID_VISIBILITY: 'Visibility is invalid',
21
+ AGENT_1015_AGENT_HAS_PERSONAL_SECRET_TOOL: 'It is not possible to publish this agent, because it has a tool with a personal secret',
22
+ AGENT_2002_INVALID_VISIBILITY_CHANGE: 'Cannot change visibility',
23
+ AGENT_2003_SECRETS_WITH_SAME_TYPE: 'Secrets with the same type are not allowed.',
24
+ TOOL_1200_TOOL_IN_USE: 'You have a tool that is already in use by an Agent and therefore cannot be removed.',
25
+ AGENT_1101_TOOLKIT_IN_USE: 'The toolkit is already in use by an Agent and therefore cannot be removed.',
26
+ AGENT_1101_TOOLKIT_INVALID_CREDENTIAL_TYPE: 'Your toolkit has an invalid type of authorization. Only Client Credentials, and API Key are accepted.',
27
+ AGENT_1102_TOOLKIT_AUTHENTICATION_FAILED: 'An error occurred during authentication in the toolkit.',
28
+ AGENT_1105_TOOLKIT_WITH_PERSONAL_SECRET: 'It is not possible to share the agent, as it has a tool with a personal secret. Remove the tool or replace it with an organization secret.',
29
+ AGENT_1012_AGENT_NOT_FOUND: 'Agent with id was not found',
30
+ AGENT_1014_AGENT_TOOL_NOT_FOUND: 'Agent Tool with id was not found',
31
+ AGENT_1100_TOOLKIT_NOT_FOUND: 'Toolkit with id was not found',
32
+ TOOL_1201_TOOL_NOT_FOUND: 'Tool was not found',
33
+ TOOL_1202_INVALID_SUB_AGENT_ASSIGNMENT: 'Cannot assign sub-agents, this agent is already a sub-agent of another agent.',
34
+ TOOL_1203_INVALID_SUB_AGENT_SELF_ASSIGNMENT: 'Agent cannot be assigned as its own tool. Please select a different agent.',
35
+ TOOL_1204_INVALID_SUB_AGENT_AS_ORCHESTRATOR: 'Cannot assign an orchestrator agent as a sub-agent to another orchestrator. Only single-level agent delegation is supported.',
36
+ AGENT_5000_UNEXPECTED_ERROR: 'An unexpected error occurred. Try again later or contact our support',
37
+ AGENT_2000_ACCOUNT_API_ERROR: 'Error with Account API integration',
38
+ AGENT_2001_IAM_API_ERROR: 'Error with IAM API integration',
39
+ },
40
+ pt: {
41
+ AGENT_1000_INVALID_JWT: 'Token JWT inválido',
42
+ AGENT_1001_DECODE_JWT_ERROR: 'Erro ao decodificar o token JWT',
43
+ AGENTS_6000_FORBIDDEN_1: 'Permissões insuficientes',
44
+ AGENTS_6000_FORBIDDEN_2: 'Você não tem permissão para acessar o segredo especificado.',
45
+ AGENTS_6000_FORBIDDEN_3: 'A publicação do toolkit é restrita a segredos de conta ou se segredos não estiverem presentes.',
46
+ AGENT_1002_STRUCT_OUTPUT_WITH_BUILTIN_TOOLS_NOT_PERMITED: 'A saída estruturada não pode ser usada juntamente com ferramentas internas.',
47
+ AGENT_1003_REQUIRED_LLM_PARAM_NOT_PROVIDED: 'Parâmetro obrigatório do modelo LLM não foi fornecido',
48
+ AGENT_1004_INVALID_LLM_PARAM: "O parâmetro '{param}' é inválido",
49
+ AGENT_1005_INVALID_KNOWLEDGE_SOURCE_ID: 'Fonte de conhecimento inválida',
50
+ AGENT_1006_INVALID_LLM_PARAM_VALUE_TYPE: 'Valor do parâmetro LLM é inválido',
51
+ AGENT_1007_LLM_PARAM_VALUE_IS_REQUIRED: 'Valor do parâmetro LLM é obrigatório',
52
+ AGENT_1008_INVALID_ULID_FOR_MODEL_ID: 'ULID inválido fornecido para o ID do modelo',
53
+ AGENT_1009_INVALID_STRUCTURE_OUTPUT_SCHEMA: 'O schema de saída da estrutura é inválido. Por favor, verifique nossa documentação ou entre em contato com o suporte',
54
+ AGENT_1010_STRUCTURED_OUTPUT_SCHEMA_CONTAINS_INVALID_DATA: 'Seu schema de saída da estrutura contém dados inválidos. Por favor, verifique nossa documentação ou entre em contato com o suporte',
55
+ AGENT_1011_AGENT_WITH_SLUG_ALREADY_EXISTS: 'Já existe um agente com este slug',
56
+ AGENT_1013_INVALID_VISIBILITY: 'Visibilidade inválida',
57
+ AGENT_1015_AGENT_HAS_PERSONAL_SECRET_TOOL: 'Não é possível publicar este agente, pois ele possui uma ferramenta com segredo pessoal',
58
+ AGENT_2002_INVALID_VISIBILITY_CHANGE: 'Não é possível alterar a visibilidade',
59
+ AGENT_2003_SECRETS_WITH_SAME_TYPE: 'Segredos do mesmo tipo não são permitidos.',
60
+ TOOL_1200_TOOL_IN_USE: 'Você possui uma ferramenta que já está em uso por um agente e, portanto, não pode ser removida.',
61
+ AGENT_1101_TOOLKIT_IN_USE: 'O toolkit já está em uso por um agente e, portanto, não pode ser removido.',
62
+ AGENT_1101_TOOLKIT_INVALID_CREDENTIAL_TYPE: 'Seu toolkit possui um tipo de autorização inválido. Apenas Client Credentials e API Key são aceitos.',
63
+ AGENT_1102_TOOLKIT_AUTHENTICATION_FAILED: 'Ocorreu um erro durante a autenticação no toolkit.',
64
+ AGENT_1105_TOOLKIT_WITH_PERSONAL_SECRET: 'Não é possível compartilhar o agente, pois ele possui uma ferramenta com segredo pessoal. Remova a ferramenta ou substitua por um segredo da organização.',
65
+ AGENT_1012_AGENT_NOT_FOUND: 'Agente com o ID informado não foi encontrado',
66
+ AGENT_1014_AGENT_TOOL_NOT_FOUND: 'Ferramenta do agente com o ID informado não foi encontrada',
67
+ AGENT_1100_TOOLKIT_NOT_FOUND: 'Toolkit com o ID informado não foi encontrado',
68
+ TOOL_1201_TOOL_NOT_FOUND: 'Ferramenta não encontrada',
69
+ TOOL_1202_INVALID_SUB_AGENT_ASSIGNMENT: 'Não é possível atribuir subagentes, este agente já é subagente de outro agente.',
70
+ TOOL_1203_INVALID_SUB_AGENT_SELF_ASSIGNMENT: 'O agente não pode ser atribuído como sua própria ferramenta. Por favor, selecione outro agente.',
71
+ TOOL_1204_INVALID_SUB_AGENT_AS_ORCHESTRATOR: 'Não é possível atribuir um agente orquestrador como subagente de outro orquestrador. Apenas delegação de agente em um único nível é suportada.',
72
+ AGENT_5000_UNEXPECTED_ERROR: 'Ocorreu um erro inesperado. Tente novamente mais tarde ou entre em contato com o suporte',
73
+ AGENT_2000_ACCOUNT_API_ERROR: 'Erro na integração com a API de Conta',
74
+ AGENT_2001_IAM_API_ERROR: 'Erro na integração com a API IAM',
75
+ },
76
76
  } satisfies Dictionary
@@ -1,28 +1,28 @@
1
- import { Dictionary } from '@stack-spot/portal-translate'
2
-
3
- export const inferenceDictionary = {
4
- en: {
5
- INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: 'Error integrating with the agent tool.',
6
- INFERENCE_2501_MODEL_DOES_NOT_EXISTS: 'Model does not exists.',
7
- INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: 'Model resource does not exists',
8
- INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: 'Unable to delete the default model resource.',
9
- INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: 'Cannot update default resource {1} to non-default',
10
- INFERENCE_2505_MODEL_DEFAULT_RESOURCES: 'Cannot deactivate model with default resources',
11
- INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: 'Self-hosted provider is missing an account ID.',
12
- INFERENCE_3002_MODEL_NOT_ACTIVE: 'The model is not active.',
13
- INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: 'The LLM provider is not supported.',
14
- INFERENCE_3004_INVALID_REQUESTED_MODEL: 'The requested model is invalid.',
15
- },
16
- pt: {
17
- INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: 'Erro ao integrar com a ferramenta do agente.',
18
- INFERENCE_2501_MODEL_DOES_NOT_EXISTS: 'O modelo especificado não existe.',
19
- INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: 'O recurso do modelo não existe.',
20
- INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: 'Não é possível excluir o recurso padrão do modelo.',
21
- INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: 'Não é possível atualizar o recurso padrão {1} para não padrão.',
22
- INFERENCE_2505_MODEL_DEFAULT_RESOURCES: 'Não é possível desativar o modelo com recursos padrão.',
23
- INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: 'O provedor auto-hospedado está sem um ID de conta.',
24
- INFERENCE_3002_MODEL_NOT_ACTIVE: 'O modelo não está ativo.',
25
- INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: 'O provedor LLM não é suportado.',
26
- INFERENCE_3004_INVALID_REQUESTED_MODEL: 'O modelo solicitado é inválido.',
27
- },
28
- } satisfies Dictionary
1
+ import { Dictionary } from '@stack-spot/portal-translate'
2
+
3
+ export const inferenceDictionary = {
4
+ en: {
5
+ INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: 'Error integrating with the agent tool.',
6
+ INFERENCE_2501_MODEL_DOES_NOT_EXISTS: 'Model does not exists.',
7
+ INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: 'Model resource does not exists',
8
+ INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: 'Unable to delete the default model resource.',
9
+ INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: 'Cannot update default resource {1} to non-default',
10
+ INFERENCE_2505_MODEL_DEFAULT_RESOURCES: 'Cannot deactivate model with default resources',
11
+ INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: 'Self-hosted provider is missing an account ID.',
12
+ INFERENCE_3002_MODEL_NOT_ACTIVE: 'The model is not active.',
13
+ INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: 'The LLM provider is not supported.',
14
+ INFERENCE_3004_INVALID_REQUESTED_MODEL: 'The requested model is invalid.',
15
+ },
16
+ pt: {
17
+ INFERENCE_2500_AGENT_TOOL_INTEGRATION_ERROR: 'Erro ao integrar com a ferramenta do agente.',
18
+ INFERENCE_2501_MODEL_DOES_NOT_EXISTS: 'O modelo especificado não existe.',
19
+ INFERENCE_2502_MODEL_RESOURCE_DOES_NOT_EXISTS: 'O recurso do modelo não existe.',
20
+ INFERENCE_2503_UNABLE_TO_DELETE_DEFAULT_MODEL_RESOURCE: 'Não é possível excluir o recurso padrão do modelo.',
21
+ INFERENCE_2504_MODEL_RESOURCE_DEFAULT_UPDATE_NOT_ALLOWED: 'Não é possível atualizar o recurso padrão {1} para não padrão.',
22
+ INFERENCE_2505_MODEL_DEFAULT_RESOURCES: 'Não é possível desativar o modelo com recursos padrão.',
23
+ INFERENCE_3001_SELF_HOSTED_PROVIDER_WITHOUT_ACCOUNT_ID: 'O provedor auto-hospedado está sem um ID de conta.',
24
+ INFERENCE_3002_MODEL_NOT_ACTIVE: 'O modelo não está ativo.',
25
+ INFERENCE_3003_LLM_PROVIDER_NOT_SUPPORTED: 'O provedor LLM não é suportado.',
26
+ INFERENCE_3004_INVALID_REQUESTED_MODEL: 'O modelo solicitado é inválido.',
27
+ },
28
+ } satisfies Dictionary
@@ -1,22 +1,22 @@
1
- import { Dictionary } from '@stack-spot/portal-translate'
2
-
3
- export const baseDictionary = {
4
- en: {
5
- defaultTitle: "Oops, something's wrong. Please, try again.",
6
- 503: 'The API is currently unavailable. Please, try again later.',
7
- 504: 'The operation took too long to run and timed out. Please, try again.',
8
- 422: "Some of the data provided doesn't seem right. Please, check it and try again.",
9
- 404: "The resource has not been found. Please, make sure it hasn't been deleted.",
10
- 403: 'You are not allowed to execute this operation.',
11
- 401: 'We found a problem with the your session, please try to logoff and login again.',
12
- },
13
- pt: {
14
- defaultTitle: 'Ops, algo deu errado. Por favor, tente novamente.',
15
- 503: 'A API está indisponível. Por favor, tente mais tarde.',
16
- 504: 'A operação levou muito tempo para executar e foi cancelada. Por favor, tente novamente.',
17
- 422: 'Parte dos dados fornecidos não parecem corretos. Por favor, verifique e tente novamente.',
18
- 404: 'O recurso não foi encontrado. Por favor, certifique-se de que ele não foi deletado.',
19
- 403: 'Você não tem permissão para executar esta operação.',
20
- 401: 'Encontramos um problema na sua sessão, por favor, tente fazer logoff e então login novamente.',
21
- },
22
- } satisfies Dictionary
1
+ import { Dictionary } from '@stack-spot/portal-translate'
2
+
3
+ export const baseDictionary = {
4
+ en: {
5
+ defaultTitle: "Oops, something's wrong. Please, try again.",
6
+ 503: 'The API is currently unavailable. Please, try again later.',
7
+ 504: 'The operation took too long to run and timed out. Please, try again.',
8
+ 422: "Some of the data provided doesn't seem right. Please, check it and try again.",
9
+ 404: "The resource has not been found. Please, make sure it hasn't been deleted.",
10
+ 403: 'You are not allowed to execute this operation.',
11
+ 401: 'We found a problem with the your session, please try to logoff and login again.',
12
+ },
13
+ pt: {
14
+ defaultTitle: 'Ops, algo deu errado. Por favor, tente novamente.',
15
+ 503: 'A API está indisponível. Por favor, tente mais tarde.',
16
+ 504: 'A operação levou muito tempo para executar e foi cancelada. Por favor, tente novamente.',
17
+ 422: 'Parte dos dados fornecidos não parecem corretos. Por favor, verifique e tente novamente.',
18
+ 404: 'O recurso não foi encontrado. Por favor, certifique-se de que ele não foi deletado.',
19
+ 403: 'Você não tem permissão para executar esta operação.',
20
+ 401: 'Encontramos um problema na sua sessão, por favor, tente fazer logoff e então login novamente.',
21
+ },
22
+ } satisfies Dictionary
@@ -1,82 +1,82 @@
1
- import { Dictionary } from '@stack-spot/portal-translate'
2
-
3
- export const scfDictionary = {
4
- en: {
5
- SCF_CERTIFICATE_ERROR: 'Certificate operation failed.',
6
- SCF_CERTIFICATE_NOT_FOUND_ERROR: 'Certificate with ID {1} not found.',
7
- SCF_CIDR_ERROR: 'CIDR operation failed.',
8
- SCF_CIDR_RANGE_CONFLICT: 'CIDR range {1} conflicts with an existing range.',
9
- SCF_CIDR_FOUNDATION_RESERVED: 'CIDR range {1} conflicts with the Foundation\'s reserved range.',
10
- SCF_CIDR_NOT_FOUND_ERROR: 'CIDR with ID {1} not found.',
11
- SCF_CONTROL_TOWER_BUSY_ERROR: 'Foundation\'s Control Tower is currently busy. Please try again later.',
12
- SCF_DNS_RECORD_ERROR: 'DNS Record operation failed.',
13
- SCF_DNS_RECORD_NOT_FOUND_ERROR: 'DNS Record with ID {1} not found.',
14
- SCF_DNS_ZONE_ERROR: 'DNS Zone operation failed.',
15
- SCF_DNS_ZONE_NOT_FOUND_ERROR: 'DNS Zone with ID {1} not found.',
16
- SCF_DNS_ZONE_NOT_READY_ERROR: 'DNS Zone with ID {1} not ready.',
17
- SCF_FOLDER_ALREADY_EXISTS_ERROR: 'A folder named {1} already exists.',
18
- SCF_FOLDER_ERROR: 'Folder operation failed.',
19
- SCF_FOLDER_NOT_FOUND_ERROR: 'Folder with ID {1} not found.',
20
- SCF_FOLDER_NOT_READY_ERROR: 'Folder with ID {1} not ready.',
21
- SCF_FOUNDATION_ERROR: 'Foundation operation failed.',
22
- SCF_FOUNDATION_NOT_FOUND_ERROR: 'Foundation with ID {1} not found.',
23
- SCF_FOUNDATION_NOT_READY_ERROR: 'Foundation with ID {1} not ready.',
24
- SCF_INBOUND_ERROR: 'Inbound operation failed.',
25
- SCF_INVALID_REGEX_ERROR: 'The value {1} is invalid.',
26
- SCF_MASTER_ACCOUNT_ERROR: 'Master Account operation failed.',
27
- SCF_MASTER_ACCOUNT_NOT_FOUND_ERROR: 'No Master Account available for Foundation creation.',
28
- SCF_NAMESPACE_CREATION_ERROR: 'An error occurred while creating the Kubernetes namespace.',
29
- SCF_NETWORK_CONNECTION_ERROR: 'Network Connection operation failed.',
30
- SCF_NETWORK_ERROR: 'Network operation failed.',
31
- SCF_NETWORK_NOT_FOUND_ERROR: 'Network with ID {1} not found.',
32
- SCF_NETWORK_NOT_READY_ERROR: 'Network with ID {1} not ready.',
33
- SCF_PARENT_FOLDER_NOT_READY_ERROR: 'Parent Folder with ID {1} not ready.',
34
- SCF_PROJECT_ERROR: 'Project operation failed.',
35
- SCF_PROJECT_NOT_FOUND_ERROR: 'Project with ID {1} not found.',
36
- SCF_PROJECT_NOT_READY_ERROR: 'Project with ID {1} not ready.',
37
- SCF_UNKNOWN_ERROR: 'An unexpected error has occurred.',
38
- SCF_VPN_CONFIGURATION_NOT_FOUND_ERROR: 'Configuration for VPN with ID {1} not found.',
39
- SCF_VPN_ERROR: 'VPN operation failed.',
40
- SCF_VPN_NOT_FOUND_ERROR: 'VPN with ID {1} not found.',
41
- SCF_VPN_NOT_READY_ERROR: 'VPN with ID {1} not ready.',
42
- },
43
- pt: {
44
- SCF_CERTIFICATE_ERROR: 'Falha na operação de Certificado.',
45
- SCF_CERTIFICATE_NOT_FOUND_ERROR: 'Certificado com ID {1} não encontrado.',
46
- SCF_CIDR_ERROR: 'Falha na operação de CIDR.',
47
- SCF_CIDR_RANGE_CONFLICT: 'O intervalo CIDR {1} conflita com um intervalo existente.',
48
- SCF_CIDR_FOUNDATION_RESERVED: 'O intervalo CIDR {1} conflita com o intervalo reservado da Fundação.',
49
- SCF_CIDR_NOT_FOUND_ERROR: 'CIDR com ID {1} não encontrado.',
50
- SCF_CONTROL_TOWER_BUSY_ERROR: 'Control Tower da Fundação está ocupada no momento. Por favor, tente novamente mais tarde.',
51
- SCF_DNS_RECORD_ERROR: 'Falha na operação de DNS Record.',
52
- SCF_DNS_RECORD_NOT_FOUND_ERROR: 'DNS Record com ID {1} não encontrado.',
53
- SCF_DNS_ZONE_ERROR: 'Falha na operação de DNS Zone.',
54
- SCF_DNS_ZONE_NOT_FOUND_ERROR: 'DNS Zone com ID {1} não encontrada.',
55
- SCF_DNS_ZONE_NOT_READY_ERROR: 'DNS Zone com ID {1} não está pronta.',
56
- SCF_FOLDER_ALREADY_EXISTS_ERROR: 'Uma Pasta com o nome {1} já existe.',
57
- SCF_FOLDER_ERROR: 'Falha na operação de Pasta.',
58
- SCF_FOLDER_NOT_FOUND_ERROR: 'Pasta com ID {1} não encontrada.',
59
- SCF_FOLDER_NOT_READY_ERROR: 'Pasta com ID {1} não está pronta.',
60
- SCF_FOUNDATION_ERROR: 'Falha na operação da Fundação.',
61
- SCF_FOUNDATION_NOT_FOUND_ERROR: 'Fundação com ID {1} não encontrada.',
62
- SCF_FOUNDATION_NOT_READY_ERROR: 'Fundação com ID {1} não está pronta.',
63
- SCF_INBOUND_ERROR: 'Falha na operação de Inbound.',
64
- SCF_INVALID_REGEX_ERROR: 'O valor {1} é inválido.',
65
- SCF_MASTER_ACCOUNT_ERROR: 'Falha na operação da Master Account.',
66
- SCF_MASTER_ACCOUNT_NOT_FOUND_ERROR: 'Nenhuma Master Account disponível para criação da Fundação.',
67
- SCF_NAMESPACE_CREATION_ERROR: 'Ocorreu um erro ao criar o namespace no Kubernetes.',
68
- SCF_NETWORK_CONNECTION_ERROR: 'Falha na operação de Network Connection.',
69
- SCF_NETWORK_ERROR: 'Falha na operação de Network.',
70
- SCF_NETWORK_NOT_FOUND_ERROR: 'Network com ID {1} não encontrada.',
71
- SCF_NETWORK_NOT_READY_ERROR: 'Network com ID {1} não está pronta.',
72
- SCF_PARENT_FOLDER_NOT_READY_ERROR: 'Pasta pai com ID {1} não está pronta.',
73
- SCF_PROJECT_ERROR: 'Falha na operação do Projeto.',
74
- SCF_PROJECT_NOT_FOUND_ERROR: 'Projeto com ID {1} não encontrado.',
75
- SCF_PROJECT_NOT_READY_ERROR: 'Projeto com ID {1} não está pronto.',
76
- SCF_UNKNOWN_ERROR: 'Ocorreu um erro inesperado.',
77
- SCF_VPN_CONFIGURATION_NOT_FOUND_ERROR: 'Configuração para VPN com ID {1} não encontrada.',
78
- SCF_VPN_ERROR: 'Falha na operação de VPN.',
79
- SCF_VPN_NOT_FOUND_ERROR: 'VPN com ID {1} não encontrada.',
80
- SCF_VPN_NOT_READY_ERROR: 'VPN com ID {1} não está pronta.',
81
- },
82
- } satisfies Dictionary
1
+ import { Dictionary } from '@stack-spot/portal-translate'
2
+
3
+ export const scfDictionary = {
4
+ en: {
5
+ SCF_CERTIFICATE_ERROR: 'Certificate operation failed.',
6
+ SCF_CERTIFICATE_NOT_FOUND_ERROR: 'Certificate with ID {1} not found.',
7
+ SCF_CIDR_ERROR: 'CIDR operation failed.',
8
+ SCF_CIDR_RANGE_CONFLICT: 'CIDR range {1} conflicts with an existing range.',
9
+ SCF_CIDR_FOUNDATION_RESERVED: 'CIDR range {1} conflicts with the Foundation\'s reserved range.',
10
+ SCF_CIDR_NOT_FOUND_ERROR: 'CIDR with ID {1} not found.',
11
+ SCF_CONTROL_TOWER_BUSY_ERROR: 'Foundation\'s Control Tower is currently busy. Please try again later.',
12
+ SCF_DNS_RECORD_ERROR: 'DNS Record operation failed.',
13
+ SCF_DNS_RECORD_NOT_FOUND_ERROR: 'DNS Record with ID {1} not found.',
14
+ SCF_DNS_ZONE_ERROR: 'DNS Zone operation failed.',
15
+ SCF_DNS_ZONE_NOT_FOUND_ERROR: 'DNS Zone with ID {1} not found.',
16
+ SCF_DNS_ZONE_NOT_READY_ERROR: 'DNS Zone with ID {1} not ready.',
17
+ SCF_FOLDER_ALREADY_EXISTS_ERROR: 'A folder named {1} already exists.',
18
+ SCF_FOLDER_ERROR: 'Folder operation failed.',
19
+ SCF_FOLDER_NOT_FOUND_ERROR: 'Folder with ID {1} not found.',
20
+ SCF_FOLDER_NOT_READY_ERROR: 'Folder with ID {1} not ready.',
21
+ SCF_FOUNDATION_ERROR: 'Foundation operation failed.',
22
+ SCF_FOUNDATION_NOT_FOUND_ERROR: 'Foundation with ID {1} not found.',
23
+ SCF_FOUNDATION_NOT_READY_ERROR: 'Foundation with ID {1} not ready.',
24
+ SCF_INBOUND_ERROR: 'Inbound operation failed.',
25
+ SCF_INVALID_REGEX_ERROR: 'The value {1} is invalid.',
26
+ SCF_MASTER_ACCOUNT_ERROR: 'Master Account operation failed.',
27
+ SCF_MASTER_ACCOUNT_NOT_FOUND_ERROR: 'No Master Account available for Foundation creation.',
28
+ SCF_NAMESPACE_CREATION_ERROR: 'An error occurred while creating the Kubernetes namespace.',
29
+ SCF_NETWORK_CONNECTION_ERROR: 'Network Connection operation failed.',
30
+ SCF_NETWORK_ERROR: 'Network operation failed.',
31
+ SCF_NETWORK_NOT_FOUND_ERROR: 'Network with ID {1} not found.',
32
+ SCF_NETWORK_NOT_READY_ERROR: 'Network with ID {1} not ready.',
33
+ SCF_PARENT_FOLDER_NOT_READY_ERROR: 'Parent Folder with ID {1} not ready.',
34
+ SCF_PROJECT_ERROR: 'Project operation failed.',
35
+ SCF_PROJECT_NOT_FOUND_ERROR: 'Project with ID {1} not found.',
36
+ SCF_PROJECT_NOT_READY_ERROR: 'Project with ID {1} not ready.',
37
+ SCF_UNKNOWN_ERROR: 'An unexpected error has occurred.',
38
+ SCF_VPN_CONFIGURATION_NOT_FOUND_ERROR: 'Configuration for VPN with ID {1} not found.',
39
+ SCF_VPN_ERROR: 'VPN operation failed.',
40
+ SCF_VPN_NOT_FOUND_ERROR: 'VPN with ID {1} not found.',
41
+ SCF_VPN_NOT_READY_ERROR: 'VPN with ID {1} not ready.',
42
+ },
43
+ pt: {
44
+ SCF_CERTIFICATE_ERROR: 'Falha na operação de Certificado.',
45
+ SCF_CERTIFICATE_NOT_FOUND_ERROR: 'Certificado com ID {1} não encontrado.',
46
+ SCF_CIDR_ERROR: 'Falha na operação de CIDR.',
47
+ SCF_CIDR_RANGE_CONFLICT: 'O intervalo CIDR {1} conflita com um intervalo existente.',
48
+ SCF_CIDR_FOUNDATION_RESERVED: 'O intervalo CIDR {1} conflita com o intervalo reservado da Fundação.',
49
+ SCF_CIDR_NOT_FOUND_ERROR: 'CIDR com ID {1} não encontrado.',
50
+ SCF_CONTROL_TOWER_BUSY_ERROR: 'Control Tower da Fundação está ocupada no momento. Por favor, tente novamente mais tarde.',
51
+ SCF_DNS_RECORD_ERROR: 'Falha na operação de DNS Record.',
52
+ SCF_DNS_RECORD_NOT_FOUND_ERROR: 'DNS Record com ID {1} não encontrado.',
53
+ SCF_DNS_ZONE_ERROR: 'Falha na operação de DNS Zone.',
54
+ SCF_DNS_ZONE_NOT_FOUND_ERROR: 'DNS Zone com ID {1} não encontrada.',
55
+ SCF_DNS_ZONE_NOT_READY_ERROR: 'DNS Zone com ID {1} não está pronta.',
56
+ SCF_FOLDER_ALREADY_EXISTS_ERROR: 'Uma Pasta com o nome {1} já existe.',
57
+ SCF_FOLDER_ERROR: 'Falha na operação de Pasta.',
58
+ SCF_FOLDER_NOT_FOUND_ERROR: 'Pasta com ID {1} não encontrada.',
59
+ SCF_FOLDER_NOT_READY_ERROR: 'Pasta com ID {1} não está pronta.',
60
+ SCF_FOUNDATION_ERROR: 'Falha na operação da Fundação.',
61
+ SCF_FOUNDATION_NOT_FOUND_ERROR: 'Fundação com ID {1} não encontrada.',
62
+ SCF_FOUNDATION_NOT_READY_ERROR: 'Fundação com ID {1} não está pronta.',
63
+ SCF_INBOUND_ERROR: 'Falha na operação de Inbound.',
64
+ SCF_INVALID_REGEX_ERROR: 'O valor {1} é inválido.',
65
+ SCF_MASTER_ACCOUNT_ERROR: 'Falha na operação da Master Account.',
66
+ SCF_MASTER_ACCOUNT_NOT_FOUND_ERROR: 'Nenhuma Master Account disponível para criação da Fundação.',
67
+ SCF_NAMESPACE_CREATION_ERROR: 'Ocorreu um erro ao criar o namespace no Kubernetes.',
68
+ SCF_NETWORK_CONNECTION_ERROR: 'Falha na operação de Network Connection.',
69
+ SCF_NETWORK_ERROR: 'Falha na operação de Network.',
70
+ SCF_NETWORK_NOT_FOUND_ERROR: 'Network com ID {1} não encontrada.',
71
+ SCF_NETWORK_NOT_READY_ERROR: 'Network com ID {1} não está pronta.',
72
+ SCF_PARENT_FOLDER_NOT_READY_ERROR: 'Pasta pai com ID {1} não está pronta.',
73
+ SCF_PROJECT_ERROR: 'Falha na operação do Projeto.',
74
+ SCF_PROJECT_NOT_FOUND_ERROR: 'Projeto com ID {1} não encontrado.',
75
+ SCF_PROJECT_NOT_READY_ERROR: 'Projeto com ID {1} não está pronto.',
76
+ SCF_UNKNOWN_ERROR: 'Ocorreu um erro inesperado.',
77
+ SCF_VPN_CONFIGURATION_NOT_FOUND_ERROR: 'Configuração para VPN com ID {1} não encontrada.',
78
+ SCF_VPN_ERROR: 'Falha na operação de VPN.',
79
+ SCF_VPN_NOT_FOUND_ERROR: 'VPN com ID {1} não encontrada.',
80
+ SCF_VPN_NOT_READY_ERROR: 'VPN com ID {1} não está pronta.',
81
+ },
82
+ } satisfies Dictionary
@@ -1,14 +1,14 @@
1
- import { Dictionary } from '@stack-spot/portal-translate'
2
-
3
- export const cntFields = {
4
- en: {
5
- description: 'studio description',
6
- name: 'name',
7
- repoUrl: "stack's repository",
8
- },
9
- pt: {
10
- description: 'studio description',
11
- name: 'name',
12
- repoUrl: "stack's repository",
13
- },
14
- } satisfies Dictionary
1
+ import { Dictionary } from '@stack-spot/portal-translate'
2
+
3
+ export const cntFields = {
4
+ en: {
5
+ description: 'studio description',
6
+ name: 'name',
7
+ repoUrl: "stack's repository",
8
+ },
9
+ pt: {
10
+ description: 'studio description',
11
+ name: 'name',
12
+ repoUrl: "stack's repository",
13
+ },
14
+ } satisfies Dictionary