mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-12-26 06:21:14 +08:00
add: opendb-app-list、opendb-app-versions
This commit is contained in:
parent
e2b010ff08
commit
c16acba436
93
collection/opendb-app-list/collection.json
Normal file
93
collection/opendb-app-list/collection.json
Normal file
@ -0,0 +1,93 @@
|
||||
{
|
||||
"schema": {
|
||||
"bsonType": "object",
|
||||
"required": [
|
||||
"appid",
|
||||
"name",
|
||||
"description"
|
||||
],
|
||||
"permission": {
|
||||
"read": false,
|
||||
"create": false,
|
||||
"update": false,
|
||||
"delete": false
|
||||
},
|
||||
"properties": {
|
||||
"_id": {
|
||||
"description": "ID,系统自动生成"
|
||||
},
|
||||
"appid": {
|
||||
"bsonType": "string",
|
||||
"description": "应用的AppID",
|
||||
"label": "AppID",
|
||||
"componentForEdit": {
|
||||
"name": "uni-easyinput",
|
||||
"props": {
|
||||
"disabled": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"bsonType": "string",
|
||||
"description": "应用名称",
|
||||
"label": "应用名称",
|
||||
"componentForEdit": {
|
||||
"name": "uni-easyinput",
|
||||
"props": {
|
||||
"disabled": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": {
|
||||
"bsonType": "string",
|
||||
"description": "应用描述",
|
||||
"label": "应用描述",
|
||||
"componentForEdit": {
|
||||
"name": "textarea"
|
||||
},
|
||||
"componentForShow": {
|
||||
"name": "textarea",
|
||||
"props": {
|
||||
"disabled": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"create_date": {
|
||||
"bsonType": "timestamp",
|
||||
"label": "创建时间",
|
||||
"forceDefaultValue": {
|
||||
"$env": "now"
|
||||
},
|
||||
"componentForEdit": {
|
||||
"name": "uni-dateformat"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"index": [
|
||||
{
|
||||
"IndexName": "appid",
|
||||
"MgoKeySchema": {
|
||||
"MgoIndexKeys": [
|
||||
{
|
||||
"Name": "appid",
|
||||
"Direction": "1"
|
||||
}
|
||||
],
|
||||
"MgoIsUnique": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"IndexName": "name",
|
||||
"MgoKeySchema": {
|
||||
"MgoIndexKeys": [
|
||||
{
|
||||
"Name": "name",
|
||||
"Direction": "1"
|
||||
}
|
||||
],
|
||||
"MgoIsUnique": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
17
collection/opendb-app-list/package.json
Normal file
17
collection/opendb-app-list/package.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "@opendb/opendb-app-list",
|
||||
"version": "0.0.1",
|
||||
"description": "opendb-app-list 应用列表",
|
||||
"keywords": ["应用列表"],
|
||||
"opendb": {
|
||||
"title": "应用列表",
|
||||
"type": "collection",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "DCloud",
|
||||
"email": "",
|
||||
"homepage": "https://gitee.com/dcloud/opendb"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
173
collection/opendb-app-versions/collection.json
Normal file
173
collection/opendb-app-versions/collection.json
Normal file
@ -0,0 +1,173 @@
|
||||
{
|
||||
"schema": {
|
||||
"bsonType": "object",
|
||||
"required": [
|
||||
"appid",
|
||||
"platform",
|
||||
"version",
|
||||
"url",
|
||||
"contents",
|
||||
"type"
|
||||
],
|
||||
"permission": {
|
||||
"read": false,
|
||||
"create": false,
|
||||
"update": false,
|
||||
"delete": false
|
||||
},
|
||||
"properties": {
|
||||
"_id": {
|
||||
"description": "记录id,自动生成"
|
||||
},
|
||||
"appid": {
|
||||
"bsonType": "string",
|
||||
"trim": "both",
|
||||
"description": "应用的AppID",
|
||||
"label": "AppID",
|
||||
"componentForEdit": {
|
||||
"name": "uni-easyinput",
|
||||
"props": {
|
||||
"disabled": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"bsonType": "string",
|
||||
"trim": "both",
|
||||
"description": "应用名称",
|
||||
"label": "应用名称",
|
||||
"componentForEdit": {
|
||||
"name": "uni-easyinput",
|
||||
"props": {
|
||||
"disabled": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"bsonType": "string",
|
||||
"description": "更新标题",
|
||||
"label": "更新标题"
|
||||
},
|
||||
"contents": {
|
||||
"bsonType": "string",
|
||||
"description": "更新内容",
|
||||
"label": "更新内容",
|
||||
"componentForEdit": {
|
||||
"name": "textarea"
|
||||
},
|
||||
"componentForShow": {
|
||||
"name": "textarea",
|
||||
"props": {
|
||||
"disabled": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"platform": {
|
||||
"bsonType": "array",
|
||||
"enum": [
|
||||
{
|
||||
"value": "Android",
|
||||
"text": "安卓"
|
||||
},
|
||||
{
|
||||
"value": "iOS",
|
||||
"text": "苹果"
|
||||
}
|
||||
],
|
||||
"description": "更新平台,Android || iOS || [Android, iOS]",
|
||||
"label": "平台"
|
||||
},
|
||||
"type": {
|
||||
"bsonType": "string",
|
||||
"enum": [
|
||||
{
|
||||
"value": "native_app",
|
||||
"text": "原生App安装包"
|
||||
},
|
||||
{
|
||||
"value": "wgt",
|
||||
"text": "Wgt资源包"
|
||||
}
|
||||
],
|
||||
"description": "安装包类型,native_app || wgt",
|
||||
"label": "安装包类型"
|
||||
},
|
||||
"version": {
|
||||
"bsonType": "string",
|
||||
"description": "当前包版本号,必须大于当前线上发行版本号",
|
||||
"label": "版本号"
|
||||
},
|
||||
"min_uni_version": {
|
||||
"bsonType": "string",
|
||||
"description": "原生App最低版本",
|
||||
"label": "原生App最低版本"
|
||||
},
|
||||
"url": {
|
||||
"bsonType": "string",
|
||||
"description": "可下载安装包地址",
|
||||
"label": "包地址"
|
||||
},
|
||||
"stable_publish": {
|
||||
"bsonType": "bool",
|
||||
"description": "是否上线发行",
|
||||
"label": "上线发行"
|
||||
},
|
||||
"is_silently": {
|
||||
"bsonType": "bool",
|
||||
"description": "是否静默更新",
|
||||
"label": "静默更新",
|
||||
"defaultValue": false
|
||||
},
|
||||
"is_mandatory": {
|
||||
"bsonType": "bool",
|
||||
"description": "是否强制更新",
|
||||
"label": "强制更新",
|
||||
"defaultValue": false
|
||||
},
|
||||
"create_date": {
|
||||
"bsonType": "timestamp",
|
||||
"label": "上传时间",
|
||||
"forceDefaultValue": {
|
||||
"$env": "now"
|
||||
},
|
||||
"componentForEdit": {
|
||||
"name": "uni-dateformat"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"index": [
|
||||
{
|
||||
"IndexName": "appid",
|
||||
"MgoKeySchema": {
|
||||
"MgoIndexKeys": [
|
||||
{
|
||||
"Name": "appid",
|
||||
"Direction": "1"
|
||||
}
|
||||
],
|
||||
"MgoIsUnique": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"IndexName": "查找上线发行应用",
|
||||
"MgoKeySchema": {
|
||||
"MgoIndexKeys": [
|
||||
{
|
||||
"Name": "appid",
|
||||
"Direction": "1"
|
||||
},
|
||||
{
|
||||
"Name": "platform",
|
||||
"Direction": "1"
|
||||
},
|
||||
{
|
||||
"Name": "stable_publish",
|
||||
"Direction": "1"
|
||||
}
|
||||
],
|
||||
"MgoIsUnique": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
17
collection/opendb-app-versions/package.json
Normal file
17
collection/opendb-app-versions/package.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "@opendb/opendb-app-versions",
|
||||
"version": "0.0.1",
|
||||
"description": "opendb-app-versions 应用版本列表",
|
||||
"keywords": ["应用版本列表"],
|
||||
"opendb": {
|
||||
"title": "应用版本列表",
|
||||
"type": "collection",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "DCloud",
|
||||
"email": "",
|
||||
"homepage": "https://gitee.com/dcloud/opendb"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user