@nocobase/plugin-user-data-sync 2.1.0-beta.46 → 2.1.0-beta.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/externalVersion.js +6 -6
- package/dist/server/collections/user-data-sync-records-resources.js +1 -0
- package/dist/server/collections/user-data-sync-records.js +1 -0
- package/dist/server/collections/user-data-sync-sources.js +1 -0
- package/dist/server/collections/user-data-sync-tasks.js +1 -0
- package/package.json +2 -2
package/dist/externalVersion.js
CHANGED
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
module.exports = {
|
|
11
11
|
"react": "18.2.0",
|
|
12
12
|
"@formily/react": "2.3.7",
|
|
13
|
-
"@nocobase/client": "2.1.0-beta.
|
|
13
|
+
"@nocobase/client": "2.1.0-beta.48",
|
|
14
14
|
"@ant-design/icons": "5.6.1",
|
|
15
15
|
"@formily/core": "2.3.7",
|
|
16
16
|
"antd": "5.24.2",
|
|
17
|
-
"@nocobase/utils": "2.1.0-beta.
|
|
18
|
-
"@nocobase/server": "2.1.0-beta.
|
|
19
|
-
"@nocobase/logger": "2.1.0-beta.
|
|
20
|
-
"@nocobase/actions": "2.1.0-beta.
|
|
17
|
+
"@nocobase/utils": "2.1.0-beta.48",
|
|
18
|
+
"@nocobase/server": "2.1.0-beta.48",
|
|
19
|
+
"@nocobase/logger": "2.1.0-beta.48",
|
|
20
|
+
"@nocobase/actions": "2.1.0-beta.48",
|
|
21
21
|
"dayjs": "1.11.13",
|
|
22
|
-
"@nocobase/database": "2.1.0-beta.
|
|
22
|
+
"@nocobase/database": "2.1.0-beta.48",
|
|
23
23
|
"react-i18next": "11.18.6"
|
|
24
24
|
};
|
|
@@ -32,6 +32,7 @@ module.exports = __toCommonJS(user_data_sync_records_resources_exports);
|
|
|
32
32
|
var import_database = require("@nocobase/database");
|
|
33
33
|
var user_data_sync_records_resources_default = (0, import_database.defineCollection)({
|
|
34
34
|
name: "userDataSyncRecordsResources",
|
|
35
|
+
dataCategory: "business",
|
|
35
36
|
migrationRules: ["schema-only", "overwrite"],
|
|
36
37
|
fields: [
|
|
37
38
|
{
|
|
@@ -37,6 +37,7 @@ var user_data_sync_sources_default = (0, import_database.defineCollection)({
|
|
|
37
37
|
shared: true,
|
|
38
38
|
migrationRules: ["overwrite", "schema-only"],
|
|
39
39
|
name: "userDataSyncSources",
|
|
40
|
+
dataCategory: "system",
|
|
40
41
|
title: '{{t("Sync Sources")}}',
|
|
41
42
|
sortable: true,
|
|
42
43
|
model: "SyncSourceModel",
|
|
@@ -36,6 +36,7 @@ var user_data_sync_tasks_default = (0, import_database.defineCollection)({
|
|
|
36
36
|
},
|
|
37
37
|
migrationRules: ["schema-only", "overwrite"],
|
|
38
38
|
name: "userDataSyncTasks",
|
|
39
|
+
dataCategory: "business",
|
|
39
40
|
title: '{{t("Sync Tasks")}}',
|
|
40
41
|
sortable: "sort",
|
|
41
42
|
model: "SyncTaskModel",
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"description": "Reigster and manage extensible user data synchronization sources, with HTTP API provided by default. Support for synchronizing data to resources such as users and departments.",
|
|
7
7
|
"description.ru-RU": "Регистрация и управление расширяемыми источниками синхронизации данных пользователей, по умолчанию предоставляется HTTP API. Поддержка синхронизации данных для таких ресурсов, как пользователи и департаменты.",
|
|
8
8
|
"description.zh-CN": "注册和管理可扩展的用户数据同步来源,默认提供 HTTP API。支持向用户和部门等资源同步数据。",
|
|
9
|
-
"version": "2.1.0-beta.
|
|
9
|
+
"version": "2.1.0-beta.48",
|
|
10
10
|
"main": "dist/server/index.js",
|
|
11
11
|
"peerDependencies": {
|
|
12
12
|
"@nocobase/client": "2.x",
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"Users & permissions"
|
|
18
18
|
],
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "f8c27a286db015c5e433b48241f14c0412e50530"
|
|
21
21
|
}
|