@stack-spot/portal-network 0.145.1 → 0.146.1

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.
@@ -20,7 +20,7 @@ import {
20
20
  deprecatePluginVersion,
21
21
  deprecateStackVersionBy,
22
22
  deprecateWorkflowVersion,
23
- downloadAction,
23
+ downloadAction1,
24
24
  getActionBySlug,
25
25
  getActionsVersions,
26
26
  getActionVersionById,
@@ -450,7 +450,7 @@ class ContentClient extends ReactQueryNetworkClient {
450
450
  /**
451
451
  * Download Action Version
452
452
  */
453
- downloadActionVersion = this.query(downloadAction)
453
+ downloadActionVersion = this.query(downloadAction1)
454
454
  /**
455
455
  * Get Action Version range by Action Slug
456
456
  */
@@ -4,9 +4,17 @@ export const scfDictionary = {
4
4
  en: {
5
5
  SCF_CIDR_CREATION_ERROR: 'Error creating CIDR.',
6
6
  SCF_CIDR_RANGE_CONFLICT: 'The specified CIDR conflicts with an existing CIDR. {1}',
7
+ SCF_FOLDER_CREATION_ERROR: 'Error creating FOLDER.',
8
+ SCF_FOLDER_ALREADY_EXISTS_ERROR: 'There is already a folder with that name within that project.',
9
+ SCF_CIDR_FOUNDATION_RESERVED: 'The CIDR block {1} has been reserved for Foundation use.',
10
+ SCF_CIDR_NOTATION_INVALID: 'The CIDR block {1} is not a valid CIDR notation. Expected format: {2}.',
7
11
  },
8
12
  pt: {
9
13
  SCF_CIDR_CREATION_ERROR: 'Erro ao criar CIDR.',
10
14
  SCF_CIDR_RANGE_CONFLICT: 'O CIDR especificado conflita com um CIDR já existente: {1}.',
15
+ SCF_FOLDER_CREATION_ERROR: 'Erro ao criar PASTA.',
16
+ SCF_FOLDER_ALREADY_EXISTS_ERROR: 'Já existe uma pasta com esse nome dentro desse projeto.',
17
+ SCF_CIDR_FOUNDATION_RESERVED: 'O bloco CIDR {1} foi reservado para uso da Fundação.',
18
+ SCF_CIDR_NOTATION_INVALID: 'O bloco CIDR {1} não é uma notação CIDR válida. Formato esperado: {2}.',
11
19
  },
12
20
  } satisfies Dictionary