@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:
|
|
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
|
@@ -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:
|
|
154
|
+
`query WorkflowStates($teamId: ID!) {
|
|
155
155
|
workflowStates(filter: { team: { id: { eq: $teamId } } }) {
|
|
156
156
|
nodes { id name }
|
|
157
157
|
}
|