@cat-factory/app 0.244.0 → 0.246.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/app/components/outcome/OutcomeSummaryWindow.vue +93 -0
- package/app/composables/usePipelineErrorToast.ts +4 -0
- package/app/utils/runOutcome.ts +3 -0
- package/i18n/locales/de.json +13 -2
- package/i18n/locales/en.json +13 -2
- package/i18n/locales/es.json +13 -2
- package/i18n/locales/fr.json +13 -2
- package/i18n/locales/he.json +13 -2
- package/i18n/locales/it.json +13 -2
- package/i18n/locales/ja.json +13 -2
- package/i18n/locales/pl.json +13 -2
- package/i18n/locales/tr.json +13 -2
- package/i18n/locales/uk.json +13 -2
- package/package.json +2 -2
|
@@ -19,14 +19,18 @@ import type {
|
|
|
19
19
|
OutcomeCheckKind,
|
|
20
20
|
OutcomeCheckState,
|
|
21
21
|
OutcomeDisposition,
|
|
22
|
+
OutcomeSource,
|
|
22
23
|
OutcomeSpecJoin,
|
|
23
24
|
OutcomeVisual,
|
|
24
25
|
RequirementsGap,
|
|
26
|
+
SourcesGap,
|
|
25
27
|
TestsGap,
|
|
26
28
|
TestsVerdict,
|
|
27
29
|
VisualsGap,
|
|
28
30
|
} from '~/utils/runOutcome'
|
|
29
31
|
import { composeRunOutcome } from '~/utils/runOutcome'
|
|
32
|
+
import { GAP_KEYS } from '~/components/documents/DocumentSyncState.logic'
|
|
33
|
+
import DocumentOriginLink from '~/components/documents/DocumentOriginLink.vue'
|
|
30
34
|
import { REPRODUCTION_STATUS_KEYS } from '~/utils/reproduction'
|
|
31
35
|
import type { RequirementVerdictStatus, TestConcernSeverity } from '~/types/domain'
|
|
32
36
|
import type { TestEnvironment } from '@cat-factory/contracts'
|
|
@@ -37,6 +41,7 @@ import MarkdownProse from '~/components/common/MarkdownProse.vue'
|
|
|
37
41
|
import EmptyState from '~/components/common/EmptyState.vue'
|
|
38
42
|
|
|
39
43
|
const board = useBoardStore()
|
|
44
|
+
const documents = useDocumentsStore()
|
|
40
45
|
const execution = useExecutionStore()
|
|
41
46
|
const serviceSpec = useServiceSpecStore()
|
|
42
47
|
const ui = useUiStore()
|
|
@@ -128,6 +133,10 @@ const TESTS_GAP_KEYS: Record<TestsGap, string> = {
|
|
|
128
133
|
no_tester_step: 'outcome.tests.gap.no_tester_step',
|
|
129
134
|
tester_not_reported: 'outcome.tests.gap.tester_not_reported',
|
|
130
135
|
}
|
|
136
|
+
const SOURCES_GAP_KEYS: Record<SourcesGap, string> = {
|
|
137
|
+
run_unavailable: RUN_UNAVAILABLE_KEY,
|
|
138
|
+
none_linked: 'outcome.sources.gap.none_linked',
|
|
139
|
+
}
|
|
131
140
|
const VISUALS_GAP_KEYS: Record<VisualsGap, string> = {
|
|
132
141
|
run_unavailable: RUN_UNAVAILABLE_KEY,
|
|
133
142
|
no_visual_step: 'outcome.visuals.gap.no_visual_step',
|
|
@@ -288,6 +297,47 @@ const checkRows = computed(() =>
|
|
|
288
297
|
})),
|
|
289
298
|
)
|
|
290
299
|
|
|
300
|
+
/**
|
|
301
|
+
* What one linked page's row says about how current the copy the agents read was.
|
|
302
|
+
*
|
|
303
|
+
* Four outcomes, and none of them may collapse into another: a named revision to check the work
|
|
304
|
+
* against, a copy nobody could confirm (a warning about the WORK, not about the platform), a body
|
|
305
|
+
* with no source to trail, and a deployment that runs no freshness check at all. The last two are
|
|
306
|
+
* the pair a dash would merge, and they are opposite facts about whether anything is missing.
|
|
307
|
+
*/
|
|
308
|
+
function revisionLabel(freshness: OutcomeSource['freshness']): string {
|
|
309
|
+
if (!freshness) return t('outcome.sources.unchecked')
|
|
310
|
+
switch (freshness.status) {
|
|
311
|
+
case 'confirmed':
|
|
312
|
+
return t('documents.freshness.revision', { version: freshness.version })
|
|
313
|
+
case 'not-applicable':
|
|
314
|
+
return t('outcome.sources.noSource')
|
|
315
|
+
case 'unconfirmed':
|
|
316
|
+
return t(GAP_KEYS[freshness.reason])
|
|
317
|
+
default:
|
|
318
|
+
return exhaustiveFreshness(freshness)
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/** Compile-time totality: a new verdict member fails the build rather than rendering a blank. */
|
|
323
|
+
function exhaustiveFreshness(freshness: never): string {
|
|
324
|
+
return String(freshness)
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* The linked pages with their labels resolved, so the exhaustive mapping above is applied once
|
|
329
|
+
* per row rather than on every re-render, and the template stays a list.
|
|
330
|
+
*/
|
|
331
|
+
const sourceRows = computed(() => {
|
|
332
|
+
const sources = outcome.value?.sources
|
|
333
|
+
if (!sources || sources.status !== 'reported') return []
|
|
334
|
+
return sources.sources.map((source) => ({
|
|
335
|
+
...source,
|
|
336
|
+
icon: documents.descriptorForOrigin(source.origin)?.icon ?? 'i-lucide-file-text',
|
|
337
|
+
revision: revisionLabel(source.freshness),
|
|
338
|
+
}))
|
|
339
|
+
})
|
|
340
|
+
|
|
291
341
|
/** Drill into the full test report (this card is the summary, never a replacement for it). */
|
|
292
342
|
function openTestReport() {
|
|
293
343
|
if (instance.value) ui.openTestEvidence(instance.value.id)
|
|
@@ -358,6 +408,49 @@ function openTestReport() {
|
|
|
358
408
|
</p>
|
|
359
409
|
</section>
|
|
360
410
|
|
|
411
|
+
<!-- What the run built FROM, and which revision of it. Directly under the ask, because it
|
|
412
|
+
is the rest of the brief: the description is what a person wrote, this is what the
|
|
413
|
+
agents actually read, and every section below is a statement about work done against
|
|
414
|
+
it. A design that moved mid-run is the reading that changes all of them. -->
|
|
415
|
+
<section class="mb-5" data-testid="outcome-sources">
|
|
416
|
+
<h3 class="mb-1.5 text-[11px] font-semibold uppercase tracking-wide text-slate-500">
|
|
417
|
+
{{ t('outcome.sources.title') }}
|
|
418
|
+
</h3>
|
|
419
|
+
<div v-if="outcome.sources.status === 'reported'" class="space-y-1">
|
|
420
|
+
<div
|
|
421
|
+
v-for="source in sourceRows"
|
|
422
|
+
:key="`${source.origin}:${source.url || source.title}`"
|
|
423
|
+
class="rounded-md border border-slate-800 bg-slate-900/60 px-2 py-1.5"
|
|
424
|
+
data-testid="outcome-source"
|
|
425
|
+
>
|
|
426
|
+
<DocumentOriginLink
|
|
427
|
+
:url="source.url ?? ''"
|
|
428
|
+
class="flex items-center gap-1.5 text-xs text-slate-300"
|
|
429
|
+
hover-class="hover:text-white"
|
|
430
|
+
>
|
|
431
|
+
<UIcon :name="source.icon" class="h-3.5 w-3.5 shrink-0 text-indigo-400" />
|
|
432
|
+
<span class="truncate">{{ source.title }}</span>
|
|
433
|
+
</DocumentOriginLink>
|
|
434
|
+
<p class="mt-0.5 text-[11px] text-slate-500" data-testid="outcome-source-revision">
|
|
435
|
+
{{ source.revision }}
|
|
436
|
+
</p>
|
|
437
|
+
<!-- Stated separately from the revision above: the last revision alone says the run
|
|
438
|
+
ENDED current, and says nothing about the step that finished before the page
|
|
439
|
+
changed under it. -->
|
|
440
|
+
<p
|
|
441
|
+
v-if="source.movedDuringRun"
|
|
442
|
+
class="mt-0.5 text-[11px] text-amber-300"
|
|
443
|
+
data-testid="outcome-source-moved"
|
|
444
|
+
>
|
|
445
|
+
{{ t('outcome.sources.moved') }}
|
|
446
|
+
</p>
|
|
447
|
+
</div>
|
|
448
|
+
</div>
|
|
449
|
+
<p v-else class="text-[13px] italic leading-relaxed text-slate-500">
|
|
450
|
+
{{ t(SOURCES_GAP_KEYS[outcome.sources.gap]) }}
|
|
451
|
+
</p>
|
|
452
|
+
</section>
|
|
453
|
+
|
|
361
454
|
<!-- Requirement coverage: which required behaviours were checked, and what was seen. -->
|
|
362
455
|
<section class="mb-5" data-testid="outcome-requirements">
|
|
363
456
|
<h3 class="mb-1.5 text-[11px] font-semibold uppercase tracking-wide text-slate-500">
|
|
@@ -92,6 +92,10 @@ const CONFLICT_INFO: Record<Exclude<ConflictReason, BespokeConflictReason>, Conf
|
|
|
92
92
|
titleKey: 'errors.conflict.title.task_limit_reached',
|
|
93
93
|
descriptionKey: 'errors.conflict.description.task_limit_reached',
|
|
94
94
|
},
|
|
95
|
+
webhook_limit_reached: {
|
|
96
|
+
titleKey: 'errors.conflict.title.webhook_limit_reached',
|
|
97
|
+
descriptionKey: 'errors.conflict.description.webhook_limit_reached',
|
|
98
|
+
},
|
|
95
99
|
tester_infra_unsupported: {
|
|
96
100
|
titleKey: 'errors.conflict.title.tester_infra_unsupported',
|
|
97
101
|
descriptionKey: 'errors.conflict.description.tester_infra_unsupported',
|
package/app/utils/runOutcome.ts
CHANGED
|
@@ -27,6 +27,8 @@ export type {
|
|
|
27
27
|
OutcomePullRequest,
|
|
28
28
|
OutcomeRequirement,
|
|
29
29
|
OutcomeRequirements,
|
|
30
|
+
OutcomeSource,
|
|
31
|
+
OutcomeSources,
|
|
30
32
|
OutcomeSpecJoin,
|
|
31
33
|
OutcomeTests,
|
|
32
34
|
OutcomeVisual,
|
|
@@ -34,6 +36,7 @@ export type {
|
|
|
34
36
|
RequirementsGap,
|
|
35
37
|
RunOutcome,
|
|
36
38
|
RunUnavailableGap,
|
|
39
|
+
SourcesGap,
|
|
37
40
|
TestsGap,
|
|
38
41
|
TestsVerdict,
|
|
39
42
|
VisualsGap,
|
package/i18n/locales/de.json
CHANGED
|
@@ -5487,7 +5487,8 @@
|
|
|
5487
5487
|
"ticket_already_linked": "Dieses Ticket hat bereits eine Aufgabe",
|
|
5488
5488
|
"document_already_linked": "Dokument bereits angehängt",
|
|
5489
5489
|
"dry_run_not_mergeable": "Probelauf kann nicht zusammengeführt werden",
|
|
5490
|
-
"submission_not_allowed": "Zusammenführen für diesen Lauf nicht erlaubt"
|
|
5490
|
+
"submission_not_allowed": "Zusammenführen für diesen Lauf nicht erlaubt",
|
|
5491
|
+
"webhook_limit_reached": "Webhook-Limit erreicht"
|
|
5491
5492
|
},
|
|
5492
5493
|
"description": {
|
|
5493
5494
|
"dependencies_unmet": "Diese Aufgabe hängt von anderen ab, die noch nicht abgeschlossen sind. Schließe sie ab oder gib sie frei und starte dann erneut.",
|
|
@@ -5525,7 +5526,8 @@
|
|
|
5525
5526
|
"ticket_already_linked": "Ein Ticket kann nur eine Aufgabe stützen. Es erneut zu verknüpfen würde der bestehenden Aufgabe genau den Kontext entziehen, mit dem sie angelegt wurde. Öffne stattdessen diese Aufgabe oder hebe die Verknüpfung des Tickets zuerst auf.",
|
|
5526
5527
|
"document_already_linked": "Dieses Dokument ist an eine andere Aufgabe angehängt. Lösen Sie es dort zuerst, oder hängen Sie eine separate Kopie an.",
|
|
5527
5528
|
"dry_run_not_mergeable": "Dieser Pull Request stammt aus einem Probelauf und kann hier nicht zusammengeführt werden. Starte die Aufgabe erneut als echten Lauf, um einen Pull Request zu erzeugen, den dieser Arbeitsbereich zusammenführt.",
|
|
5528
|
-
"submission_not_allowed": "Die Merge-Richtlinie dieser Aufgabe erlaubt der Rolle, die diesen Lauf gestartet hat, diese Änderungsart nicht zusammenzuführen. Jemand mit einer passenden Rolle kann es tun, oder ein Admin erweitert die Richtlinie in der Merge-Vorlage."
|
|
5529
|
+
"submission_not_allowed": "Die Merge-Richtlinie dieser Aufgabe erlaubt der Rolle, die diesen Lauf gestartet hat, diese Änderungsart nicht zusammenzuführen. Jemand mit einer passenden Rolle kann es tun, oder ein Admin erweitert die Richtlinie in der Merge-Vorlage.",
|
|
5530
|
+
"webhook_limit_reached": "Für diesen Workspace ist bereits die maximale Anzahl ausgehender Webhooks registriert. Entfernen Sie einen nicht mehr benötigten und registrieren Sie diesen erneut."
|
|
5529
5531
|
},
|
|
5530
5532
|
"action": {
|
|
5531
5533
|
"connectGitHub": "GitHub verbinden",
|
|
@@ -6126,6 +6128,15 @@
|
|
|
6126
6128
|
"title": "Was gefordert war",
|
|
6127
6129
|
"none": "Diese Aufgabe hat keine Beschreibung, es gibt hier also nichts, womit sich das Ergebnis vergleichen ließe."
|
|
6128
6130
|
},
|
|
6131
|
+
"sources": {
|
|
6132
|
+
"title": "Erstellt aus",
|
|
6133
|
+
"unchecked": "Nicht mit der Quelle abgeglichen.",
|
|
6134
|
+
"noSource": "Keine Quellseite zum Abgleichen vorhanden.",
|
|
6135
|
+
"moved": "Diese Seite wurde während des Laufs geändert, frühere Schritte haben also eine ältere Revision gelesen.",
|
|
6136
|
+
"gap": {
|
|
6137
|
+
"none_linked": "Zu diesem Lauf gelangte keine Seite zu den Agenten, sie arbeiteten allein mit der Aufgabenbeschreibung."
|
|
6138
|
+
}
|
|
6139
|
+
},
|
|
6129
6140
|
"gap": {
|
|
6130
6141
|
"run_unavailable": "Der Lauf dieser Aufgabe wurde nicht geladen, deshalb können die von ihm erfassten Belege hier nicht gezeigt werden. Das ist nicht dasselbe wie ein Lauf, der nichts erfasst hat."
|
|
6131
6142
|
},
|
package/i18n/locales/en.json
CHANGED
|
@@ -652,7 +652,8 @@
|
|
|
652
652
|
"ticket_already_linked": "This issue already has a task",
|
|
653
653
|
"document_already_linked": "Document already attached",
|
|
654
654
|
"dry_run_not_mergeable": "Dry run cannot be merged",
|
|
655
|
-
"submission_not_allowed": "Merge not allowed for this run"
|
|
655
|
+
"submission_not_allowed": "Merge not allowed for this run",
|
|
656
|
+
"webhook_limit_reached": "Webhook limit reached"
|
|
656
657
|
},
|
|
657
658
|
"description": {
|
|
658
659
|
"dependencies_unmet": "This task depends on others that aren't finished yet. Complete or unblock them, then start it again.",
|
|
@@ -693,7 +694,8 @@
|
|
|
693
694
|
"ticket_already_linked": "An issue can back only one task, so linking it again would strip the existing task of the context it was created with. Open that task instead, or unlink the issue first.",
|
|
694
695
|
"document_already_linked": "That document is attached to another task. Detach it there first, or attach a separate copy.",
|
|
695
696
|
"dry_run_not_mergeable": "This pull request came from a dry run, so it can't be merged from here. Start the task again as a live run to produce a pull request this workspace will merge.",
|
|
696
|
-
"submission_not_allowed": "This task's merge policy doesn't let the role that started this run merge this kind of change. Somebody whose role may merge it can do so, or an admin can widen the policy in the merge preset."
|
|
697
|
+
"submission_not_allowed": "This task's merge policy doesn't let the role that started this run merge this kind of change. Somebody whose role may merge it can do so, or an admin can widen the policy in the merge preset.",
|
|
698
|
+
"webhook_limit_reached": "This workspace already has the maximum number of outbound webhooks registered. Remove one you no longer need, then register this again."
|
|
697
699
|
},
|
|
698
700
|
"action": {
|
|
699
701
|
"connectGitHub": "Connect GitHub",
|
|
@@ -5839,6 +5841,15 @@
|
|
|
5839
5841
|
"title": "What was asked",
|
|
5840
5842
|
"none": "This task carries no description, so there is nothing here to compare the result against."
|
|
5841
5843
|
},
|
|
5844
|
+
"sources": {
|
|
5845
|
+
"title": "Built from",
|
|
5846
|
+
"unchecked": "Not checked against the source.",
|
|
5847
|
+
"noSource": "No source page to compare against.",
|
|
5848
|
+
"moved": "This page changed while the run was in flight, so earlier steps read an older revision.",
|
|
5849
|
+
"gap": {
|
|
5850
|
+
"none_linked": "No page reached this run's agents, so they worked from the task description alone."
|
|
5851
|
+
}
|
|
5852
|
+
},
|
|
5842
5853
|
"gap": {
|
|
5843
5854
|
"run_unavailable": "This task's run was not loaded, so none of the evidence it recorded can be shown here. That is not the same as a run that recorded nothing."
|
|
5844
5855
|
},
|
package/i18n/locales/es.json
CHANGED
|
@@ -583,7 +583,8 @@
|
|
|
583
583
|
"ticket_already_linked": "Esta incidencia ya tiene una tarea",
|
|
584
584
|
"document_already_linked": "El documento ya está adjunto",
|
|
585
585
|
"dry_run_not_mergeable": "Una ejecución de prueba no se puede fusionar",
|
|
586
|
-
"submission_not_allowed": "Fusión no permitida para esta ejecución"
|
|
586
|
+
"submission_not_allowed": "Fusión no permitida para esta ejecución",
|
|
587
|
+
"webhook_limit_reached": "Límite de webhooks alcanzado"
|
|
587
588
|
},
|
|
588
589
|
"description": {
|
|
589
590
|
"dependencies_unmet": "Esta tarea depende de otras que aún no están terminadas. Complétalas o desbloquéalas y vuelve a iniciarla.",
|
|
@@ -621,7 +622,8 @@
|
|
|
621
622
|
"ticket_already_linked": "Una incidencia solo puede respaldar una tarea, así que volver a vincularla dejaría a la tarea existente sin el contexto con el que se creó. Abre esa tarea o desvincula antes la incidencia.",
|
|
622
623
|
"document_already_linked": "Ese documento está adjunto a otra tarea. Sepáralo allí primero o adjunta una copia aparte.",
|
|
623
624
|
"dry_run_not_mergeable": "Esta pull request proviene de una ejecución de prueba, así que no se puede fusionar desde aquí. Vuelve a iniciar la tarea como ejecución real para producir una pull request que este espacio de trabajo sí fusionará.",
|
|
624
|
-
"submission_not_allowed": "La política de fusión de esta tarea no permite que el rol que inició la ejecución fusione este tipo de cambio. Alguien cuyo rol sí lo permita puede hacerlo, o un administrador puede ampliar la política en el preajuste de fusión."
|
|
625
|
+
"submission_not_allowed": "La política de fusión de esta tarea no permite que el rol que inició la ejecución fusione este tipo de cambio. Alguien cuyo rol sí lo permita puede hacerlo, o un administrador puede ampliar la política en el preajuste de fusión.",
|
|
626
|
+
"webhook_limit_reached": "Este espacio de trabajo ya tiene registrado el número máximo de webhooks salientes. Elimina uno que ya no necesites y vuelve a registrar este."
|
|
625
627
|
},
|
|
626
628
|
"action": {
|
|
627
629
|
"connectGitHub": "Conectar GitHub",
|
|
@@ -5570,6 +5572,15 @@
|
|
|
5570
5572
|
"title": "Qué se pidió",
|
|
5571
5573
|
"none": "Esta tarea no tiene descripción, así que no hay nada con lo que comparar el resultado."
|
|
5572
5574
|
},
|
|
5575
|
+
"sources": {
|
|
5576
|
+
"title": "Creado a partir de",
|
|
5577
|
+
"unchecked": "No se ha comprobado con la fuente.",
|
|
5578
|
+
"noSource": "No hay página de origen con la que comparar.",
|
|
5579
|
+
"moved": "Esta página cambió mientras la ejecución estaba en curso, así que los pasos anteriores leyeron una revisión más antigua.",
|
|
5580
|
+
"gap": {
|
|
5581
|
+
"none_linked": "Ninguna página llegó a los agentes de esta ejecución, así que trabajaron solo con la descripción de la tarea."
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5573
5584
|
"gap": {
|
|
5574
5585
|
"run_unavailable": "La ejecución de esta tarea no se cargó, así que aquí no pueden mostrarse las pruebas que registró. No es lo mismo que una ejecución que no registró nada."
|
|
5575
5586
|
},
|
package/i18n/locales/fr.json
CHANGED
|
@@ -583,7 +583,8 @@
|
|
|
583
583
|
"ticket_already_linked": "Ce ticket a déjà une tâche",
|
|
584
584
|
"document_already_linked": "Document déjà joint",
|
|
585
585
|
"dry_run_not_mergeable": "Une exécution à blanc ne peut pas être fusionnée",
|
|
586
|
-
"submission_not_allowed": "Fusion non autorisée pour cette exécution"
|
|
586
|
+
"submission_not_allowed": "Fusion non autorisée pour cette exécution",
|
|
587
|
+
"webhook_limit_reached": "Limite de webhooks atteinte"
|
|
587
588
|
},
|
|
588
589
|
"description": {
|
|
589
590
|
"dependencies_unmet": "Cette tâche dépend d'autres qui ne sont pas encore terminées. Terminez-les ou débloquez-les, puis relancez-la.",
|
|
@@ -621,7 +622,8 @@
|
|
|
621
622
|
"ticket_already_linked": "Un ticket ne peut alimenter qu'une seule tâche : le relier à nouveau priverait la tâche existante du contexte avec lequel elle a été créée. Ouvrez plutôt cette tâche, ou dissociez d'abord le ticket.",
|
|
622
623
|
"document_already_linked": "Ce document est joint à une autre tâche. Détachez-le d'abord, ou joignez-en une copie distincte.",
|
|
623
624
|
"dry_run_not_mergeable": "Cette pull request provient d'une exécution à blanc et ne peut pas être fusionnée ici. Relancez la tâche en exécution réelle pour produire une pull request que cet espace de travail fusionnera.",
|
|
624
|
-
"submission_not_allowed": "La politique de fusion de cette tâche n'autorise pas le rôle qui a lancé cette exécution à fusionner ce type de changement. Un coéquipier dont le rôle le permet peut le faire, ou un admin peut élargir la politique dans le préréglage de fusion."
|
|
625
|
+
"submission_not_allowed": "La politique de fusion de cette tâche n'autorise pas le rôle qui a lancé cette exécution à fusionner ce type de changement. Un coéquipier dont le rôle le permet peut le faire, ou un admin peut élargir la politique dans le préréglage de fusion.",
|
|
626
|
+
"webhook_limit_reached": "Cet espace de travail a déjà enregistré le nombre maximal de webhooks sortants. Supprimez-en un dont vous n’avez plus besoin, puis enregistrez celui-ci à nouveau."
|
|
625
627
|
},
|
|
626
628
|
"action": {
|
|
627
629
|
"connectGitHub": "Connecter GitHub",
|
|
@@ -5570,6 +5572,15 @@
|
|
|
5570
5572
|
"title": "Ce qui était demandé",
|
|
5571
5573
|
"none": "Cette tâche n'a pas de description, il n'y a donc rien à quoi comparer le résultat."
|
|
5572
5574
|
},
|
|
5575
|
+
"sources": {
|
|
5576
|
+
"title": "Construit à partir de",
|
|
5577
|
+
"unchecked": "Non vérifié auprès de la source.",
|
|
5578
|
+
"noSource": "Aucune page source à laquelle comparer.",
|
|
5579
|
+
"moved": "Cette page a changé pendant l'exécution : les étapes antérieures ont donc lu une révision plus ancienne.",
|
|
5580
|
+
"gap": {
|
|
5581
|
+
"none_linked": "Aucune page n'est parvenue aux agents de cette exécution, ils ont donc travaillé uniquement à partir de la description de la tâche."
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5573
5584
|
"gap": {
|
|
5574
5585
|
"run_unavailable": "L'exécution de cette tâche n'a pas été chargée : les éléments qu'elle a enregistrés ne peuvent donc pas être affichés ici. Ce n'est pas la même chose qu'une exécution qui n'a rien enregistré."
|
|
5575
5586
|
},
|
package/i18n/locales/he.json
CHANGED
|
@@ -583,7 +583,8 @@
|
|
|
583
583
|
"ticket_already_linked": "לכרטיס הזה כבר יש משימה",
|
|
584
584
|
"document_already_linked": "המסמך כבר מצורף",
|
|
585
585
|
"dry_run_not_mergeable": "לא ניתן למזג הרצת יבש",
|
|
586
|
-
"submission_not_allowed": "מיזוג אינו מותר עבור הרצה זו"
|
|
586
|
+
"submission_not_allowed": "מיזוג אינו מותר עבור הרצה זו",
|
|
587
|
+
"webhook_limit_reached": "הגעת למגבלת ה-Webhooks"
|
|
587
588
|
},
|
|
588
589
|
"description": {
|
|
589
590
|
"dependencies_unmet": "משימה זו תלויה במשימות אחרות שטרם הושלמו. השלם או שחרר אותן, ולאחר מכן הפעל אותה שוב.",
|
|
@@ -621,7 +622,8 @@
|
|
|
621
622
|
"ticket_already_linked": "כרטיס יכול לגבות משימה אחת בלבד, ולכן קישור נוסף שלו ישלול מהמשימה הקיימת את ההקשר שאיתו נוצרה. פתחו את המשימה הזו במקום זאת, או בטלו קודם את קישור הכרטיס.",
|
|
622
623
|
"document_already_linked": "המסמך מצורף למשימה אחרת. נתקו אותו שם תחילה, או צרפו עותק נפרד.",
|
|
623
624
|
"dry_run_not_mergeable": "בקשת המשיכה הזו הגיעה מהרצת יבש, ולכן לא ניתן למזג אותה מכאן. הפעילו את המשימה מחדש כהרצה רגילה כדי ליצור בקשת משיכה שסביבת העבודה הזו תמזג.",
|
|
624
|
-
"submission_not_allowed": "מדיניות המיזוג של המשימה הזו אינה מתירה לתפקיד שהתחיל את ההרצה למזג שינוי מסוג זה. חבר צוות שתפקידו מתיר זאת יכול למזג, או שמנהל יכול להרחיב את המדיניות בהגדרת המיזוג."
|
|
625
|
+
"submission_not_allowed": "מדיניות המיזוג של המשימה הזו אינה מתירה לתפקיד שהתחיל את ההרצה למזג שינוי מסוג זה. חבר צוות שתפקידו מתיר זאת יכול למזג, או שמנהל יכול להרחיב את המדיניות בהגדרת המיזוג.",
|
|
626
|
+
"webhook_limit_reached": "במרחב העבודה הזה כבר רשום המספר המרבי של Webhooks יוצאים. הסירו אחד שאינכם צריכים עוד ולאחר מכן רשמו את זה שוב."
|
|
625
627
|
},
|
|
626
628
|
"action": {
|
|
627
629
|
"connectGitHub": "חבר את GitHub",
|
|
@@ -5570,6 +5572,15 @@
|
|
|
5570
5572
|
"title": "מה התבקש",
|
|
5571
5573
|
"none": "למשימה הזאת אין תיאור, ולכן אין מול מה להשוות את התוצאה."
|
|
5572
5574
|
},
|
|
5575
|
+
"sources": {
|
|
5576
|
+
"title": "נבנה מתוך",
|
|
5577
|
+
"unchecked": "לא נבדק מול המקור.",
|
|
5578
|
+
"noSource": "אין עמוד מקור להשוואה.",
|
|
5579
|
+
"moved": "העמוד הזה השתנה בזמן שההרצה רצה, ולכן שלבים מוקדמים קראו גרסה ישנה יותר.",
|
|
5580
|
+
"gap": {
|
|
5581
|
+
"none_linked": "לא הגיע אף עמוד לסוכנים של הרצה זו, ולכן הם עבדו לפי תיאור המשימה בלבד."
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5573
5584
|
"gap": {
|
|
5574
5585
|
"run_unavailable": "ההרצה של המשימה הזאת לא נטענה, ולכן הראיות שהיא תיעדה לא מוצגות כאן. זה לא אותו דבר כמו הרצה שלא תיעדה כלום."
|
|
5575
5586
|
},
|
package/i18n/locales/it.json
CHANGED
|
@@ -5487,7 +5487,8 @@
|
|
|
5487
5487
|
"ticket_already_linked": "Questo ticket ha già un'attività",
|
|
5488
5488
|
"document_already_linked": "Documento già allegato",
|
|
5489
5489
|
"dry_run_not_mergeable": "Una prova non può essere unita",
|
|
5490
|
-
"submission_not_allowed": "Unione non consentita per questa esecuzione"
|
|
5490
|
+
"submission_not_allowed": "Unione non consentita per questa esecuzione",
|
|
5491
|
+
"webhook_limit_reached": "Limite di webhook raggiunto"
|
|
5491
5492
|
},
|
|
5492
5493
|
"description": {
|
|
5493
5494
|
"dependencies_unmet": "Questa attività dipende da altre non ancora completate. Completale o sbloccale, poi avviala di nuovo.",
|
|
@@ -5525,7 +5526,8 @@
|
|
|
5525
5526
|
"ticket_already_linked": "Un ticket può sostenere una sola attività, quindi ricollegarlo toglierebbe all'attività esistente il contesto con cui è stata creata. Apri invece quell'attività, oppure scollega prima il ticket.",
|
|
5526
5527
|
"document_already_linked": "Quel documento è allegato a un'altra attività. Scollegalo prima da lì oppure allega una copia separata.",
|
|
5527
5528
|
"dry_run_not_mergeable": "Questa pull request proviene da una prova, quindi non può essere unita da qui. Riavvia l’attività come esecuzione reale per produrre una pull request che questo spazio di lavoro unirà.",
|
|
5528
|
-
"submission_not_allowed": "La politica di unione di questa attività non consente al ruolo che ha avviato l'esecuzione di unire questo tipo di modifica. Un collega il cui ruolo lo consente può farlo, oppure un amministratore può ampliare la politica nel preset di unione."
|
|
5529
|
+
"submission_not_allowed": "La politica di unione di questa attività non consente al ruolo che ha avviato l'esecuzione di unire questo tipo di modifica. Un collega il cui ruolo lo consente può farlo, oppure un amministratore può ampliare la politica nel preset di unione.",
|
|
5530
|
+
"webhook_limit_reached": "Questo spazio di lavoro ha già registrato il numero massimo di webhook in uscita. Rimuovine uno che non ti serve più, poi registra di nuovo questo."
|
|
5529
5531
|
},
|
|
5530
5532
|
"action": {
|
|
5531
5533
|
"connectGitHub": "Collega GitHub",
|
|
@@ -6126,6 +6128,15 @@
|
|
|
6126
6128
|
"title": "Che cosa era stato chiesto",
|
|
6127
6129
|
"none": "Questa attività non ha una descrizione, quindi non c'è nulla con cui confrontare l'esito."
|
|
6128
6130
|
},
|
|
6131
|
+
"sources": {
|
|
6132
|
+
"title": "Costruito a partire da",
|
|
6133
|
+
"unchecked": "Non verificato con la sorgente.",
|
|
6134
|
+
"noSource": "Nessuna pagina di origine con cui confrontare.",
|
|
6135
|
+
"moved": "Questa pagina è cambiata mentre l'esecuzione era in corso, quindi i passi precedenti hanno letto una revisione più vecchia.",
|
|
6136
|
+
"gap": {
|
|
6137
|
+
"none_linked": "Nessuna pagina è arrivata agli agenti di questa esecuzione, che hanno lavorato solo sulla descrizione dell'attività."
|
|
6138
|
+
}
|
|
6139
|
+
},
|
|
6129
6140
|
"gap": {
|
|
6130
6141
|
"run_unavailable": "L'esecuzione di questa attività non è stata caricata, quindi le prove che ha registrato non possono essere mostrate qui. Non è la stessa cosa di un'esecuzione che non ha registrato nulla."
|
|
6131
6142
|
},
|
package/i18n/locales/ja.json
CHANGED
|
@@ -583,7 +583,8 @@
|
|
|
583
583
|
"ticket_already_linked": "この課題にはすでにタスクがあります",
|
|
584
584
|
"document_already_linked": "ドキュメントは既に添付されています",
|
|
585
585
|
"dry_run_not_mergeable": "ドライランはマージできません",
|
|
586
|
-
"submission_not_allowed": "この実行ではマージできません"
|
|
586
|
+
"submission_not_allowed": "この実行ではマージできません",
|
|
587
|
+
"webhook_limit_reached": "Webhook の上限に達しました"
|
|
587
588
|
},
|
|
588
589
|
"description": {
|
|
589
590
|
"dependencies_unmet": "このタスクは、まだ完了していない他のタスクに依存しています。それらを完了または解除してから、もう一度開始してください。",
|
|
@@ -621,7 +622,8 @@
|
|
|
621
622
|
"ticket_already_linked": "1 つの課題が支えられるタスクは 1 つだけです。もう一度リンクすると、既存のタスクは作成時の文脈を失います。代わりにそのタスクを開くか、先に課題のリンクを解除してください。",
|
|
622
623
|
"document_already_linked": "そのドキュメントは別のタスクに添付されています。先にそちらで添付を解除するか、別のコピーを添付してください。",
|
|
623
624
|
"dry_run_not_mergeable": "このプルリクエストはドライランによるものなので、ここからはマージできません。このワークスペースがマージするプルリクエストを作るには、タスクを通常の実行として開始し直してください。",
|
|
624
|
-
"submission_not_allowed": "このタスクのマージポリシーでは、実行を開始したロールがこの種類の変更をマージすることを許可していません。マージできるロールのメンバーが対応するか、管理者がマージプリセットでポリシーを広げてください。"
|
|
625
|
+
"submission_not_allowed": "このタスクのマージポリシーでは、実行を開始したロールがこの種類の変更をマージすることを許可していません。マージできるロールのメンバーが対応するか、管理者がマージプリセットでポリシーを広げてください。",
|
|
626
|
+
"webhook_limit_reached": "このワークスペースには送信 Webhook がすでに上限数まで登録されています。不要なものを削除してから、もう一度登録してください。"
|
|
625
627
|
},
|
|
626
628
|
"action": {
|
|
627
629
|
"connectGitHub": "GitHub に接続",
|
|
@@ -5570,6 +5572,15 @@
|
|
|
5570
5572
|
"title": "依頼内容",
|
|
5571
5573
|
"none": "このタスクには説明がないため、結果と照らし合わせるものがありません。"
|
|
5572
5574
|
},
|
|
5575
|
+
"sources": {
|
|
5576
|
+
"title": "参照した資料",
|
|
5577
|
+
"unchecked": "ソースとの照合は行われていません。",
|
|
5578
|
+
"noSource": "比較できるソースページがありません。",
|
|
5579
|
+
"moved": "このページは実行中に変更されたため、前半のステップは古いリビジョンを読んでいます。",
|
|
5580
|
+
"gap": {
|
|
5581
|
+
"none_linked": "この実行のエージェントにはページが渡されなかったため、タスクの説明だけを頼りに作業しました。"
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5573
5584
|
"gap": {
|
|
5574
5585
|
"run_unavailable": "このタスクの実行が読み込まれていないため、そこに記録された根拠をここには表示できません。何も記録しなかった実行とは別のことです。"
|
|
5575
5586
|
},
|
package/i18n/locales/pl.json
CHANGED
|
@@ -583,7 +583,8 @@
|
|
|
583
583
|
"ticket_already_linked": "To zgłoszenie ma już zadanie",
|
|
584
584
|
"document_already_linked": "Dokument jest już załączony",
|
|
585
585
|
"dry_run_not_mergeable": "Uruchomienia próbnego nie można scalić",
|
|
586
|
-
"submission_not_allowed": "Scalanie niedozwolone dla tego uruchomienia"
|
|
586
|
+
"submission_not_allowed": "Scalanie niedozwolone dla tego uruchomienia",
|
|
587
|
+
"webhook_limit_reached": "Osiągnięto limit webhooków"
|
|
587
588
|
},
|
|
588
589
|
"description": {
|
|
589
590
|
"dependencies_unmet": "To zadanie zależy od innych, które nie zostały jeszcze ukończone. Ukończ je lub odblokuj, a następnie uruchom je ponownie.",
|
|
@@ -621,7 +622,8 @@
|
|
|
621
622
|
"ticket_already_linked": "Zgłoszenie może stać za tylko jednym zadaniem, więc ponowne powiązanie pozbawiłoby istniejące zadanie kontekstu, z którym powstało. Otwórz to zadanie albo najpierw odłącz zgłoszenie.",
|
|
622
623
|
"document_already_linked": "Ten dokument jest załączony do innego zadania. Najpierw odłącz go tam albo załącz osobną kopię.",
|
|
623
624
|
"dry_run_not_mergeable": "Ten pull request pochodzi z uruchomienia próbnego, więc nie można go tutaj scalić. Uruchom zadanie ponownie w trybie rzeczywistym, aby powstał pull request, który ta przestrzeń robocza scali.",
|
|
624
|
-
"submission_not_allowed": "Polityka scalania tego zadania nie pozwala roli, która rozpoczęła to uruchomienie, scalić tego typu zmiany. Może to zrobić osoba o odpowiedniej roli albo administrator może rozszerzyć politykę w ustawieniu scalania."
|
|
625
|
+
"submission_not_allowed": "Polityka scalania tego zadania nie pozwala roli, która rozpoczęła to uruchomienie, scalić tego typu zmiany. Może to zrobić osoba o odpowiedniej roli albo administrator może rozszerzyć politykę w ustawieniu scalania.",
|
|
626
|
+
"webhook_limit_reached": "Ta przestrzeń robocza ma już zarejestrowaną maksymalną liczbę wychodzących webhooków. Usuń jeden, którego już nie potrzebujesz, a następnie zarejestruj ten ponownie."
|
|
625
627
|
},
|
|
626
628
|
"action": {
|
|
627
629
|
"connectGitHub": "Połącz GitHub",
|
|
@@ -5570,6 +5572,15 @@
|
|
|
5570
5572
|
"title": "O co proszono",
|
|
5571
5573
|
"none": "To zadanie nie ma opisu, więc nie ma do czego porównać wyniku."
|
|
5572
5574
|
},
|
|
5575
|
+
"sources": {
|
|
5576
|
+
"title": "Zbudowano na podstawie",
|
|
5577
|
+
"unchecked": "Nie sprawdzono ze źródłem.",
|
|
5578
|
+
"noSource": "Brak strony źródłowej do porównania.",
|
|
5579
|
+
"moved": "Ta strona zmieniła się w trakcie uruchomienia, więc wcześniejsze kroki czytały starszą wersję.",
|
|
5580
|
+
"gap": {
|
|
5581
|
+
"none_linked": "Do agentów tego przebiegu nie trafiła żadna strona, więc pracowali wyłącznie na opisie zadania."
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5573
5584
|
"gap": {
|
|
5574
5585
|
"run_unavailable": "Przebieg tego zadania nie został wczytany, więc zapisane w nim dowody nie są tutaj pokazane. To co innego niż przebieg, który niczego nie zapisał."
|
|
5575
5586
|
},
|
package/i18n/locales/tr.json
CHANGED
|
@@ -583,7 +583,8 @@
|
|
|
583
583
|
"ticket_already_linked": "Bu kayda ait bir görev zaten var",
|
|
584
584
|
"document_already_linked": "Belge zaten ekli",
|
|
585
585
|
"dry_run_not_mergeable": "Prova çalışması birleştirilemez",
|
|
586
|
-
"submission_not_allowed": "Bu çalışma için birleştirmeye izin verilmiyor"
|
|
586
|
+
"submission_not_allowed": "Bu çalışma için birleştirmeye izin verilmiyor",
|
|
587
|
+
"webhook_limit_reached": "Webhook sınırına ulaşıldı"
|
|
587
588
|
},
|
|
588
589
|
"description": {
|
|
589
590
|
"dependencies_unmet": "Bu görev henüz tamamlanmamış başka görevlere bağlı. Onları tamamla veya engelini kaldır, ardından yeniden başlat.",
|
|
@@ -621,7 +622,8 @@
|
|
|
621
622
|
"ticket_already_linked": "Bir kayıt yalnızca tek bir görevi besleyebilir; yeniden bağlamak mevcut görevi oluşturulduğu bağlamdan yoksun bırakır. Bunun yerine o görevi açın ya da önce kaydın bağlantısını kaldırın.",
|
|
622
623
|
"document_already_linked": "Bu belge başka bir göreve ekli. Önce oradan ayırın ya da ayrı bir kopya ekleyin.",
|
|
623
624
|
"dry_run_not_mergeable": "Bu pull request bir prova çalışmasından geliyor, bu yüzden buradan birleştirilemez. Bu çalışma alanının birleştireceği bir pull request üretmek için görevi gerçek çalışma olarak yeniden başlatın.",
|
|
624
|
-
"submission_not_allowed": "Bu görevin birleştirme politikası, çalışmayı başlatan rolün bu tür bir değişikliği birleştirmesine izin vermiyor. Rolü buna izin veren bir takım arkadaşı birleştirebilir ya da bir yönetici birleştirme ön ayarındaki politikayı genişletebilir."
|
|
625
|
+
"submission_not_allowed": "Bu görevin birleştirme politikası, çalışmayı başlatan rolün bu tür bir değişikliği birleştirmesine izin vermiyor. Rolü buna izin veren bir takım arkadaşı birleştirebilir ya da bir yönetici birleştirme ön ayarındaki politikayı genişletebilir.",
|
|
626
|
+
"webhook_limit_reached": "Bu çalışma alanında zaten en fazla sayıda giden webhook kayıtlı. Artık ihtiyaç duymadığınız birini kaldırın ve bunu yeniden kaydedin."
|
|
625
627
|
},
|
|
626
628
|
"action": {
|
|
627
629
|
"connectGitHub": "GitHub'ı bağla",
|
|
@@ -5570,6 +5572,15 @@
|
|
|
5570
5572
|
"title": "Ne istenmişti",
|
|
5571
5573
|
"none": "Bu görevin açıklaması yok, dolayısıyla sonucu karşılaştıracak bir şey de yok."
|
|
5572
5574
|
},
|
|
5575
|
+
"sources": {
|
|
5576
|
+
"title": "Şuradan üretildi",
|
|
5577
|
+
"unchecked": "Kaynakla karşılaştırılmadı.",
|
|
5578
|
+
"noSource": "Karşılaştırılacak bir kaynak sayfa yok.",
|
|
5579
|
+
"moved": "Bu sayfa çalışma sürerken değişti, bu yüzden önceki adımlar daha eski bir sürümü okudu.",
|
|
5580
|
+
"gap": {
|
|
5581
|
+
"none_linked": "Bu çalıştırmanın ajanlarına hiçbir sayfa ulaşmadı, bu yüzden yalnızca görev açıklamasıyla çalıştılar."
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5573
5584
|
"gap": {
|
|
5574
5585
|
"run_unavailable": "Bu görevin çalışması yüklenmediği için kaydettiği kanıtlar burada gösterilemiyor. Bu, hiçbir şey kaydetmemiş bir çalışmayla aynı şey değildir."
|
|
5575
5586
|
},
|
package/i18n/locales/uk.json
CHANGED
|
@@ -583,7 +583,8 @@
|
|
|
583
583
|
"ticket_already_linked": "У цього тікета вже є завдання",
|
|
584
584
|
"document_already_linked": "Документ уже прикріплено",
|
|
585
585
|
"dry_run_not_mergeable": "Пробний запуск не можна злити",
|
|
586
|
-
"submission_not_allowed": "Злиття для цього запуску не дозволено"
|
|
586
|
+
"submission_not_allowed": "Злиття для цього запуску не дозволено",
|
|
587
|
+
"webhook_limit_reached": "Досягнуто ліміт вебхуків"
|
|
587
588
|
},
|
|
588
589
|
"description": {
|
|
589
590
|
"dependencies_unmet": "Це завдання залежить від інших, які ще не завершені. Заверши або розблокуй їх, а потім запусти його знову.",
|
|
@@ -621,7 +622,8 @@
|
|
|
621
622
|
"ticket_already_linked": "Тікет може живити лише одне завдання, тож повторне звʼязування позбавить наявне завдання контексту, з яким його створено. Відкрийте це завдання або спершу відʼєднайте тікет.",
|
|
622
623
|
"document_already_linked": "Цей документ прикріплено до іншого завдання. Спершу відкріпіть його там або прикріпіть окрему копію.",
|
|
623
624
|
"dry_run_not_mergeable": "Цей pull request походить із пробного запуску, тому його не можна злити звідси. Запустіть завдання ще раз у звичайному режимі, щоб отримати pull request, який цей робочий простір зіллє.",
|
|
624
|
-
"submission_not_allowed": "Політика злиття цього завдання не дозволяє ролі, яка розпочала запуск, зливати такий тип змін. Це може зробити колега з відповідною роллю, або адміністратор може розширити політику в наборі злиття."
|
|
625
|
+
"submission_not_allowed": "Політика злиття цього завдання не дозволяє ролі, яка розпочала запуск, зливати такий тип змін. Це може зробити колега з відповідною роллю, або адміністратор може розширити політику в наборі злиття.",
|
|
626
|
+
"webhook_limit_reached": "У цьому робочому просторі вже зареєстровано максимальну кількість вихідних вебхуків. Видаліть той, який більше не потрібен, і зареєструйте цей знову."
|
|
625
627
|
},
|
|
626
628
|
"action": {
|
|
627
629
|
"connectGitHub": "Під'єднати GitHub",
|
|
@@ -5570,6 +5572,15 @@
|
|
|
5570
5572
|
"title": "Про що просили",
|
|
5571
5573
|
"none": "У цього завдання немає опису, тож немає з чим порівняти результат."
|
|
5572
5574
|
},
|
|
5575
|
+
"sources": {
|
|
5576
|
+
"title": "Створено на основі",
|
|
5577
|
+
"unchecked": "Не звірено з джерелом.",
|
|
5578
|
+
"noSource": "Немає сторінки джерела для звіряння.",
|
|
5579
|
+
"moved": "Ця сторінка змінилася під час виконання, тож попередні кроки читали давнішу редакцію.",
|
|
5580
|
+
"gap": {
|
|
5581
|
+
"none_linked": "До агентів цього запуску не потрапила жодна сторінка, тож вони працювали лише з опису завдання."
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5573
5584
|
"gap": {
|
|
5574
5585
|
"run_unavailable": "Запуск цього завдання не завантажено, тому зібрані ним докази тут не показані. Це не те саме, що запуск, який нічого не зібрав."
|
|
5575
5586
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.246.0",
|
|
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",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"valibot": "^1.4.2",
|
|
41
41
|
"vue": "3.5.40",
|
|
42
42
|
"wretch": "^3.0.9",
|
|
43
|
-
"@cat-factory/contracts": "0.
|
|
43
|
+
"@cat-factory/contracts": "0.268.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@toad-contracts/testing": "0.3.2",
|