@nocobase/plugin-async-task-manager 1.7.0-alpha.2 → 1.7.0-alpha.4

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.
@@ -8,12 +8,12 @@
8
8
  */
9
9
 
10
10
  module.exports = {
11
- "@nocobase/client": "1.7.0-alpha.2",
11
+ "@nocobase/client": "1.7.0-alpha.4",
12
12
  "react": "18.2.0",
13
13
  "antd": "5.24.2",
14
- "@nocobase/logger": "1.7.0-alpha.2",
15
- "@nocobase/server": "1.7.0-alpha.2",
14
+ "@nocobase/logger": "1.7.0-alpha.4",
15
+ "@nocobase/server": "1.7.0-alpha.4",
16
16
  "lodash": "4.17.21",
17
- "@nocobase/plugin-error-handler": "1.7.0-alpha.2",
17
+ "@nocobase/plugin-error-handler": "1.7.0-alpha.4",
18
18
  "dayjs": "1.11.13"
19
19
  };
@@ -4,7 +4,7 @@
4
4
  "Data": "Dati",
5
5
  "Task": "Attività",
6
6
  "Status": "Stato",
7
- "Actions": "Operazioni",
7
+ "Actions": "Azioni",
8
8
  "Created at": "Creato alle",
9
9
  "Type": "Tipo",
10
10
  "Waiting": "In attesa",
@@ -38,7 +38,7 @@
38
38
  "Total records": "Record totali",
39
39
  "View result": "Visualizza risultato",
40
40
  "ImportResult": "Importati {{success}}, aggiornati {{updated}}, saltati {{skipped}}, totale {{total}}",
41
- "Task result": "Risultato attività"
41
+ "Task result": "Risultato attività",
42
42
  "Export {collection} attachments": "Esporta allegati {collection}",
43
43
  "Export {collection} data": "Esporta dati {collection}",
44
44
  "Import {collection} data": "Importa dati {collection}"
@@ -1 +1 @@
1
- {"name":"uuid","version":"3.4.0","description":"RFC4122 (v1, v4, and v5) UUIDs","commitlint":{"extends":["@commitlint/config-conventional"]},"keywords":["uuid","guid","rfc4122"],"license":"MIT","bin":{"uuid":"./bin/uuid"},"devDependencies":{"@commitlint/cli":"~8.2.0","@commitlint/config-conventional":"~8.2.0","eslint":"~6.4.0","husky":"~3.0.5","mocha":"6.2.0","runmd":"1.2.1","standard-version":"7.0.0"},"scripts":{"lint":"eslint .","test":"npm run lint && mocha test/test.js","md":"runmd --watch --output=README.md README_js.md","release":"standard-version","prepare":"runmd --output=README.md README_js.md"},"browser":{"./lib/rng.js":"./lib/rng-browser.js","./lib/sha1.js":"./lib/sha1-browser.js","./lib/md5.js":"./lib/md5-browser.js"},"repository":{"type":"git","url":"https://github.com/uuidjs/uuid.git"},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS"}},"_lastModified":"2025-03-14T23:24:39.857Z"}
1
+ {"name":"uuid","version":"3.4.0","description":"RFC4122 (v1, v4, and v5) UUIDs","commitlint":{"extends":["@commitlint/config-conventional"]},"keywords":["uuid","guid","rfc4122"],"license":"MIT","bin":{"uuid":"./bin/uuid"},"devDependencies":{"@commitlint/cli":"~8.2.0","@commitlint/config-conventional":"~8.2.0","eslint":"~6.4.0","husky":"~3.0.5","mocha":"6.2.0","runmd":"1.2.1","standard-version":"7.0.0"},"scripts":{"lint":"eslint .","test":"npm run lint && mocha test/test.js","md":"runmd --watch --output=README.md README_js.md","release":"standard-version","prepare":"runmd --output=README.md README_js.md"},"browser":{"./lib/rng.js":"./lib/rng-browser.js","./lib/sha1.js":"./lib/sha1-browser.js","./lib/md5.js":"./lib/md5-browser.js"},"repository":{"type":"git","url":"https://github.com/uuidjs/uuid.git"},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS"}},"_lastModified":"2025-03-23T05:58:45.700Z"}
@@ -1,4 +1,11 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
1
9
  export * from './interfaces/async-task-manager';
2
10
  export * from './task-type';
3
- export * from './static-import';
4
11
  export { default } from './plugin';
@@ -42,11 +42,9 @@ __export(server_exports, {
42
42
  module.exports = __toCommonJS(server_exports);
43
43
  __reExport(server_exports, require("./interfaces/async-task-manager"), module.exports);
44
44
  __reExport(server_exports, require("./task-type"), module.exports);
45
- __reExport(server_exports, require("./static-import"), module.exports);
46
45
  var import_plugin = __toESM(require("./plugin"));
47
46
  // Annotate the CommonJS export names for ESM import in node:
48
47
  0 && (module.exports = {
49
48
  ...require("./interfaces/async-task-manager"),
50
- ...require("./task-type"),
51
- ...require("./static-import")
49
+ ...require("./task-type")
52
50
  });
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "displayName.zh-CN": "异步任务管理器",
5
5
  "description": "Manage and monitor asynchronous tasks such as data import/export. Support task progress tracking and notification.",
6
6
  "description.zh-CN": "管理和监控数据导入导出等异步任务。支持任务进度跟踪和通知。",
7
- "version": "1.7.0-alpha.2",
7
+ "version": "1.7.0-alpha.4",
8
8
  "main": "dist/server/index.js",
9
9
  "peerDependencies": {
10
10
  "@nocobase/client": "1.x",
@@ -12,5 +12,5 @@
12
12
  "@nocobase/server": "1.x",
13
13
  "@nocobase/test": "1.x"
14
14
  },
15
- "gitHead": "01751fa626d5692137e3decdac3c66a742b8ea80"
15
+ "gitHead": "e31c3136901b10ec7cbe4bbc8a22dc4cc7481f93"
16
16
  }
@@ -1 +0,0 @@
1
- export declare function staticImport(): Promise<void>;
@@ -1,39 +0,0 @@
1
- /**
2
- * This file is part of the NocoBase (R) project.
3
- * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
- * Authors: NocoBase Team.
5
- *
6
- * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
- * For more information, please refer to: https://www.nocobase.com/agreement.
8
- */
9
-
10
- var __defProp = Object.defineProperty;
11
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12
- var __getOwnPropNames = Object.getOwnPropertyNames;
13
- var __hasOwnProp = Object.prototype.hasOwnProperty;
14
- var __export = (target, all) => {
15
- for (var name in all)
16
- __defProp(target, name, { get: all[name], enumerable: true });
17
- };
18
- var __copyProps = (to, from, except, desc) => {
19
- if (from && typeof from === "object" || typeof from === "function") {
20
- for (let key of __getOwnPropNames(from))
21
- if (!__hasOwnProp.call(to, key) && key !== except)
22
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
- }
24
- return to;
25
- };
26
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
- var static_import_exports = {};
28
- __export(static_import_exports, {
29
- staticImport: () => staticImport
30
- });
31
- module.exports = __toCommonJS(static_import_exports);
32
- var import_server = require("@nocobase/server");
33
- async function staticImport() {
34
- await (0, import_server.appendToBuiltInPlugins)("@nocobase/plugin-async-task-manager");
35
- }
36
- // Annotate the CommonJS export names for ESM import in node:
37
- 0 && (module.exports = {
38
- staticImport
39
- });