@nocobase/plugin-ai 2.1.0-alpha.27 → 2.1.0-alpha.29

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.
@@ -0,0 +1,34 @@
1
+ ---
2
+ title: "nb config delete"
3
+ description: "nb config delete command reference: delete an explicitly configured CLI setting."
4
+ keywords: "nb config delete,NocoBase CLI,configuration"
5
+ ---
6
+
7
+ # nb config delete
8
+
9
+ Delete an explicitly configured CLI setting. After deletion, the CLI falls back to the default value for that key.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb config delete <key>
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `<key>` | string | Configuration key: `license.pkg-url`, `docker.network`, or `docker.container-prefix` |
22
+
23
+ ## Examples
24
+
25
+ ```bash
26
+ nb config delete license.pkg-url
27
+ nb config delete docker.network
28
+ nb config delete docker.container-prefix
29
+ ```
30
+
31
+ ## Related Commands
32
+
33
+ - [`nb config set`](./set.md)
34
+ - [`nb config get`](./get.md)
@@ -0,0 +1,34 @@
1
+ ---
2
+ title: "nb config get"
3
+ description: "nb config get command reference: get the effective value for a CLI configuration key."
4
+ keywords: "nb config get,NocoBase CLI,configuration"
5
+ ---
6
+
7
+ # nb config get
8
+
9
+ Get the effective value for a CLI configuration key. If no explicit value is set, the default value is returned.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb config get <key>
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `<key>` | string | Configuration key: `license.pkg-url`, `docker.network`, or `docker.container-prefix` |
22
+
23
+ ## Examples
24
+
25
+ ```bash
26
+ nb config get license.pkg-url
27
+ nb config get docker.network
28
+ nb config get docker.container-prefix
29
+ ```
30
+
31
+ ## Related Commands
32
+
33
+ - [`nb config set`](./set.md)
34
+ - [`nb config list`](./list.md)
@@ -0,0 +1,42 @@
1
+ ---
2
+ title: "nb config"
3
+ description: "nb config command reference: manage NocoBase CLI default configuration."
4
+ keywords: "nb config,NocoBase CLI,configuration,defaults"
5
+ ---
6
+
7
+ # nb config
8
+
9
+ Manage CLI configuration defaults. Supported keys:
10
+
11
+ - `license.pkg-url`
12
+ - `docker.network`
13
+ - `docker.container-prefix`
14
+
15
+ ## Usage
16
+
17
+ ```bash
18
+ nb config <command>
19
+ ```
20
+
21
+ ## Subcommands
22
+
23
+ | Command | Description |
24
+ | --- | --- |
25
+ | [`nb config get`](./get.md) | Get the effective value for a configuration key |
26
+ | [`nb config set`](./set.md) | Set a configuration value |
27
+ | [`nb config delete`](./delete.md) | Delete an explicitly configured value |
28
+ | [`nb config list`](./list.md) | List explicitly configured values |
29
+
30
+ ## Examples
31
+
32
+ ```bash
33
+ nb config list
34
+ nb config get docker.network
35
+ nb config set docker.network nocobase
36
+ nb config delete docker.container-prefix
37
+ ```
38
+
39
+ ## Related Commands
40
+
41
+ - [`nb init`](../init.md)
42
+ - [`nb license`](../license/index.md)
@@ -0,0 +1,30 @@
1
+ ---
2
+ title: "nb config list"
3
+ description: "nb config list command reference: list explicitly configured CLI settings."
4
+ keywords: "nb config list,NocoBase CLI,configuration"
5
+ ---
6
+
7
+ # nb config list
8
+
9
+ List explicitly configured CLI settings. Default values that were never set explicitly are not displayed.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb config list
15
+ ```
16
+
17
+ ## Examples
18
+
19
+ ```bash
20
+ nb config list
21
+ ```
22
+
23
+ ## Notes
24
+
25
+ If no configuration values are set, the CLI prints `No CLI config values are set.`.
26
+
27
+ ## Related Commands
28
+
29
+ - [`nb config get`](./get.md)
30
+ - [`nb config set`](./set.md)
@@ -0,0 +1,39 @@
1
+ ---
2
+ title: "nb config set"
3
+ description: "nb config set command reference: set a CLI configuration value."
4
+ keywords: "nb config set,NocoBase CLI,configuration"
5
+ ---
6
+
7
+ # nb config set
8
+
9
+ Set a CLI configuration value. Supported keys are `license.pkg-url`, `docker.network`, and `docker.container-prefix`.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb config set <key> <value>
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `<key>` | string | Configuration key: `license.pkg-url`, `docker.network`, or `docker.container-prefix` |
22
+ | `<value>` | string | Configuration value; must not be empty |
23
+
24
+ ## Examples
25
+
26
+ ```bash
27
+ nb config set license.pkg-url https://pkg.nocobase.com/
28
+ nb config set docker.network nocobase
29
+ nb config set docker.container-prefix nb
30
+ ```
31
+
32
+ ## Notes
33
+
34
+ When setting `license.pkg-url`, the CLI normalizes the URL so it ends with `/`.
35
+
36
+ ## Related Commands
37
+
38
+ - [`nb config get`](./get.md)
39
+ - [`nb config delete`](./delete.md)
@@ -0,0 +1,45 @@
1
+ ---
2
+ title: "nb db check"
3
+ description: "nb db check command reference: check whether a database is reachable with the current env or explicit database flags."
4
+ keywords: "nb db check,NocoBase CLI,database connection,connectivity"
5
+ ---
6
+
7
+ # nb db check
8
+
9
+ Check whether a database is reachable. You can reuse the saved database settings from an env or pass explicit `--db-*` flags.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb db check [flags]
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `--env`, `-e` | string | Read database settings from a CLI env; when omitted, all required `--db-*` flags must be provided |
22
+ | `--db-dialect` | string | Database dialect: `postgres`, `kingbase`, `mysql`, or `mariadb` |
23
+ | `--db-host` | string | Database host name or IP address |
24
+ | `--db-port` | string | Database TCP port |
25
+ | `--db-database` | string | Database name |
26
+ | `--db-user` | string | Database username |
27
+ | `--db-password` | string | Database password |
28
+ | `--json` | boolean | Output JSON |
29
+
30
+ ## Examples
31
+
32
+ ```bash
33
+ nb db check --env app1
34
+ nb db check --env app1 --db-password new-secret --json
35
+ nb db check --db-dialect postgres --db-host 127.0.0.1 --db-port 5432 --db-database nocobase --db-user nocobase --db-password secret
36
+ ```
37
+
38
+ ## Notes
39
+
40
+ If the selected env uses a CLI-managed built-in database, the CLI resolves the actual connection address before running the check.
41
+
42
+ ## Related Commands
43
+
44
+ - [`nb db ps`](./ps.md)
45
+ - [`nb env info`](../env/info.md)
@@ -18,6 +18,7 @@ nb db <command>
18
18
 
19
19
  | Command | Description |
20
20
  | --- | --- |
21
+ | [`nb db check`](./check.md) | Check whether a database connection is reachable. |
21
22
  | [`nb db ps`](./ps.md) | View built-in database runtime status |
22
23
  | [`nb db start`](./start.md) | Start the built-in database container |
23
24
  | [`nb db stop`](./stop.md) | Stop the built-in database container |
@@ -26,6 +27,8 @@ nb db <command>
26
27
  ## Examples
27
28
 
28
29
  ```bash
30
+ nb db check --env app1
31
+ nb db check --db-dialect postgres --db-host 127.0.0.1 --db-port 5432 --db-database nocobase --db-user nocobase --db-password secret
29
32
  nb db ps
30
33
  nb db ps --env app1
31
34
  nb db start --env app1
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  title: "NocoBase CLI"
3
- description: "NocoBase CLI (nb command) reference: initialization, environment management, app runtime, source, database, plugins, API, CLI self updates, and Skills management."
4
- keywords: "NocoBase CLI,nb,command line,command reference,environment management,plugin management,API"
3
+ description: "NocoBase CLI (nb command) reference: initialization, configuration, environment management, app runtime, source, database, plugins, commercial licensing, API, CLI self updates, and Skills management."
4
+ keywords: "NocoBase CLI,nb,command line,command reference,configuration,environment management,plugin management,commercial licensing,API"
5
5
  ---
6
6
 
7
7
  # NocoBase CLI
@@ -33,8 +33,10 @@ The root command mainly displays help and dispatches execution to command groups
33
33
  | --- | --- |
34
34
  | [`nb api`](./api/index.md) | Work with NocoBase API. |
35
35
  | [`nb app`](./app/index.md) | Manage NocoBase app runtimes: start, stop, restart, logs, and upgrades. |
36
+ | [`nb config`](./config/index.md) | Manage CLI configuration defaults. |
36
37
  | [`nb db`](./db/index.md) | Manage the built-in database for the selected env. |
37
38
  | [`nb env`](./env/index.md) | Manage NocoBase project environments, status, details, and command runtimes. |
39
+ | [`nb license`](./license/index.md) | Manage commercial licensing and licensed plugins. |
38
40
  | [`nb plugin`](./plugin/index.md) | Manage plugins in the selected NocoBase env. |
39
41
  | [`nb scaffold`](./scaffold/index.md) | Generate NocoBase plugin development scaffolds. |
40
42
  | [`nb self`](./self/index.md) | Inspect or update the NocoBase CLI itself. |
@@ -62,7 +64,9 @@ Show help for a command or command group:
62
64
  ```bash
63
65
  nb init --help
64
66
  nb app --help
67
+ nb config --help
65
68
  nb api resource --help
69
+ nb license --help
66
70
  ```
67
71
 
68
72
  ## Examples
@@ -104,6 +108,20 @@ Call an API:
104
108
  nb api resource list --resource users -e app1
105
109
  ```
106
110
 
111
+ View CLI default config:
112
+
113
+ ```bash
114
+ nb config list
115
+ nb config get docker.network
116
+ ```
117
+
118
+ View commercial license status:
119
+
120
+ ```bash
121
+ nb license status -e app1
122
+ nb license plugins list -e app1
123
+ ```
124
+
107
125
  ## Environment variables
108
126
 
109
127
  The following environment variables affect CLI behavior:
@@ -0,0 +1,48 @@
1
+ ---
2
+ title: "nb license activate"
3
+ description: "nb license activate command reference: activate NocoBase commercial licensing for a selected env."
4
+ keywords: "nb license activate,NocoBase CLI,commercial licensing"
5
+ ---
6
+
7
+ # nb license activate
8
+
9
+ Activate commercial licensing for a selected env. You can provide an existing license key directly, or request and activate a license online.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb license activate [flags]
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `--env`, `-e` | string | CLI env name; when omitted, the current env is used |
22
+ | `--key` | string | Existing license key to activate |
23
+ | `--key-file` | string | Read the license key from a file |
24
+ | `--online` | boolean | Request a license online and activate it |
25
+ | `--account` | string | License service account for online activation |
26
+ | `--password` | string | License service password for online activation |
27
+ | `--desc` | string | Application name submitted for online activation |
28
+ | `--yes` | boolean | Confirm that the submitted information is true and accurate |
29
+ | `--json` | boolean | Output JSON |
30
+
31
+ ## Examples
32
+
33
+ ```bash
34
+ nb license activate --env app1 --key <licenseKey>
35
+ nb license activate --env app1 --key-file ./license.txt
36
+ nb license activate --env app1 --online
37
+ nb license activate --env app1 --online --account aa --password bb --desc test24 --yes
38
+ nb license activate --env app1 --json --key-file ./license.txt
39
+ ```
40
+
41
+ ## Notes
42
+
43
+ When online activation is used, the CLI requests a license key from the license service with the current env's instance ID and app URL.
44
+
45
+ ## Related Commands
46
+
47
+ - [`nb license id`](./id.md)
48
+ - [`nb license status`](./status.md)
@@ -0,0 +1,37 @@
1
+ ---
2
+ title: "nb license id"
3
+ description: "nb license id command reference: show or regenerate the commercial license instance ID for a selected env."
4
+ keywords: "nb license id,NocoBase CLI,instance ID"
5
+ ---
6
+
7
+ # nb license id
8
+
9
+ Show the commercial license instance ID for the selected env. If no saved instance ID exists yet, the CLI generates and saves one automatically.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb license id [flags]
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `--env`, `-e` | string | CLI env name; when omitted, the current env is used |
22
+ | `--force` | boolean | Regenerate the instance ID even when one is already saved |
23
+ | `--json` | boolean | Output JSON |
24
+
25
+ ## Examples
26
+
27
+ ```bash
28
+ nb license id
29
+ nb license id --env app1
30
+ nb license id --env app1 --force
31
+ nb license id --env app1 --json
32
+ ```
33
+
34
+ ## Related Commands
35
+
36
+ - [`nb license activate`](./activate.md)
37
+ - [`nb license status`](./status.md)
@@ -0,0 +1,40 @@
1
+ ---
2
+ title: "nb license"
3
+ description: "nb license command reference: manage NocoBase commercial licensing and licensed plugins."
4
+ keywords: "nb license,NocoBase CLI,commercial licensing,license"
5
+ ---
6
+
7
+ # nb license
8
+
9
+ Manage NocoBase commercial licensing, including license activation, instance IDs, license status, and licensed plugins.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb license <command>
15
+ ```
16
+
17
+ ## Subcommands
18
+
19
+ | Command | Description |
20
+ | --- | --- |
21
+ | [`nb license activate`](./activate.md) | Activate commercial licensing for the current env |
22
+ | [`nb license id`](./id.md) | Show or generate the instance ID for the current env |
23
+ | [`nb license status`](./status.md) | Show commercial license status for the current env |
24
+ | [`nb license plugins`](./plugins/index.md) | Manage commercial plugins allowed by the current license |
25
+
26
+ ## Examples
27
+
28
+ ```bash
29
+ nb license id --env app1
30
+ nb license activate --env app1 --key-file ./license.txt
31
+ nb license status --env app1
32
+ nb license plugins list --env app1
33
+ nb license plugins sync --env app1
34
+ ```
35
+
36
+ ## Related Commands
37
+
38
+ - [`nb config`](../config/index.md)
39
+ - [`nb plugin`](../plugin/index.md)
40
+ - [`nb db check`](../db/check.md)
@@ -0,0 +1,39 @@
1
+ ---
2
+ title: "nb license plugins clean"
3
+ description: "nb license plugins clean command reference: remove downloaded commercial plugins for a selected env."
4
+ keywords: "nb license plugins clean,NocoBase CLI,commercial plugins"
5
+ ---
6
+
7
+ # nb license plugins clean
8
+
9
+ Remove downloaded commercial plugins for the selected env without changing license activation.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb license plugins clean [flags]
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `--env`, `-e` | string | CLI env name; when omitted, the current env is used |
22
+ | `--dry-run` | boolean | Preview which plugins would be removed without deleting anything |
23
+ | `--verbose`, `-V` | boolean | Show detailed per-plugin clean logs |
24
+ | `--json` | boolean | Output JSON |
25
+
26
+ ## Examples
27
+
28
+ ```bash
29
+ nb license plugins clean
30
+ nb license plugins clean --env app1
31
+ nb license plugins clean --env app1 --dry-run
32
+ nb license plugins clean --env app1 --verbose
33
+ nb license plugins clean --env app1 --json
34
+ ```
35
+
36
+ ## Related Commands
37
+
38
+ - [`nb license plugins sync`](./sync.md)
39
+ - [`nb plugin disable`](../../plugin/disable.md)
@@ -0,0 +1,36 @@
1
+ ---
2
+ title: "nb license plugins"
3
+ description: "nb license plugins command reference: inspect or synchronize commercial plugins allowed by the current license."
4
+ keywords: "nb license plugins,NocoBase CLI,commercial plugins,licensed plugins"
5
+ ---
6
+
7
+ # nb license plugins
8
+
9
+ Inspect or synchronize commercial plugins allowed by the current license.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb license plugins <command>
15
+ ```
16
+
17
+ ## Subcommands
18
+
19
+ | Command | Description |
20
+ | --- | --- |
21
+ | [`nb license plugins list`](./list.md) | Show commercial plugins associated with the current license |
22
+ | [`nb license plugins sync`](./sync.md) | Synchronize commercial plugins allowed by the current license |
23
+ | [`nb license plugins clean`](./clean.md) | Remove downloaded commercial plugins for the current env |
24
+
25
+ ## Examples
26
+
27
+ ```bash
28
+ nb license plugins list --env app1
29
+ nb license plugins sync --env app1 --dry-run
30
+ nb license plugins clean --env app1 --verbose
31
+ ```
32
+
33
+ ## Related Commands
34
+
35
+ - [`nb license activate`](../activate.md)
36
+ - [`nb plugin list`](../../plugin/list.md)
@@ -0,0 +1,35 @@
1
+ ---
2
+ title: "nb license plugins list"
3
+ description: "nb license plugins list command reference: show commercial plugins associated with the current license for a selected env."
4
+ keywords: "nb license plugins list,NocoBase CLI,commercial plugins"
5
+ ---
6
+
7
+ # nb license plugins list
8
+
9
+ Show commercial plugins associated with the saved license key for the selected env.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb license plugins list [flags]
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `--env`, `-e` | string | CLI env name; when omitted, the current env is used |
22
+ | `--json` | boolean | Output JSON |
23
+
24
+ ## Examples
25
+
26
+ ```bash
27
+ nb license plugins list
28
+ nb license plugins list --env app1
29
+ nb license plugins list --env app1 --json
30
+ ```
31
+
32
+ ## Related Commands
33
+
34
+ - [`nb license plugins sync`](./sync.md)
35
+ - [`nb license activate`](../activate.md)
@@ -0,0 +1,43 @@
1
+ ---
2
+ title: "nb license plugins sync"
3
+ description: "nb license plugins sync command reference: synchronize commercial plugins allowed by the current license for a selected env."
4
+ keywords: "nb license plugins sync,NocoBase CLI,commercial plugins"
5
+ ---
6
+
7
+ # nb license plugins sync
8
+
9
+ Synchronize commercial plugins allowed by the current license.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb license plugins sync [flags]
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `--env`, `-e` | string | CLI env name; when omitted, the current env is used |
22
+ | `--dry-run` | boolean | Preview changes without installing, upgrading, or removing plugins |
23
+ | `--version` | string | Registry version or dist-tag to synchronize; defaults to the current workspace version |
24
+ | `--verbose`, `-V` | boolean | Show detailed per-plugin sync logs |
25
+ | `--json` | boolean | Output JSON |
26
+
27
+ ## Examples
28
+
29
+ ```bash
30
+ nb license plugins sync
31
+ nb license plugins sync --env app1
32
+ nb license plugins sync --env app1 --dry-run
33
+ nb license plugins sync --env app1 --json
34
+ ```
35
+
36
+ ## Notes
37
+
38
+ When `--version` is omitted, the CLI detects the current app version automatically and uses that to decide which registry version of commercial plugins should be downloaded.
39
+
40
+ ## Related Commands
41
+
42
+ - [`nb license plugins list`](./list.md)
43
+ - [`nb license plugins clean`](./clean.md)
@@ -0,0 +1,41 @@
1
+ ---
2
+ title: "nb license status"
3
+ description: "nb license status command reference: show commercial license status for a selected env."
4
+ keywords: "nb license status,NocoBase CLI,license status"
5
+ ---
6
+
7
+ # nb license status
8
+
9
+ Show commercial license status for the selected env.
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ nb license status [flags]
15
+ ```
16
+
17
+ ## Parameters
18
+
19
+ | Parameter | Type | Description |
20
+ | --- | --- | --- |
21
+ | `--env`, `-e` | string | CLI env name; when omitted, the current env is used |
22
+ | `--doctor` | boolean | Run extra diagnostic checks and suggestions |
23
+ | `--json` | boolean | Output JSON |
24
+
25
+ ## Examples
26
+
27
+ ```bash
28
+ nb license status
29
+ nb license status --env app1
30
+ nb license status --env app1 --doctor
31
+ nb license status --env app1 --json
32
+ ```
33
+
34
+ ## Notes
35
+
36
+ The new CLI does not fully implement backend license status checks yet. The command can still return basic context and diagnostic placeholders, but not a complete license verdict.
37
+
38
+ ## Related Commands
39
+
40
+ - [`nb license activate`](./activate.md)
41
+ - [`nb license id`](./id.md)
@@ -8,26 +8,26 @@
8
8
  */
9
9
 
10
10
  module.exports = {
11
- "@nocobase/plugin-acl": "2.1.0-alpha.27",
12
- "@nocobase/plugin-workflow": "2.1.0-alpha.27",
13
- "@nocobase/client": "2.1.0-alpha.27",
14
- "@nocobase/utils": "2.1.0-alpha.27",
15
- "@nocobase/database": "2.1.0-alpha.27",
16
- "@nocobase/server": "2.1.0-alpha.27",
17
- "@nocobase/plugin-file-manager": "2.1.0-alpha.27",
18
- "@nocobase/actions": "2.1.0-alpha.27",
19
- "@nocobase/ai": "2.1.0-alpha.27",
11
+ "@nocobase/plugin-acl": "2.1.0-alpha.29",
12
+ "@nocobase/plugin-workflow": "2.1.0-alpha.29",
13
+ "@nocobase/client": "2.1.0-alpha.29",
14
+ "@nocobase/utils": "2.1.0-alpha.29",
15
+ "@nocobase/database": "2.1.0-alpha.29",
16
+ "@nocobase/server": "2.1.0-alpha.29",
17
+ "@nocobase/plugin-file-manager": "2.1.0-alpha.29",
18
+ "@nocobase/actions": "2.1.0-alpha.29",
19
+ "@nocobase/ai": "2.1.0-alpha.29",
20
20
  "langchain": "1.2.24",
21
21
  "react": "18.2.0",
22
22
  "antd": "5.24.2",
23
23
  "@formily/core": "2.3.7",
24
24
  "@formily/react": "2.3.7",
25
- "@nocobase/flow-engine": "2.1.0-alpha.27",
25
+ "@nocobase/flow-engine": "2.1.0-alpha.29",
26
26
  "@ant-design/icons": "5.6.1",
27
27
  "@formily/antd-v5": "1.2.3",
28
28
  "react-router-dom": "6.30.1",
29
29
  "@formily/shared": "2.3.7",
30
- "@nocobase/client-v2": "2.1.0-alpha.27",
30
+ "@nocobase/client-v2": "2.1.0-alpha.29",
31
31
  "@formily/reactive": "2.3.7",
32
32
  "lodash": "4.18.1",
33
33
  "@langchain/core": "1.1.24",
@@ -38,14 +38,14 @@ module.exports = {
38
38
  "@langchain/deepseek": "1.0.11",
39
39
  "@langchain/google-genai": "2.1.18",
40
40
  "@langchain/ollama": "1.2.2",
41
- "@nocobase/acl": "2.1.0-alpha.27",
42
- "@nocobase/resourcer": "2.1.0-alpha.27",
41
+ "@nocobase/acl": "2.1.0-alpha.29",
42
+ "@nocobase/resourcer": "2.1.0-alpha.29",
43
43
  "@emotion/css": "11.13.0",
44
44
  "dayjs": "1.11.13",
45
45
  "react-i18next": "11.18.6",
46
- "@nocobase/plugin-data-source-manager": "2.1.0-alpha.27",
46
+ "@nocobase/plugin-data-source-manager": "2.1.0-alpha.29",
47
47
  "ahooks": "3.7.8",
48
48
  "@langchain/langgraph-checkpoint": "1.0.0",
49
- "@nocobase/data-source-manager": "2.1.0-alpha.27",
49
+ "@nocobase/data-source-manager": "2.1.0-alpha.29",
50
50
  "react-dom": "18.2.0"
51
51
  };
@@ -1 +1 @@
1
- {"name":"fs-extra","version":"9.1.0","description":"fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.","engines":{"node":">=10"},"homepage":"https://github.com/jprichardson/node-fs-extra","repository":{"type":"git","url":"https://github.com/jprichardson/node-fs-extra"},"keywords":["fs","file","file system","copy","directory","extra","mkdirp","mkdir","mkdirs","recursive","json","read","write","extra","delete","remove","touch","create","text","output","move","promise"],"author":"JP Richardson <jprichardson@gmail.com>","license":"MIT","dependencies":{"at-least-node":"^1.0.0","graceful-fs":"^4.2.0","jsonfile":"^6.0.1","universalify":"^2.0.0"},"devDependencies":{"coveralls":"^3.0.0","klaw":"^2.1.1","klaw-sync":"^3.0.2","minimist":"^1.1.1","mocha":"^5.0.5","nyc":"^15.0.0","proxyquire":"^2.0.1","read-dir-files":"^0.1.1","standard":"^14.1.0"},"main":"./lib/index.js","files":["lib/","!lib/**/__tests__/"],"scripts":{"full-ci":"npm run lint && npm run coverage","coverage":"nyc -r lcovonly npm run unit","coveralls":"coveralls < coverage/lcov.info","lint":"standard","test-find":"find ./lib/**/__tests__ -name *.test.js | xargs mocha","test":"npm run lint && npm run unit","unit":"node test.js"},"_lastModified":"2026-05-03T08:47:34.442Z"}
1
+ {"name":"fs-extra","version":"9.1.0","description":"fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.","engines":{"node":">=10"},"homepage":"https://github.com/jprichardson/node-fs-extra","repository":{"type":"git","url":"https://github.com/jprichardson/node-fs-extra"},"keywords":["fs","file","file system","copy","directory","extra","mkdirp","mkdir","mkdirs","recursive","json","read","write","extra","delete","remove","touch","create","text","output","move","promise"],"author":"JP Richardson <jprichardson@gmail.com>","license":"MIT","dependencies":{"at-least-node":"^1.0.0","graceful-fs":"^4.2.0","jsonfile":"^6.0.1","universalify":"^2.0.0"},"devDependencies":{"coveralls":"^3.0.0","klaw":"^2.1.1","klaw-sync":"^3.0.2","minimist":"^1.1.1","mocha":"^5.0.5","nyc":"^15.0.0","proxyquire":"^2.0.1","read-dir-files":"^0.1.1","standard":"^14.1.0"},"main":"./lib/index.js","files":["lib/","!lib/**/__tests__/"],"scripts":{"full-ci":"npm run lint && npm run coverage","coverage":"nyc -r lcovonly npm run unit","coveralls":"coveralls < coverage/lcov.info","lint":"standard","test-find":"find ./lib/**/__tests__ -name *.test.js | xargs mocha","test":"npm run lint && npm run unit","unit":"node test.js"},"_lastModified":"2026-05-04T14:28:18.683Z"}
@@ -1 +1 @@
1
- {"name":"jsonrepair","version":"3.13.1","description":"Repair broken JSON documents","repository":{"type":"git","url":"https://github.com/josdejong/jsonrepair.git"},"type":"module","main":"lib/cjs/index.js","module":"lib/esm/index.js","browser":"lib/umd/jsonrepair.min.js","types":"lib/types/index.d.ts","sideEffects":false,"exports":{".":{"import":"./lib/esm/index.js","require":"./lib/cjs/index.js","types":"./lib/types/index.d.ts"},"./stream":{"import":"./lib/esm/stream.js","require":"./lib/cjs/stream.js","types":"./lib/types/stream.d.ts"}},"keywords":["simple","json","repair","fix","invalid","stream","streaming"],"bin":{"jsonrepair":"./bin/cli.js"},"scripts":{"test":"vitest watch src","test:it":"vitest run src","build":"npm-run-all build:**","build:clean":"del-cli lib","build:esm":"babel src --out-dir lib/esm --extensions \".ts\" --source-maps --config-file ./babel.config.json","build:cjs":"babel src --out-dir lib/cjs --extensions \".ts\" --source-maps --config-file ./babel-cjs.config.json && cpy tools/cjs lib/cjs --flat","build:umd":"rollup lib/esm/index.js --format umd --name JSONRepair --sourcemap --output.file lib/umd/jsonrepair.js && cpy tools/cjs/package.json lib/umd --flat","build:umd:min":"uglifyjs --compress --mangle --source-map --comments --output lib/umd/jsonrepair.min.js -- lib/umd/jsonrepair.js","build:types":"tsc --project tsconfig-types.json","build:validate":"vitest run test-lib","lint":"biome check","format":"biome check --write","benchmark":"npm run build:esm && node tools/benchmark/run.mjs","build-and-test":"npm run lint && npm run test:it && npm run build","release":"npm-run-all release:**","release:build-and-test":"npm run build-and-test","release:version":"standard-version","release:push":"git push && git push --tag","release:publish":"npm publish","release-dry-run":"npm run build-and-test && standard-version --dry-run","prepare":"husky"},"files":["README.md","LICENSE.md","lib"],"author":"Jos de Jong","license":"ISC","devDependencies":{"@babel/cli":"7.28.3","@babel/core":"7.28.4","@babel/plugin-transform-typescript":"7.28.0","@babel/preset-env":"7.28.3","@babel/preset-typescript":"7.27.1","@biomejs/biome":"2.2.4","@commitlint/cli":"19.8.1","@commitlint/config-conventional":"19.8.1","@types/node":"24.5.2","cpy-cli":"6.0.0","del-cli":"7.0.0","husky":"9.1.7","npm-run-all":"4.1.5","rollup":"4.51.0","standard-version":"9.5.0","tinybench":"5.0.1","ts-node":"10.9.2","typescript":"5.9.2","uglify-js":"3.19.3","vitest":"3.2.4"},"_lastModified":"2026-05-03T08:47:40.331Z"}
1
+ {"name":"jsonrepair","version":"3.13.1","description":"Repair broken JSON documents","repository":{"type":"git","url":"https://github.com/josdejong/jsonrepair.git"},"type":"module","main":"lib/cjs/index.js","module":"lib/esm/index.js","browser":"lib/umd/jsonrepair.min.js","types":"lib/types/index.d.ts","sideEffects":false,"exports":{".":{"import":"./lib/esm/index.js","require":"./lib/cjs/index.js","types":"./lib/types/index.d.ts"},"./stream":{"import":"./lib/esm/stream.js","require":"./lib/cjs/stream.js","types":"./lib/types/stream.d.ts"}},"keywords":["simple","json","repair","fix","invalid","stream","streaming"],"bin":{"jsonrepair":"./bin/cli.js"},"scripts":{"test":"vitest watch src","test:it":"vitest run src","build":"npm-run-all build:**","build:clean":"del-cli lib","build:esm":"babel src --out-dir lib/esm --extensions \".ts\" --source-maps --config-file ./babel.config.json","build:cjs":"babel src --out-dir lib/cjs --extensions \".ts\" --source-maps --config-file ./babel-cjs.config.json && cpy tools/cjs lib/cjs --flat","build:umd":"rollup lib/esm/index.js --format umd --name JSONRepair --sourcemap --output.file lib/umd/jsonrepair.js && cpy tools/cjs/package.json lib/umd --flat","build:umd:min":"uglifyjs --compress --mangle --source-map --comments --output lib/umd/jsonrepair.min.js -- lib/umd/jsonrepair.js","build:types":"tsc --project tsconfig-types.json","build:validate":"vitest run test-lib","lint":"biome check","format":"biome check --write","benchmark":"npm run build:esm && node tools/benchmark/run.mjs","build-and-test":"npm run lint && npm run test:it && npm run build","release":"npm-run-all release:**","release:build-and-test":"npm run build-and-test","release:version":"standard-version","release:push":"git push && git push --tag","release:publish":"npm publish","release-dry-run":"npm run build-and-test && standard-version --dry-run","prepare":"husky"},"files":["README.md","LICENSE.md","lib"],"author":"Jos de Jong","license":"ISC","devDependencies":{"@babel/cli":"7.28.3","@babel/core":"7.28.4","@babel/plugin-transform-typescript":"7.28.0","@babel/preset-env":"7.28.3","@babel/preset-typescript":"7.27.1","@biomejs/biome":"2.2.4","@commitlint/cli":"19.8.1","@commitlint/config-conventional":"19.8.1","@types/node":"24.5.2","cpy-cli":"6.0.0","del-cli":"7.0.0","husky":"9.1.7","npm-run-all":"4.1.5","rollup":"4.51.0","standard-version":"9.5.0","tinybench":"5.0.1","ts-node":"10.9.2","typescript":"5.9.2","uglify-js":"3.19.3","vitest":"3.2.4"},"_lastModified":"2026-05-04T14:28:24.535Z"}
@@ -1 +1 @@
1
- {"name":"just-bash","version":"2.14.3","description":"A simulated bash environment with virtual filesystem","repository":{"type":"git","url":"git+https://github.com/vercel-labs/just-bash.git"},"homepage":"https://github.com/vercel-labs/just-bash#readme","bugs":{"url":"https://github.com/vercel-labs/just-bash/issues"},"type":"module","main":"dist/bundle/index.js","types":"dist/index.d.ts","exports":{".":{"browser":"./dist/bundle/browser.js","require":{"types":"./dist/index.d.cts","default":"./dist/bundle/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/bundle/index.js"}},"./browser":{"types":"./dist/browser.d.ts","import":"./dist/bundle/browser.js"}},"files":["dist/bundle/","dist/bin/","dist/*.d.ts","dist/*.d.cts","dist/ast/*.d.ts","dist/commands/**/*.d.ts","dist/fs/**/*.d.ts","dist/interpreter/**/*.d.ts","dist/network/**/*.d.ts","dist/parser/*.d.ts","dist/sandbox/*.d.ts","dist/utils/*.d.ts","vendor/cpython-emscripten/","README.md","CHANGELOG.md","dist/AGENTS.md"],"bin":{"just-bash":"./dist/bin/just-bash.js","just-bash-shell":"./dist/bin/shell/shell.js"},"publishConfig":{"access":"public"},"keywords":[],"author":"Malte and Claude","license":"Apache-2.0","devDependencies":{"@types/ini":"^4.1.1","@types/node":"^25.0.3","@types/papaparse":"^5.5.2","@types/sprintf-js":"^1.1.4","@types/sql.js":"^1.4.9","@types/turndown":"^5.0.6","@vitest/coverage-v8":"^4.0.18","esbuild":"^0.27.2","fast-check":"^3.23.2","knip":"^5.41.1","typescript":"^5.9.3","vitest":"^4.0.16"},"dependencies":{"seek-bzip":"^2.0.0","diff":"^8.0.2","fast-xml-parser":"5.3.3","file-type":"^21.2.0","ini":"^6.0.0","minimatch":"^10.1.1","modern-tar":"^0.7.3","papaparse":"^5.5.3","quickjs-emscripten":"^0.32.0","re2js":"^1.2.1","smol-toml":"^1.6.0","sprintf-js":"^1.1.3","sql.js":"^1.13.0","turndown":"^7.2.2","yaml":"^2.8.2"},"optionalDependencies":{"@mongodb-js/zstd":"^7.0.0","node-liblzma":"^2.0.3"},"scripts":{"build":"rm -rf dist && tsc && pnpm build:lib && pnpm build:lib:cjs && pnpm build:browser && pnpm build:cli && pnpm build:shell && pnpm build:worker && pnpm build:clean && cp dist/index.d.ts dist/index.d.cts && sed '1,/^-->/d' AGENTS.npm.md > dist/AGENTS.md","build:clean":"find dist -name '*.test.js' -delete && find dist -name '*.test.d.ts' -delete","build:worker":"esbuild src/commands/python3/worker.ts --bundle --platform=node --format=esm --outfile=src/commands/python3/worker.js --external:../../../vendor/cpython-emscripten/* && cp src/commands/python3/worker.js dist/commands/python3/worker.js && mkdir -p dist/bin/chunks && cp src/commands/python3/worker.js dist/bin/chunks/worker.js && mkdir -p dist/bundle/chunks && cp src/commands/python3/worker.js dist/bundle/chunks/worker.js && esbuild src/commands/js-exec/js-exec-worker.ts --bundle --platform=node --format=esm --outfile=src/commands/js-exec/js-exec-worker.js --external:quickjs-emscripten && cp src/commands/js-exec/js-exec-worker.js dist/commands/js-exec/js-exec-worker.js && cp src/commands/js-exec/js-exec-worker.js dist/bin/chunks/js-exec-worker.js && cp src/commands/js-exec/js-exec-worker.js dist/bundle/chunks/js-exec-worker.js","build:lib":"esbuild dist/index.js --bundle --splitting --platform=node --format=esm --minify --outdir=dist/bundle --chunk-names=chunks/[name]-[hash] --external:diff --external:minimatch --external:sprintf-js --external:turndown --external:sql.js --external:quickjs-emscripten --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip","build:lib:cjs":"esbuild dist/index.js --bundle --platform=node --format=cjs --minify --outfile=dist/bundle/index.cjs --external:diff --external:minimatch --external:sprintf-js --external:turndown --external:sql.js --external:quickjs-emscripten --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip","build:browser":"esbuild dist/browser.js --bundle --platform=browser --format=esm --minify --outfile=dist/bundle/browser.js --external:diff --external:minimatch --external:sprintf-js --external:turndown --external:node:zlib --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip --define:__BROWSER__=true --alias:node:dns=./src/shims/browser-unsupported.js","build:cli":"esbuild dist/cli/just-bash.js --bundle --splitting --platform=node --format=esm --minify --outdir=dist/bin --entry-names=[name] --chunk-names=chunks/[name]-[hash] --banner:js='#!/usr/bin/env node' --external:sql.js --external:quickjs-emscripten --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip","build:shell":"esbuild dist/cli/shell.js --bundle --splitting --platform=node --format=esm --minify --outdir=dist/bin/shell --entry-names=[name] --chunk-names=chunks/[name]-[hash] --banner:js='#!/usr/bin/env node' --external:sql.js --external:quickjs-emscripten --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip","validate":"pnpm lint && pnpm knip && pnpm typecheck && pnpm build && pnpm check:worker-sync && pnpm test:run && pnpm test:wasm && pnpm test:dist","typecheck":"tsc --noEmit","lint":"pnpm lint:banned","check:worker-sync":"node scripts/check-worker-sync.js","lint:banned":"node scripts/check-banned-patterns.js","lint:fix":"pnpm --workspace-root lint:fix","knip":"knip","test":"vitest","test:run":"vitest run --exclude src/security/fuzzing/ --exclude src/commands/python3/ --exclude src/commands/sqlite3/ --exclude src/commands/js-exec/ --exclude src/agent-examples/python-scripting.test.ts","test:dist":"vitest run src/cli/just-bash.bundle.test.ts","test:unit":"vitest run --config vitest.unit.config.ts","test:wasm":"vitest run --config vitest.wasm.config.ts","test:comparison":"vitest run --config vitest.comparison.config.ts","test:comparison:record":"RECORD_FIXTURES=1 vitest run --config vitest.comparison.config.ts","test:coverage":"vitest run --coverage","test:coverage:unit":"vitest run --config vitest.unit.config.ts --coverage","test:fuzz":"vitest run src/security/fuzzing/","test:fuzz:long":"FUZZ_RUNS=10000 vitest run src/security/fuzzing/","shell":"npx tsx src/cli/shell.ts","dev:exec":"npx tsx src/cli/exec.ts"},"_lastModified":"2026-05-03T08:47:40.161Z"}
1
+ {"name":"just-bash","version":"2.14.3","description":"A simulated bash environment with virtual filesystem","repository":{"type":"git","url":"git+https://github.com/vercel-labs/just-bash.git"},"homepage":"https://github.com/vercel-labs/just-bash#readme","bugs":{"url":"https://github.com/vercel-labs/just-bash/issues"},"type":"module","main":"dist/bundle/index.js","types":"dist/index.d.ts","exports":{".":{"browser":"./dist/bundle/browser.js","require":{"types":"./dist/index.d.cts","default":"./dist/bundle/index.cjs"},"import":{"types":"./dist/index.d.ts","default":"./dist/bundle/index.js"}},"./browser":{"types":"./dist/browser.d.ts","import":"./dist/bundle/browser.js"}},"files":["dist/bundle/","dist/bin/","dist/*.d.ts","dist/*.d.cts","dist/ast/*.d.ts","dist/commands/**/*.d.ts","dist/fs/**/*.d.ts","dist/interpreter/**/*.d.ts","dist/network/**/*.d.ts","dist/parser/*.d.ts","dist/sandbox/*.d.ts","dist/utils/*.d.ts","vendor/cpython-emscripten/","README.md","CHANGELOG.md","dist/AGENTS.md"],"bin":{"just-bash":"./dist/bin/just-bash.js","just-bash-shell":"./dist/bin/shell/shell.js"},"publishConfig":{"access":"public"},"keywords":[],"author":"Malte and Claude","license":"Apache-2.0","devDependencies":{"@types/ini":"^4.1.1","@types/node":"^25.0.3","@types/papaparse":"^5.5.2","@types/sprintf-js":"^1.1.4","@types/sql.js":"^1.4.9","@types/turndown":"^5.0.6","@vitest/coverage-v8":"^4.0.18","esbuild":"^0.27.2","fast-check":"^3.23.2","knip":"^5.41.1","typescript":"^5.9.3","vitest":"^4.0.16"},"dependencies":{"seek-bzip":"^2.0.0","diff":"^8.0.2","fast-xml-parser":"5.3.3","file-type":"^21.2.0","ini":"^6.0.0","minimatch":"^10.1.1","modern-tar":"^0.7.3","papaparse":"^5.5.3","quickjs-emscripten":"^0.32.0","re2js":"^1.2.1","smol-toml":"^1.6.0","sprintf-js":"^1.1.3","sql.js":"^1.13.0","turndown":"^7.2.2","yaml":"^2.8.2"},"optionalDependencies":{"@mongodb-js/zstd":"^7.0.0","node-liblzma":"^2.0.3"},"scripts":{"build":"rm -rf dist && tsc && pnpm build:lib && pnpm build:lib:cjs && pnpm build:browser && pnpm build:cli && pnpm build:shell && pnpm build:worker && pnpm build:clean && cp dist/index.d.ts dist/index.d.cts && sed '1,/^-->/d' AGENTS.npm.md > dist/AGENTS.md","build:clean":"find dist -name '*.test.js' -delete && find dist -name '*.test.d.ts' -delete","build:worker":"esbuild src/commands/python3/worker.ts --bundle --platform=node --format=esm --outfile=src/commands/python3/worker.js --external:../../../vendor/cpython-emscripten/* && cp src/commands/python3/worker.js dist/commands/python3/worker.js && mkdir -p dist/bin/chunks && cp src/commands/python3/worker.js dist/bin/chunks/worker.js && mkdir -p dist/bundle/chunks && cp src/commands/python3/worker.js dist/bundle/chunks/worker.js && esbuild src/commands/js-exec/js-exec-worker.ts --bundle --platform=node --format=esm --outfile=src/commands/js-exec/js-exec-worker.js --external:quickjs-emscripten && cp src/commands/js-exec/js-exec-worker.js dist/commands/js-exec/js-exec-worker.js && cp src/commands/js-exec/js-exec-worker.js dist/bin/chunks/js-exec-worker.js && cp src/commands/js-exec/js-exec-worker.js dist/bundle/chunks/js-exec-worker.js","build:lib":"esbuild dist/index.js --bundle --splitting --platform=node --format=esm --minify --outdir=dist/bundle --chunk-names=chunks/[name]-[hash] --external:diff --external:minimatch --external:sprintf-js --external:turndown --external:sql.js --external:quickjs-emscripten --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip","build:lib:cjs":"esbuild dist/index.js --bundle --platform=node --format=cjs --minify --outfile=dist/bundle/index.cjs --external:diff --external:minimatch --external:sprintf-js --external:turndown --external:sql.js --external:quickjs-emscripten --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip","build:browser":"esbuild dist/browser.js --bundle --platform=browser --format=esm --minify --outfile=dist/bundle/browser.js --external:diff --external:minimatch --external:sprintf-js --external:turndown --external:node:zlib --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip --define:__BROWSER__=true --alias:node:dns=./src/shims/browser-unsupported.js","build:cli":"esbuild dist/cli/just-bash.js --bundle --splitting --platform=node --format=esm --minify --outdir=dist/bin --entry-names=[name] --chunk-names=chunks/[name]-[hash] --banner:js='#!/usr/bin/env node' --external:sql.js --external:quickjs-emscripten --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip","build:shell":"esbuild dist/cli/shell.js --bundle --splitting --platform=node --format=esm --minify --outdir=dist/bin/shell --entry-names=[name] --chunk-names=chunks/[name]-[hash] --banner:js='#!/usr/bin/env node' --external:sql.js --external:quickjs-emscripten --external:@mongodb-js/zstd --external:node-liblzma --external:seek-bzip","validate":"pnpm lint && pnpm knip && pnpm typecheck && pnpm build && pnpm check:worker-sync && pnpm test:run && pnpm test:wasm && pnpm test:dist","typecheck":"tsc --noEmit","lint":"pnpm lint:banned","check:worker-sync":"node scripts/check-worker-sync.js","lint:banned":"node scripts/check-banned-patterns.js","lint:fix":"pnpm --workspace-root lint:fix","knip":"knip","test":"vitest","test:run":"vitest run --exclude src/security/fuzzing/ --exclude src/commands/python3/ --exclude src/commands/sqlite3/ --exclude src/commands/js-exec/ --exclude src/agent-examples/python-scripting.test.ts","test:dist":"vitest run src/cli/just-bash.bundle.test.ts","test:unit":"vitest run --config vitest.unit.config.ts","test:wasm":"vitest run --config vitest.wasm.config.ts","test:comparison":"vitest run --config vitest.comparison.config.ts","test:comparison:record":"RECORD_FIXTURES=1 vitest run --config vitest.comparison.config.ts","test:coverage":"vitest run --coverage","test:coverage:unit":"vitest run --config vitest.unit.config.ts --coverage","test:fuzz":"vitest run src/security/fuzzing/","test:fuzz:long":"FUZZ_RUNS=10000 vitest run src/security/fuzzing/","shell":"npx tsx src/cli/shell.ts","dev:exec":"npx tsx src/cli/exec.ts"},"_lastModified":"2026-05-04T14:28:24.372Z"}
@@ -1 +1 @@
1
- {"name":"nodejs-snowflake","collaborators":["Utkarsh Srivastava <utkarsh@sagacious.dev>"],"description":"Generate time sortable 64 bits unique ids for distributed systems (inspired from twitter snowflake)","version":"2.0.1","license":"Apache 2.0","repository":{"type":"git","url":"https://github.com/utkarsh-pro/nodejs-snowflake.git"},"files":["nodejs_snowflake_bg.wasm","nodejs_snowflake.js","nodejs_snowflake.d.ts"],"main":"nodejs_snowflake.js","types":"nodejs_snowflake.d.ts","_lastModified":"2026-05-03T08:47:31.331Z"}
1
+ {"name":"nodejs-snowflake","collaborators":["Utkarsh Srivastava <utkarsh@sagacious.dev>"],"description":"Generate time sortable 64 bits unique ids for distributed systems (inspired from twitter snowflake)","version":"2.0.1","license":"Apache 2.0","repository":{"type":"git","url":"https://github.com/utkarsh-pro/nodejs-snowflake.git"},"files":["nodejs_snowflake_bg.wasm","nodejs_snowflake.js","nodejs_snowflake.d.ts"],"main":"nodejs_snowflake.js","types":"nodejs_snowflake.d.ts","_lastModified":"2026-05-04T14:28:16.025Z"}
@@ -1 +1 @@
1
- {"name":"openai","version":"6.22.0","description":"The official TypeScript library for the OpenAI API","author":"OpenAI <support@openai.com>","types":"./index.d.ts","main":"./index.js","type":"commonjs","repository":"github:openai/openai-node","license":"Apache-2.0","packageManager":"yarn@1.22.22","files":["**/*"],"private":false,"publishConfig":{"access":"public"},"scripts":{"test":"./scripts/test","build":"./scripts/build","format":"./scripts/format","tsn":"ts-node -r tsconfig-paths/register","lint":"./scripts/lint","fix":"./scripts/format"},"dependencies":{},"bin":{"openai":"bin/cli"},"exports":{".":{"require":{"types":"./index.d.ts","default":"./index.js"},"types":"./index.d.mts","default":"./index.mjs"},"./_vendor/*.mjs":{"default":"./_vendor/*.mjs"},"./_vendor/*.js":{"default":"./_vendor/*.js"},"./_vendor/*":{"import":"./_vendor/*.mjs","require":"./_vendor/*.js"},"./api-promise":{"import":"./api-promise.mjs","require":"./api-promise.js"},"./api-promise.js":{"default":"./api-promise.js"},"./api-promise.mjs":{"default":"./api-promise.mjs"},"./azure":{"import":"./azure.mjs","require":"./azure.js"},"./azure.js":{"default":"./azure.js"},"./azure.mjs":{"default":"./azure.mjs"},"./beta/*.mjs":{"default":"./beta/*.mjs"},"./beta/*.js":{"default":"./beta/*.js"},"./beta/*":{"import":"./beta/*.mjs","require":"./beta/*.js"},"./client":{"import":"./client.mjs","require":"./client.js"},"./client.js":{"default":"./client.js"},"./client.mjs":{"default":"./client.mjs"},"./core/*.mjs":{"default":"./core/*.mjs"},"./core/*.js":{"default":"./core/*.js"},"./core/*":{"import":"./core/*.mjs","require":"./core/*.js"},"./error":{"import":"./error.mjs","require":"./error.js"},"./error.js":{"default":"./error.js"},"./error.mjs":{"default":"./error.mjs"},"./helpers/*.mjs":{"default":"./helpers/*.mjs"},"./helpers/*.js":{"default":"./helpers/*.js"},"./helpers/*":{"import":"./helpers/*.mjs","require":"./helpers/*.js"},"./index":{"import":"./index.mjs","require":"./index.js"},"./index.js":{"default":"./index.js"},"./index.mjs":{"default":"./index.mjs"},"./lib/*.mjs":{"default":"./lib/*.mjs"},"./lib/*.js":{"default":"./lib/*.js"},"./lib/*":{"import":"./lib/*.mjs","require":"./lib/*.js"},"./pagination":{"import":"./pagination.mjs","require":"./pagination.js"},"./pagination.js":{"default":"./pagination.js"},"./pagination.mjs":{"default":"./pagination.mjs"},"./realtime/*.mjs":{"default":"./realtime/*.mjs"},"./realtime/*.js":{"default":"./realtime/*.js"},"./realtime/*":{"import":"./realtime/*.mjs","require":"./realtime/*.js"},"./resource":{"import":"./resource.mjs","require":"./resource.js"},"./resource.js":{"default":"./resource.js"},"./resource.mjs":{"default":"./resource.mjs"},"./resources/*.mjs":{"default":"./resources/*.mjs"},"./resources/*.js":{"default":"./resources/*.js"},"./resources/*":{"import":"./resources/*.mjs","require":"./resources/*.js"},"./resources":{"import":"./resources.mjs","require":"./resources.js"},"./resources.js":{"default":"./resources.js"},"./resources.mjs":{"default":"./resources.mjs"},"./streaming":{"import":"./streaming.mjs","require":"./streaming.js"},"./streaming.js":{"default":"./streaming.js"},"./streaming.mjs":{"default":"./streaming.mjs"},"./uploads":{"import":"./uploads.mjs","require":"./uploads.js"},"./uploads.js":{"default":"./uploads.js"},"./uploads.mjs":{"default":"./uploads.mjs"},"./version":{"import":"./version.mjs","require":"./version.js"},"./version.js":{"default":"./version.js"},"./version.mjs":{"default":"./version.mjs"}},"peerDependencies":{"ws":"^8.18.0","zod":"^3.25 || ^4.0"},"peerDependenciesMeta":{"ws":{"optional":true},"zod":{"optional":true}},"_lastModified":"2026-05-03T08:47:34.243Z"}
1
+ {"name":"openai","version":"6.22.0","description":"The official TypeScript library for the OpenAI API","author":"OpenAI <support@openai.com>","types":"./index.d.ts","main":"./index.js","type":"commonjs","repository":"github:openai/openai-node","license":"Apache-2.0","packageManager":"yarn@1.22.22","files":["**/*"],"private":false,"publishConfig":{"access":"public"},"scripts":{"test":"./scripts/test","build":"./scripts/build","format":"./scripts/format","tsn":"ts-node -r tsconfig-paths/register","lint":"./scripts/lint","fix":"./scripts/format"},"dependencies":{},"bin":{"openai":"bin/cli"},"exports":{".":{"require":{"types":"./index.d.ts","default":"./index.js"},"types":"./index.d.mts","default":"./index.mjs"},"./_vendor/*.mjs":{"default":"./_vendor/*.mjs"},"./_vendor/*.js":{"default":"./_vendor/*.js"},"./_vendor/*":{"import":"./_vendor/*.mjs","require":"./_vendor/*.js"},"./api-promise":{"import":"./api-promise.mjs","require":"./api-promise.js"},"./api-promise.js":{"default":"./api-promise.js"},"./api-promise.mjs":{"default":"./api-promise.mjs"},"./azure":{"import":"./azure.mjs","require":"./azure.js"},"./azure.js":{"default":"./azure.js"},"./azure.mjs":{"default":"./azure.mjs"},"./beta/*.mjs":{"default":"./beta/*.mjs"},"./beta/*.js":{"default":"./beta/*.js"},"./beta/*":{"import":"./beta/*.mjs","require":"./beta/*.js"},"./client":{"import":"./client.mjs","require":"./client.js"},"./client.js":{"default":"./client.js"},"./client.mjs":{"default":"./client.mjs"},"./core/*.mjs":{"default":"./core/*.mjs"},"./core/*.js":{"default":"./core/*.js"},"./core/*":{"import":"./core/*.mjs","require":"./core/*.js"},"./error":{"import":"./error.mjs","require":"./error.js"},"./error.js":{"default":"./error.js"},"./error.mjs":{"default":"./error.mjs"},"./helpers/*.mjs":{"default":"./helpers/*.mjs"},"./helpers/*.js":{"default":"./helpers/*.js"},"./helpers/*":{"import":"./helpers/*.mjs","require":"./helpers/*.js"},"./index":{"import":"./index.mjs","require":"./index.js"},"./index.js":{"default":"./index.js"},"./index.mjs":{"default":"./index.mjs"},"./lib/*.mjs":{"default":"./lib/*.mjs"},"./lib/*.js":{"default":"./lib/*.js"},"./lib/*":{"import":"./lib/*.mjs","require":"./lib/*.js"},"./pagination":{"import":"./pagination.mjs","require":"./pagination.js"},"./pagination.js":{"default":"./pagination.js"},"./pagination.mjs":{"default":"./pagination.mjs"},"./realtime/*.mjs":{"default":"./realtime/*.mjs"},"./realtime/*.js":{"default":"./realtime/*.js"},"./realtime/*":{"import":"./realtime/*.mjs","require":"./realtime/*.js"},"./resource":{"import":"./resource.mjs","require":"./resource.js"},"./resource.js":{"default":"./resource.js"},"./resource.mjs":{"default":"./resource.mjs"},"./resources/*.mjs":{"default":"./resources/*.mjs"},"./resources/*.js":{"default":"./resources/*.js"},"./resources/*":{"import":"./resources/*.mjs","require":"./resources/*.js"},"./resources":{"import":"./resources.mjs","require":"./resources.js"},"./resources.js":{"default":"./resources.js"},"./resources.mjs":{"default":"./resources.mjs"},"./streaming":{"import":"./streaming.mjs","require":"./streaming.js"},"./streaming.js":{"default":"./streaming.js"},"./streaming.mjs":{"default":"./streaming.mjs"},"./uploads":{"import":"./uploads.mjs","require":"./uploads.js"},"./uploads.js":{"default":"./uploads.js"},"./uploads.mjs":{"default":"./uploads.mjs"},"./version":{"import":"./version.mjs","require":"./version.js"},"./version.js":{"default":"./version.js"},"./version.mjs":{"default":"./version.mjs"}},"peerDependencies":{"ws":"^8.18.0","zod":"^3.25 || ^4.0"},"peerDependenciesMeta":{"ws":{"optional":true},"zod":{"optional":true}},"_lastModified":"2026-05-04T14:28:18.519Z"}
@@ -1 +1 @@
1
- {"name":"zod","version":"4.3.5","type":"module","license":"MIT","author":"Colin McDonnell <zod@colinhacks.com>","description":"TypeScript-first schema declaration and validation library with static type inference","homepage":"https://zod.dev","llms":"https://zod.dev/llms.txt","llmsFull":"https://zod.dev/llms-full.txt","mcpServer":"https://mcp.inkeep.com/zod/mcp","funding":"https://github.com/sponsors/colinhacks","sideEffects":false,"files":["src","**/*.js","**/*.mjs","**/*.cjs","**/*.d.ts","**/*.d.mts","**/*.d.cts","**/package.json"],"keywords":["typescript","schema","validation","type","inference"],"main":"./index.cjs","types":"./index.d.cts","module":"./index.js","zshy":{"exports":{"./package.json":"./package.json",".":"./src/index.ts","./mini":"./src/mini/index.ts","./locales":"./src/locales/index.ts","./v3":"./src/v3/index.ts","./v4":"./src/v4/index.ts","./v4-mini":"./src/v4-mini/index.ts","./v4/mini":"./src/v4/mini/index.ts","./v4/core":"./src/v4/core/index.ts","./v4/locales":"./src/v4/locales/index.ts","./v4/locales/*":"./src/v4/locales/*"},"conditions":{"@zod/source":"src"}},"exports":{"./package.json":"./package.json",".":{"@zod/source":"./src/index.ts","types":"./index.d.cts","import":"./index.js","require":"./index.cjs"},"./mini":{"@zod/source":"./src/mini/index.ts","types":"./mini/index.d.cts","import":"./mini/index.js","require":"./mini/index.cjs"},"./locales":{"@zod/source":"./src/locales/index.ts","types":"./locales/index.d.cts","import":"./locales/index.js","require":"./locales/index.cjs"},"./v3":{"@zod/source":"./src/v3/index.ts","types":"./v3/index.d.cts","import":"./v3/index.js","require":"./v3/index.cjs"},"./v4":{"@zod/source":"./src/v4/index.ts","types":"./v4/index.d.cts","import":"./v4/index.js","require":"./v4/index.cjs"},"./v4-mini":{"@zod/source":"./src/v4-mini/index.ts","types":"./v4-mini/index.d.cts","import":"./v4-mini/index.js","require":"./v4-mini/index.cjs"},"./v4/mini":{"@zod/source":"./src/v4/mini/index.ts","types":"./v4/mini/index.d.cts","import":"./v4/mini/index.js","require":"./v4/mini/index.cjs"},"./v4/core":{"@zod/source":"./src/v4/core/index.ts","types":"./v4/core/index.d.cts","import":"./v4/core/index.js","require":"./v4/core/index.cjs"},"./v4/locales":{"@zod/source":"./src/v4/locales/index.ts","types":"./v4/locales/index.d.cts","import":"./v4/locales/index.js","require":"./v4/locales/index.cjs"},"./v4/locales/*":{"@zod/source":"./src/v4/locales/*","types":"./v4/locales/*","import":"./v4/locales/*","require":"./v4/locales/*"}},"repository":{"type":"git","url":"git+https://github.com/colinhacks/zod.git"},"bugs":{"url":"https://github.com/colinhacks/zod/issues"},"support":{"backing":{"npm-funding":true}},"scripts":{"clean":"git clean -xdf . -e node_modules","build":"zshy --project tsconfig.build.json","postbuild":"tsx ../../scripts/write-stub-package-jsons.ts && pnpm biome check --write .","test:watch":"pnpm vitest","test":"pnpm vitest run","prepublishOnly":"tsx ../../scripts/check-versions.ts"},"_lastModified":"2026-05-03T08:47:32.287Z"}
1
+ {"name":"zod","version":"4.3.5","type":"module","license":"MIT","author":"Colin McDonnell <zod@colinhacks.com>","description":"TypeScript-first schema declaration and validation library with static type inference","homepage":"https://zod.dev","llms":"https://zod.dev/llms.txt","llmsFull":"https://zod.dev/llms-full.txt","mcpServer":"https://mcp.inkeep.com/zod/mcp","funding":"https://github.com/sponsors/colinhacks","sideEffects":false,"files":["src","**/*.js","**/*.mjs","**/*.cjs","**/*.d.ts","**/*.d.mts","**/*.d.cts","**/package.json"],"keywords":["typescript","schema","validation","type","inference"],"main":"./index.cjs","types":"./index.d.cts","module":"./index.js","zshy":{"exports":{"./package.json":"./package.json",".":"./src/index.ts","./mini":"./src/mini/index.ts","./locales":"./src/locales/index.ts","./v3":"./src/v3/index.ts","./v4":"./src/v4/index.ts","./v4-mini":"./src/v4-mini/index.ts","./v4/mini":"./src/v4/mini/index.ts","./v4/core":"./src/v4/core/index.ts","./v4/locales":"./src/v4/locales/index.ts","./v4/locales/*":"./src/v4/locales/*"},"conditions":{"@zod/source":"src"}},"exports":{"./package.json":"./package.json",".":{"@zod/source":"./src/index.ts","types":"./index.d.cts","import":"./index.js","require":"./index.cjs"},"./mini":{"@zod/source":"./src/mini/index.ts","types":"./mini/index.d.cts","import":"./mini/index.js","require":"./mini/index.cjs"},"./locales":{"@zod/source":"./src/locales/index.ts","types":"./locales/index.d.cts","import":"./locales/index.js","require":"./locales/index.cjs"},"./v3":{"@zod/source":"./src/v3/index.ts","types":"./v3/index.d.cts","import":"./v3/index.js","require":"./v3/index.cjs"},"./v4":{"@zod/source":"./src/v4/index.ts","types":"./v4/index.d.cts","import":"./v4/index.js","require":"./v4/index.cjs"},"./v4-mini":{"@zod/source":"./src/v4-mini/index.ts","types":"./v4-mini/index.d.cts","import":"./v4-mini/index.js","require":"./v4-mini/index.cjs"},"./v4/mini":{"@zod/source":"./src/v4/mini/index.ts","types":"./v4/mini/index.d.cts","import":"./v4/mini/index.js","require":"./v4/mini/index.cjs"},"./v4/core":{"@zod/source":"./src/v4/core/index.ts","types":"./v4/core/index.d.cts","import":"./v4/core/index.js","require":"./v4/core/index.cjs"},"./v4/locales":{"@zod/source":"./src/v4/locales/index.ts","types":"./v4/locales/index.d.cts","import":"./v4/locales/index.js","require":"./v4/locales/index.cjs"},"./v4/locales/*":{"@zod/source":"./src/v4/locales/*","types":"./v4/locales/*","import":"./v4/locales/*","require":"./v4/locales/*"}},"repository":{"type":"git","url":"git+https://github.com/colinhacks/zod.git"},"bugs":{"url":"https://github.com/colinhacks/zod/issues"},"support":{"backing":{"npm-funding":true}},"scripts":{"clean":"git clean -xdf . -e node_modules","build":"zshy --project tsconfig.build.json","postbuild":"tsx ../../scripts/write-stub-package-jsons.ts && pnpm biome check --write .","test:watch":"pnpm vitest","test":"pnpm vitest run","prepublishOnly":"tsx ../../scripts/check-versions.ts"},"_lastModified":"2026-05-04T14:28:16.981Z"}
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "description": "Create AI employees with diverse skills to collaborate with humans, build systems, and handle business operations.",
7
7
  "description.ru-RU": "Поддержка интеграции с AI-сервисами: предоставляются AI-узлы для рабочих процессов, расширяя возможности бизнес-обработки.",
8
8
  "description.zh-CN": "创建各种技能的 AI 员工,与人类协同,搭建系统,处理业务。",
9
- "version": "2.1.0-alpha.27",
9
+ "version": "2.1.0-alpha.29",
10
10
  "main": "dist/server/index.js",
11
11
  "homepage": "https://docs.nocobase.com/handbook/action-ai",
12
12
  "homepage.ru-RU": "https://docs-ru.nocobase.com/handbook/action-ai",
@@ -63,5 +63,5 @@
63
63
  "keywords": [
64
64
  "AI"
65
65
  ],
66
- "gitHead": "a340a88d86d3ff7e06d723215b02aa3c122f4870"
66
+ "gitHead": "526e36e399a570755286f9a0d34fa202b4a58a03"
67
67
  }