chore: v0.20.0-alpha.16

This commit is contained in:
chenos 2024-03-23 11:41:11 +08:00
parent b879d11235
commit b726865b54
86 changed files with 238 additions and 187 deletions

48
.github/workflows/release-pro.yml vendored Normal file
View File

@ -0,0 +1,48 @@
name: Release Pro
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
paths:
- '.github/workflows/release-pro.yml'
jobs:
publish-npm:
runs-on: ubuntu-latest
container: node:18
steps:
- name: Checkout nocobase
uses: actions/checkout@v3
- name: Checkout pro-plugins
uses: actions/checkout@v3
with:
repository: nocobase/pro-plugins
ref: main
path: packages/pro-plugins
ssh-key: ${{ secrets.SUBMODULE_SSH_KEY }}
- name: rm .git
run: rm -rf packages/pro-plugins/.git && git config --global user.email "you@example.com" && git config --global user.name "Your Name" && git add -A && git commit -m "tmp commit"
- name: yarn install and build
run: |
yarn config set registry ${{ secrets.NOCOBASE_NPM_REGISTRY }}
yarn install
yarn build
- name: publish npmjs.org
run: |
git config --global user.email "test@mail.com"
git config --global user.name "test"
git config --global --add safe.directory /__w/nocobase/nocobase
echo "# test" >> Release.md
git add .
git commit -m "chore(versions): test publish packages xxx"
npm config set access public
npm config set registry ${{ secrets.NOCOBASE_NPM_REGISTRY }}
npm config set //registry.npmjs.org/:_authToken=${{ secrets.NOCOBASE_NPM_TOKEN }}
yarn config set access public
yarn config set registry ${{ secrets.NOCOBASE_NPM_REGISTRY }}
yarn config set //registry.npmjs.org/:_authToken=${{ secrets.NOCOBASE_NPM_TOKEN }}
npm whoami
yarn release:force --no-verify-access --no-git-reset --registry ${{ secrets.NOCOBASE_NPM_REGISTRY }}

View File

@ -17,3 +17,4 @@ packages/core/cli/templates/plugin/src/client/*.tpl
packages/app/client/src/.plugins
packages/**/locale/**
storage
lerna.json

View File

@ -1,8 +1,10 @@
{
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"npmClient": "yarn",
"useWorkspaces": true,
"npmClientArgs": ["--ignore-engines"],
"npmClientArgs": [
"--ignore-engines"
],
"command": {
"version": {
"forcePublish": true,

View File

@ -1,13 +1,13 @@
{
"name": "@nocobase/acl",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@nocobase/resourcer": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/resourcer": "0.20.0-alpha.16",
"@nocobase/utils": "0.20.0-alpha.16",
"minimatch": "^5.1.1"
},
"repository": {

View File

@ -1,14 +1,14 @@
{
"name": "@nocobase/actions",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@nocobase/cache": "0.20.0-alpha.15",
"@nocobase/database": "0.20.0-alpha.15",
"@nocobase/resourcer": "0.20.0-alpha.15"
"@nocobase/cache": "0.20.0-alpha.16",
"@nocobase/database": "0.20.0-alpha.16",
"@nocobase/resourcer": "0.20.0-alpha.16"
},
"repository": {
"type": "git",

View File

@ -1,17 +1,17 @@
{
"name": "@nocobase/app",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "AGPL-3.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@nocobase/database": "0.20.0-alpha.15",
"@nocobase/preset-nocobase": "0.20.0-alpha.15",
"@nocobase/server": "0.20.0-alpha.15"
"@nocobase/database": "0.20.0-alpha.16",
"@nocobase/preset-nocobase": "0.20.0-alpha.16",
"@nocobase/server": "0.20.0-alpha.16"
},
"devDependencies": {
"@nocobase/client": "0.20.0-alpha.15"
"@nocobase/client": "0.20.0-alpha.16"
},
"repository": {
"type": "git",

View File

@ -1,16 +1,16 @@
{
"name": "@nocobase/auth",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@nocobase/actions": "0.20.0-alpha.15",
"@nocobase/cache": "0.20.0-alpha.15",
"@nocobase/database": "0.20.0-alpha.15",
"@nocobase/resourcer": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/actions": "0.20.0-alpha.16",
"@nocobase/cache": "0.20.0-alpha.16",
"@nocobase/database": "0.20.0-alpha.16",
"@nocobase/resourcer": "0.20.0-alpha.16",
"@nocobase/utils": "0.20.0-alpha.16",
"@types/jsonwebtoken": "^8.5.8",
"jsonwebtoken": "^8.5.1"
},

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/build",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "Library build tool based on rollup.",
"main": "lib/index.js",
"types": "./lib/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/cache",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/cli",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "Apache-2.0",
"main": "./src/index.js",
@ -8,7 +8,7 @@
"nocobase": "./bin/index.js"
},
"dependencies": {
"@nocobase/app": "0.20.0-alpha.15",
"@nocobase/app": "0.20.0-alpha.16",
"@types/fs-extra": "^11.0.1",
"@umijs/utils": "3.5.20",
"chalk": "^4.1.1",
@ -25,7 +25,7 @@
"tsx": "^4.6.2"
},
"devDependencies": {
"@nocobase/devtools": "0.20.0-alpha.15"
"@nocobase/devtools": "0.20.0-alpha.16"
},
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/client",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.mjs",
@ -26,9 +26,9 @@
"@formily/reactive-react": "^2.2.27",
"@formily/shared": "^2.2.27",
"@formily/validator": "^2.2.27",
"@nocobase/evaluators": "0.20.0-alpha.15",
"@nocobase/sdk": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/evaluators": "0.20.0-alpha.16",
"@nocobase/sdk": "0.20.0-alpha.16",
"@nocobase/utils": "0.20.0-alpha.16",
"ahooks": "^3.7.2",
"antd": "^5.12.8",
"antd-style": "3.4.5",

View File

@ -1,6 +1,6 @@
{
"name": "create-nocobase-app",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "src/index.js",
"license": "Apache-2.0",
"dependencies": {

View File

@ -1,16 +1,16 @@
{
"name": "@nocobase/data-source-manager",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@nocobase/actions": "0.20.0-alpha.15",
"@nocobase/cache": "0.20.0-alpha.15",
"@nocobase/database": "0.20.0-alpha.15",
"@nocobase/resourcer": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/actions": "0.20.0-alpha.16",
"@nocobase/cache": "0.20.0-alpha.16",
"@nocobase/database": "0.20.0-alpha.16",
"@nocobase/resourcer": "0.20.0-alpha.16",
"@nocobase/utils": "0.20.0-alpha.16",
"@types/jsonwebtoken": "^8.5.8",
"jsonwebtoken": "^8.5.1"
},

View File

@ -1,13 +1,13 @@
{
"name": "@nocobase/database",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "Apache-2.0",
"dependencies": {
"@nocobase/logger": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/logger": "0.20.0-alpha.16",
"@nocobase/utils": "0.20.0-alpha.16",
"async-mutex": "^0.3.2",
"chalk": "^4.1.1",
"cron-parser": "4.4.0",

View File

@ -1,13 +1,13 @@
{
"name": "@nocobase/devtools",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "Apache-2.0",
"main": "./src/index.js",
"dependencies": {
"@nocobase/build": "0.20.0-alpha.15",
"@nocobase/client": "0.20.0-alpha.15",
"@nocobase/test": "0.20.0-alpha.15",
"@nocobase/build": "0.20.0-alpha.16",
"@nocobase/client": "0.20.0-alpha.16",
"@nocobase/test": "0.20.0-alpha.16",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.4",
"@types/lodash": "^4.14.177",

View File

@ -1,13 +1,13 @@
{
"name": "@nocobase/evaluators",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "Apache-2.0",
"dependencies": {
"@formulajs/formulajs": "4.2.0",
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.16",
"mathjs": "^10.6.0"
},
"repository": {

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/logger",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "nocobase logging library",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,12 +1,12 @@
{
"name": "@nocobase/resourcer",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "Apache-2.0",
"dependencies": {
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.16",
"deepmerge": "^4.2.2",
"koa-compose": "^4.1.0",
"lodash": "^4.17.21",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/sdk",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/server",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"license": "Apache-2.0",
@ -10,18 +10,18 @@
"@koa/cors": "^3.1.0",
"@koa/multer": "^3.0.2",
"@koa/router": "^9.4.0",
"@nocobase/acl": "0.20.0-alpha.15",
"@nocobase/actions": "0.20.0-alpha.15",
"@nocobase/auth": "0.20.0-alpha.15",
"@nocobase/cache": "0.20.0-alpha.15",
"@nocobase/data-source-manager": "0.20.0-alpha.15",
"@nocobase/database": "0.20.0-alpha.15",
"@nocobase/evaluators": "0.20.0-alpha.15",
"@nocobase/logger": "0.20.0-alpha.15",
"@nocobase/resourcer": "0.20.0-alpha.15",
"@nocobase/sdk": "0.20.0-alpha.15",
"@nocobase/telemetry": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/acl": "0.20.0-alpha.16",
"@nocobase/actions": "0.20.0-alpha.16",
"@nocobase/auth": "0.20.0-alpha.16",
"@nocobase/cache": "0.20.0-alpha.16",
"@nocobase/data-source-manager": "0.20.0-alpha.16",
"@nocobase/database": "0.20.0-alpha.16",
"@nocobase/evaluators": "0.20.0-alpha.16",
"@nocobase/logger": "0.20.0-alpha.16",
"@nocobase/resourcer": "0.20.0-alpha.16",
"@nocobase/sdk": "0.20.0-alpha.16",
"@nocobase/telemetry": "0.20.0-alpha.16",
"@nocobase/utils": "0.20.0-alpha.16",
"@types/decompress": "4.2.4",
"@types/ini": "^1.3.31",
"@types/koa-send": "^4.1.3",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/telemetry",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "nocobase telemetry library",
"license": "Apache-2.0",
"main": "./lib/index.js",
@ -11,7 +11,7 @@
"directory": "packages/telemetry"
},
"dependencies": {
"@nocobase/utils": "0.20.0-alpha.15",
"@nocobase/utils": "0.20.0-alpha.16",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/instrumentation": "^0.46.0",
"@opentelemetry/resources": "^1.19.0",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/test",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "lib/index.js",
"module": "./src/index.ts",
"types": "./lib/index.d.ts",
@ -40,7 +40,7 @@
},
"dependencies": {
"@faker-js/faker": "8.1.0",
"@nocobase/server": "0.20.0-alpha.15",
"@nocobase/server": "0.20.0-alpha.16",
"@playwright/test": "^1.42.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/utils",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"license": "Apache-2.0",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "权限控制",
"description": "Based on roles, resources, and actions, access control can precisely manage interface configuration permissions, data operation permissions, menu access permissions, and plugin permissions.",
"description.zh-CN": "基于角色、资源和操作的权限控制,可以精确控制界面配置权限、数据操作权限、菜单访问权限、插件权限。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/acl",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-action-bulk-edit",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/action-bulk-edit",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/action-bulk-edit",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-action-bulk-update",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/action-bulk-update",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/action-bulk-update",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-action-duplicate",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/action-duplicate",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/action-duplicate",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-action-print",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/action-print",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/action-print",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-api-doc",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"displayName": "API documentation",
"displayName.zh-CN": "API 文档",
"description": "An OpenAPI documentation generator for NocoBase HTTP API.",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "认证API 密钥",
"description": "Allows users to use API key to access application's HTTP API",
"description.zh-CN": "允许用户使用 API 密钥访问应用的 HTTP API",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/api-keys",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-audit-logs",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"displayName": "Audit logs (deprecated)",
"displayName.zh-CN": "审计日志(废弃)",
"description": "This plugin is deprecated. There will be a new audit log plugin in the future.",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-auth",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/auth",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/auth",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "应用的备份与还原",
"description": "Backup and restore applications for scenarios such as application replication, migration, and upgrades.",
"description.zh-CN": "备份和还原应用,可用于应用的复制、迁移、升级等场景。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/backup-restore",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-calendar",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"displayName": "Calendar",
"displayName.zh-CN": "日历",
"description": "Provides callendar collection template and block for managing date data, typically for date/time related information such as events, appointments, tasks, and so on.",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "认证CAS",
"description": "CAS authentication.",
"description.zh-CN": "通过 CAS 协议认证身份。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/auth-cas",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "图表(废弃)",
"description": "The plugin has been deprecated, please use the data visualization plugin instead.",
"description.zh-CN": "已废弃插件,请使用数据可视化插件代替。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"license": "AGPL-3.0",
"devDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-china-region",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"displayName": "Administrative divisions of China",
"displayName.zh-CN": "中国行政区划",
"description": "Provides data and field type for administrative divisions of China.",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "WEB 客户端",
"description": "Provides a client interface for the NocoBase server",
"description.zh-CN": "为 NocoBase 服务端提供客户端界面",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"license": "AGPL-3.0",
"devDependencies": {

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "数据源:主数据库",
"description": "NocoBase main database, supports relational databases such as MySQL, PostgreSQL, SQLite and so on.",
"description.zh-CN": "NocoBase 主数据库,支持 MySQL、PostgreSQL、SQLite 等关系型数据库。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/data-source-main",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/data-source-main",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-custom-request",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/action-custom-request",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/action-custom-request",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-data-source-manager",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"displayName": "Data source manager",
"displayName.zh-CN": "数据源管理",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-data-visualization",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"displayName": "Data visualization",
"displayName.zh-CN": "数据可视化",
"description": "Provides data visualization feature, including chart block and chart filter block, support line charts, area charts, bar charts and more than a dozen kinds of charts, you can also extend more chart types.",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-disable-pm-add",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"peerDependencies": {
"@nocobase/client": "0.x",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "错误处理器",
"description": "Handling application errors and exceptions.",
"description.zh-CN": "处理应用程序中的错误和异常。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"devDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-excel-formula-field",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "操作:导出记录",
"description": "Export filtered records to excel, you can configure which fields to export.",
"description.zh-CN": "导出筛选后的记录到 Excel 中,可以配置导出哪些字段。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/action-export",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-file-manager",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"displayName": "File manager",
"displayName.zh-CN": "文件管理器",
"description": "Provides files storage services with files collection template and attachment field.",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "数据表字段:公式",
"description": "Configure and store the results of calculations between multiple field values in the same record, supporting both Math.js and Excel formula functions.",
"description.zh-CN": "可以配置并存储同一条记录的多字段值之间的计算结果,支持 Math.js 和 Excel formula functions 两种引擎",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/field-formula",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-gantt",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"displayName": "Block: Gantt",
"displayName.zh-CN": "区块:甘特图",
"description": "Provides Gantt block.",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "可视化数据表管理",
"description": "An ER diagram-like tool. Currently only the Master database is supported.",
"description.zh-CN": "类似 ER 图的工具,目前只支持主数据库。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/graph-collection-manager",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "区块iframe",
"description": "Create an iframe block on the page to embed and display external web pages or content.",
"description.zh-CN": "在页面上创建和管理iframe用于嵌入和展示外部网页或内容。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/block-iframe",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "操作:导入记录",
"description": "Import records using excel templates. You can configure which fields to import and templates will be generated automatically.",
"description.zh-CN": "使用 Excel 模板导入数据,可以配置导入哪些字段,自动生成模板。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/action-import",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-kanban",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/block-kanban",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/block-kanban",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-localization-management",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/localization-management",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/localization-management",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "日志",
"description": "Server-side logs, mainly including API request logs and system runtime logs, and allows to package and download log files.",
"description.zh-CN": "服务端日志,主要包括接口请求日志和系统运行日志,并支持打包和下载日志文件。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/logger",

View File

@ -2,7 +2,7 @@
"name": "@nocobase/plugin-map",
"displayName": "Block: Map",
"displayName.zh-CN": "区块:地图",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "Map block, support Gaode map and Google map, you can also extend more map types.",
"description.zh-CN": "地图区块,支持高德地图和 Google 地图,你也可以扩展更多地图类型。",
"license": "AGPL-3.0",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "数学公式字段",
"description": "A powerful mathematical formula field plugin designed to provide flexible mathematical and formula calculation capabilities for databases or data management systems. It seamlessly integrates with various database systems such as MySQL, PostgreSQL, and offers an intuitive user interface for defining and executing mathematical formula fields.",
"description.zh-CN": "一个功能强大的数学公式字段插件旨在为数据库或数据管理系统提供灵活的数学计算和公式计算功能。它可以与各种数据库系统如MySQL、PostgreSQL无缝集成并提供直观的用户界面来定义和执行数学公式字段。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"devDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-mobile-client",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/mobile-client",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/mobile-client",

View File

@ -2,7 +2,7 @@
"name": "@nocobase/plugin-mock-collections",
"displayName": "mock-collections",
"description": "mock-collections",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"license": "AGPL-3.0",
"peerDependencies": {

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "多应用管理器",
"description": "Dynamically create multiple apps without separate deployments.",
"description.zh-CN": "无需单独部署即可动态创建多个应用。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/multi-app-manager",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "多应用数据表共享",
"description": "",
"description.zh-CN": "",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"devDependencies": {
"@formily/react": "2.x",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-notifications",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"description": "",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "认证OIDC",
"description": "OIDC (OpenID Connect) authentication.",
"description.zh-CN": "通过 OIDC (OpenID Connect) 协议认证身份。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/auth-oidc",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "认证SAML 2.0",
"description": "SAML 2.0 authentication.",
"description.zh-CN": "通过 SAML 2.0 协议认证身份。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/auth-saml",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-sample-hello",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"displayName": "Hello",
"displayName.zh-CN": "Hello",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "数据表字段:自动编码",
"description": "Automatically generate codes based on configured rules, supporting combinations of dates, numbers, and text.",
"description.zh-CN": "根据配置的规则自动生成编码,支持日期、数字、文本的组合。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/field-sequence",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "认证:短信",
"description": "SMS authentication.",
"description.zh-CN": "通过短信验证码认证身份。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/auth-sms",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/auth-sms",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "数据表字段:关系快照",
"description": "When adding a new record, create a snapshot for its relational record and save in the new record. The snapshot will not be updated when the relational record is updated.",
"description.zh-CN": "在添加数据时,为它的关系数据创建快照,并保存在当前的数据中。关系数据更新时,快照不会更新。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/field-snapshot",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "系统设置",
"description": "Used to adjust the system title, logo, language, etc.",
"description.zh-CN": "用于调整系统的标题、LOGO、语言等。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/system-settings",

View File

@ -1,6 +1,6 @@
{
"name": "@nocobase/plugin-theme-editor",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"main": "dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/theme-editor",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/theme-editor",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "路由管理",
"description": "manage the routes of nocobase",
"description.zh-CN": "管理页面路由。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"devDependencies": {

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "UI schema 存储服务",
"description": "Provides centralized UI schema storage service.",
"description.zh-CN": "提供中心化的 UI schema 存储服务。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/ui-schema-storage",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "用户",
"description": "Provides basic user model, as well as created by and updated by fields.",
"description.zh-CN": "提供了基础的用户模型,以及创建人和最后更新人字段。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/users",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "验证码",
"description": "verification setting.",
"description.zh-CN": "验证码配置。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/verification",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流:数据操作触发器",
"description": "Bind action buttons to trigger workflow events when clicked.",
"description.zh-CN": "可对数据操作按钮绑定,在点击后触发对应的工作流事件。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/plugins/workflow-action-trigger",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流:聚合查询节点",
"description": "Used to aggregate data against the database in workflow, such as: statistics, sum, average, etc.",
"description.zh-CN": "可用于在工作流中对数据库进行聚合查询,如:统计数量、求和、平均值等。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow-aggregate",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流:延时节点",
"description": "Could be used in workflow parallel branch for waiting other branches.",
"description.zh-CN": "可用于工作流并行分支中等待其他分支执行完成。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow-delay",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流:动态表达式计算节点",
"description": "Useful plugin for doing dynamic calculation based on expression collection records in workflow.",
"description.zh-CN": "用于在工作流中进行基于数据行的动态表达式计算。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow-dynamic-calculation",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流:循环节点",
"description": "Used to repeat the sub-process processing of each value in an array, and can also be used for fixed times of sub-process processing.",
"description.zh-CN": "用于对一个数组中的每个值进行重复的子流程处理,也可用于固定次数的重复子流程处理。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow-loop",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流:人工处理节点",
"description": "Could be used for workflows which some of decisions are made by users.",
"description.zh-CN": "用于人工控制部分决策的流程。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow-manual",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流:并行分支节点",
"description": "Could be used for parallel execution of branch processes in the workflow.",
"description.zh-CN": "用于在工作流中需要并行执行的分支流程。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow-parallel",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流HTTP 请求节点",
"description": "Send HTTP requests to any HTTP service for data interaction in workflow.",
"description.zh-CN": "可用于在工作流中向任意 HTTP 服务发送请求,进行数据交互。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow-request",

View File

@ -4,7 +4,7 @@
"displayName.zh-CN": "工作流SQL 节点",
"description": "Execute SQL statements in workflow.",
"description.zh-CN": "可用于在工作流中对数据库执行任意 SQL 语句。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow-sql",

View File

@ -2,7 +2,7 @@
"name": "@nocobase/plugin-workflow-test",
"displayName": "Workflow: test kit",
"displayName.zh-CN": "工作流:测试工具包",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "dist/server/index.js",
"types": "./dist/server/index.d.ts",

View File

@ -4,13 +4,13 @@
"displayName.zh-CN": "工作流",
"description": "A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.",
"description.zh-CN": "一个强大的 BPM 工具,为业务自动化提供基础支持,并且可任意扩展更多的触发器和节点。",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./dist/server/index.js",
"homepage": "https://docs.nocobase.com/handbook/workflow",
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/workflow",
"dependencies": {
"@nocobase/plugin-workflow-test": "0.20.0-alpha.15"
"@nocobase/plugin-workflow-test": "0.20.0-alpha.16"
},
"devDependencies": {
"@ant-design/icons": "5.x",

View File

@ -1,66 +1,66 @@
{
"name": "@nocobase/preset-nocobase",
"version": "0.20.0-alpha.15",
"version": "0.20.0-alpha.16",
"license": "AGPL-3.0",
"main": "./lib/server/index.js",
"dependencies": {
"@formily/json-schema": "2.x",
"@nocobase/plugin-acl": "0.20.0-alpha.15",
"@nocobase/plugin-action-bulk-edit": "0.20.0-alpha.15",
"@nocobase/plugin-action-bulk-update": "0.20.0-alpha.15",
"@nocobase/plugin-action-duplicate": "0.20.0-alpha.15",
"@nocobase/plugin-action-print": "0.20.0-alpha.15",
"@nocobase/plugin-api-doc": "0.20.0-alpha.15",
"@nocobase/plugin-api-keys": "0.20.0-alpha.15",
"@nocobase/plugin-audit-logs": "0.20.0-alpha.15",
"@nocobase/plugin-auth": "0.20.0-alpha.15",
"@nocobase/plugin-backup-restore": "0.20.0-alpha.15",
"@nocobase/plugin-calendar": "0.20.0-alpha.15",
"@nocobase/plugin-cas": "0.20.0-alpha.15",
"@nocobase/plugin-charts": "0.20.0-alpha.15",
"@nocobase/plugin-china-region": "0.20.0-alpha.15",
"@nocobase/plugin-client": "0.20.0-alpha.15",
"@nocobase/plugin-collection-manager": "0.20.0-alpha.15",
"@nocobase/plugin-custom-request": "0.20.0-alpha.15",
"@nocobase/plugin-data-source-manager": "0.20.0-alpha.15",
"@nocobase/plugin-data-visualization": "0.20.0-alpha.15",
"@nocobase/plugin-error-handler": "0.20.0-alpha.15",
"@nocobase/plugin-export": "0.20.0-alpha.15",
"@nocobase/plugin-file-manager": "0.20.0-alpha.15",
"@nocobase/plugin-formula-field": "0.20.0-alpha.15",
"@nocobase/plugin-gantt": "0.20.0-alpha.15",
"@nocobase/plugin-graph-collection-manager": "0.20.0-alpha.15",
"@nocobase/plugin-iframe-block": "0.20.0-alpha.15",
"@nocobase/plugin-import": "0.20.0-alpha.15",
"@nocobase/plugin-kanban": "0.20.0-alpha.15",
"@nocobase/plugin-localization-management": "0.20.0-alpha.15",
"@nocobase/plugin-logger": "0.20.0-alpha.15",
"@nocobase/plugin-map": "0.20.0-alpha.15",
"@nocobase/plugin-mobile-client": "0.20.0-alpha.15",
"@nocobase/plugin-mock-collections": "0.20.0-alpha.15",
"@nocobase/plugin-multi-app-manager": "0.20.0-alpha.15",
"@nocobase/plugin-multi-app-share-collection": "0.20.0-alpha.15",
"@nocobase/plugin-oidc": "0.20.0-alpha.15",
"@nocobase/plugin-saml": "0.20.0-alpha.15",
"@nocobase/plugin-sequence-field": "0.20.0-alpha.15",
"@nocobase/plugin-sms-auth": "0.20.0-alpha.15",
"@nocobase/plugin-snapshot-field": "0.20.0-alpha.15",
"@nocobase/plugin-system-settings": "0.20.0-alpha.15",
"@nocobase/plugin-theme-editor": "0.20.0-alpha.15",
"@nocobase/plugin-ui-schema-storage": "0.20.0-alpha.15",
"@nocobase/plugin-users": "0.20.0-alpha.15",
"@nocobase/plugin-verification": "0.20.0-alpha.15",
"@nocobase/plugin-workflow": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-action-trigger": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-aggregate": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-delay": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-dynamic-calculation": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-loop": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-manual": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-parallel": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-request": "0.20.0-alpha.15",
"@nocobase/plugin-workflow-sql": "0.20.0-alpha.15",
"@nocobase/server": "0.20.0-alpha.15",
"@nocobase/plugin-acl": "0.20.0-alpha.16",
"@nocobase/plugin-action-bulk-edit": "0.20.0-alpha.16",
"@nocobase/plugin-action-bulk-update": "0.20.0-alpha.16",
"@nocobase/plugin-action-duplicate": "0.20.0-alpha.16",
"@nocobase/plugin-action-print": "0.20.0-alpha.16",
"@nocobase/plugin-api-doc": "0.20.0-alpha.16",
"@nocobase/plugin-api-keys": "0.20.0-alpha.16",
"@nocobase/plugin-audit-logs": "0.20.0-alpha.16",
"@nocobase/plugin-auth": "0.20.0-alpha.16",
"@nocobase/plugin-backup-restore": "0.20.0-alpha.16",
"@nocobase/plugin-calendar": "0.20.0-alpha.16",
"@nocobase/plugin-cas": "0.20.0-alpha.16",
"@nocobase/plugin-charts": "0.20.0-alpha.16",
"@nocobase/plugin-china-region": "0.20.0-alpha.16",
"@nocobase/plugin-client": "0.20.0-alpha.16",
"@nocobase/plugin-collection-manager": "0.20.0-alpha.16",
"@nocobase/plugin-custom-request": "0.20.0-alpha.16",
"@nocobase/plugin-data-source-manager": "0.20.0-alpha.16",
"@nocobase/plugin-data-visualization": "0.20.0-alpha.16",
"@nocobase/plugin-error-handler": "0.20.0-alpha.16",
"@nocobase/plugin-export": "0.20.0-alpha.16",
"@nocobase/plugin-file-manager": "0.20.0-alpha.16",
"@nocobase/plugin-formula-field": "0.20.0-alpha.16",
"@nocobase/plugin-gantt": "0.20.0-alpha.16",
"@nocobase/plugin-graph-collection-manager": "0.20.0-alpha.16",
"@nocobase/plugin-iframe-block": "0.20.0-alpha.16",
"@nocobase/plugin-import": "0.20.0-alpha.16",
"@nocobase/plugin-kanban": "0.20.0-alpha.16",
"@nocobase/plugin-localization-management": "0.20.0-alpha.16",
"@nocobase/plugin-logger": "0.20.0-alpha.16",
"@nocobase/plugin-map": "0.20.0-alpha.16",
"@nocobase/plugin-mobile-client": "0.20.0-alpha.16",
"@nocobase/plugin-mock-collections": "0.20.0-alpha.16",
"@nocobase/plugin-multi-app-manager": "0.20.0-alpha.16",
"@nocobase/plugin-multi-app-share-collection": "0.20.0-alpha.16",
"@nocobase/plugin-oidc": "0.20.0-alpha.16",
"@nocobase/plugin-saml": "0.20.0-alpha.16",
"@nocobase/plugin-sequence-field": "0.20.0-alpha.16",
"@nocobase/plugin-sms-auth": "0.20.0-alpha.16",
"@nocobase/plugin-snapshot-field": "0.20.0-alpha.16",
"@nocobase/plugin-system-settings": "0.20.0-alpha.16",
"@nocobase/plugin-theme-editor": "0.20.0-alpha.16",
"@nocobase/plugin-ui-schema-storage": "0.20.0-alpha.16",
"@nocobase/plugin-users": "0.20.0-alpha.16",
"@nocobase/plugin-verification": "0.20.0-alpha.16",
"@nocobase/plugin-workflow": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-action-trigger": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-aggregate": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-delay": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-dynamic-calculation": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-loop": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-manual": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-parallel": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-request": "0.20.0-alpha.16",
"@nocobase/plugin-workflow-sql": "0.20.0-alpha.16",
"@nocobase/server": "0.20.0-alpha.16",
"cronstrue": "^2.11.0"
},
"repository": {