diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 40ff6fe0..3a327a03 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.2" + ".": "0.0.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a47a5bae..943200a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.0.3](https://github.com/StackOneHQ/stackone-ai-node/compare/ai-v0.0.2...ai-v0.0.3) (2025-03-04) + + +### Features + +* init ([468ffea](https://github.com/StackOneHQ/stackone-ai-node/commit/468ffeae1f8ea9ec77637a1451e2040bcbd8adcf)) +* npm token ([#5](https://github.com/StackOneHQ/stackone-ai-node/issues/5)) ([1bb9095](https://github.com/StackOneHQ/stackone-ai-node/commit/1bb9095eb27a44888781fa892e68fb751cad2b20)) + + +### Bug Fixes + +* building docs ([#4](https://github.com/StackOneHQ/stackone-ai-node/issues/4)) ([c5dc1d2](https://github.com/StackOneHQ/stackone-ai-node/commit/c5dc1d248f9415f4599739410060dcd802872c1b)) +* docs action ([#2](https://github.com/StackOneHQ/stackone-ai-node/issues/2)) ([1717c31](https://github.com/StackOneHQ/stackone-ai-node/commit/1717c31a92c557aec023be7e89f19dab6ff10c32)) +* docs actions pt2 ([#3](https://github.com/StackOneHQ/stackone-ai-node/issues/3)) ([a9fbbc9](https://github.com/StackOneHQ/stackone-ai-node/commit/a9fbbc91446375b0916aacf5c13a9bdaec082680)) +* name ([#6](https://github.com/StackOneHQ/stackone-ai-node/issues/6)) ([0952512](https://github.com/StackOneHQ/stackone-ai-node/commit/0952512f14bc23ef34431de9fc7663a948382aba)) +* oas location ([#8](https://github.com/StackOneHQ/stackone-ai-node/issues/8)) ([380e495](https://github.com/StackOneHQ/stackone-ai-node/commit/380e49579ccff36f5de3a54aa349d39936add3bb)) +* oas location and file upload ([#9](https://github.com/StackOneHQ/stackone-ai-node/issues/9)) ([e514a0f](https://github.com/StackOneHQ/stackone-ai-node/commit/e514a0f2ca484a5a1f3824a88b850ab869a148c0)) + ## [0.0.2](https://github.com/StackOneHQ/stackone-ai-node/compare/stackone-ai-node-v0.0.1...stackone-ai-node-v0.0.2) (2025-03-04) diff --git a/package.json b/package.json index b5cab59f..87b0d500 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,17 @@ { "name": "@stackone/ai", - "version": "0.0.1", + "version": "0.0.3", "description": "Agents performing actions on your SaaS", "module": "dist/index.js", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", - "files": ["dist", ".oas", "README.md", "LICENSE"], + "files": [ + "dist", + ".oas", + "README.md", + "LICENSE" + ], "scripts": { "prepare": "husky && bun run fetch:specs", "prebuild": "rimraf dist", @@ -50,7 +55,13 @@ "type": "git", "url": "git+https://github.com/stackone-ai/stackone-ai-node.git" }, - "keywords": ["stackone", "ai", "saas", "tools", "agents"], + "keywords": [ + "stackone", + "ai", + "saas", + "tools", + "agents" + ], "author": "StackOne", "license": "MIT", "bugs": { @@ -58,6 +69,9 @@ }, "homepage": "https://github.com/stackone-ai/stackone-ai-node#readme", "lint-staged": { - "*.{js,ts,jsx,tsx}": ["biome check --write", "biome format --write"] + "*.{js,ts,jsx,tsx}": [ + "biome check --write", + "biome format --write" + ] } }