@nairon-ai/aegis 0.5.8 → 0.5.9

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.
@@ -110,7 +110,7 @@ export class LinearClient {
110
110
  }
111
111
  async findStateId(name) {
112
112
  const linear = this.requireConfig();
113
- const result = await this.graphql(`query WorkflowStates($teamId: String!) {
113
+ const result = await this.graphql(`query WorkflowStates($teamId: ID!) {
114
114
  workflowStates(filter: { team: { id: { eq: $teamId } } }) {
115
115
  nodes { id name }
116
116
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nairon-ai/aegis",
3
- "version": "0.5.8",
3
+ "version": "0.5.9",
4
4
  "description": "Self-hosted AFK bug-fixing agent for GitHub Issues and Linear",
5
5
  "type": "module",
6
6
  "repository": {
@@ -151,7 +151,7 @@ export class LinearClient {
151
151
  private async findStateId(name: string): Promise<string | undefined> {
152
152
  const linear = this.requireConfig();
153
153
  const result = await this.graphql<{ workflowStates: { nodes: LinearStateNode[] } }>(
154
- `query WorkflowStates($teamId: String!) {
154
+ `query WorkflowStates($teamId: ID!) {
155
155
  workflowStates(filter: { team: { id: { eq: $teamId } } }) {
156
156
  nodes { id name }
157
157
  }