lalph 0.3.29 → 0.3.30

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.3.29",
4
+ "version": "0.3.30",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -23,13 +23,13 @@
23
23
  "@changesets/changelog-github": "^0.5.2",
24
24
  "@changesets/cli": "^2.29.8",
25
25
  "@effect/language-service": "^0.75.1",
26
- "@effect/platform-node": "4.0.0-beta.7",
26
+ "@effect/platform-node": "4.0.0-beta.10",
27
27
  "@linear/sdk": "^75.0.0",
28
28
  "@octokit/plugin-rest-endpoint-methods": "^17.0.0",
29
29
  "@octokit/types": "^16.0.0",
30
30
  "@typescript/native-preview": "7.0.0-dev.20260219.1",
31
31
  "concurrently": "^9.2.1",
32
- "effect": "4.0.0-beta.7",
32
+ "effect": "4.0.0-beta.10",
33
33
  "husky": "^9.1.7",
34
34
  "lint-staged": "^16.2.7",
35
35
  "octokit": "^5.0.5",
package/src/Github/Cli.ts CHANGED
@@ -199,7 +199,6 @@ query FetchPRComments($owner: String!, $repo: String!, $pr: Int!) {
199
199
  reviewThreads(first: 100) {
200
200
  nodes {
201
201
  isCollapsed
202
- isOutdated
203
202
  isResolved
204
203
  comments(first: 100) {
205
204
  nodes {
@@ -84,12 +84,11 @@ export class ReviewThreadsNode extends S.Class<ReviewThreadsNode>(
84
84
  "ReviewThreadsNode",
85
85
  )({
86
86
  isCollapsed: S.Boolean,
87
- isOutdated: S.Boolean,
88
87
  isResolved: S.Boolean,
89
88
  comments: NodeComments,
90
89
  }) {
91
90
  readonly commentNodes = this.comments.nodes
92
- readonly shouldDisplayThread = !this.isCollapsed && !this.isOutdated
91
+ readonly shouldDisplayThread = !this.isCollapsed && !this.isResolved
93
92
  }
94
93
 
95
94
  export class ReviewThreads extends S.Class<ReviewThreads>("ReviewThreads")({