@cat-factory/app 0.48.3 → 0.49.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.
@@ -21,6 +21,9 @@ const title = computed(() => {
21
21
  // explicitly rather than the generic "Run failed", and show the verbatim provider
22
22
  // error in the collapsible detail below.
23
23
  if (failure.value?.kind === 'dispatch') return t('board.failure.containerFailedToStart')
24
+ // An `environment` failure means the deployer's EnvironmentProvider could not provision —
25
+ // name it, with the provider's verbatim error in the collapsible detail below.
26
+ if (failure.value?.kind === 'environment') return t('board.failure.environmentFailed')
24
27
  return props.run.kind === 'bootstrap'
25
28
  ? t('board.failure.bootstrapFailed')
26
29
  : t('board.failure.runFailed')
@@ -164,6 +164,7 @@
164
164
  },
165
165
  "failure": {
166
166
  "containerFailedToStart": "Container failed to start",
167
+ "environmentFailed": "Environment provisioning failed",
167
168
  "bootstrapFailed": "Bootstrap failed",
168
169
  "runFailed": "Run failed",
169
170
  "retryBootstrap": "Retry bootstrap",
@@ -146,6 +146,7 @@
146
146
  },
147
147
  "failure": {
148
148
  "containerFailedToStart": "El contenedor no pudo iniciarse",
149
+ "environmentFailed": "No se pudo aprovisionar el entorno",
149
150
  "bootstrapFailed": "El arranque falló",
150
151
  "runFailed": "La ejecución falló",
151
152
  "retryBootstrap": "Reintentar arranque",
@@ -146,6 +146,7 @@
146
146
  },
147
147
  "failure": {
148
148
  "containerFailedToStart": "Le conteneur n’a pas pu démarrer",
149
+ "environmentFailed": "Échec du provisionnement de l’environnement",
149
150
  "bootstrapFailed": "L’initialisation a échoué",
150
151
  "runFailed": "L’exécution a échoué",
151
152
  "retryBootstrap": "Relancer l’initialisation",
@@ -146,6 +146,7 @@
146
146
  },
147
147
  "failure": {
148
148
  "containerFailedToStart": "Nie udało się uruchomić kontenera",
149
+ "environmentFailed": "Nie udało się przygotować środowiska",
149
150
  "bootstrapFailed": "Inicjalizacja nie powiodła się",
150
151
  "runFailed": "Uruchomienie nie powiodło się",
151
152
  "retryBootstrap": "Ponów inicjalizację",
@@ -146,6 +146,7 @@
146
146
  },
147
147
  "failure": {
148
148
  "containerFailedToStart": "Не вдалося запустити контейнер",
149
+ "environmentFailed": "Не вдалося підготувати середовище",
149
150
  "bootstrapFailed": "Не вдалося ініціалізувати",
150
151
  "runFailed": "Запуск не вдався",
151
152
  "retryBootstrap": "Повторити ініціалізацію",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/app",
3
- "version": "0.48.3",
3
+ "version": "0.49.1",
4
4
  "description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,7 +34,7 @@
34
34
  "valibot": "^1.4.2",
35
35
  "vue": "^3.5.39",
36
36
  "wretch": "^3.0.9",
37
- "@cat-factory/contracts": "0.49.0"
37
+ "@cat-factory/contracts": "0.50.1"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@toad-contracts/testing": "0.3.2",