@stack-spot/portal-network 0.184.0-beta.1 → 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.
- package/CHANGELOG.md +2412 -2431
- package/dist/api/account.js +1 -1
- package/dist/api/agent-tools.js +1 -1
- package/dist/api/agent.js +1 -1
- package/dist/api/ai.js +1 -1
- package/dist/api/apiManagement.js +1 -1
- package/dist/api/apiRuntime.js +1 -1
- package/dist/api/cloudAccount.js +1 -1
- package/dist/api/cloudPlatform.js +1 -1
- package/dist/api/cloudPlatformHorizon.js +1 -1
- package/dist/api/cloudRuntimes.js +1 -1
- package/dist/api/cloudServices.js +1 -1
- package/dist/api/codeShift.d.ts +4 -76
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +1 -14
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/content.js +1 -1
- package/dist/api/dataIntegration.js +1 -1
- package/dist/api/discover.js +1 -1
- package/dist/api/genAiInference.js +1 -1
- package/dist/api/insights.js +1 -1
- package/dist/api/notification.js +1 -1
- package/dist/api/secrets.js +1 -1
- package/dist/api/serviceCatalog.js +1 -1
- package/dist/api/workspace-ai.js +1 -1
- package/dist/api/workspace.js +1 -1
- package/dist/api/workspaceManager.d.ts +16 -10
- package/dist/api/workspaceManager.d.ts.map +1 -1
- package/dist/api/workspaceManager.js +11 -1
- package/dist/api/workspaceManager.js.map +1 -1
- package/dist/api/workspaceSearchEngine.js +1 -1
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +14 -84
- package/dist/client/ai.js.map +1 -1
- package/dist/client/code-shift.d.ts +0 -30
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +1 -37
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/types.d.ts +6 -26
- package/dist/client/types.d.ts.map +1 -1
- package/dist/client/workspace-manager.d.ts +6 -0
- package/dist/client/workspace-manager.d.ts.map +1 -1
- package/dist/client/workspace-manager.js +10 -1
- package/dist/client/workspace-manager.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +1 -1
- package/scripts/generate-apis.ts +134 -134
- package/src/api/account.ts +8367 -8368
- package/src/api/agent-tools.ts +2169 -2172
- package/src/api/agent.ts +1083 -1085
- package/src/api/ai.ts +3388 -3388
- package/src/api/apiManagement.ts +570 -570
- package/src/api/apiRuntime.ts +2103 -2103
- package/src/api/cloudAccount.ts +1239 -1239
- package/src/api/cloudPlatform.ts +927 -927
- package/src/api/cloudPlatformHorizon.ts +2655 -2655
- package/src/api/cloudRuntimes.ts +2043 -2043
- package/src/api/cloudServices.ts +1445 -1445
- package/src/api/codeShift.ts +3481 -3580
- package/src/api/content.ts +9785 -9785
- package/src/api/dataIntegration.ts +1657 -1657
- package/src/api/discover.ts +435 -435
- package/src/api/eventBus.ts +171 -171
- package/src/api/genAiInference.ts +603 -603
- package/src/api/insights.ts +310 -310
- package/src/api/notification.ts +334 -336
- package/src/api/secrets.ts +342 -342
- package/src/api/serviceCatalog.ts +2908 -2908
- package/src/api/workflows.ts +1669 -1669
- package/src/api/workspace-ai.ts +677 -677
- package/src/api/workspace.ts +5889 -5889
- package/src/api/workspaceManager.ts +2951 -2936
- package/src/api/workspaceSearchEngine.ts +153 -153
- package/src/api-addresses.ts +120 -120
- package/src/apis-itau.json +225 -225
- package/src/apis.json +225 -225
- package/src/client/account.ts +902 -902
- package/src/client/agent-tools.ts +210 -210
- package/src/client/agent.ts +81 -81
- package/src/client/ai.ts +395 -469
- package/src/client/api-management.ts +40 -40
- package/src/client/cloud-account.ts +70 -70
- package/src/client/cloud-platform-horizon.ts +113 -113
- package/src/client/cloud-platform.ts +163 -163
- package/src/client/cloud-runtimes.ts +129 -129
- package/src/client/cloud-services.ts +94 -94
- package/src/client/code-shift.ts +349 -371
- package/src/client/content.ts +538 -538
- package/src/client/data-integration.ts +191 -191
- package/src/client/discover.ts +89 -89
- package/src/client/event-bus.ts +84 -84
- package/src/client/gen-ai-inference.ts +65 -65
- package/src/client/insights.ts +28 -28
- package/src/client/notification.ts +32 -32
- package/src/client/runtime-manager.ts +76 -76
- package/src/client/secrets.ts +60 -60
- package/src/client/types.ts +377 -398
- package/src/client/workflow.ts +83 -83
- package/src/client/workspace-ai.ts +191 -191
- package/src/client/workspace-manager.ts +564 -560
- package/src/client/workspace-search.ts +39 -39
- package/src/client/workspace.ts +480 -480
- package/src/error/DefaultAPIError.ts +151 -151
- package/src/error/FileUploadError.ts +18 -18
- package/src/error/IgnoredErrorCodes.ts +3 -3
- package/src/error/StackspotAPIError.ts +101 -101
- package/src/error/StreamCanceledError.ts +10 -10
- package/src/error/StreamError.ts +7 -7
- package/src/error/StreamJsonError.ts +10 -10
- package/src/error/dictionary/account.ts +58 -58
- package/src/error/dictionary/action-details.ts +20 -20
- package/src/error/dictionary/action.ts +211 -211
- package/src/error/dictionary/agent-tools.ts +75 -75
- package/src/error/dictionary/ai-inference.ts +28 -28
- package/src/error/dictionary/base.ts +22 -22
- package/src/error/dictionary/cloud-platform.ts +82 -82
- package/src/error/dictionary/cnt-fields.ts +14 -14
- package/src/error/dictionary/cnt.ts +103 -103
- package/src/error/dictionary/code-shift.ts +12 -12
- package/src/error/dictionary/rte.ts +24 -24
- package/src/error/dictionary/rtm.ts +10 -10
- package/src/error/dictionary/secrets.ts +14 -14
- package/src/error/dictionary/workspace-ai.ts +10 -10
- package/src/error/dictionary/workspace-details.ts +15 -15
- package/src/error/dictionary/workspace-fields.ts +10 -10
- package/src/error/dictionary/workspace.ts +209 -209
- package/src/error/types.ts +21 -21
- package/src/index.ts +43 -43
- package/src/network/AutoInfiniteQuery.ts +115 -115
- package/src/network/AutoMutation.ts +27 -27
- package/src/network/AutoOperation.ts +73 -73
- package/src/network/AutoQuery.ts +75 -75
- package/src/network/ManualInfiniteQuery.ts +95 -95
- package/src/network/ManualMutation.ts +40 -40
- package/src/network/ManualOperation.ts +52 -52
- package/src/network/ManualQuery.ts +82 -82
- package/src/network/NetworkClient.ts +167 -167
- package/src/network/ReactQueryNetworkClient.ts +312 -312
- package/src/network/react-query-client.ts +14 -14
- package/src/network/types.ts +294 -294
- package/src/types.ts +1 -1
- package/src/utils/StreamedArray.tsx +146 -146
- package/src/utils/StreamedJson.tsx +166 -166
- package/src/utils/remove-authorization-param.ts +6 -6
- package/src/utils/string.ts +19 -19
- package/src/utils/use-extended-list.ts +80 -80
- package/src/utils/use-streamed-array.ts +17 -17
- package/tsconfig.build.json +4 -4
- package/tsconfig.json +10 -10
- package/logs/simple-failure/01JBER7AWKACEC3Y1NF7M6PHFF/job_id_1.log +0 -3
- package/logs/simple-suspend/01JBEMQG94ADPT99MSZ7EJKGXZ/job_id_1.log +0 -5
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
import { Dictionary } from '@stack-spot/portal-translate'
|
|
2
|
-
|
|
3
|
-
export const accountDictionary = {
|
|
4
|
-
en: {
|
|
5
|
-
ACC_BAD_REQUEST_ERROR: 'The provided data is invalid or inconsistent.',
|
|
6
|
-
ACC_ATTR_INVALID_EVALUATED_FROM_VALIDATIONS_LENGTH: 'The field {1} must have between {2} and {3} characters long.',
|
|
7
|
-
ACC_STUDIO_ALREADY_EXISTS_FOR_ACCOUNT: 'A Studio with this name already exists. Please choose a new name.',
|
|
8
|
-
ACC_UNABLE_DELETE_TEAM_CONSTRAINT_VIOLATION_ERROR: 'The Team cannot be deleted because it is linked to other resources in the account.',
|
|
9
|
-
ACC_CREDENTIAL_ALREADY_EXISTS_FOR_USER: 'Please configure the SCM to continue.',
|
|
10
|
-
ACC_CREDENTIAL_NOT_FOUND_ERROR: 'SCM Credentials not found.',
|
|
11
|
-
ACC_FIELDS_EXTERNALNAME_IS_INVALID: 'The internal identifier contains characters or words that are not allowed.',
|
|
12
|
-
ACC_MALFORMED_FIELDS_IN_PAYLOAD: 'Check the fields, some entries are invalid.',
|
|
13
|
-
ACC_TEAM_ALREADY_EXISTS_FOR_ACCOUNT_AND_EXTERNAL_NAME: 'This information has already been used to register a Team. Please use a different one.',
|
|
14
|
-
ACC_ACCOUNT_DATA_UNAVAILABLE_TO_REGISTER_ACCOUNT_FREEMIUM: 'This name is already in use. Please choose a new one.',
|
|
15
|
-
ACC_USER_NOT_FOUND_TO_REGISTER_ACCOUNT_FREEMIUM: 'User not found. Please log in with GitHub to register for a Personal acccount.',
|
|
16
|
-
ACC_ALREADY_EXISTS_ACCOUNT_FREEMIUM_TO_USER: 'You already have a Personal account. Please log in to use your StackSpot Account.',
|
|
17
|
-
ACC_USER_NOT_ALLOWED_TO_REGISTER_ACCOUNT_FREEMIUM: "Your current domain doesn't allow Personal account registration. Please try registering with a different domain.",
|
|
18
|
-
ACC_IMPORT_ACCOUNT_MEMBERS_ALREADY_EXISTS_FOR_ACCOUNT: 'An import is currently in progress. Please wait for it to complete or contact StackSpot support for more information.',
|
|
19
|
-
ACC_SERVICE_CREDENTIAL_PERMISSIONS_INCONSISTENT_TO_ASSOCIATION: 'The permissions provided are inconsistent with this Service Credential.',
|
|
20
|
-
ACC_SERVICE_CREDENTIAL_TEAMS_INCONSISTENT_TO_ASSOCIATION: 'Some teams are not authorized to use this Service Credential.',
|
|
21
|
-
ACC_SERVICE_CREDENTIAL_TEAMS_INCONSISTENT_TO_DISASSOCIATION: 'There is an inconsistency in disassociating the Team with this Service Credential.',
|
|
22
|
-
ACC_SERVICE_CREDENTIAL_ALREADY_EXISTS_FOR_ACCOUNT: 'A Service Credential with this name already exists.',
|
|
23
|
-
ACC_SERVICE_CREDENTIAL_NOT_FOUND: 'Credencial de Serviço não encontrada.',
|
|
24
|
-
ACC_ACCOUNT_CREATION_DATA_ERROR: 'This partner is already registered.',
|
|
25
|
-
ACC_PARTNER_ACCOUNT_ADMIN_UPDATE_NAME_ERROR: 'It is impossible to change only the name or surname of the partner Account Administrator.',
|
|
26
|
-
ACC_ACCOUNT_PARTNER_CANT_BE_INACTIVATED: 'This partner cannot be deactivated due to associated APIs or products.',
|
|
27
|
-
ACC_ACCOUNT_CREATION_PARTNER_ASSOCIATION_LIMIT: 'Your account has reached the limit of associations with partner accounts.',
|
|
28
|
-
ACC_INVALID_PASSWORD: "Invalid password. Please make sure it meets the requirements and hasn't been used before.",
|
|
29
|
-
ROLES_ALREADY_EXISTS: 'A role with this name already exists.',
|
|
30
|
-
},
|
|
31
|
-
pt: {
|
|
32
|
-
ACC_BAD_REQUEST_ERROR: 'Os dados informados estão inválidos ou inconsistentes.',
|
|
33
|
-
ACC_ATTR_INVALID_EVALUATED_FROM_VALIDATIONS_LENGTH: 'O campo {1} deve ter um tamanho entre {2} e {3}.',
|
|
34
|
-
ACC_STUDIO_ALREADY_EXISTS_FOR_ACCOUNT: 'Já existe um Estúdio com esse nome. Por favor, escolha outro.',
|
|
35
|
-
ACC_UNABLE_DELETE_TEAM_CONSTRAINT_VIOLATION_ERROR: 'Não é possível excluir a Equipe porque ela está vinculada a outros recursos da conta.',
|
|
36
|
-
ACC_CREDENTIAL_ALREADY_EXISTS_FOR_USER: 'Para continuar, configure o SCM.',
|
|
37
|
-
ACC_CREDENTIAL_NOT_FOUND_ERROR: 'Credenciais de SCM não encontradas.',
|
|
38
|
-
ACC_FIELDS_EXTERNALNAME_IS_INVALID: 'O identificador interno contém caracteres ou palavras não permitidos.',
|
|
39
|
-
ACC_MALFORMED_FIELDS_IN_PAYLOAD: 'Verifique os campos, alguns estão inválidos.',
|
|
40
|
-
ACC_TEAM_ALREADY_EXISTS_FOR_ACCOUNT_AND_EXTERNAL_NAME: 'Essas informações já foram usadas para registrar uma Equipe. Por favor, utilize outras informações.',
|
|
41
|
-
ACC_ACCOUNT_DATA_UNAVAILABLE_TO_REGISTER_ACCOUNT_FREEMIUM: 'Este nome já está em uso. Por favor, escolha um novo.',
|
|
42
|
-
ACC_USER_NOT_FOUND_TO_REGISTER_ACCOUNT_FREEMIUM: 'User não encontrado. Faça login com Github para registrar uma conta Personal.',
|
|
43
|
-
ACC_ALREADY_EXISTS_ACCOUNT_FREEMIUM_TO_USER: 'Você já tem uma Conta Personal. Faça login para usar a sua conta StackSpot.',
|
|
44
|
-
ACC_USER_NOT_ALLOWED_TO_REGISTER_ACCOUNT_FREEMIUM: 'Seu domínio atual não permite o registro de uma Conta Personal. Por favor, use um domínio diferente.',
|
|
45
|
-
ACC_IMPORT_ACCOUNT_MEMBERS_ALREADY_EXISTS_FOR_ACCOUNT: 'Existe uma importação em andamento. Aguarde a conclusão ou contate o suporte da StackSpot para mais informações.',
|
|
46
|
-
ACC_SERVICE_CREDENTIAL_PERMISSIONS_INCONSISTENT_TO_ASSOCIATION: 'As permissões fornecidas são inconsistentes para essa Credencial de Serviço.',
|
|
47
|
-
ACC_SERVICE_CREDENTIAL_TEAMS_INCONSISTENT_TO_ASSOCIATION: 'Algumas Equipes não estão alinhadas para associar a essa Credencial de Serviço.',
|
|
48
|
-
ACC_SERVICE_CREDENTIAL_TEAMS_INCONSISTENT_TO_DISASSOCIATION: 'Há uma inconsistência na desassociação da Equipe com essa Credencial de Serviço.',
|
|
49
|
-
ACC_SERVICE_CREDENTIAL_ALREADY_EXISTS_FOR_ACCOUNT: 'Já existe uma Credencial de Serviço com esse nome.',
|
|
50
|
-
ACC_SERVICE_CREDENTIAL_NOT_FOUND: 'Service Credential not found.',
|
|
51
|
-
ACC_ACCOUNT_CREATION_DATA_ERROR: 'Esse Parceiro já está registrado.',
|
|
52
|
-
ACC_PARTNER_ACCOUNT_ADMIN_UPDATE_NAME_ERROR: 'Não é possível alterar apenas o nome ou sobrenome da pessoa que administra a Conta Parceiro.',
|
|
53
|
-
ACC_ACCOUNT_PARTNER_CANT_BE_INACTIVATED: 'Este Parceiro não pode ser inativado devido a APIs ou produtos associados.',
|
|
54
|
-
ACC_ACCOUNT_CREATION_PARTNER_ASSOCIATION_LIMIT: 'Sua conta atingiu o limite de associações com Contas de Parceiros.',
|
|
55
|
-
ACC_INVALID_PASSWORD: 'Senha inválida. Verifique se ela atende aos requisitos e não foi usada anteriormente.',
|
|
56
|
-
ROLES_ALREADY_EXISTS: 'Já existe um papel com esse nome.',
|
|
57
|
-
},
|
|
58
|
-
} satisfies Dictionary
|
|
1
|
+
import { Dictionary } from '@stack-spot/portal-translate'
|
|
2
|
+
|
|
3
|
+
export const accountDictionary = {
|
|
4
|
+
en: {
|
|
5
|
+
ACC_BAD_REQUEST_ERROR: 'The provided data is invalid or inconsistent.',
|
|
6
|
+
ACC_ATTR_INVALID_EVALUATED_FROM_VALIDATIONS_LENGTH: 'The field {1} must have between {2} and {3} characters long.',
|
|
7
|
+
ACC_STUDIO_ALREADY_EXISTS_FOR_ACCOUNT: 'A Studio with this name already exists. Please choose a new name.',
|
|
8
|
+
ACC_UNABLE_DELETE_TEAM_CONSTRAINT_VIOLATION_ERROR: 'The Team cannot be deleted because it is linked to other resources in the account.',
|
|
9
|
+
ACC_CREDENTIAL_ALREADY_EXISTS_FOR_USER: 'Please configure the SCM to continue.',
|
|
10
|
+
ACC_CREDENTIAL_NOT_FOUND_ERROR: 'SCM Credentials not found.',
|
|
11
|
+
ACC_FIELDS_EXTERNALNAME_IS_INVALID: 'The internal identifier contains characters or words that are not allowed.',
|
|
12
|
+
ACC_MALFORMED_FIELDS_IN_PAYLOAD: 'Check the fields, some entries are invalid.',
|
|
13
|
+
ACC_TEAM_ALREADY_EXISTS_FOR_ACCOUNT_AND_EXTERNAL_NAME: 'This information has already been used to register a Team. Please use a different one.',
|
|
14
|
+
ACC_ACCOUNT_DATA_UNAVAILABLE_TO_REGISTER_ACCOUNT_FREEMIUM: 'This name is already in use. Please choose a new one.',
|
|
15
|
+
ACC_USER_NOT_FOUND_TO_REGISTER_ACCOUNT_FREEMIUM: 'User not found. Please log in with GitHub to register for a Personal acccount.',
|
|
16
|
+
ACC_ALREADY_EXISTS_ACCOUNT_FREEMIUM_TO_USER: 'You already have a Personal account. Please log in to use your StackSpot Account.',
|
|
17
|
+
ACC_USER_NOT_ALLOWED_TO_REGISTER_ACCOUNT_FREEMIUM: "Your current domain doesn't allow Personal account registration. Please try registering with a different domain.",
|
|
18
|
+
ACC_IMPORT_ACCOUNT_MEMBERS_ALREADY_EXISTS_FOR_ACCOUNT: 'An import is currently in progress. Please wait for it to complete or contact StackSpot support for more information.',
|
|
19
|
+
ACC_SERVICE_CREDENTIAL_PERMISSIONS_INCONSISTENT_TO_ASSOCIATION: 'The permissions provided are inconsistent with this Service Credential.',
|
|
20
|
+
ACC_SERVICE_CREDENTIAL_TEAMS_INCONSISTENT_TO_ASSOCIATION: 'Some teams are not authorized to use this Service Credential.',
|
|
21
|
+
ACC_SERVICE_CREDENTIAL_TEAMS_INCONSISTENT_TO_DISASSOCIATION: 'There is an inconsistency in disassociating the Team with this Service Credential.',
|
|
22
|
+
ACC_SERVICE_CREDENTIAL_ALREADY_EXISTS_FOR_ACCOUNT: 'A Service Credential with this name already exists.',
|
|
23
|
+
ACC_SERVICE_CREDENTIAL_NOT_FOUND: 'Credencial de Serviço não encontrada.',
|
|
24
|
+
ACC_ACCOUNT_CREATION_DATA_ERROR: 'This partner is already registered.',
|
|
25
|
+
ACC_PARTNER_ACCOUNT_ADMIN_UPDATE_NAME_ERROR: 'It is impossible to change only the name or surname of the partner Account Administrator.',
|
|
26
|
+
ACC_ACCOUNT_PARTNER_CANT_BE_INACTIVATED: 'This partner cannot be deactivated due to associated APIs or products.',
|
|
27
|
+
ACC_ACCOUNT_CREATION_PARTNER_ASSOCIATION_LIMIT: 'Your account has reached the limit of associations with partner accounts.',
|
|
28
|
+
ACC_INVALID_PASSWORD: "Invalid password. Please make sure it meets the requirements and hasn't been used before.",
|
|
29
|
+
ROLES_ALREADY_EXISTS: 'A role with this name already exists.',
|
|
30
|
+
},
|
|
31
|
+
pt: {
|
|
32
|
+
ACC_BAD_REQUEST_ERROR: 'Os dados informados estão inválidos ou inconsistentes.',
|
|
33
|
+
ACC_ATTR_INVALID_EVALUATED_FROM_VALIDATIONS_LENGTH: 'O campo {1} deve ter um tamanho entre {2} e {3}.',
|
|
34
|
+
ACC_STUDIO_ALREADY_EXISTS_FOR_ACCOUNT: 'Já existe um Estúdio com esse nome. Por favor, escolha outro.',
|
|
35
|
+
ACC_UNABLE_DELETE_TEAM_CONSTRAINT_VIOLATION_ERROR: 'Não é possível excluir a Equipe porque ela está vinculada a outros recursos da conta.',
|
|
36
|
+
ACC_CREDENTIAL_ALREADY_EXISTS_FOR_USER: 'Para continuar, configure o SCM.',
|
|
37
|
+
ACC_CREDENTIAL_NOT_FOUND_ERROR: 'Credenciais de SCM não encontradas.',
|
|
38
|
+
ACC_FIELDS_EXTERNALNAME_IS_INVALID: 'O identificador interno contém caracteres ou palavras não permitidos.',
|
|
39
|
+
ACC_MALFORMED_FIELDS_IN_PAYLOAD: 'Verifique os campos, alguns estão inválidos.',
|
|
40
|
+
ACC_TEAM_ALREADY_EXISTS_FOR_ACCOUNT_AND_EXTERNAL_NAME: 'Essas informações já foram usadas para registrar uma Equipe. Por favor, utilize outras informações.',
|
|
41
|
+
ACC_ACCOUNT_DATA_UNAVAILABLE_TO_REGISTER_ACCOUNT_FREEMIUM: 'Este nome já está em uso. Por favor, escolha um novo.',
|
|
42
|
+
ACC_USER_NOT_FOUND_TO_REGISTER_ACCOUNT_FREEMIUM: 'User não encontrado. Faça login com Github para registrar uma conta Personal.',
|
|
43
|
+
ACC_ALREADY_EXISTS_ACCOUNT_FREEMIUM_TO_USER: 'Você já tem uma Conta Personal. Faça login para usar a sua conta StackSpot.',
|
|
44
|
+
ACC_USER_NOT_ALLOWED_TO_REGISTER_ACCOUNT_FREEMIUM: 'Seu domínio atual não permite o registro de uma Conta Personal. Por favor, use um domínio diferente.',
|
|
45
|
+
ACC_IMPORT_ACCOUNT_MEMBERS_ALREADY_EXISTS_FOR_ACCOUNT: 'Existe uma importação em andamento. Aguarde a conclusão ou contate o suporte da StackSpot para mais informações.',
|
|
46
|
+
ACC_SERVICE_CREDENTIAL_PERMISSIONS_INCONSISTENT_TO_ASSOCIATION: 'As permissões fornecidas são inconsistentes para essa Credencial de Serviço.',
|
|
47
|
+
ACC_SERVICE_CREDENTIAL_TEAMS_INCONSISTENT_TO_ASSOCIATION: 'Algumas Equipes não estão alinhadas para associar a essa Credencial de Serviço.',
|
|
48
|
+
ACC_SERVICE_CREDENTIAL_TEAMS_INCONSISTENT_TO_DISASSOCIATION: 'Há uma inconsistência na desassociação da Equipe com essa Credencial de Serviço.',
|
|
49
|
+
ACC_SERVICE_CREDENTIAL_ALREADY_EXISTS_FOR_ACCOUNT: 'Já existe uma Credencial de Serviço com esse nome.',
|
|
50
|
+
ACC_SERVICE_CREDENTIAL_NOT_FOUND: 'Service Credential not found.',
|
|
51
|
+
ACC_ACCOUNT_CREATION_DATA_ERROR: 'Esse Parceiro já está registrado.',
|
|
52
|
+
ACC_PARTNER_ACCOUNT_ADMIN_UPDATE_NAME_ERROR: 'Não é possível alterar apenas o nome ou sobrenome da pessoa que administra a Conta Parceiro.',
|
|
53
|
+
ACC_ACCOUNT_PARTNER_CANT_BE_INACTIVATED: 'Este Parceiro não pode ser inativado devido a APIs ou produtos associados.',
|
|
54
|
+
ACC_ACCOUNT_CREATION_PARTNER_ASSOCIATION_LIMIT: 'Sua conta atingiu o limite de associações com Contas de Parceiros.',
|
|
55
|
+
ACC_INVALID_PASSWORD: 'Senha inválida. Verifique se ela atende aos requisitos e não foi usada anteriormente.',
|
|
56
|
+
ROLES_ALREADY_EXISTS: 'Já existe um papel com esse nome.',
|
|
57
|
+
},
|
|
58
|
+
} satisfies Dictionary
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
export const actionDetails: Record<string, Record<string, object>> = {
|
|
3
|
-
en: {
|
|
4
|
-
ACTIONAPI_5004_GITHUB_SAML_ERROR :
|
|
5
|
-
{
|
|
6
|
-
title: 'SSO Authorization pending',
|
|
7
|
-
description: 'Authorize SSO on GitHub to continue',
|
|
8
|
-
linkLabel: 'Check documentation',
|
|
9
|
-
linkHref: 'https://docs.stackspot.com/en/home/account/guides/scm-integration/scm-github#integrate-github-with-stackspot',
|
|
10
|
-
},
|
|
11
|
-
},
|
|
12
|
-
pt: {
|
|
13
|
-
ACTIONAPI_5004_GITHUB_SAML_ERROR :{
|
|
14
|
-
title: 'Autorização SSO pendente',
|
|
15
|
-
description: 'Autorize o SSO no GitHub para continuar',
|
|
16
|
-
linkLabel: 'Ver Documentação',
|
|
17
|
-
linkHref: 'https://docs.stackspot.com/home/account/guides/scm-integration/scm-github#integrar-o-github-com-a-stackspot',
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
}
|
|
1
|
+
|
|
2
|
+
export const actionDetails: Record<string, Record<string, object>> = {
|
|
3
|
+
en: {
|
|
4
|
+
ACTIONAPI_5004_GITHUB_SAML_ERROR :
|
|
5
|
+
{
|
|
6
|
+
title: 'SSO Authorization pending',
|
|
7
|
+
description: 'Authorize SSO on GitHub to continue',
|
|
8
|
+
linkLabel: 'Check documentation',
|
|
9
|
+
linkHref: 'https://docs.stackspot.com/en/home/account/guides/scm-integration/scm-github#integrate-github-with-stackspot',
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
pt: {
|
|
13
|
+
ACTIONAPI_5004_GITHUB_SAML_ERROR :{
|
|
14
|
+
title: 'Autorização SSO pendente',
|
|
15
|
+
description: 'Autorize o SSO no GitHub para continuar',
|
|
16
|
+
linkLabel: 'Ver Documentação',
|
|
17
|
+
linkHref: 'https://docs.stackspot.com/home/account/guides/scm-integration/scm-github#integrar-o-github-com-a-stackspot',
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
}
|