@nocobase/plugin-workflow 0.16.0-alpha.6 → 0.17.0-alpha.2
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/client/components/CollectionBlockInitializer.d.ts +1 -1
- package/dist/client/components/ValueBlock.d.ts +1 -1
- package/dist/client/index.d.ts +5 -3
- package/dist/client/index.js +41 -41
- package/dist/client/nodes/aggregate.d.ts +3 -3
- package/dist/client/nodes/calculation.d.ts +3 -3
- package/dist/client/nodes/create.d.ts +2 -2
- package/dist/client/nodes/index.d.ts +3 -3
- package/dist/client/nodes/manual/FormBlockInitializer.d.ts +1 -1
- package/dist/client/nodes/manual/SchemaConfig.d.ts +4 -2
- package/dist/client/nodes/manual/forms/custom.d.ts +2 -0
- package/dist/client/nodes/manual/index.d.ts +4 -4
- package/dist/client/nodes/query.d.ts +2 -2
- package/dist/client/triggers/collection.d.ts +2 -2
- package/dist/client/triggers/form.d.ts +2 -2
- package/dist/client/triggers/index.d.ts +2 -2
- package/dist/client/triggers/schedule/index.d.ts +2 -2
- package/dist/externalVersion.js +8 -8
- package/dist/node_modules/cron-parser/package.json +1 -1
- package/dist/node_modules/lru-cache/package.json +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { SchemaInitializerItemType, useCollectionDataSource } from '@nocobase/client';
|
|
3
3
|
import { FilterDynamicComponent } from '../components/FilterDynamicComponent';
|
|
4
4
|
declare function AssociatedConfig({ value, onChange, ...props }: {
|
|
5
5
|
[x: string]: any;
|
|
@@ -172,7 +172,7 @@ declare const _default: {
|
|
|
172
172
|
FilterDynamicComponent: typeof FilterDynamicComponent;
|
|
173
173
|
FieldsSelect: React.MemoExoticComponent<import("@formily/react").ReactFC<Omit<any, "ref">>>;
|
|
174
174
|
ValueBlock: (() => JSX.Element) & {
|
|
175
|
-
Initializer: (
|
|
175
|
+
Initializer: () => JSX.Element;
|
|
176
176
|
Result: (props: any) => JSX.Element;
|
|
177
177
|
};
|
|
178
178
|
AssociatedConfig: typeof AssociatedConfig;
|
|
@@ -191,6 +191,6 @@ declare const _default: {
|
|
|
191
191
|
value: any;
|
|
192
192
|
label: any;
|
|
193
193
|
};
|
|
194
|
-
useInitializers(node: any):
|
|
194
|
+
useInitializers(node: any): SchemaInitializerItemType | null;
|
|
195
195
|
};
|
|
196
196
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SchemaInitializerItemType } from '@nocobase/client';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { RadioWithTooltip } from '../components/RadioWithTooltip';
|
|
4
4
|
import { WorkflowVariableInput, WorkflowVariableTextArea } from '../variable';
|
|
@@ -102,7 +102,7 @@ declare const _default: {
|
|
|
102
102
|
onChange: any;
|
|
103
103
|
}) => React.JSX.Element;
|
|
104
104
|
ValueBlock: (() => JSX.Element) & {
|
|
105
|
-
Initializer: (
|
|
105
|
+
Initializer: () => JSX.Element;
|
|
106
106
|
Result: (props: any) => JSX.Element;
|
|
107
107
|
};
|
|
108
108
|
};
|
|
@@ -115,6 +115,6 @@ declare const _default: {
|
|
|
115
115
|
}): {
|
|
116
116
|
[x: string]: any;
|
|
117
117
|
};
|
|
118
|
-
useInitializers(node: any):
|
|
118
|
+
useInitializers(node: any): SchemaInitializerItemType;
|
|
119
119
|
};
|
|
120
120
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { SchemaInitializerItemType, useCollectionDataSource } from '@nocobase/client';
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
5
|
type: string;
|
|
@@ -66,7 +66,7 @@ declare const _default: {
|
|
|
66
66
|
title: any;
|
|
67
67
|
config: any;
|
|
68
68
|
}, options: any): import("../variable").VariableOption;
|
|
69
|
-
useInitializers(node: any):
|
|
69
|
+
useInitializers(node: any): SchemaInitializerItemType | null;
|
|
70
70
|
initializers: {};
|
|
71
71
|
};
|
|
72
72
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import { ISchema } from '@formily/react';
|
|
3
|
-
import
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { SchemaInitializerItemType } from '@nocobase/client';
|
|
4
4
|
import { VariableOption, VariableOptions } from '../variable';
|
|
5
5
|
export interface Instruction {
|
|
6
6
|
title: string;
|
|
@@ -25,7 +25,7 @@ export interface Instruction {
|
|
|
25
25
|
component?(props: any): JSX.Element;
|
|
26
26
|
useVariables?(node: any, options?: any): VariableOption;
|
|
27
27
|
useScopeVariables?(node: any, options?: any): VariableOptions;
|
|
28
|
-
useInitializers?(node: any):
|
|
28
|
+
useInitializers?(node: any): SchemaInitializerItemType | null;
|
|
29
29
|
initializers?: {
|
|
30
30
|
[key: string]: any;
|
|
31
31
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare function FormBlockInitializer(
|
|
2
|
+
export declare function FormBlockInitializer(): React.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ISchema } from '@formily/react';
|
|
3
|
-
import {
|
|
3
|
+
import { SchemaInitializer, SchemaInitializerItemType } from '@nocobase/client';
|
|
4
4
|
import { JOB_STATUS } from '../../constants';
|
|
5
5
|
type ValueOf<T> = T[keyof T];
|
|
6
6
|
export type FormType = {
|
|
@@ -18,7 +18,7 @@ export type ManualFormType = {
|
|
|
18
18
|
config: {
|
|
19
19
|
useInitializer: ({ collections }?: {
|
|
20
20
|
collections: any[];
|
|
21
|
-
}) =>
|
|
21
|
+
}) => SchemaInitializerItemType;
|
|
22
22
|
initializers?: {
|
|
23
23
|
[key: string]: React.FC;
|
|
24
24
|
};
|
|
@@ -39,6 +39,8 @@ export type ManualFormType = {
|
|
|
39
39
|
};
|
|
40
40
|
};
|
|
41
41
|
export declare const manualFormTypes: any;
|
|
42
|
+
export declare const addBlockButton: SchemaInitializer<import("antd").ButtonProps, {}>;
|
|
43
|
+
export declare const addActionButton: SchemaInitializer<import("antd").ButtonProps, {}>;
|
|
42
44
|
export declare function SchemaConfig({ value, onChange }: {
|
|
43
45
|
value: any;
|
|
44
46
|
onChange: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SchemaConfig, SchemaConfigButton } from './SchemaConfig';
|
|
3
|
-
import { ModeConfig } from './ModeConfig';
|
|
1
|
+
import { SchemaInitializerItemType } from '@nocobase/client';
|
|
4
2
|
import { AssigneesSelect } from './AssigneesSelect';
|
|
3
|
+
import { ModeConfig } from './ModeConfig';
|
|
4
|
+
import { SchemaConfig, SchemaConfigButton } from './SchemaConfig';
|
|
5
5
|
declare const _default: {
|
|
6
6
|
title: string;
|
|
7
7
|
type: string;
|
|
@@ -80,7 +80,7 @@ declare const _default: {
|
|
|
80
80
|
children: import("../../variable").VariableOption[];
|
|
81
81
|
}[];
|
|
82
82
|
};
|
|
83
|
-
useInitializers(node: any):
|
|
83
|
+
useInitializers(node: any): SchemaInitializerItemType | null;
|
|
84
84
|
initializers: {};
|
|
85
85
|
};
|
|
86
86
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { SchemaInitializerItemType, useCollectionDataSource } from '@nocobase/client';
|
|
3
3
|
import { FilterDynamicComponent } from '../components/FilterDynamicComponent';
|
|
4
4
|
import { WorkflowVariableInput } from '../variable';
|
|
5
5
|
declare const _default: {
|
|
@@ -213,7 +213,7 @@ declare const _default: {
|
|
|
213
213
|
title: any;
|
|
214
214
|
config: any;
|
|
215
215
|
}, options: any): import("../variable").VariableOption;
|
|
216
|
-
useInitializers(node: any):
|
|
216
|
+
useInitializers(node: any): SchemaInitializerItemType | null;
|
|
217
217
|
initializers: {};
|
|
218
218
|
};
|
|
219
219
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { SchemaInitializerItemType, useCollectionDataSource } from '@nocobase/client';
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
5
|
type: string;
|
|
@@ -108,7 +108,7 @@ declare const _default: {
|
|
|
108
108
|
FieldsSelect: import("react").MemoExoticComponent<import("@formily/reactive-react").ReactFC<Omit<any, "ref">>>;
|
|
109
109
|
};
|
|
110
110
|
useVariables(config: any, options: any): import("../variable").VariableOption[];
|
|
111
|
-
useInitializers(config: any):
|
|
111
|
+
useInitializers(config: any): SchemaInitializerItemType | null;
|
|
112
112
|
initializers: {};
|
|
113
113
|
};
|
|
114
114
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SchemaInitializerItemType, useCollectionDataSource } from '@nocobase/client';
|
|
2
2
|
declare const _default: {
|
|
3
3
|
title: string;
|
|
4
4
|
type: string;
|
|
@@ -42,7 +42,7 @@ declare const _default: {
|
|
|
42
42
|
};
|
|
43
43
|
components: {};
|
|
44
44
|
useVariables(config: any, options: any): import("../variable").VariableOption[];
|
|
45
|
-
useInitializers(config: any):
|
|
45
|
+
useInitializers(config: any): SchemaInitializerItemType | null;
|
|
46
46
|
initializers: {};
|
|
47
47
|
useActionTriggerable: boolean;
|
|
48
48
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ISchema } from '@formily/react';
|
|
2
|
-
import {
|
|
2
|
+
import { SchemaInitializerItemType } from '@nocobase/client';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { VariableOptions } from '../variable';
|
|
5
5
|
export interface Trigger {
|
|
@@ -17,7 +17,7 @@ export interface Trigger {
|
|
|
17
17
|
components?: {
|
|
18
18
|
[key: string]: any;
|
|
19
19
|
};
|
|
20
|
-
useInitializers?(config: any):
|
|
20
|
+
useInitializers?(config: any): SchemaInitializerItemType | null;
|
|
21
21
|
initializers?: any;
|
|
22
22
|
useActionTriggerable?: boolean | (() => boolean);
|
|
23
23
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { SchemaInitializerItemType, useCollectionDataSource } from '@nocobase/client';
|
|
3
3
|
declare const _default: {
|
|
4
4
|
title: string;
|
|
5
5
|
type: string;
|
|
@@ -18,7 +18,7 @@ declare const _default: {
|
|
|
18
18
|
ScheduleConfig: () => import("react").JSX.Element;
|
|
19
19
|
};
|
|
20
20
|
useVariables(config: any, opts: any): any[];
|
|
21
|
-
useInitializers(config: any):
|
|
21
|
+
useInitializers(config: any): SchemaInitializerItemType | null;
|
|
22
22
|
initializers: {};
|
|
23
23
|
};
|
|
24
24
|
export default _default;
|
package/dist/externalVersion.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
"@ant-design/icons": "5.1.4",
|
|
3
|
-
"@nocobase/client": "0.
|
|
3
|
+
"@nocobase/client": "0.17.0-alpha.2",
|
|
4
4
|
"antd": "5.8.6",
|
|
5
5
|
"react": "18.2.0",
|
|
6
|
-
"@nocobase/utils": "0.
|
|
6
|
+
"@nocobase/utils": "0.17.0-alpha.2",
|
|
7
7
|
"react-router-dom": "6.14.1",
|
|
8
8
|
"react-i18next": "11.18.6",
|
|
9
9
|
"winston": "3.9.0",
|
|
10
|
-
"@nocobase/database": "0.
|
|
11
|
-
"@nocobase/server": "0.
|
|
12
|
-
"@nocobase/logger": "0.
|
|
13
|
-
"@nocobase/evaluators": "0.
|
|
10
|
+
"@nocobase/database": "0.17.0-alpha.2",
|
|
11
|
+
"@nocobase/server": "0.17.0-alpha.2",
|
|
12
|
+
"@nocobase/logger": "0.17.0-alpha.2",
|
|
13
|
+
"@nocobase/evaluators": "0.17.0-alpha.2",
|
|
14
14
|
"@formily/react": "2.2.27",
|
|
15
15
|
"@formily/core": "2.2.27",
|
|
16
16
|
"@formily/antd-v5": "1.1.7",
|
|
17
17
|
"lodash": "4.17.21",
|
|
18
|
-
"@nocobase/actions": "0.
|
|
18
|
+
"@nocobase/actions": "0.17.0-alpha.2",
|
|
19
19
|
"axios": "0.26.1",
|
|
20
20
|
"sequelize": "6.32.1",
|
|
21
21
|
"dayjs": "1.11.9",
|
|
22
|
-
"@nocobase/resourcer": "0.
|
|
22
|
+
"@nocobase/resourcer": "0.17.0-alpha.2"
|
|
23
23
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"cron-parser","version":"4.4.0","description":"Node.js library for parsing crontab instructions","main":"lib/parser.js","types":"index.d.ts","typesVersions":{"<4.1":{"*":["types/ts3/*"]}},"directories":{"test":"test"},"scripts":{"test:tsd":"tsd","test:unit":"TZ=UTC tap ./test/*.js","test:cover":"TZ=UTC tap --coverage-report=html ./test/*.js","lint":"eslint .","lint:fix":"eslint --fix .","test":"npm run lint && npm run test:unit && npm run test:tsd"},"repository":{"type":"git","url":"https://github.com/harrisiirak/cron-parser.git"},"keywords":["cron","crontab","parser"],"author":"Harri Siirak","contributors":["Nicholas Clawson","Daniel Prentis <daniel@salsitasoft.com>","Renault John Lecoultre","Richard Astbury <richard.astbury@gmail.com>","Meaglin Wasabi <Meaglin.wasabi@gmail.com>","Mike Kusold <hello@mikekusold.com>","Alex Kit <alex.kit@atmajs.com>","Santiago Gimeno <santiago.gimeno@gmail.com>","Daniel <darc.tec@gmail.com>","Christian Steininger <christian.steininger.cs@gmail.com>","Mykola Piskovyi <m.piskovyi@gmail.com>","Brian Vaughn <brian.david.vaughn@gmail.com>","Nicholas Clawson <nickclaw@gmail.com>","Yasuhiroki <yasuhiroki.duck@gmail.com>","Nicholas Clawson <nickclaw@gmail.com>","Brendan Warkentin <faazshift@gmail.com>","Charlie Fish <fishcharlie.code@gmail.com>","Ian Graves <ian+diskimage@iangrav.es>","Andy Thompson <me@andytson.com>","Regev Brody <regevbr@gmail.com>"],"license":"MIT","dependencies":{"luxon":"^1.28.0"},"devDependencies":{"eslint":"^8.2.0","sinon":"^10.0.0","tap":"^16.0.1","tsd":"^0.19.0"},"engines":{"node":">=0.8"},"browser":{"fs":false},"tap":{"check-coverage":false},"tsd":{"directory":"test","compilerOptions":{"lib":["es2017","dom"]}},"_lastModified":"2023-12-
|
|
1
|
+
{"name":"cron-parser","version":"4.4.0","description":"Node.js library for parsing crontab instructions","main":"lib/parser.js","types":"index.d.ts","typesVersions":{"<4.1":{"*":["types/ts3/*"]}},"directories":{"test":"test"},"scripts":{"test:tsd":"tsd","test:unit":"TZ=UTC tap ./test/*.js","test:cover":"TZ=UTC tap --coverage-report=html ./test/*.js","lint":"eslint .","lint:fix":"eslint --fix .","test":"npm run lint && npm run test:unit && npm run test:tsd"},"repository":{"type":"git","url":"https://github.com/harrisiirak/cron-parser.git"},"keywords":["cron","crontab","parser"],"author":"Harri Siirak","contributors":["Nicholas Clawson","Daniel Prentis <daniel@salsitasoft.com>","Renault John Lecoultre","Richard Astbury <richard.astbury@gmail.com>","Meaglin Wasabi <Meaglin.wasabi@gmail.com>","Mike Kusold <hello@mikekusold.com>","Alex Kit <alex.kit@atmajs.com>","Santiago Gimeno <santiago.gimeno@gmail.com>","Daniel <darc.tec@gmail.com>","Christian Steininger <christian.steininger.cs@gmail.com>","Mykola Piskovyi <m.piskovyi@gmail.com>","Brian Vaughn <brian.david.vaughn@gmail.com>","Nicholas Clawson <nickclaw@gmail.com>","Yasuhiroki <yasuhiroki.duck@gmail.com>","Nicholas Clawson <nickclaw@gmail.com>","Brendan Warkentin <faazshift@gmail.com>","Charlie Fish <fishcharlie.code@gmail.com>","Ian Graves <ian+diskimage@iangrav.es>","Andy Thompson <me@andytson.com>","Regev Brody <regevbr@gmail.com>"],"license":"MIT","dependencies":{"luxon":"^1.28.0"},"devDependencies":{"eslint":"^8.2.0","sinon":"^10.0.0","tap":"^16.0.1","tsd":"^0.19.0"},"engines":{"node":">=0.8"},"browser":{"fs":false},"tap":{"check-coverage":false},"tsd":{"directory":"test","compilerOptions":{"lib":["es2017","dom"]}},"_lastModified":"2023-12-06T05:30:30.832Z"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"lru-cache","description":"A cache object that deletes the least-recently-used items.","version":"8.0.5","author":"Isaac Z. Schlueter <i@izs.me>","keywords":["mru","lru","cache"],"sideEffects":false,"scripts":{"build":"npm run prepare","preprepare":"rm -rf dist","prepare":"tsc -p tsconfig.json && tsc -p tsconfig-esm.json","postprepare":"bash fixup.sh","pretest":"npm run prepare","presnap":"npm run prepare","test":"c8 tap","snap":"c8 tap","preversion":"npm test","postversion":"npm publish","prepublishOnly":"git push origin --follow-tags","format":"prettier --write .","typedoc":"typedoc --tsconfig tsconfig-esm.json ./src/*.ts","benchmark-results-typedoc":"bash scripts/benchmark-results-typedoc.sh","prebenchmark":"npm run prepare","benchmark":"make -C benchmark","preprofile":"npm run prepare","profile":"make -C benchmark profile"},"main":"./dist/cjs/index-cjs.js","module":"./dist/mjs/index.js","types":"./dist/mjs/index.d.ts","exports":{"./min":{"import":{"types":"./dist/mjs/index.d.ts","default":"./dist/mjs/index.min.js"},"require":{"types":"./dist/cjs/index.d.ts","default":"./dist/cjs/index.min.js"}},".":{"import":{"types":"./dist/mjs/index.d.ts","default":"./dist/mjs/index.js"},"require":{"types":"./dist/cjs/index.d.ts","default":"./dist/cjs/index-cjs.js"}}},"repository":"git://github.com/isaacs/node-lru-cache.git","devDependencies":{"@size-limit/preset-small-lib":"^7.0.8","@types/node":"^17.0.31","@types/tap":"^15.0.6","benchmark":"^2.1.4","c8":"^7.11.2","clock-mock":"^1.0.6","esbuild":"^0.17.11","eslint-config-prettier":"^8.5.0","marked":"^4.2.12","mkdirp":"^2.1.5","prettier":"^2.6.2","size-limit":"^7.0.8","tap":"^16.3.4","ts-node":"^10.7.0","tslib":"^2.4.0","typedoc":"^0.23.24","typescript":"^4.6.4"},"license":"ISC","files":["dist"],"engines":{"node":">=16.14"},"prettier":{"semi":false,"printWidth":70,"tabWidth":2,"useTabs":false,"singleQuote":true,"jsxSingleQuote":false,"bracketSameLine":true,"arrowParens":"avoid","endOfLine":"lf"},"tap":{"coverage":false,"node-arg":["--expose-gc","--no-warnings","--loader","ts-node/esm"],"ts":false},"size-limit":[{"path":"./dist/mjs/index.js"}],"_lastModified":"2023-12-
|
|
1
|
+
{"name":"lru-cache","description":"A cache object that deletes the least-recently-used items.","version":"8.0.5","author":"Isaac Z. Schlueter <i@izs.me>","keywords":["mru","lru","cache"],"sideEffects":false,"scripts":{"build":"npm run prepare","preprepare":"rm -rf dist","prepare":"tsc -p tsconfig.json && tsc -p tsconfig-esm.json","postprepare":"bash fixup.sh","pretest":"npm run prepare","presnap":"npm run prepare","test":"c8 tap","snap":"c8 tap","preversion":"npm test","postversion":"npm publish","prepublishOnly":"git push origin --follow-tags","format":"prettier --write .","typedoc":"typedoc --tsconfig tsconfig-esm.json ./src/*.ts","benchmark-results-typedoc":"bash scripts/benchmark-results-typedoc.sh","prebenchmark":"npm run prepare","benchmark":"make -C benchmark","preprofile":"npm run prepare","profile":"make -C benchmark profile"},"main":"./dist/cjs/index-cjs.js","module":"./dist/mjs/index.js","types":"./dist/mjs/index.d.ts","exports":{"./min":{"import":{"types":"./dist/mjs/index.d.ts","default":"./dist/mjs/index.min.js"},"require":{"types":"./dist/cjs/index.d.ts","default":"./dist/cjs/index.min.js"}},".":{"import":{"types":"./dist/mjs/index.d.ts","default":"./dist/mjs/index.js"},"require":{"types":"./dist/cjs/index.d.ts","default":"./dist/cjs/index-cjs.js"}}},"repository":"git://github.com/isaacs/node-lru-cache.git","devDependencies":{"@size-limit/preset-small-lib":"^7.0.8","@types/node":"^17.0.31","@types/tap":"^15.0.6","benchmark":"^2.1.4","c8":"^7.11.2","clock-mock":"^1.0.6","esbuild":"^0.17.11","eslint-config-prettier":"^8.5.0","marked":"^4.2.12","mkdirp":"^2.1.5","prettier":"^2.6.2","size-limit":"^7.0.8","tap":"^16.3.4","ts-node":"^10.7.0","tslib":"^2.4.0","typedoc":"^0.23.24","typescript":"^4.6.4"},"license":"ISC","files":["dist"],"engines":{"node":">=16.14"},"prettier":{"semi":false,"printWidth":70,"tabWidth":2,"useTabs":false,"singleQuote":true,"jsxSingleQuote":false,"bracketSameLine":true,"arrowParens":"avoid","endOfLine":"lf"},"tap":{"coverage":false,"node-arg":["--expose-gc","--no-warnings","--loader","ts-node/esm"],"ts":false},"size-limit":[{"path":"./dist/mjs/index.js"}],"_lastModified":"2023-12-06T05:30:30.509Z"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"displayName.zh-CN": "工作流",
|
|
5
5
|
"description": "A powerful workflow plugin designed to support business process management and automation.",
|
|
6
6
|
"description.zh-CN": "工作流插件,为业务流程管理和自动化提供支持。",
|
|
7
|
-
"version": "0.
|
|
7
|
+
"version": "0.17.0-alpha.2",
|
|
8
8
|
"license": "AGPL-3.0",
|
|
9
9
|
"main": "./dist/server/index.js",
|
|
10
10
|
"devDependencies": {
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"@nocobase/test": "0.x",
|
|
42
42
|
"@nocobase/utils": "0.x"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "c4d4383a1fde1058011e2f1fd1d9272812e6daeb"
|
|
45
45
|
}
|