linear-toon-mcp 0.5.0 → 0.5.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7241fefeb39d4de3f8649fa66bede65615fa0eda60aa1206f121f3c2e30d0d8
4
- data.tar.gz: d0eefcd97e9ff4fd27ca48efde69eeb6124a082b81f619671c5a67c8d3cc817e
3
+ metadata.gz: bf06d4bccdbce8b42b754913248e6d2380aa8f695725714de733603a8fd65e6b
4
+ data.tar.gz: 32e7d3447fc0a55462f6f8b544bbe27801a4ac22d8192ec76208d99236275d73
5
5
  SHA512:
6
- metadata.gz: 3275b9582f4ea6d2a800e2dbc08f64e81e82932a5ec9a545ccdc7dea5d3935fd65a18aec825c464e17cbd724dfc04f239f9cb187a5c70cb2df25299576cdbb9d
7
- data.tar.gz: b65c95f035164b0ea5eddc6f703716779040828e20d42b889992244de18bb95053178933af1a7a5f9406a4c567d8a6fed80ed8966a04641a8700ff9dec122b8f
6
+ metadata.gz: 2aa03787fd5668f525d274650f8c334caf9e0c199d1c0ab93f96c6d609f4ee92f89d412af4daa9a3a1052e50fa30c813624e4c5e3ae10ffedc55616965977591
7
+ data.tar.gz: 255d287d3d61419cb4dcecbb224ef4b840dc821aa6fb09cd4109803018d30cf8e15f4300ee7c1fca82db8235b305cd193cda78fe8a420fcb36c14cb19419a2a0
@@ -31,7 +31,6 @@ module LinearToonMcp
31
31
  estimate: {type: "number", description: "Issue estimate value"},
32
32
  dueDate: {type: "string", description: "Due date (ISO format)"},
33
33
  parentId: {type: "string", description: "Parent issue ID"},
34
- blockedBy: {type: "array", items: {type: "string"}, description: "Issue IDs/identifiers blocking this"},
35
34
  blocks: {type: "array", items: {type: "string"}, description: "Issue IDs/identifiers this blocks"},
36
35
  relatedTo: {type: "array", items: {type: "string"}, description: "Related issue IDs/identifiers"},
37
36
  duplicateOf: {type: "string", description: "Duplicate of issue ID/identifier"},
@@ -127,8 +126,7 @@ module LinearToonMcp
127
126
  end
128
127
  end
129
128
 
130
- def create_relations(client, issue_id, blockedBy: nil, blocks: nil, relatedTo: nil, duplicateOf: nil, **)
131
- Array(blockedBy).each { |id| create_relation(client, issue_id, id, "isBlockedBy") }
129
+ def create_relations(client, issue_id, blocks: nil, relatedTo: nil, duplicateOf: nil, **)
132
130
  Array(blocks).each { |id| create_relation(client, issue_id, id, "blocks") }
133
131
  Array(relatedTo).each { |id| create_relation(client, issue_id, id, "related") }
134
132
  create_relation(client, issue_id, duplicateOf, "duplicate") if duplicateOf
@@ -31,7 +31,6 @@ module LinearToonMcp
31
31
  estimate: {type: "number", description: "Issue estimate value"},
32
32
  dueDate: {type: "string", description: "Due date (ISO format)"},
33
33
  parentId: {type: ["string", "null"], description: "Parent issue ID. Null to remove"},
34
- blockedBy: {type: "array", items: {type: "string"}, description: "Issue IDs blocking this. Replaces existing; omit to keep unchanged"},
35
34
  blocks: {type: "array", items: {type: "string"}, description: "Issue IDs this blocks. Replaces existing; omit to keep unchanged"},
36
35
  relatedTo: {type: "array", items: {type: "string"}, description: "Related issue IDs. Replaces existing; omit to keep unchanged"},
37
36
  duplicateOf: {type: ["string", "null"], description: "Duplicate of issue ID. Null to remove"},
@@ -93,7 +92,6 @@ module LinearToonMcp
93
92
  GRAPHQL
94
93
 
95
94
  RELATION_TYPE_MAP = {
96
- blockedBy: "isBlockedBy",
97
95
  blocks: "blocks",
98
96
  relatedTo: "related",
99
97
  duplicateOf: "duplicate"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LinearToonMcp
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linear-toon-mcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yevhenii Hurin