paperclip-github-plugin 0.9.9 → 0.9.11
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/README.md +8 -8
- package/dist/manifest.js +1 -1
- package/dist/ui/index.js +149 -31
- package/dist/ui/index.js.map +4 -4
- package/dist/worker.js +3 -0
- package/package.json +4 -4
package/dist/worker.js
CHANGED
|
@@ -717,6 +717,9 @@ function normalizePaperclipHealthResponse(value) {
|
|
|
717
717
|
}
|
|
718
718
|
function requiresPaperclipBoardAccess(value) {
|
|
719
719
|
const health = normalizePaperclipHealthResponse(value);
|
|
720
|
+
return requiresPaperclipBoardAccessForHealth(health);
|
|
721
|
+
}
|
|
722
|
+
function requiresPaperclipBoardAccessForHealth(health) {
|
|
720
723
|
return health?.deploymentMode?.toLowerCase() === "authenticated";
|
|
721
724
|
}
|
|
722
725
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "paperclip-github-plugin",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.11",
|
|
4
4
|
"description": "Paperclip plugin for synchronizing GitHub issues into Paperclip projects.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"packageManager": "pnpm@11.
|
|
7
|
+
"packageManager": "pnpm@11.2.2",
|
|
8
8
|
"engines": {
|
|
9
9
|
"node": ">=20"
|
|
10
10
|
},
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/node": "24.12.4",
|
|
53
|
-
"@types/react": "19.2.
|
|
53
|
+
"@types/react": "19.2.15",
|
|
54
54
|
"esbuild": "0.28.0",
|
|
55
55
|
"playwright": "1.60.0",
|
|
56
|
-
"tsx": "4.22.
|
|
56
|
+
"tsx": "4.22.3",
|
|
57
57
|
"typescript": "6.0.3"
|
|
58
58
|
}
|
|
59
59
|
}
|