@cat-factory/app 0.117.0 → 0.119.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/layout/NotificationsInbox.vue +14 -0
- package/app/components/panels/StepResultViewHost.vue +4 -0
- package/app/components/prReview/PrReviewWindow.vue +336 -0
- package/app/components/slack/SlackPanel.vue +2 -0
- package/app/composables/api/prReview.ts +30 -0
- package/app/composables/useApi.ts +2 -0
- package/app/stores/board.ts +26 -1
- package/app/stores/prReview.ts +86 -0
- package/app/stores/ui.ts +26 -0
- package/app/stores/workspace.spec.ts +38 -0
- package/app/stores/workspace.ts +15 -4
- package/app/types/execution.ts +6 -0
- package/i18n/locales/de.json +48 -1
- package/i18n/locales/en.json +48 -1
- package/i18n/locales/es.json +48 -1
- package/i18n/locales/fr.json +48 -1
- package/i18n/locales/he.json +48 -1
- package/i18n/locales/it.json +48 -1
- package/i18n/locales/ja.json +48 -1
- package/i18n/locales/pl.json +48 -1
- package/i18n/locales/tr.json +48 -1
- package/i18n/locales/uk.json +48 -1
- package/package.json +2 -2
package/i18n/locales/tr.json
CHANGED
|
@@ -1560,7 +1560,8 @@
|
|
|
1560
1560
|
"followup_pending": "Okundu işaretle",
|
|
1561
1561
|
"initiative": "Okundu işaretle",
|
|
1562
1562
|
"markRead": "Okundu işaretle",
|
|
1563
|
-
"fork_decision_pending": "Okundu olarak işaretle"
|
|
1563
|
+
"fork_decision_pending": "Okundu olarak işaretle",
|
|
1564
|
+
"pr_review_ready": "Okundu işaretle"
|
|
1564
1565
|
},
|
|
1565
1566
|
"toast": {
|
|
1566
1567
|
"acted": "İşlendi olarak işaretlendi",
|
|
@@ -2991,6 +2992,7 @@
|
|
|
2991
2992
|
"release_regression": "Sürüm gerilemesi",
|
|
2992
2993
|
"human_test_ready": "İnsan testine hazır",
|
|
2993
2994
|
"visual_confirmation_ready": "Görsel onaya hazır",
|
|
2995
|
+
"pr_review_ready": "PR inceleme bulguları",
|
|
2994
2996
|
"initiative": "Girisim guncellemeleri"
|
|
2995
2997
|
},
|
|
2996
2998
|
"role": {
|
|
@@ -4702,5 +4704,50 @@
|
|
|
4702
4704
|
"empty": {
|
|
4703
4705
|
"title": "Karar verilecek bir şey yok"
|
|
4704
4706
|
}
|
|
4707
|
+
},
|
|
4708
|
+
"prReview": {
|
|
4709
|
+
"title": "PR incelemesi",
|
|
4710
|
+
"titleWithBlock": "PR incelemesi: {title}",
|
|
4711
|
+
"subtitle": "İşlem yapılacak bulguları seçin.",
|
|
4712
|
+
"openPr": "PR'ı aç",
|
|
4713
|
+
"summaryLabel": "Özet:",
|
|
4714
|
+
"noFindings": "Bulgu yok — pull request temiz görünüyor.",
|
|
4715
|
+
"unsliced": "Diğer",
|
|
4716
|
+
"selectAll": "Tümünü seç",
|
|
4717
|
+
"clear": "Temizle",
|
|
4718
|
+
"selectedCount": "{count} seçildi",
|
|
4719
|
+
"finish": "İncelemeyi bitir",
|
|
4720
|
+
"fix": "Seçilenleri düzelt",
|
|
4721
|
+
"post": "Yorum olarak gönder",
|
|
4722
|
+
"suggestedFix": "Önerilen düzeltme:",
|
|
4723
|
+
"line": "satır {line}",
|
|
4724
|
+
"reviewing": {
|
|
4725
|
+
"title": "Pull request inceleniyor…",
|
|
4726
|
+
"hint": "Fark tutarlı parçalara bölünüp her biri inceleniyor."
|
|
4727
|
+
},
|
|
4728
|
+
"fixing": {
|
|
4729
|
+
"title": "Seçili bulgular düzeltiliyor…",
|
|
4730
|
+
"hint": "Bir düzeltici, seçili bulgular için değişiklikleri pull request dalına işliyor."
|
|
4731
|
+
},
|
|
4732
|
+
"posting": {
|
|
4733
|
+
"title": "İnceleme yorumları gönderiliyor…",
|
|
4734
|
+
"hint": "Seçili bulgular pull request üzerinde satır içi yorum olarak yayımlanıyor."
|
|
4735
|
+
},
|
|
4736
|
+
"severity": {
|
|
4737
|
+
"blocker": "Engelleyici",
|
|
4738
|
+
"high": "Yüksek",
|
|
4739
|
+
"medium": "Orta",
|
|
4740
|
+
"low": "Düşük",
|
|
4741
|
+
"nit": "Küçük"
|
|
4742
|
+
},
|
|
4743
|
+
"category": {
|
|
4744
|
+
"correctness": "Doğruluk",
|
|
4745
|
+
"security": "Güvenlik",
|
|
4746
|
+
"performance": "Performans",
|
|
4747
|
+
"maintainability": "Bakım kolaylığı",
|
|
4748
|
+
"style": "Stil",
|
|
4749
|
+
"test": "Testler",
|
|
4750
|
+
"other": "Diğer"
|
|
4751
|
+
}
|
|
4705
4752
|
}
|
|
4706
4753
|
}
|
package/i18n/locales/uk.json
CHANGED
|
@@ -1560,7 +1560,8 @@
|
|
|
1560
1560
|
"followup_pending": "Позначити прочитаним",
|
|
1561
1561
|
"initiative": "Позначити прочитаним",
|
|
1562
1562
|
"markRead": "Позначити прочитаним",
|
|
1563
|
-
"fork_decision_pending": "Позначити прочитаним"
|
|
1563
|
+
"fork_decision_pending": "Позначити прочитаним",
|
|
1564
|
+
"pr_review_ready": "Позначити прочитаним"
|
|
1564
1565
|
},
|
|
1565
1566
|
"toast": {
|
|
1566
1567
|
"acted": "Позначено як опрацьоване",
|
|
@@ -2979,6 +2980,7 @@
|
|
|
2979
2980
|
"release_regression": "Регресія випуску",
|
|
2980
2981
|
"human_test_ready": "Готово до тестування людиною",
|
|
2981
2982
|
"visual_confirmation_ready": "Готово до візуального підтвердження",
|
|
2983
|
+
"pr_review_ready": "Зауваження огляду PR",
|
|
2982
2984
|
"initiative": "Оновлення ініціативи"
|
|
2983
2985
|
},
|
|
2984
2986
|
"role": {
|
|
@@ -4690,5 +4692,50 @@
|
|
|
4690
4692
|
"empty": {
|
|
4691
4693
|
"title": "Нема чого вирішувати"
|
|
4692
4694
|
}
|
|
4695
|
+
},
|
|
4696
|
+
"prReview": {
|
|
4697
|
+
"title": "Огляд PR",
|
|
4698
|
+
"titleWithBlock": "Огляд PR: {title}",
|
|
4699
|
+
"subtitle": "Виберіть зауваження для опрацювання.",
|
|
4700
|
+
"openPr": "Відкрити PR",
|
|
4701
|
+
"summaryLabel": "Підсумок:",
|
|
4702
|
+
"noFindings": "Зауважень немає — pull request виглядає чистим.",
|
|
4703
|
+
"unsliced": "Інше",
|
|
4704
|
+
"selectAll": "Вибрати все",
|
|
4705
|
+
"clear": "Очистити",
|
|
4706
|
+
"selectedCount": "Вибрано: {count}",
|
|
4707
|
+
"finish": "Завершити огляд",
|
|
4708
|
+
"fix": "Виправити вибрані",
|
|
4709
|
+
"post": "Опублікувати як коментарі",
|
|
4710
|
+
"suggestedFix": "Пропоноване виправлення:",
|
|
4711
|
+
"line": "рядок {line}",
|
|
4712
|
+
"reviewing": {
|
|
4713
|
+
"title": "Перевірка pull request…",
|
|
4714
|
+
"hint": "Поділ змін на цілісні частини та огляд кожної з них."
|
|
4715
|
+
},
|
|
4716
|
+
"fixing": {
|
|
4717
|
+
"title": "Виправлення вибраних зауважень…",
|
|
4718
|
+
"hint": "Фіксер комітить зміни для вибраних зауважень у гілку pull request."
|
|
4719
|
+
},
|
|
4720
|
+
"posting": {
|
|
4721
|
+
"title": "Публікація коментарів огляду…",
|
|
4722
|
+
"hint": "Публікація вибраних зауважень як вбудованих коментарів у pull request."
|
|
4723
|
+
},
|
|
4724
|
+
"severity": {
|
|
4725
|
+
"blocker": "Блокер",
|
|
4726
|
+
"high": "Високий",
|
|
4727
|
+
"medium": "Середній",
|
|
4728
|
+
"low": "Низький",
|
|
4729
|
+
"nit": "Дрібниця"
|
|
4730
|
+
},
|
|
4731
|
+
"category": {
|
|
4732
|
+
"correctness": "Коректність",
|
|
4733
|
+
"security": "Безпека",
|
|
4734
|
+
"performance": "Продуктивність",
|
|
4735
|
+
"maintainability": "Підтримуваність",
|
|
4736
|
+
"style": "Стиль",
|
|
4737
|
+
"test": "Тести",
|
|
4738
|
+
"other": "Інше"
|
|
4739
|
+
}
|
|
4693
4740
|
}
|
|
4694
4741
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.119.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",
|
|
@@ -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.
|
|
37
|
+
"@cat-factory/contracts": "0.132.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@toad-contracts/testing": "0.3.2",
|