@nocobase/plugin-action-custom-request 2.1.0-alpha.4 → 2.1.0-alpha.45
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/LICENSE +201 -661
- package/README.md +99 -0
- package/client-v2.d.ts +2 -0
- package/client-v2.js +1 -0
- package/dist/client/index.js +1 -1
- package/dist/client/locale.d.ts +2 -1
- package/dist/client-v2/CustomRequestActionModel.d.ts +15 -0
- package/dist/client-v2/components/RequestKeyField.d.ts +13 -0
- package/dist/client-v2/components/RolesSelect.d.ts +13 -0
- package/dist/client-v2/customRequestFlowAction.d.ts +10 -0
- package/dist/client-v2/customRequestFlowActionTypes.d.ts +24 -0
- package/dist/client-v2/customRequestUiSchema.d.ts +218 -0
- package/dist/client-v2/customRequestUtils.d.ts +69 -0
- package/dist/client-v2/index.d.ts +15 -0
- package/dist/client-v2/index.js +10 -0
- package/dist/client-v2/locale.d.ts +12 -0
- package/dist/externalVersion.js +13 -11
- package/dist/locale/en-US.json +11 -1
- package/dist/locale/zh-CN.json +11 -1
- package/dist/server/actions/send.js +54 -18
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/plugin-action-custom-request",
|
|
3
|
-
"version": "2.1.0-alpha.
|
|
3
|
+
"version": "2.1.0-alpha.45",
|
|
4
4
|
"main": "dist/server/index.js",
|
|
5
5
|
"homepage": "https://docs.nocobase.com/handbook/action-custom-request",
|
|
6
6
|
"homepage.ru-RU": "https://docs-ru.nocobase.com/handbook/action-custom-request",
|
|
@@ -11,27 +11,30 @@
|
|
|
11
11
|
"description": "Sending a request to any HTTP service supports sending context data to the target service.",
|
|
12
12
|
"description.ru-RU": "Отправка запроса к любому HTTP-сервису, поддерживается отправка контекстных данных в целевой сервис.",
|
|
13
13
|
"description.zh-CN": "向任意 HTTP 服务发送请求,支持将上下文数据发送给目标服务。",
|
|
14
|
-
"license": "
|
|
14
|
+
"license": "Apache-2.0",
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@formily/react": "2.x",
|
|
17
17
|
"@formily/shared": "2.x",
|
|
18
18
|
"antd": "5.x",
|
|
19
|
+
"file-saver": "^2.0.5",
|
|
19
20
|
"lodash": "4.x",
|
|
20
21
|
"react-i18next": "^11.15.1",
|
|
21
22
|
"react-router-dom": "6.x"
|
|
22
23
|
},
|
|
23
24
|
"nocobase": {
|
|
24
25
|
"supportedVersions": [
|
|
25
|
-
"1.x"
|
|
26
|
+
"1.x",
|
|
27
|
+
"2.x"
|
|
26
28
|
],
|
|
27
29
|
"editionLevel": 0
|
|
28
30
|
},
|
|
29
31
|
"peerDependencies": {
|
|
30
32
|
"@nocobase/client": "2.x",
|
|
33
|
+
"@nocobase/client-v2": "2.x",
|
|
31
34
|
"@nocobase/server": "2.x",
|
|
32
35
|
"@nocobase/test": "2.x"
|
|
33
36
|
},
|
|
34
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "e9e24987e12d0ad10a5db8815b1e1b7b447f1938",
|
|
35
38
|
"keywords": [
|
|
36
39
|
"Actions"
|
|
37
40
|
]
|