@stack-spot/portal-network 0.184.0 → 0.185.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 +2419 -2412
  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.d.ts +63 -4
  14. package/dist/api/codeShift.d.ts.map +1 -1
  15. package/dist/api/codeShift.js +14 -1
  16. package/dist/api/codeShift.js.map +1 -1
  17. package/dist/api/content.js +1 -1
  18. package/dist/api/dataIntegration.js +1 -1
  19. package/dist/api/discover.js +1 -1
  20. package/dist/api/genAiInference.js +1 -1
  21. package/dist/api/insights.js +1 -1
  22. package/dist/api/notification.js +1 -1
  23. package/dist/api/secrets.js +1 -1
  24. package/dist/api/serviceCatalog.js +1 -1
  25. package/dist/api/workspace-ai.js +1 -1
  26. package/dist/api/workspace.js +1 -1
  27. package/dist/api/workspaceManager.js +1 -1
  28. package/dist/api/workspaceSearchEngine.js +1 -1
  29. package/dist/client/code-shift.d.ts +22 -0
  30. package/dist/client/code-shift.d.ts.map +1 -1
  31. package/dist/client/code-shift.js +28 -1
  32. package/dist/client/code-shift.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 +3567 -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 -2951
  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 +364 -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 -564
  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,209 +1,209 @@
1
- import { Dictionary } from '@stack-spot/portal-translate'
2
-
3
- export const workspaceDictionary = {
4
- en: {
5
- WKS_API_WORKSPACE_FORBIDDEN: 'Access denied. The token has expired or the endpoint doesn’t exist.',
6
- WKS_WORKSPACE_NOT_FOUND: 'Workspace not found. Check the name and try again.',
7
- WKS_CONNECTION_INTERFACE_ALREADY_EXISTS_FOR_ACCOUNT: 'A Connection Interface with this name already exists for this account.',
8
- WKS_CONNECTION_INTERFACE_NOT_AVAILABLE: 'Connection Interface not available for this account or Workspace.',
9
- WKS_WORKSPACE_ALREADY_EXISTS_FOR_ACCOUNT: 'A Workspace with this name already exists. Please try another.',
10
- WKS_THERE_IS_A_SHARED_INFRA_WITH_THIS_STACK_DELETE_ERROR: 'Unable to disassociate this Stack from the Workspace as it is linked to a shared Infrastructure.',
11
- WKS_THERE_IS_AN_APPLICATION_WITH_THIS_STACK_DELETE_ERROR: 'Unable to disassociate this Stack from the Workspace as it is linked to an Application.',
12
- WKS_APPLICATION_LINK_NAME_ALREADY_EXISTS: 'An Application link with this name already exists.',
13
- WKS_APPLICATION_LINK_URL_ALREADY_EXISTS: 'An Application link with this URL already exists.',
14
- WKS_SHARED_INFRA_LINK_NAME_ALREADY_EXISTS: 'There is already a Infrastructure link with this name.',
15
- WKS_SHARED_INFRA_LINK_URL_ALREADY_EXISTS: 'A Infrastructure with this URL already exists.',
16
- WKS_WORKSPACE_LINK_NAME_ALREADY_EXISTS: 'There is already a Workspace link with this name.',
17
- WKS_WORKSPACE_LINK_URL_ALREADY_EXISTS: 'There is already a Workspace link with this URL.',
18
- WKS_ATTR_INVALID: 'The field {1} is invalid. Please check and try again.',
19
- WKS_ATTR_INVALID_EVALUATED_FROM_VALIDATIONS_LENGTH: 'The field has an invalid number of characters. The length should be between {2} and {3}.',
20
- WKS_BAD_REQUEST_ERROR: 'Some information is invalid. Please check the data.',
21
- WKS_THERE_ARE_CLOUD_ACCOUNT_FOR_THIS_WORKSPACE_DELETE_ERROR: 'Unable to delete this Workspace as it is connected to cloud accounts.',
22
- WKS_THERE_ARE_STACK_IN_THIS_WORKSPACE_DELETE_ERROR: 'The workspace cannot be deleted because there are associated Stacks.',
23
- WKS_THERE_ARE_CONNECTION_INTERFACE_IN_THIS_WORKSPACE_DELETE_ERROR: 'This Workspace cannot be deleted because Connection Interfaces have been created.',
24
- WKS_THERE_IS_RUNNING_DEPLOY_FOR_THIS_APPLICATION: 'This Application cannot be deleted because there are ongoing deployments.',
25
- WKS_THERE_ARE_ACTIVATED_DEPLOY_FOR_THIS_APPLICATION: 'This Application cannot be deleted because there are active deployments.',
26
- WKS_THERE_IS_CONNECTION_INTERFACE_FOR_THIS_APPLICATION_DELETE_ERROR: 'This Application cannot be deleted because Connection Interfaces exist.',
27
- WKS_THERE_IS_RUNNING_DEPLOY_FOR_THIS_SHARED_INFRA: 'This Infrastructure cannot be deleted because of ongoing deployments.',
28
- WKS_THERE_ARE_ACTIVATED_DEPLOY_FOR_THIS_SHARED_INFRA: 'This Infrastructure cannot be deleted because there are active deployments associated with it.',
29
- WKS_THERE_IS_CONNECTION_INTERFACE_FOR_THIS_SHARED_INFRA_DELETE_ERROR: 'This Infrastructure cannot be deleted because it has Connection Interfaces.',
30
- WKS_WORKSPACE_EMBEDDED_LINK_NOT_FOUND: 'Embedded link not found.',
31
- WKS_WORKSPACE_EMBEDDED_LINK_URL_ALREADY_EXISTS: 'The provided URL already contains an embedded link in this Workspace.',
32
- WKS_WORKSPACE_EMBEDDED_LINK_NAME_ALREADY_EXISTS: 'The name provided for the embedded link already exists in this Workspace.',
33
- WKS_APPLICATION_EMBEDDED_LINK_NOT_FOUND: 'Embedded link not found.',
34
- WKS_APPLICATION_EMBEDDED_LINK_URL_ALREADY_EXISTS: 'The provided URL already contains an embedded link in this Application.',
35
- WKS_APPLICATION_EMBEDDED_LINK_NAME_ALREADY_EXISTS: 'The name of this embedded link already exists in the Application.',
36
- WKS_API_WORKSPACE_BAD_REQUEST: 'Some fields are invalid. Please review the entered data.',
37
- WKS_APPLICATION_CAN_NOT_BE_DELETED: 'This Application cannot be deleted.',
38
- WKS_CONNECTION_INTERFACE_IN_USE: 'The following Connection Interfaces are in use.',
39
- WKS_THERE_IS_NO_ENVIRONMENT_IN_ACCOUNT_TO_CONFIGURE_ACTIONS_IN_WORKSPACE: 'You must create at least one Environment to configure Actions in Workspaces.',
40
- WKS_THERE_IS_NO_ENVIRONMENT_IN_ACCOUNT_TO_CONFIGURE_PLUGINS_IN_WORKSPACE: 'You must create at least one Environment to configure Plugins in Workspaces.',
41
- WKS_CONTEXT_STACK_ADD_RELATIONSHIP: 'There was an error when setting a Stack version with the Workspace.',
42
- WKS_CONTEXT_STACK_DELETE_RELATIONSHIP: 'There was an error when removing a Stack version from the Workspace.',
43
- WKS_APPLICATION_NAME_CONFLICT: 'An Application or infrastructure with this name already exists. Please try another with this name.',
44
- WKS_SHARED_INFRA_NAME_CONFLICT: 'An infrastructure with this name already exists. Please try another one.',
45
- WKS_SHARED_INFRA_CAN_NOT_BE_DESTROYED_ERROR: 'This infrastructure cannot be deleted.',
46
- WKS_ACTIVE_SHARED_INFRA_WITH_DEPLOY_SELF_HOSTED: 'This infrastructure cannot be deleted. There are deploy_self_hosted_type infrastructures.',
47
- WKS_APPLICATION_CAN_NOT_BE_DESTROYED_ERROR: 'This Application cannot be deleted.',
48
- WKS_ACTIVE_APPLICATION_WITH_DEPLOY_SELF_HOSTED: 'This Application cannot be deleted. There are deploy_self_hosted_type Applications.',
49
- WKS_APPLICATION_NOT_FOUND_FOR_THIS_WORKSPACE_ERROR: 'Application not found in this Workspace.',
50
- WKS_SHARED_INFRA_NOT_FOUND_FOR_THIS_WORKSPACE_ERROR: 'This Infrastructure does not exist in this Workspace.',
51
- WKS_APPLICATION_STATUS_DOES_NOT_ALLOW_RECREATION: 'Execute again is not allowed. You can only execute Applications that are finished with an error status.',
52
- WKS_SHARED_INFRA_STATUS_DOES_NOT_ALLOW_RECREATION: 'Reexecution not allowed. You can only execute Applications that finished with an error status.',
53
- WKS_DEPLOY_RUNNING: 'There is a deployment in progress.',
54
- WKS_WORKFLOW_ACTIONS_UNORDERED_ERROR: 'Make sure the Workflow Actions are in the right order.',
55
- WKS_WORKFLOW_ACTIONS_DUPLICATED_ERROR: 'Each Workflow Action must be unique within its scope.',
56
- WKS_WORKFLOW_CONTEXT_KEY_DUPLICATED_ERROR: 'Use a unique context key for each Action.',
57
- WKS_WORKFLOW_CONTEXT_NOT_ALLOWED_ERROR: 'Context configuration is not allowed.',
58
- WKS_WORKFLOW_ACTIONS_CREATE_REPO_DUPLICATED_ERROR: 'Only one CREATE_REPO Action is allowed per Workflow.',
59
- WKS_WORKFLOW_CONTEXT_MUST_BE_INFORMED_FOR_ALL_ACTIONS_ERROR: 'Provide context for all Workflow Actions.',
60
- WKS_WORKFLOW_ALREADY_EXISTS_ERROR: 'A Workflow with this name already exists. Choose a different name.',
61
- WKS_WORKFLOW_API_MUST_BE_DEFAULT_ERROR: 'CREATE API Workflows must be set as default.',
62
- WKS_WORKFLOW_API_WITH_STACKS_ERROR: 'CREATE API Workflows cannot be linked to Stacks.',
63
- WKS_WORKFLOW_DEFAULT_ALREADY_EXIST_FOR_TYPE_ERROR: 'A default Workflow of this type already exists. Use a different type.',
64
- WKS_WORKFLOW_DEFAULT_WITH_STACKS_ERROR: 'Default Workflows cannot be linked to Stacks.',
65
- WKS_WORKFLOW_CONDITION_DUPLICATED_ERROR: 'There should be no duplicate conditions with the same value per identifier.',
66
- WKS_WORKFLOW_AND_STACK_ARE_NOT_ASSOCIATED_ERROR: 'This Stack is not linked to the specified Workflow. Check the association.',
67
- WKS_WORKFLOW_ACTIONS_ARE_NOT_ASSOCIATED_ERROR: 'Make sure all Actions are connected to the specified Workflow.',
68
- WKS_WORKFLOW_ACTIONS_CONTEXT_NOT_ALLOWED_ERROR: 'The context in higher-level Actions cannot be replaced by the context in the Stack.',
69
- WKS_WORKFLOW_NOT_FOUND_ERROR: 'Workflow not found. Check the name and try again.',
70
- WKS_STACK_NOT_PRESENT_IN_ACCOUNT: 'Stack is not available for this account.',
71
- WKS_STACK_NOT_FOUND_ERROR: 'Stack not found in the Workspace.',
72
- WKS_THERE_IS_ACTIVATED_DEPLOY_FOR_THIS_STACK_VERSION_DELETE_ERROR: 'Unable to delete this Stack version as there is an ongoing deploy.',
73
- WKS_STACK_VERSION_ID_CONFLICT: 'This Stack version is already associated with the Workspace.',
74
- WKS_STK_FILE_NOT_FOUND: 'STK File not found for application or infrastructure',
75
- WKS_REPO_URL_NOT_FOUND: 'Repository URL is missing for this application or infrastructure',
76
- WKS_PLUGINS_TO_UPDATE_NOT_FOUND: 'No plugins were found for update',
77
- WKS_PLUGINS_NOT_ASSOCIATED_WITH_STACK_VERSION: 'One or more plugins are not associated with given stack version',
78
- WKS_PLUGIN_NOT_ASSOCIATED_WITH_STACK_VERSION: 'Plugin {1} in version {2} is not associated with given stack version',
79
- WKS_PLUGIN_NOT_ASSOCIATED_WITH_SPECIFIC_STACK_VERSION: 'Plugin {1} is not associated with stack {2}',
80
- WKS_PARAMETER_CONFIG_NOT_FOUND: 'Parameter {1} is missing in Workspace',
81
- WKS_CONTEXT_ATTRIBUTE_NOT_ALLOWED_FOR_ACCOUNT: 'Connection inputs are not allowed in account contexts',
82
- WKS_CONTEXT_ATTRIBUTE_SPECIFIC_ERROR: "Field '{1}' doesn't accept value '{2}'",
83
- WKS_CONTEXT_ATTRIBUTE_CONNECTION_TYPE_ERROR: "Field '{1}' doesn't accept value '{2}'. No connection interfaces were found of type '{3}'",
84
- WKS_CONTEXT_ATTRIBUTE_GENERATED_CONNECTION_TYPE_ERROR: "Field '{1}' doesn't accept value '{2}'. Connection interface already exists",
85
- WKS_CONTEXT_ATTRIBUTE_CANNOT_VARY_PER_ENV: "Field '{1}' doesn't allow varying per environment",
86
- WKS_STK_FILE_FOUND_BUT_NOT_ASSOCIATED: 'Found stk.yaml files in the repository, but none are associated with the specified application or infra',
87
- SCM_API_4001_GITHUB_GET_REPO_BRANCHES_NOT_FOUND: 'The specified repository could not be found on GitHub.',
88
- SCM_API_4002_GITHUB_GET_REPO_BRANCHES_UNAUTHORIZED: 'Unauthorized access to the repository on GitHub. Please check your credentials.',
89
- SCM_API_4002_GITHUB_GET_REPO_BRANCHES_FORBIDDEN: 'Access to the repository on GitHub is forbidden. Verify your permissions.',
90
- SCM_API_4021_GITHUB_GET_REPO_TREE_NOT_FOUND: 'The repository tree could not be found on GitHub.',
91
- SCM_API_4022_GITHUB_GET_REPO_TREE_UNAUTHORIZED: 'Unauthorized access to the repository tree on GitHub. Please check your credentials.',
92
- SCM_API_4022_GITHUB_GET_REPO_TREE_FORBIDDEN: 'Access to the repository tree on GitHub is forbidden. Verify your permissions.',
93
- SCM_API_4031_GITHUB_POST_INSTALLATION_NOT_FOUND: 'The GitHub app installation could not be found.',
94
- SCM_API_4032_GITHUB_POST_INSTALLATION_UNAUTHORIZED: 'Unauthorized access to the GitHub app installation. Please check your credentials.',
95
- SCM_API_4032_GITHUB_POST_INSTALLATION_FORBIDDEN: 'Access to the GitHub app installation is forbidden. Verify your permissions.',
96
- SCM_API_4501_GITLAB_GET_PROJECT_NOT_FOUND: 'The specified project could not be found on GitLab.',
97
- SCM_API_4502_GITLAB_GET_PROJECT_UNAUTHORIZED: 'Unauthorized access to the project on GitLab. Please check your credentials.',
98
- SCM_API_4502_GITLAB_GET_PROJECT_FORBIDDEN: 'Access to the project on GitLab is forbidden. Verify your permissions.',
99
- SCM_API_4511_GITLAB_GET_REPO_BRANCHES_NOT_FOUND: 'The specified repository could not be found on GitLab.',
100
- SCM_API_4512_GITLAB_GET_REPO_BRANCHES_UNAUTHORIZED: 'Unauthorized access to the repository on GitLab. Please check your credentials.',
101
- SCM_API_4512_GITLAB_GET_REPO_BRANCHES_FORBIDDEN: 'Access to the repository on GitLab is forbidden. Verify your permissions.',
102
- SCM_API_4531_GITLAB_GET_REPO_TREE_NOT_FOUND: 'The repository tree could not be found on GitLab.',
103
- SCM_API_4532_GITLAB_GET_REPO_TREE_UNAUTHORIZED: 'Unauthorized access to the repository tree on GitLab. Please check your credentials.',
104
- SCM_API_4532_GITLAB_GET_REPO_TREE_FORBIDDEN: 'Access to the repository tree on GitLab is forbidden. Verify your permissions.',
105
- },
106
- pt: {
107
- WKS_API_WORKSPACE_FORBIDDEN: 'Acesso negado. O token expirou ou o endpoint não existe.',
108
- WKS_WORKSPACE_NOT_FOUND: 'Workspace não encontrado. Verifique o nome e tente novamente.',
109
- WKS_CONNECTION_INTERFACE_ALREADY_EXISTS_FOR_ACCOUNT: 'Já existe uma Connection Interface com esse nome para esta conta..',
110
- WKS_CONNECTION_INTERFACE_NOT_AVAILABLE: 'Connection Interface não disponível para esta conta ou Workspace.',
111
- WKS_WORKSPACE_ALREADY_EXISTS_FOR_ACCOUNT: 'Já existe um Workspace com esse nome. Tente outro.',
112
- WKS_THERE_IS_A_SHARED_INFRA_WITH_THIS_STACK_DELETE_ERROR: 'Não é possível desassociar esta Stack do Workspace, pois está vinculada a uma Infraestrutura compartilhada.',
113
- WKS_THERE_IS_AN_APPLICATION_WITH_THIS_STACK_DELETE_ERROR: 'Não é possível desassociar esta Stack do Workspace, pois está vinculada a uma Aplicação.',
114
- WKS_APPLICATION_LINK_NAME_ALREADY_EXISTS: 'Já existe um link de Aplicação com esse nome.',
115
- WKS_APPLICATION_LINK_URL_ALREADY_EXISTS: 'Já existe um link de Aplicação com essa URL.',
116
- WKS_SHARED_INFRA_LINK_NAME_ALREADY_EXISTS: 'Já existe um link de Infraestrutura com esse nome.',
117
- WKS_SHARED_INFRA_LINK_URL_ALREADY_EXISTS: 'Já existe um link de Infraestrutura com essa URL.',
118
- WKS_WORKSPACE_LINK_NAME_ALREADY_EXISTS: 'Já existe um link de Workspace com esse nome.',
119
- WKS_WORKSPACE_LINK_URL_ALREADY_EXISTS: 'Já existe um link de Workspace com essa URL.',
120
- WKS_ATTR_INVALID: 'O campo {1} é inválido. Verifique e tente novamente.',
121
- WKS_ATTR_INVALID_EVALUATED_FROM_VALIDATIONS_LENGTH: 'O campo tem um número inválido de caracteres. O tamanho deve ser entre {2} e {3}.',
122
- WKS_BAD_REQUEST_ERROR: 'Algumas informações estão inválidas. Por favor, verifique os dados.',
123
- WKS_THERE_ARE_CLOUD_ACCOUNT_FOR_THIS_WORKSPACE_DELETE_ERROR: 'Este Workspace não pode ser deletado porque existem contas de cloud conectadas a ele.',
124
- WKS_THERE_ARE_STACK_IN_THIS_WORKSPACE_DELETE_ERROR: 'Este Workspace não pode ser deletado porque existem Stacks associadas a ele.',
125
- WKS_THERE_ARE_CONNECTION_INTERFACE_IN_THIS_WORKSPACE_DELETE_ERROR: 'Este Workspace não pode ser deletado porque existem Connection Interfaces criadas nele.',
126
- WKS_THERE_IS_RUNNING_DEPLOY_FOR_THIS_APPLICATION: 'Esta Aplicação não pode ser deletada porque há deploys em execução.',
127
- WKS_THERE_ARE_ACTIVATED_DEPLOY_FOR_THIS_APPLICATION: 'Esta Aplicação não pode ser deletada porque há deploys com status ativo.',
128
- WKS_THERE_IS_CONNECTION_INTERFACE_FOR_THIS_APPLICATION_DELETE_ERROR: 'Esta Aplicação não pode ser deletada porque existem Connection Interfaces nela.',
129
- WKS_THERE_IS_RUNNING_DEPLOY_FOR_THIS_SHARED_INFRA: 'Esta Infraestrutura não pode ser deletada porque há deploys em execução.',
130
- WKS_THERE_ARE_ACTIVATED_DEPLOY_FOR_THIS_SHARED_INFRA: 'Esta Infraestrutura não pode ser deletada porque há deploys com status ativo.',
131
- WKS_THERE_IS_CONNECTION_INTERFACE_FOR_THIS_SHARED_INFRA_DELETE_ERROR: 'Esta Infraestrutura não pode ser deletada porque existem Connection Interfaces nela.',
132
- WKS_WORKSPACE_EMBEDDED_LINK_NOT_FOUND: 'Link incorporado não encontrado.',
133
- WKS_WORKSPACE_EMBEDDED_LINK_URL_ALREADY_EXISTS: 'Já existe um link incorporado neste Workspace com a URL fornecida.',
134
- WKS_WORKSPACE_EMBEDDED_LINK_NAME_ALREADY_EXISTS: 'Já existe um link incorporado neste Workspace com o nome fornecido.',
135
- WKS_APPLICATION_EMBEDDED_LINK_NOT_FOUND: 'Link incorporado não encontrado.',
136
- WKS_APPLICATION_EMBEDDED_LINK_URL_ALREADY_EXISTS: 'Já existe um link incorporado nesta Aplicação com a URL fornecida.',
137
- WKS_APPLICATION_EMBEDDED_LINK_NAME_ALREADY_EXISTS: 'Já existe um link incorporado nesta Aplicação com esse nome.',
138
- WKS_API_WORKSPACE_BAD_REQUEST: 'Alguns campos estão inválidos. Por favor, verifique os dados informados.',
139
- WKS_APPLICATION_CAN_NOT_BE_DELETED: 'Não é possível excluir esta Aplicação.',
140
- WKS_CONNECTION_INTERFACE_IN_USE: 'Existem Connection Interfaces em uso.',
141
- WKS_THERE_IS_NO_ENVIRONMENT_IN_ACCOUNT_TO_CONFIGURE_ACTIONS_IN_WORKSPACE: 'É necessário criar ao menos um Environment para configurar Actions em Workspaces.',
142
- WKS_THERE_IS_NO_ENVIRONMENT_IN_ACCOUNT_TO_CONFIGURE_PLUGINS_IN_WORKSPACE: 'É necessário criar ao menos um Environment para configurar Plugins em Workspaces.',
143
- WKS_CONTEXT_STACK_ADD_RELATIONSHIP: 'Erro ao definir uma versão de Stack com o Workspace.',
144
- WKS_CONTEXT_STACK_DELETE_RELATIONSHIP: 'Erro ao remover uma versão de Stack do Workspace.',
145
- WKS_APPLICATION_NAME_CONFLICT: 'Já existe uma Aplicação ou Infraestrutura com esse nome. Tente novamente com outro nome.',
146
- WKS_SHARED_INFRA_NAME_CONFLICT: 'Já existe uma infraestrutura com esse nome. Tente novamente com outro nome.',
147
- WKS_SHARED_INFRA_CAN_NOT_BE_DESTROYED_ERROR: 'Não é possível excluir esta infraestrutura.',
148
- WKS_ACTIVE_SHARED_INFRA_WITH_DEPLOY_SELF_HOSTED: 'Não é possível excluir esta infraestrutura. Existem infraestruturas do tipo deploy_self_hosted_type.',
149
- WKS_APPLICATION_CAN_NOT_BE_DESTROYED_ERROR: 'Não é possível excluir esta Aplicação.',
150
- WKS_ACTIVE_APPLICATION_WITH_DEPLOY_SELF_HOSTED: 'Não é possível excluir esta Aplicação. Existem Aplicações do tipo deploy_self_hosted_type.',
151
- WKS_APPLICATION_NOT_FOUND_FOR_THIS_WORKSPACE_ERROR: 'Aplicação não encontrada neste Workspace.',
152
- WKS_SHARED_INFRA_NOT_FOUND_FOR_THIS_WORKSPACE_ERROR: 'Esta Infraestrutura não existe neste Workspace.',
153
- WKS_APPLICATION_STATUS_DOES_NOT_ALLOW_RECREATION: 'Reexecução não permitida. Só é possível reexecutar Aplicações que finalizaram com status de erro.',
154
- WKS_SHARED_INFRA_STATUS_DOES_NOT_ALLOW_RECREATION: 'Reexecução não permitida. Só é possível reexecutar Aplicações que finalizaram com status de erro.',
155
- WKS_DEPLOY_RUNNING: 'Há um deploy em execução.',
156
- WKS_WORKFLOW_ACTIONS_UNORDERED_ERROR: 'Verifique se as Actions do Workflow estão na ordem correta.',
157
- WKS_WORKFLOW_ACTIONS_DUPLICATED_ERROR: 'Cada Action do Workflow deve ser única dentro do seu escopo.',
158
- WKS_WORKFLOW_CONTEXT_KEY_DUPLICATED_ERROR: 'Use uma chave de contexto única para cada Action.',
159
- WKS_WORKFLOW_CONTEXT_NOT_ALLOWED_ERROR: 'Não é permitido configurar o contexto.',
160
- WKS_WORKFLOW_ACTIONS_CREATE_REPO_DUPLICATED_ERROR: 'Apenas uma Action CREATE_REPO é permitida por Workflow.',
161
- WKS_WORKFLOW_CONTEXT_MUST_BE_INFORMED_FOR_ALL_ACTIONS_ERROR: 'Informe o contexto para todas as Actions do Workflow.',
162
- WKS_WORKFLOW_ALREADY_EXISTS_ERROR: 'Já existe um Workflow com esse nome. Escolha um nome diferente.',
163
- WKS_WORKFLOW_API_MUST_BE_DEFAULT_ERROR: 'Workflows de API CREATE devem ser padrão.',
164
- WKS_WORKFLOW_API_WITH_STACKS_ERROR: 'Workflows de API CREATE não podem ser associados a Stacks.',
165
- WKS_WORKFLOW_DEFAULT_ALREADY_EXIST_FOR_TYPE_ERROR: 'Um Workflow padrão desse tipo já existe. Use um tipo diferente.',
166
- WKS_WORKFLOW_DEFAULT_WITH_STACKS_ERROR: 'Workflows padrão não podem ser associados a Stacks.',
167
- WKS_WORKFLOW_CONDITION_DUPLICATED_ERROR: 'Não deve haver condições duplicadas com o mesmo valor por identificador.',
168
- WKS_WORKFLOW_AND_STACK_ARE_NOT_ASSOCIATED_ERROR: 'Esta Stack não está associada ao Workflow especificado. Verifique a associação.',
169
- WKS_WORKFLOW_ACTIONS_ARE_NOT_ASSOCIATED_ERROR: 'Verifique se todas as Actions estão associadas ao Workflow especificado.',
170
- WKS_WORKFLOW_ACTIONS_CONTEXT_NOT_ALLOWED_ERROR: 'O contexto de nível superior nas Actions não pode ser substituído pelo contexto da Stack.',
171
- WKS_WORKFLOW_NOT_FOUND_ERROR: 'Workflow não encontrado. Verifique o nome e tente novamente.',
172
- WKS_STACK_NOT_PRESENT_IN_ACCOUNT: 'Stack não disponível para esta conta.',
173
- WKS_STACK_NOT_FOUND_ERROR: 'Stack não encontrada no Workspace.',
174
- WKS_THERE_IS_ACTIVATED_DEPLOY_FOR_THIS_STACK_VERSION_DELETE_ERROR: 'Não é possível excluir esta versão da Stack, pois há um deploy em andamento.',
175
- WKS_STACK_VERSION_ID_CONFLICT: 'Esta versão da Stack já está associada ao Workspace.',
176
- WKS_STK_FILE_NOT_FOUND: 'Arquivo STK não encontrado para a aplicação ou infraestrutura',
177
- WKS_REPO_URL_NOT_FOUND: 'URL do repositório está ausente para esta aplicação ou infraestrutura',
178
- WKS_PLUGINS_TO_UPDATE_NOT_FOUND: 'Nenhum plugin foi encontrado para atualização',
179
- WKS_PLUGINS_NOT_ASSOCIATED_WITH_STACK_VERSION: 'Um ou mais plugins não estão associados à versão da stack fornecida',
180
- WKS_PLUGIN_NOT_ASSOCIATED_WITH_STACK_VERSION: 'O plugin {1} na versão {2} não está associado à versão da stack fornecida',
181
- WKS_PLUGIN_NOT_ASSOCIATED_WITH_SPECIFIC_STACK_VERSION: 'O plugin {1} não está associado à stack {2}',
182
- WKS_PARAMETER_CONFIG_NOT_FOUND: 'O parâmetro {1} está ausente no Workspace',
183
- WKS_CONTEXT_ATTRIBUTE_NOT_ALLOWED_FOR_ACCOUNT: 'Entradas de conexão não são permitidas em contextos de conta',
184
- WKS_CONTEXT_ATTRIBUTE_SPECIFIC_ERROR: 'O campo {1} não aceita o valor {2}',
185
- WKS_CONTEXT_ATTRIBUTE_CONNECTION_TYPE_ERROR: 'O campo {1} não aceita o valor {2}. Nenhuma interface de conexão foi encontrada do tipo {3}',
186
- WKS_CONTEXT_ATTRIBUTE_GENERATED_CONNECTION_TYPE_ERROR: 'O campo {1} não aceita o valor {2}. A interface de conexão já existe',
187
- WKS_CONTEXT_ATTRIBUTE_CANNOT_VARY_PER_ENV: 'O campo {1} não permite variação por ambiente',
188
- WKS_STK_FILE_FOUND_BUT_NOT_ASSOCIATED: 'Foram encontrados arquivos stk.yaml no repositório, mas nenhum está associado à aplicação ou infraestrutura especificada.',
189
- SCM_API_4001_GITHUB_GET_REPO_BRANCHES_NOT_FOUND: 'O repositório especificado não foi encontrado no GitHub.',
190
- SCM_API_4002_GITHUB_GET_REPO_BRANCHES_UNAUTHORIZED: 'Acesso não autorizado ao repositório no GitHub. Verifique suas credenciais.',
191
- SCM_API_4002_GITHUB_GET_REPO_BRANCHES_FORBIDDEN: 'Acesso ao repositório no GitHub foi proibido. Verifique suas permissões.',
192
- SCM_API_4021_GITHUB_GET_REPO_TREE_NOT_FOUND: 'A árvore do repositório não foi encontrada no GitHub.',
193
- SCM_API_4022_GITHUB_GET_REPO_TREE_UNAUTHORIZED: 'Acesso não autorizado à árvore do repositório no GitHub. Verifique suas credenciais.',
194
- SCM_API_4022_GITHUB_GET_REPO_TREE_FORBIDDEN: 'Acesso à árvore do repositório no GitHub foi proibido. Verifique suas permissões.',
195
- SCM_API_4031_GITHUB_POST_INSTALLATION_NOT_FOUND: 'A instalação do aplicativo GitHub não foi encontrada.',
196
- SCM_API_4032_GITHUB_POST_INSTALLATION_UNAUTHORIZED: 'Acesso não autorizado à instalação do aplicativo GitHub. Verifique suas credenciais.',
197
- SCM_API_4032_GITHUB_POST_INSTALLATION_FORBIDDEN: 'Acesso à instalação do aplicativo GitHub foi proibido. Verifique suas permissões.',
198
- SCM_API_4501_GITLAB_GET_PROJECT_NOT_FOUND: 'O projeto especificado não foi encontrado no GitLab.',
199
- SCM_API_4502_GITLAB_GET_PROJECT_UNAUTHORIZED: 'Acesso não autorizado ao projeto no GitLab. Verifique suas credenciais.',
200
- SCM_API_4502_GITLAB_GET_PROJECT_FORBIDDEN: 'Acesso ao projeto no GitLab foi proibido. Verifique suas permissões.',
201
- SCM_API_4511_GITLAB_GET_REPO_BRANCHES_NOT_FOUND: 'O repositório especificado não foi encontrado no GitLab.',
202
- SCM_API_4512_GITLAB_GET_REPO_BRANCHES_UNAUTHORIZED: 'Acesso não autorizado ao repositório no GitLab. Verifique suas credenciais.',
203
- SCM_API_4512_GITLAB_GET_REPO_BRANCHES_FORBIDDEN: 'Acesso ao repositório no GitLab foi proibido. Verifique suas permissões.',
204
- SCM_API_4531_GITLAB_GET_REPO_TREE_NOT_FOUND: 'A árvore do repositório não foi encontrada no GitLab.',
205
- SCM_API_4532_GITLAB_GET_REPO_TREE_UNAUTHORIZED: 'Acesso não autorizado à árvore do repositório no GitLab. Verifique suas credenciais.',
206
- SCM_API_4532_GITLAB_GET_REPO_TREE_FORBIDDEN: 'Acesso à árvore do repositório no GitLab foi proibido. Verifique suas permissões.',
207
-
208
- },
209
- } satisfies Dictionary
1
+ import { Dictionary } from '@stack-spot/portal-translate'
2
+
3
+ export const workspaceDictionary = {
4
+ en: {
5
+ WKS_API_WORKSPACE_FORBIDDEN: 'Access denied. The token has expired or the endpoint doesn’t exist.',
6
+ WKS_WORKSPACE_NOT_FOUND: 'Workspace not found. Check the name and try again.',
7
+ WKS_CONNECTION_INTERFACE_ALREADY_EXISTS_FOR_ACCOUNT: 'A Connection Interface with this name already exists for this account.',
8
+ WKS_CONNECTION_INTERFACE_NOT_AVAILABLE: 'Connection Interface not available for this account or Workspace.',
9
+ WKS_WORKSPACE_ALREADY_EXISTS_FOR_ACCOUNT: 'A Workspace with this name already exists. Please try another.',
10
+ WKS_THERE_IS_A_SHARED_INFRA_WITH_THIS_STACK_DELETE_ERROR: 'Unable to disassociate this Stack from the Workspace as it is linked to a shared Infrastructure.',
11
+ WKS_THERE_IS_AN_APPLICATION_WITH_THIS_STACK_DELETE_ERROR: 'Unable to disassociate this Stack from the Workspace as it is linked to an Application.',
12
+ WKS_APPLICATION_LINK_NAME_ALREADY_EXISTS: 'An Application link with this name already exists.',
13
+ WKS_APPLICATION_LINK_URL_ALREADY_EXISTS: 'An Application link with this URL already exists.',
14
+ WKS_SHARED_INFRA_LINK_NAME_ALREADY_EXISTS: 'There is already a Infrastructure link with this name.',
15
+ WKS_SHARED_INFRA_LINK_URL_ALREADY_EXISTS: 'A Infrastructure with this URL already exists.',
16
+ WKS_WORKSPACE_LINK_NAME_ALREADY_EXISTS: 'There is already a Workspace link with this name.',
17
+ WKS_WORKSPACE_LINK_URL_ALREADY_EXISTS: 'There is already a Workspace link with this URL.',
18
+ WKS_ATTR_INVALID: 'The field {1} is invalid. Please check and try again.',
19
+ WKS_ATTR_INVALID_EVALUATED_FROM_VALIDATIONS_LENGTH: 'The field has an invalid number of characters. The length should be between {2} and {3}.',
20
+ WKS_BAD_REQUEST_ERROR: 'Some information is invalid. Please check the data.',
21
+ WKS_THERE_ARE_CLOUD_ACCOUNT_FOR_THIS_WORKSPACE_DELETE_ERROR: 'Unable to delete this Workspace as it is connected to cloud accounts.',
22
+ WKS_THERE_ARE_STACK_IN_THIS_WORKSPACE_DELETE_ERROR: 'The workspace cannot be deleted because there are associated Stacks.',
23
+ WKS_THERE_ARE_CONNECTION_INTERFACE_IN_THIS_WORKSPACE_DELETE_ERROR: 'This Workspace cannot be deleted because Connection Interfaces have been created.',
24
+ WKS_THERE_IS_RUNNING_DEPLOY_FOR_THIS_APPLICATION: 'This Application cannot be deleted because there are ongoing deployments.',
25
+ WKS_THERE_ARE_ACTIVATED_DEPLOY_FOR_THIS_APPLICATION: 'This Application cannot be deleted because there are active deployments.',
26
+ WKS_THERE_IS_CONNECTION_INTERFACE_FOR_THIS_APPLICATION_DELETE_ERROR: 'This Application cannot be deleted because Connection Interfaces exist.',
27
+ WKS_THERE_IS_RUNNING_DEPLOY_FOR_THIS_SHARED_INFRA: 'This Infrastructure cannot be deleted because of ongoing deployments.',
28
+ WKS_THERE_ARE_ACTIVATED_DEPLOY_FOR_THIS_SHARED_INFRA: 'This Infrastructure cannot be deleted because there are active deployments associated with it.',
29
+ WKS_THERE_IS_CONNECTION_INTERFACE_FOR_THIS_SHARED_INFRA_DELETE_ERROR: 'This Infrastructure cannot be deleted because it has Connection Interfaces.',
30
+ WKS_WORKSPACE_EMBEDDED_LINK_NOT_FOUND: 'Embedded link not found.',
31
+ WKS_WORKSPACE_EMBEDDED_LINK_URL_ALREADY_EXISTS: 'The provided URL already contains an embedded link in this Workspace.',
32
+ WKS_WORKSPACE_EMBEDDED_LINK_NAME_ALREADY_EXISTS: 'The name provided for the embedded link already exists in this Workspace.',
33
+ WKS_APPLICATION_EMBEDDED_LINK_NOT_FOUND: 'Embedded link not found.',
34
+ WKS_APPLICATION_EMBEDDED_LINK_URL_ALREADY_EXISTS: 'The provided URL already contains an embedded link in this Application.',
35
+ WKS_APPLICATION_EMBEDDED_LINK_NAME_ALREADY_EXISTS: 'The name of this embedded link already exists in the Application.',
36
+ WKS_API_WORKSPACE_BAD_REQUEST: 'Some fields are invalid. Please review the entered data.',
37
+ WKS_APPLICATION_CAN_NOT_BE_DELETED: 'This Application cannot be deleted.',
38
+ WKS_CONNECTION_INTERFACE_IN_USE: 'The following Connection Interfaces are in use.',
39
+ WKS_THERE_IS_NO_ENVIRONMENT_IN_ACCOUNT_TO_CONFIGURE_ACTIONS_IN_WORKSPACE: 'You must create at least one Environment to configure Actions in Workspaces.',
40
+ WKS_THERE_IS_NO_ENVIRONMENT_IN_ACCOUNT_TO_CONFIGURE_PLUGINS_IN_WORKSPACE: 'You must create at least one Environment to configure Plugins in Workspaces.',
41
+ WKS_CONTEXT_STACK_ADD_RELATIONSHIP: 'There was an error when setting a Stack version with the Workspace.',
42
+ WKS_CONTEXT_STACK_DELETE_RELATIONSHIP: 'There was an error when removing a Stack version from the Workspace.',
43
+ WKS_APPLICATION_NAME_CONFLICT: 'An Application or infrastructure with this name already exists. Please try another with this name.',
44
+ WKS_SHARED_INFRA_NAME_CONFLICT: 'An infrastructure with this name already exists. Please try another one.',
45
+ WKS_SHARED_INFRA_CAN_NOT_BE_DESTROYED_ERROR: 'This infrastructure cannot be deleted.',
46
+ WKS_ACTIVE_SHARED_INFRA_WITH_DEPLOY_SELF_HOSTED: 'This infrastructure cannot be deleted. There are deploy_self_hosted_type infrastructures.',
47
+ WKS_APPLICATION_CAN_NOT_BE_DESTROYED_ERROR: 'This Application cannot be deleted.',
48
+ WKS_ACTIVE_APPLICATION_WITH_DEPLOY_SELF_HOSTED: 'This Application cannot be deleted. There are deploy_self_hosted_type Applications.',
49
+ WKS_APPLICATION_NOT_FOUND_FOR_THIS_WORKSPACE_ERROR: 'Application not found in this Workspace.',
50
+ WKS_SHARED_INFRA_NOT_FOUND_FOR_THIS_WORKSPACE_ERROR: 'This Infrastructure does not exist in this Workspace.',
51
+ WKS_APPLICATION_STATUS_DOES_NOT_ALLOW_RECREATION: 'Execute again is not allowed. You can only execute Applications that are finished with an error status.',
52
+ WKS_SHARED_INFRA_STATUS_DOES_NOT_ALLOW_RECREATION: 'Reexecution not allowed. You can only execute Applications that finished with an error status.',
53
+ WKS_DEPLOY_RUNNING: 'There is a deployment in progress.',
54
+ WKS_WORKFLOW_ACTIONS_UNORDERED_ERROR: 'Make sure the Workflow Actions are in the right order.',
55
+ WKS_WORKFLOW_ACTIONS_DUPLICATED_ERROR: 'Each Workflow Action must be unique within its scope.',
56
+ WKS_WORKFLOW_CONTEXT_KEY_DUPLICATED_ERROR: 'Use a unique context key for each Action.',
57
+ WKS_WORKFLOW_CONTEXT_NOT_ALLOWED_ERROR: 'Context configuration is not allowed.',
58
+ WKS_WORKFLOW_ACTIONS_CREATE_REPO_DUPLICATED_ERROR: 'Only one CREATE_REPO Action is allowed per Workflow.',
59
+ WKS_WORKFLOW_CONTEXT_MUST_BE_INFORMED_FOR_ALL_ACTIONS_ERROR: 'Provide context for all Workflow Actions.',
60
+ WKS_WORKFLOW_ALREADY_EXISTS_ERROR: 'A Workflow with this name already exists. Choose a different name.',
61
+ WKS_WORKFLOW_API_MUST_BE_DEFAULT_ERROR: 'CREATE API Workflows must be set as default.',
62
+ WKS_WORKFLOW_API_WITH_STACKS_ERROR: 'CREATE API Workflows cannot be linked to Stacks.',
63
+ WKS_WORKFLOW_DEFAULT_ALREADY_EXIST_FOR_TYPE_ERROR: 'A default Workflow of this type already exists. Use a different type.',
64
+ WKS_WORKFLOW_DEFAULT_WITH_STACKS_ERROR: 'Default Workflows cannot be linked to Stacks.',
65
+ WKS_WORKFLOW_CONDITION_DUPLICATED_ERROR: 'There should be no duplicate conditions with the same value per identifier.',
66
+ WKS_WORKFLOW_AND_STACK_ARE_NOT_ASSOCIATED_ERROR: 'This Stack is not linked to the specified Workflow. Check the association.',
67
+ WKS_WORKFLOW_ACTIONS_ARE_NOT_ASSOCIATED_ERROR: 'Make sure all Actions are connected to the specified Workflow.',
68
+ WKS_WORKFLOW_ACTIONS_CONTEXT_NOT_ALLOWED_ERROR: 'The context in higher-level Actions cannot be replaced by the context in the Stack.',
69
+ WKS_WORKFLOW_NOT_FOUND_ERROR: 'Workflow not found. Check the name and try again.',
70
+ WKS_STACK_NOT_PRESENT_IN_ACCOUNT: 'Stack is not available for this account.',
71
+ WKS_STACK_NOT_FOUND_ERROR: 'Stack not found in the Workspace.',
72
+ WKS_THERE_IS_ACTIVATED_DEPLOY_FOR_THIS_STACK_VERSION_DELETE_ERROR: 'Unable to delete this Stack version as there is an ongoing deploy.',
73
+ WKS_STACK_VERSION_ID_CONFLICT: 'This Stack version is already associated with the Workspace.',
74
+ WKS_STK_FILE_NOT_FOUND: 'STK File not found for application or infrastructure',
75
+ WKS_REPO_URL_NOT_FOUND: 'Repository URL is missing for this application or infrastructure',
76
+ WKS_PLUGINS_TO_UPDATE_NOT_FOUND: 'No plugins were found for update',
77
+ WKS_PLUGINS_NOT_ASSOCIATED_WITH_STACK_VERSION: 'One or more plugins are not associated with given stack version',
78
+ WKS_PLUGIN_NOT_ASSOCIATED_WITH_STACK_VERSION: 'Plugin {1} in version {2} is not associated with given stack version',
79
+ WKS_PLUGIN_NOT_ASSOCIATED_WITH_SPECIFIC_STACK_VERSION: 'Plugin {1} is not associated with stack {2}',
80
+ WKS_PARAMETER_CONFIG_NOT_FOUND: 'Parameter {1} is missing in Workspace',
81
+ WKS_CONTEXT_ATTRIBUTE_NOT_ALLOWED_FOR_ACCOUNT: 'Connection inputs are not allowed in account contexts',
82
+ WKS_CONTEXT_ATTRIBUTE_SPECIFIC_ERROR: "Field '{1}' doesn't accept value '{2}'",
83
+ WKS_CONTEXT_ATTRIBUTE_CONNECTION_TYPE_ERROR: "Field '{1}' doesn't accept value '{2}'. No connection interfaces were found of type '{3}'",
84
+ WKS_CONTEXT_ATTRIBUTE_GENERATED_CONNECTION_TYPE_ERROR: "Field '{1}' doesn't accept value '{2}'. Connection interface already exists",
85
+ WKS_CONTEXT_ATTRIBUTE_CANNOT_VARY_PER_ENV: "Field '{1}' doesn't allow varying per environment",
86
+ WKS_STK_FILE_FOUND_BUT_NOT_ASSOCIATED: 'Found stk.yaml files in the repository, but none are associated with the specified application or infra',
87
+ SCM_API_4001_GITHUB_GET_REPO_BRANCHES_NOT_FOUND: 'The specified repository could not be found on GitHub.',
88
+ SCM_API_4002_GITHUB_GET_REPO_BRANCHES_UNAUTHORIZED: 'Unauthorized access to the repository on GitHub. Please check your credentials.',
89
+ SCM_API_4002_GITHUB_GET_REPO_BRANCHES_FORBIDDEN: 'Access to the repository on GitHub is forbidden. Verify your permissions.',
90
+ SCM_API_4021_GITHUB_GET_REPO_TREE_NOT_FOUND: 'The repository tree could not be found on GitHub.',
91
+ SCM_API_4022_GITHUB_GET_REPO_TREE_UNAUTHORIZED: 'Unauthorized access to the repository tree on GitHub. Please check your credentials.',
92
+ SCM_API_4022_GITHUB_GET_REPO_TREE_FORBIDDEN: 'Access to the repository tree on GitHub is forbidden. Verify your permissions.',
93
+ SCM_API_4031_GITHUB_POST_INSTALLATION_NOT_FOUND: 'The GitHub app installation could not be found.',
94
+ SCM_API_4032_GITHUB_POST_INSTALLATION_UNAUTHORIZED: 'Unauthorized access to the GitHub app installation. Please check your credentials.',
95
+ SCM_API_4032_GITHUB_POST_INSTALLATION_FORBIDDEN: 'Access to the GitHub app installation is forbidden. Verify your permissions.',
96
+ SCM_API_4501_GITLAB_GET_PROJECT_NOT_FOUND: 'The specified project could not be found on GitLab.',
97
+ SCM_API_4502_GITLAB_GET_PROJECT_UNAUTHORIZED: 'Unauthorized access to the project on GitLab. Please check your credentials.',
98
+ SCM_API_4502_GITLAB_GET_PROJECT_FORBIDDEN: 'Access to the project on GitLab is forbidden. Verify your permissions.',
99
+ SCM_API_4511_GITLAB_GET_REPO_BRANCHES_NOT_FOUND: 'The specified repository could not be found on GitLab.',
100
+ SCM_API_4512_GITLAB_GET_REPO_BRANCHES_UNAUTHORIZED: 'Unauthorized access to the repository on GitLab. Please check your credentials.',
101
+ SCM_API_4512_GITLAB_GET_REPO_BRANCHES_FORBIDDEN: 'Access to the repository on GitLab is forbidden. Verify your permissions.',
102
+ SCM_API_4531_GITLAB_GET_REPO_TREE_NOT_FOUND: 'The repository tree could not be found on GitLab.',
103
+ SCM_API_4532_GITLAB_GET_REPO_TREE_UNAUTHORIZED: 'Unauthorized access to the repository tree on GitLab. Please check your credentials.',
104
+ SCM_API_4532_GITLAB_GET_REPO_TREE_FORBIDDEN: 'Access to the repository tree on GitLab is forbidden. Verify your permissions.',
105
+ },
106
+ pt: {
107
+ WKS_API_WORKSPACE_FORBIDDEN: 'Acesso negado. O token expirou ou o endpoint não existe.',
108
+ WKS_WORKSPACE_NOT_FOUND: 'Workspace não encontrado. Verifique o nome e tente novamente.',
109
+ WKS_CONNECTION_INTERFACE_ALREADY_EXISTS_FOR_ACCOUNT: 'Já existe uma Connection Interface com esse nome para esta conta..',
110
+ WKS_CONNECTION_INTERFACE_NOT_AVAILABLE: 'Connection Interface não disponível para esta conta ou Workspace.',
111
+ WKS_WORKSPACE_ALREADY_EXISTS_FOR_ACCOUNT: 'Já existe um Workspace com esse nome. Tente outro.',
112
+ WKS_THERE_IS_A_SHARED_INFRA_WITH_THIS_STACK_DELETE_ERROR: 'Não é possível desassociar esta Stack do Workspace, pois está vinculada a uma Infraestrutura compartilhada.',
113
+ WKS_THERE_IS_AN_APPLICATION_WITH_THIS_STACK_DELETE_ERROR: 'Não é possível desassociar esta Stack do Workspace, pois está vinculada a uma Aplicação.',
114
+ WKS_APPLICATION_LINK_NAME_ALREADY_EXISTS: 'Já existe um link de Aplicação com esse nome.',
115
+ WKS_APPLICATION_LINK_URL_ALREADY_EXISTS: 'Já existe um link de Aplicação com essa URL.',
116
+ WKS_SHARED_INFRA_LINK_NAME_ALREADY_EXISTS: 'Já existe um link de Infraestrutura com esse nome.',
117
+ WKS_SHARED_INFRA_LINK_URL_ALREADY_EXISTS: 'Já existe um link de Infraestrutura com essa URL.',
118
+ WKS_WORKSPACE_LINK_NAME_ALREADY_EXISTS: 'Já existe um link de Workspace com esse nome.',
119
+ WKS_WORKSPACE_LINK_URL_ALREADY_EXISTS: 'Já existe um link de Workspace com essa URL.',
120
+ WKS_ATTR_INVALID: 'O campo {1} é inválido. Verifique e tente novamente.',
121
+ WKS_ATTR_INVALID_EVALUATED_FROM_VALIDATIONS_LENGTH: 'O campo tem um número inválido de caracteres. O tamanho deve ser entre {2} e {3}.',
122
+ WKS_BAD_REQUEST_ERROR: 'Algumas informações estão inválidas. Por favor, verifique os dados.',
123
+ WKS_THERE_ARE_CLOUD_ACCOUNT_FOR_THIS_WORKSPACE_DELETE_ERROR: 'Este Workspace não pode ser deletado porque existem contas de cloud conectadas a ele.',
124
+ WKS_THERE_ARE_STACK_IN_THIS_WORKSPACE_DELETE_ERROR: 'Este Workspace não pode ser deletado porque existem Stacks associadas a ele.',
125
+ WKS_THERE_ARE_CONNECTION_INTERFACE_IN_THIS_WORKSPACE_DELETE_ERROR: 'Este Workspace não pode ser deletado porque existem Connection Interfaces criadas nele.',
126
+ WKS_THERE_IS_RUNNING_DEPLOY_FOR_THIS_APPLICATION: 'Esta Aplicação não pode ser deletada porque há deploys em execução.',
127
+ WKS_THERE_ARE_ACTIVATED_DEPLOY_FOR_THIS_APPLICATION: 'Esta Aplicação não pode ser deletada porque há deploys com status ativo.',
128
+ WKS_THERE_IS_CONNECTION_INTERFACE_FOR_THIS_APPLICATION_DELETE_ERROR: 'Esta Aplicação não pode ser deletada porque existem Connection Interfaces nela.',
129
+ WKS_THERE_IS_RUNNING_DEPLOY_FOR_THIS_SHARED_INFRA: 'Esta Infraestrutura não pode ser deletada porque há deploys em execução.',
130
+ WKS_THERE_ARE_ACTIVATED_DEPLOY_FOR_THIS_SHARED_INFRA: 'Esta Infraestrutura não pode ser deletada porque há deploys com status ativo.',
131
+ WKS_THERE_IS_CONNECTION_INTERFACE_FOR_THIS_SHARED_INFRA_DELETE_ERROR: 'Esta Infraestrutura não pode ser deletada porque existem Connection Interfaces nela.',
132
+ WKS_WORKSPACE_EMBEDDED_LINK_NOT_FOUND: 'Link incorporado não encontrado.',
133
+ WKS_WORKSPACE_EMBEDDED_LINK_URL_ALREADY_EXISTS: 'Já existe um link incorporado neste Workspace com a URL fornecida.',
134
+ WKS_WORKSPACE_EMBEDDED_LINK_NAME_ALREADY_EXISTS: 'Já existe um link incorporado neste Workspace com o nome fornecido.',
135
+ WKS_APPLICATION_EMBEDDED_LINK_NOT_FOUND: 'Link incorporado não encontrado.',
136
+ WKS_APPLICATION_EMBEDDED_LINK_URL_ALREADY_EXISTS: 'Já existe um link incorporado nesta Aplicação com a URL fornecida.',
137
+ WKS_APPLICATION_EMBEDDED_LINK_NAME_ALREADY_EXISTS: 'Já existe um link incorporado nesta Aplicação com esse nome.',
138
+ WKS_API_WORKSPACE_BAD_REQUEST: 'Alguns campos estão inválidos. Por favor, verifique os dados informados.',
139
+ WKS_APPLICATION_CAN_NOT_BE_DELETED: 'Não é possível excluir esta Aplicação.',
140
+ WKS_CONNECTION_INTERFACE_IN_USE: 'Existem Connection Interfaces em uso.',
141
+ WKS_THERE_IS_NO_ENVIRONMENT_IN_ACCOUNT_TO_CONFIGURE_ACTIONS_IN_WORKSPACE: 'É necessário criar ao menos um Environment para configurar Actions em Workspaces.',
142
+ WKS_THERE_IS_NO_ENVIRONMENT_IN_ACCOUNT_TO_CONFIGURE_PLUGINS_IN_WORKSPACE: 'É necessário criar ao menos um Environment para configurar Plugins em Workspaces.',
143
+ WKS_CONTEXT_STACK_ADD_RELATIONSHIP: 'Erro ao definir uma versão de Stack com o Workspace.',
144
+ WKS_CONTEXT_STACK_DELETE_RELATIONSHIP: 'Erro ao remover uma versão de Stack do Workspace.',
145
+ WKS_APPLICATION_NAME_CONFLICT: 'Já existe uma Aplicação ou Infraestrutura com esse nome. Tente novamente com outro nome.',
146
+ WKS_SHARED_INFRA_NAME_CONFLICT: 'Já existe uma infraestrutura com esse nome. Tente novamente com outro nome.',
147
+ WKS_SHARED_INFRA_CAN_NOT_BE_DESTROYED_ERROR: 'Não é possível excluir esta infraestrutura.',
148
+ WKS_ACTIVE_SHARED_INFRA_WITH_DEPLOY_SELF_HOSTED: 'Não é possível excluir esta infraestrutura. Existem infraestruturas do tipo deploy_self_hosted_type.',
149
+ WKS_APPLICATION_CAN_NOT_BE_DESTROYED_ERROR: 'Não é possível excluir esta Aplicação.',
150
+ WKS_ACTIVE_APPLICATION_WITH_DEPLOY_SELF_HOSTED: 'Não é possível excluir esta Aplicação. Existem Aplicações do tipo deploy_self_hosted_type.',
151
+ WKS_APPLICATION_NOT_FOUND_FOR_THIS_WORKSPACE_ERROR: 'Aplicação não encontrada neste Workspace.',
152
+ WKS_SHARED_INFRA_NOT_FOUND_FOR_THIS_WORKSPACE_ERROR: 'Esta Infraestrutura não existe neste Workspace.',
153
+ WKS_APPLICATION_STATUS_DOES_NOT_ALLOW_RECREATION: 'Reexecução não permitida. Só é possível reexecutar Aplicações que finalizaram com status de erro.',
154
+ WKS_SHARED_INFRA_STATUS_DOES_NOT_ALLOW_RECREATION: 'Reexecução não permitida. Só é possível reexecutar Aplicações que finalizaram com status de erro.',
155
+ WKS_DEPLOY_RUNNING: 'Há um deploy em execução.',
156
+ WKS_WORKFLOW_ACTIONS_UNORDERED_ERROR: 'Verifique se as Actions do Workflow estão na ordem correta.',
157
+ WKS_WORKFLOW_ACTIONS_DUPLICATED_ERROR: 'Cada Action do Workflow deve ser única dentro do seu escopo.',
158
+ WKS_WORKFLOW_CONTEXT_KEY_DUPLICATED_ERROR: 'Use uma chave de contexto única para cada Action.',
159
+ WKS_WORKFLOW_CONTEXT_NOT_ALLOWED_ERROR: 'Não é permitido configurar o contexto.',
160
+ WKS_WORKFLOW_ACTIONS_CREATE_REPO_DUPLICATED_ERROR: 'Apenas uma Action CREATE_REPO é permitida por Workflow.',
161
+ WKS_WORKFLOW_CONTEXT_MUST_BE_INFORMED_FOR_ALL_ACTIONS_ERROR: 'Informe o contexto para todas as Actions do Workflow.',
162
+ WKS_WORKFLOW_ALREADY_EXISTS_ERROR: 'Já existe um Workflow com esse nome. Escolha um nome diferente.',
163
+ WKS_WORKFLOW_API_MUST_BE_DEFAULT_ERROR: 'Workflows de API CREATE devem ser padrão.',
164
+ WKS_WORKFLOW_API_WITH_STACKS_ERROR: 'Workflows de API CREATE não podem ser associados a Stacks.',
165
+ WKS_WORKFLOW_DEFAULT_ALREADY_EXIST_FOR_TYPE_ERROR: 'Um Workflow padrão desse tipo já existe. Use um tipo diferente.',
166
+ WKS_WORKFLOW_DEFAULT_WITH_STACKS_ERROR: 'Workflows padrão não podem ser associados a Stacks.',
167
+ WKS_WORKFLOW_CONDITION_DUPLICATED_ERROR: 'Não deve haver condições duplicadas com o mesmo valor por identificador.',
168
+ WKS_WORKFLOW_AND_STACK_ARE_NOT_ASSOCIATED_ERROR: 'Esta Stack não está associada ao Workflow especificado. Verifique a associação.',
169
+ WKS_WORKFLOW_ACTIONS_ARE_NOT_ASSOCIATED_ERROR: 'Verifique se todas as Actions estão associadas ao Workflow especificado.',
170
+ WKS_WORKFLOW_ACTIONS_CONTEXT_NOT_ALLOWED_ERROR: 'O contexto de nível superior nas Actions não pode ser substituído pelo contexto da Stack.',
171
+ WKS_WORKFLOW_NOT_FOUND_ERROR: 'Workflow não encontrado. Verifique o nome e tente novamente.',
172
+ WKS_STACK_NOT_PRESENT_IN_ACCOUNT: 'Stack não disponível para esta conta.',
173
+ WKS_STACK_NOT_FOUND_ERROR: 'Stack não encontrada no Workspace.',
174
+ WKS_THERE_IS_ACTIVATED_DEPLOY_FOR_THIS_STACK_VERSION_DELETE_ERROR: 'Não é possível excluir esta versão da Stack, pois há um deploy em andamento.',
175
+ WKS_STACK_VERSION_ID_CONFLICT: 'Esta versão da Stack já está associada ao Workspace.',
176
+ WKS_STK_FILE_NOT_FOUND: 'Arquivo STK não encontrado para a aplicação ou infraestrutura',
177
+ WKS_REPO_URL_NOT_FOUND: 'URL do repositório está ausente para esta aplicação ou infraestrutura',
178
+ WKS_PLUGINS_TO_UPDATE_NOT_FOUND: 'Nenhum plugin foi encontrado para atualização',
179
+ WKS_PLUGINS_NOT_ASSOCIATED_WITH_STACK_VERSION: 'Um ou mais plugins não estão associados à versão da stack fornecida',
180
+ WKS_PLUGIN_NOT_ASSOCIATED_WITH_STACK_VERSION: 'O plugin {1} na versão {2} não está associado à versão da stack fornecida',
181
+ WKS_PLUGIN_NOT_ASSOCIATED_WITH_SPECIFIC_STACK_VERSION: 'O plugin {1} não está associado à stack {2}',
182
+ WKS_PARAMETER_CONFIG_NOT_FOUND: 'O parâmetro {1} está ausente no Workspace',
183
+ WKS_CONTEXT_ATTRIBUTE_NOT_ALLOWED_FOR_ACCOUNT: 'Entradas de conexão não são permitidas em contextos de conta',
184
+ WKS_CONTEXT_ATTRIBUTE_SPECIFIC_ERROR: 'O campo {1} não aceita o valor {2}',
185
+ WKS_CONTEXT_ATTRIBUTE_CONNECTION_TYPE_ERROR: 'O campo {1} não aceita o valor {2}. Nenhuma interface de conexão foi encontrada do tipo {3}',
186
+ WKS_CONTEXT_ATTRIBUTE_GENERATED_CONNECTION_TYPE_ERROR: 'O campo {1} não aceita o valor {2}. A interface de conexão já existe',
187
+ WKS_CONTEXT_ATTRIBUTE_CANNOT_VARY_PER_ENV: 'O campo {1} não permite variação por ambiente',
188
+ WKS_STK_FILE_FOUND_BUT_NOT_ASSOCIATED: 'Foram encontrados arquivos stk.yaml no repositório, mas nenhum está associado à aplicação ou infraestrutura especificada.',
189
+ SCM_API_4001_GITHUB_GET_REPO_BRANCHES_NOT_FOUND: 'O repositório especificado não foi encontrado no GitHub.',
190
+ SCM_API_4002_GITHUB_GET_REPO_BRANCHES_UNAUTHORIZED: 'Acesso não autorizado ao repositório no GitHub. Verifique suas credenciais.',
191
+ SCM_API_4002_GITHUB_GET_REPO_BRANCHES_FORBIDDEN: 'Acesso ao repositório no GitHub foi proibido. Verifique suas permissões.',
192
+ SCM_API_4021_GITHUB_GET_REPO_TREE_NOT_FOUND: 'A árvore do repositório não foi encontrada no GitHub.',
193
+ SCM_API_4022_GITHUB_GET_REPO_TREE_UNAUTHORIZED: 'Acesso não autorizado à árvore do repositório no GitHub. Verifique suas credenciais.',
194
+ SCM_API_4022_GITHUB_GET_REPO_TREE_FORBIDDEN: 'Acesso à árvore do repositório no GitHub foi proibido. Verifique suas permissões.',
195
+ SCM_API_4031_GITHUB_POST_INSTALLATION_NOT_FOUND: 'A instalação do aplicativo GitHub não foi encontrada.',
196
+ SCM_API_4032_GITHUB_POST_INSTALLATION_UNAUTHORIZED: 'Acesso não autorizado à instalação do aplicativo GitHub. Verifique suas credenciais.',
197
+ SCM_API_4032_GITHUB_POST_INSTALLATION_FORBIDDEN: 'Acesso à instalação do aplicativo GitHub foi proibido. Verifique suas permissões.',
198
+ SCM_API_4501_GITLAB_GET_PROJECT_NOT_FOUND: 'O projeto especificado não foi encontrado no GitLab.',
199
+ SCM_API_4502_GITLAB_GET_PROJECT_UNAUTHORIZED: 'Acesso não autorizado ao projeto no GitLab. Verifique suas credenciais.',
200
+ SCM_API_4502_GITLAB_GET_PROJECT_FORBIDDEN: 'Acesso ao projeto no GitLab foi proibido. Verifique suas permissões.',
201
+ SCM_API_4511_GITLAB_GET_REPO_BRANCHES_NOT_FOUND: 'O repositório especificado não foi encontrado no GitLab.',
202
+ SCM_API_4512_GITLAB_GET_REPO_BRANCHES_UNAUTHORIZED: 'Acesso não autorizado ao repositório no GitLab. Verifique suas credenciais.',
203
+ SCM_API_4512_GITLAB_GET_REPO_BRANCHES_FORBIDDEN: 'Acesso ao repositório no GitLab foi proibido. Verifique suas permissões.',
204
+ SCM_API_4531_GITLAB_GET_REPO_TREE_NOT_FOUND: 'A árvore do repositório não foi encontrada no GitLab.',
205
+ SCM_API_4532_GITLAB_GET_REPO_TREE_UNAUTHORIZED: 'Acesso não autorizado à árvore do repositório no GitLab. Verifique suas credenciais.',
206
+ SCM_API_4532_GITLAB_GET_REPO_TREE_FORBIDDEN: 'Acesso à árvore do repositório no GitLab foi proibido. Verifique suas permissões.',
207
+
208
+ },
209
+ } satisfies Dictionary
@@ -1,21 +1,21 @@
1
- export type LanguageSuggestedMessageKeys = 'ptBr' | 'enUs';
2
-
3
- export type SuggestedMessage = {
4
- [key in LanguageSuggestedMessageKeys]: string | null
5
- };
6
-
7
- export type ValidationDetails = {
8
- code: string,
9
- field?: string,
10
- details?: string,
11
- values?: string[],
12
- suggestedMessages?: SuggestedMessage | null,
13
- };
14
-
15
- export type ErrorResponse = {
16
- code: string,
17
- status: number,
18
- details: string,
19
- validationDetails?: ValidationDetails[],
20
- suggestedMessages?: SuggestedMessage | null,
21
- };
1
+ export type LanguageSuggestedMessageKeys = 'ptBr' | 'enUs';
2
+
3
+ export type SuggestedMessage = {
4
+ [key in LanguageSuggestedMessageKeys]: string | null
5
+ };
6
+
7
+ export type ValidationDetails = {
8
+ code: string,
9
+ field?: string,
10
+ details?: string,
11
+ values?: string[],
12
+ suggestedMessages?: SuggestedMessage | null,
13
+ };
14
+
15
+ export type ErrorResponse = {
16
+ code: string,
17
+ status: number,
18
+ details: string,
19
+ validationDetails?: ValidationDetails[],
20
+ suggestedMessages?: SuggestedMessage | null,
21
+ };
package/src/index.ts CHANGED
@@ -1,43 +1,43 @@
1
- export { CancelledError } from '@tanstack/react-query'
2
- export { apiAddresses, getApiAddresses, getApisByTenant, getBaseUrlByTenantWithOverride, setApisOverride } from './api-addresses'
3
- export { accountClient } from './client/account'
4
- export { agentClient } from './client/agent'
5
- export { agentToolsClient } from './client/agent-tools'
6
- export { aiClient } from './client/ai'
7
- export { apiManagementClient } from './client/api-management'
8
- export { cloudAccountClient } from './client/cloud-account'
9
- export { cloudPlatformClient } from './client/cloud-platform'
10
- export { cloudPlatformHorizonClient } from './client/cloud-platform-horizon'
11
- export { cloudRuntimesClient } from './client/cloud-runtimes'
12
- export { cloudServicesClient } from './client/cloud-services'
13
- export { codeShiftClient } from './client/code-shift'
14
- export { contentClient } from './client/content'
15
- export { dataIntegrationClient } from './client/data-integration'
16
- export * from './client/discover'
17
- export { discoverClient } from './client/discover'
18
- export { eventBusClient } from './client/event-bus'
19
- export { genAiInferenceClient } from './client/gen-ai-inference'
20
- export { insightsClient } from './client/insights'
21
- export { notificationClient } from './client/notification'
22
- export { runtimeManagerClient } from './client/runtime-manager'
23
- export { secretsClient } from './client/secrets'
24
- export * from './client/types'
25
- export { workflowClient } from './client/workflow'
26
- export { workspaceClient } from './client/workspace'
27
- export { workspaceAiClient } from './client/workspace-ai'
28
- export { workspaceManagerClient } from './client/workspace-manager'
29
- export { workspaceSearchClient } from './client/workspace-search'
30
- export { DefaultAPIError } from './error/DefaultAPIError'
31
- export { FileUploadError } from './error/FileUploadError'
32
- export { StackspotAPIError } from './error/StackspotAPIError'
33
- export { StreamCanceledError } from './error/StreamCanceledError'
34
- export { StreamError } from './error/StreamError'
35
- export { StreamJsonError } from './error/StreamJsonError'
36
- export { NetworkClient } from './network/NetworkClient'
37
- export { queryClient } from './network/react-query-client'
38
- export { Env, OperationResult, OperationVariables, Tenant, UseQueryObjectOptions } from './network/types'
39
- export { StreamingStatus } from './types'
40
- export { StreamedArray } from './utils/StreamedArray'
41
- export { StreamedJson } from './utils/StreamedJson'
42
- export { useExtendedList } from './utils/use-extended-list'
43
- export { useStreamedArray } from './utils/use-streamed-array'
1
+ export { CancelledError } from '@tanstack/react-query'
2
+ export { apiAddresses, getApiAddresses, getApisByTenant, getBaseUrlByTenantWithOverride, setApisOverride } from './api-addresses'
3
+ export { accountClient } from './client/account'
4
+ export { agentClient } from './client/agent'
5
+ export { agentToolsClient } from './client/agent-tools'
6
+ export { aiClient } from './client/ai'
7
+ export { apiManagementClient } from './client/api-management'
8
+ export { cloudAccountClient } from './client/cloud-account'
9
+ export { cloudPlatformClient } from './client/cloud-platform'
10
+ export { cloudPlatformHorizonClient } from './client/cloud-platform-horizon'
11
+ export { cloudRuntimesClient } from './client/cloud-runtimes'
12
+ export { cloudServicesClient } from './client/cloud-services'
13
+ export { codeShiftClient } from './client/code-shift'
14
+ export { contentClient } from './client/content'
15
+ export { dataIntegrationClient } from './client/data-integration'
16
+ export * from './client/discover'
17
+ export { discoverClient } from './client/discover'
18
+ export { eventBusClient } from './client/event-bus'
19
+ export { genAiInferenceClient } from './client/gen-ai-inference'
20
+ export { insightsClient } from './client/insights'
21
+ export { notificationClient } from './client/notification'
22
+ export { runtimeManagerClient } from './client/runtime-manager'
23
+ export { secretsClient } from './client/secrets'
24
+ export * from './client/types'
25
+ export { workflowClient } from './client/workflow'
26
+ export { workspaceClient } from './client/workspace'
27
+ export { workspaceAiClient } from './client/workspace-ai'
28
+ export { workspaceManagerClient } from './client/workspace-manager'
29
+ export { workspaceSearchClient } from './client/workspace-search'
30
+ export { DefaultAPIError } from './error/DefaultAPIError'
31
+ export { FileUploadError } from './error/FileUploadError'
32
+ export { StackspotAPIError } from './error/StackspotAPIError'
33
+ export { StreamCanceledError } from './error/StreamCanceledError'
34
+ export { StreamError } from './error/StreamError'
35
+ export { StreamJsonError } from './error/StreamJsonError'
36
+ export { NetworkClient } from './network/NetworkClient'
37
+ export { queryClient } from './network/react-query-client'
38
+ export { Env, OperationResult, OperationVariables, Tenant, UseQueryObjectOptions } from './network/types'
39
+ export { StreamingStatus } from './types'
40
+ export { StreamedArray } from './utils/StreamedArray'
41
+ export { StreamedJson } from './utils/StreamedJson'
42
+ export { useExtendedList } from './utils/use-extended-list'
43
+ export { useStreamedArray } from './utils/use-streamed-array'