@aigne/doc-smith 0.4.0 → 0.4.3
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 +21 -0
- package/package.json +8 -8
- package/utils/auth-utils.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.3](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.2...v0.4.3) (2025-08-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* release 0.4.3 ([f37ac7c](https://github.com/AIGNE-io/aigne-doc-smith/commit/f37ac7cd1fd129d8e3019cc7e952a0cf7dcb3db7))
|
|
9
|
+
|
|
10
|
+
## [0.4.2](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.1...v0.4.2) (2025-08-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* release 0.4.2 ([9e36cf6](https://github.com/AIGNE-io/aigne-doc-smith/commit/9e36cf678ac51a0f4e7b3c19e4b5248e42b80437))
|
|
16
|
+
|
|
17
|
+
## [0.4.1](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.4.0...v0.4.1) (2025-08-21)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* 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))
|
|
23
|
+
|
|
3
24
|
## [0.4.0](https://github.com/AIGNE-io/aigne-doc-smith/compare/v0.3.1...v0.4.0) (2025-08-20)
|
|
4
25
|
|
|
5
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/doc-smith",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
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": "
|
|
16
|
-
"@aigne/anthropic": "
|
|
17
|
-
"@aigne/cli": "
|
|
18
|
-
"@aigne/core": "
|
|
19
|
-
"@aigne/gemini": "
|
|
20
|
-
"@aigne/openai": "
|
|
21
|
-
"@aigne/publish-docs": "
|
|
15
|
+
"@aigne/aigne-hub": "0.6.6",
|
|
16
|
+
"@aigne/anthropic": "0.11.6",
|
|
17
|
+
"@aigne/cli": "1.38.0",
|
|
18
|
+
"@aigne/core": "1.53.0",
|
|
19
|
+
"@aigne/gemini": "0.9.6",
|
|
20
|
+
"@aigne/openai": "0.12.0",
|
|
21
|
+
"@aigne/publish-docs": "0.5.5",
|
|
22
22
|
"chalk": "^5.5.0",
|
|
23
23
|
"dompurify": "^3.2.6",
|
|
24
24
|
"glob": "^11.0.3",
|
package/utils/auth-utils.mjs
CHANGED
|
@@ -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";
|