@sweny-ai/core 0.1.3 → 0.1.4

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/dist/cli/setup.js CHANGED
@@ -120,6 +120,7 @@ async function createLinearLabel(apiKey, teamId, def, parentId) {
120
120
  color: `#${def.color}`,
121
121
  description: def.description,
122
122
  ...(parentId ? { parentId } : {}),
123
+ ...(def === AGENT_PARENT ? { isGroup: true } : {}),
123
124
  },
124
125
  });
125
126
  if (!data.issueLabelCreate.success)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sweny-ai/core",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "sweny": "./dist/cli/main.js"