@cat-factory/app 0.263.0 → 0.264.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.
|
@@ -355,7 +355,8 @@ async function add() {
|
|
|
355
355
|
saving.value = true
|
|
356
356
|
try {
|
|
357
357
|
// Persist the tracker selection first when the tech-debt pipeline needs it, so
|
|
358
|
-
// the very first run can file its ticket.
|
|
358
|
+
// the very first run can file its ticket. This dialog decides WHERE a ticket is filed and
|
|
359
|
+
// nothing about the writeback, so it names no writeback action and the stored ones stand.
|
|
359
360
|
if (filesTicket.value && trackerKind.value) {
|
|
360
361
|
await tracker.save({
|
|
361
362
|
tracker: trackerKind.value,
|
package/app/stores/tracker.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DEFAULT_TRACKER_WRITEBACK } from '@cat-factory/contracts'
|
|
1
2
|
import { defineStore } from 'pinia'
|
|
2
3
|
import { ref } from 'vue'
|
|
3
4
|
import type { LinearTeam } from '~/types/domain'
|
|
@@ -16,9 +17,7 @@ export const useTrackerStore = defineStore('tracker', () => {
|
|
|
16
17
|
tracker: null,
|
|
17
18
|
jiraProjectKey: null,
|
|
18
19
|
linearTeamId: null,
|
|
19
|
-
|
|
20
|
-
writebackResolveOnMerge: false,
|
|
21
|
-
writebackQuestionsOnPark: false,
|
|
20
|
+
...DEFAULT_TRACKER_WRITEBACK,
|
|
22
21
|
updatedAt: 0,
|
|
23
22
|
})
|
|
24
23
|
|
|
@@ -30,9 +29,7 @@ export const useTrackerStore = defineStore('tracker', () => {
|
|
|
30
29
|
tracker: null,
|
|
31
30
|
jiraProjectKey: null,
|
|
32
31
|
linearTeamId: null,
|
|
33
|
-
|
|
34
|
-
writebackResolveOnMerge: false,
|
|
35
|
-
writebackQuestionsOnPark: false,
|
|
32
|
+
...DEFAULT_TRACKER_WRITEBACK,
|
|
36
33
|
updatedAt: 0,
|
|
37
34
|
}
|
|
38
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.264.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.41",
|
|
42
42
|
"wretch": "^3.0.9",
|
|
43
|
-
"@cat-factory/contracts": "0.
|
|
43
|
+
"@cat-factory/contracts": "0.299.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@toad-contracts/testing": "0.3.2",
|