@aigne/doc-smith 0.4.0 → 0.4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.4](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.3...v0.4.4) (2025-08-22)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * support assign board id ([#58](https://github.com/AIGNE-io/aigne-doc-smith/issues/58)) ([0bcc196](https://github.com/AIGNE-io/aigne-doc-smith/commit/0bcc1969131f70caf2b1bc9303a3811be1b000ab))
9
+
10
+ ## [0.4.3](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.2...v0.4.3) (2025-08-21)
11
+
12
+
13
+ ### Miscellaneous Chores
14
+
15
+ * release 0.4.3 ([f37ac7c](https://github.com/AIGNE-io/aigne-doc-smith/commit/f37ac7cd1fd129d8e3019cc7e952a0cf7dcb3db7))
16
+
17
+ ## [0.4.2](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.1...v0.4.2) (2025-08-21)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * release 0.4.2 ([9e36cf6](https://github.com/AIGNE-io/aigne-doc-smith/commit/9e36cf678ac51a0f4e7b3c19e4b5248e42b80437))
23
+
24
+ ## [0.4.1](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.0...v0.4.1) (2025-08-21)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * support update board info ([#53](https://github.com/AIGNE-io/aigne-doc-smith/issues/53)) ([b2f7307](https://github.com/AIGNE-io/aigne-doc-smith/commit/b2f7307555c6f33d181aba408b11443700ecca71))
30
+
3
31
  ## [0.4.0](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.3.1...v0.4.0) (2025-08-20)
4
32
 
5
33
 
@@ -98,11 +98,7 @@ export default async function publishDocs(
98
98
 
99
99
  // Save boardId to config if it was auto-created
100
100
  if (boardId !== newBoardId) {
101
- await saveValueToConfig(
102
- "boardId",
103
- newBoardId,
104
- "⚠️ Warning: boardId is auto-generated by system, please do not edit manually",
105
- );
101
+ await saveValueToConfig("boardId", newBoardId);
106
102
  }
107
103
  const message = `✅ Documentation Published Successfully!`;
108
104
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/doc-smith",
3
- "version": "0.4.0",
3
+ "version": "0.4.4",
4
4
  "description": "",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,13 +12,13 @@
12
12
  "author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
13
13
  "license": "MIT",
14
14
  "dependencies": {
15
- "@aigne/aigne-hub": "^0.6.4",
16
- "@aigne/anthropic": "^0.11.4",
17
- "@aigne/cli": "^1.37.0",
18
- "@aigne/core": "^1.51.0",
19
- "@aigne/gemini": "^0.9.4",
20
- "@aigne/openai": "^0.11.4",
21
- "@aigne/publish-docs": "^0.5.4",
15
+ "@aigne/aigne-hub": "^0.6.8",
16
+ "@aigne/anthropic": "^0.11.8",
17
+ "@aigne/cli": "^1.39.1",
18
+ "@aigne/core": "^1.55.0",
19
+ "@aigne/gemini": "^0.9.8",
20
+ "@aigne/openai": "^0.12.2",
21
+ "@aigne/publish-docs": "^0.5.6",
22
22
  "chalk": "^5.5.0",
23
23
  "dompurify": "^3.2.6",
24
24
  "glob": "^11.0.3",
@@ -2,7 +2,7 @@ import { existsSync, mkdirSync } from "node:fs";
2
2
  import { readFile, writeFile } from "node:fs/promises";
3
3
  import { homedir } from "node:os";
4
4
  import { join } from "node:path";
5
- import { createConnect } from "@aigne/aigne-hub";
5
+ import { createConnect } from "@aigne/cli/utils/aigne-hub/credential.js";
6
6
  import chalk from "chalk";
7
7
  import open from "open";
8
8
  import { joinURL } from "ufo";