- 新增 openapi-miniapp-company.yaml 文件,定义 tbl_company 的基础 CRUD 接口文档,包括查询、创建、更新和删除公司记录的详细描述和示例。 - 新增 pocketbase.file-fields-to-attachments.js 脚本,用于迁移 PocketBase 中的文件字段到文本字段,并处理 tbl_attachments 集合的公开规则。
21 lines
530 B
JSON
21 lines
530 B
JSON
{
|
|
"name": "script",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "pocketbase.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"init:newpb": "node pocketbase.newpb.js",
|
|
"init:documents": "node pocketbase.documents.js",
|
|
"init:dictionary": "node pocketbase.dictionary.js",
|
|
"migrate:file-fields": "node pocketbase.file-fields-to-attachments.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"pocketbase": "^0.26.8"
|
|
}
|
|
}
|