@nocobase/plugin-multi-app-manager 0.12.0-alpha.5 → 0.13.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/index.js +19 -2
- package/dist/node_modules/qs/.editorconfig +43 -0
- package/dist/node_modules/qs/.eslintrc +38 -0
- package/dist/node_modules/qs/.github/FUNDING.yml +12 -0
- package/dist/node_modules/qs/.nycrc +13 -0
- package/dist/node_modules/qs/dist/qs.js +2087 -0
- package/dist/node_modules/qs/lib/formats.js +23 -0
- package/dist/node_modules/qs/lib/index.js +1 -0
- package/dist/node_modules/qs/lib/parse.js +264 -0
- package/dist/node_modules/qs/lib/stringify.js +320 -0
- package/dist/node_modules/qs/lib/utils.js +252 -0
- package/dist/node_modules/qs/package.json +1 -0
- package/dist/node_modules/qs/test/empty-keys-cases.js +37 -0
- package/dist/node_modules/qs/test/parse.js +898 -0
- package/dist/node_modules/qs/test/stringify.js +972 -0
- package/dist/node_modules/qs/test/utils.js +136 -0
- package/dist/server/models/application.d.ts +1 -1
- package/dist/server/models/application.js +2 -5
- package/dist/server/server.d.ts +1 -1
- package/dist/server/server.js +110 -105
- package/dist/swagger/index.d.ts +192 -0
- package/dist/swagger/index.js +199 -0
- package/package.json +2 -2
package/dist/client/index.js
CHANGED
|
@@ -88,8 +88,13 @@
|
|
|
88
88
|
type: "string",
|
|
89
89
|
title: i18nText("App status"),
|
|
90
90
|
enum: [
|
|
91
|
-
{ label: "
|
|
92
|
-
{ label: "
|
|
91
|
+
{ label: "Initializing", value: "initializing" },
|
|
92
|
+
{ label: "Initialized", value: "initialized" },
|
|
93
|
+
{ label: "Running", value: "running" },
|
|
94
|
+
{ label: "Commanding", value: "commanding" },
|
|
95
|
+
{ label: "Stopped", value: "stopped" },
|
|
96
|
+
{ label: "Error", value: "error" },
|
|
97
|
+
{ label: "Not found", value: "not_found" }
|
|
93
98
|
],
|
|
94
99
|
"x-component": "Radio.Group"
|
|
95
100
|
}
|
|
@@ -368,6 +373,18 @@
|
|
|
368
373
|
}
|
|
369
374
|
}
|
|
370
375
|
},
|
|
376
|
+
status: {
|
|
377
|
+
type: "void",
|
|
378
|
+
"x-decorator": "Table.Column.Decorator",
|
|
379
|
+
"x-component": "Table.Column",
|
|
380
|
+
properties: {
|
|
381
|
+
status: {
|
|
382
|
+
type: "string",
|
|
383
|
+
"x-component": "CollectionField",
|
|
384
|
+
"x-read-pretty": true
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
},
|
|
371
388
|
actions: {
|
|
372
389
|
type: "void",
|
|
373
390
|
title: '{{t("Actions")}}',
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
root = true
|
|
2
|
+
|
|
3
|
+
[*]
|
|
4
|
+
indent_style = space
|
|
5
|
+
indent_size = 4
|
|
6
|
+
end_of_line = lf
|
|
7
|
+
charset = utf-8
|
|
8
|
+
trim_trailing_whitespace = true
|
|
9
|
+
insert_final_newline = true
|
|
10
|
+
max_line_length = 160
|
|
11
|
+
quote_type = single
|
|
12
|
+
|
|
13
|
+
[test/*]
|
|
14
|
+
max_line_length = off
|
|
15
|
+
|
|
16
|
+
[LICENSE.md]
|
|
17
|
+
indent_size = off
|
|
18
|
+
|
|
19
|
+
[*.md]
|
|
20
|
+
max_line_length = off
|
|
21
|
+
|
|
22
|
+
[*.json]
|
|
23
|
+
max_line_length = off
|
|
24
|
+
|
|
25
|
+
[Makefile]
|
|
26
|
+
max_line_length = off
|
|
27
|
+
|
|
28
|
+
[CHANGELOG.md]
|
|
29
|
+
indent_style = space
|
|
30
|
+
indent_size = 2
|
|
31
|
+
|
|
32
|
+
[LICENSE]
|
|
33
|
+
indent_size = 2
|
|
34
|
+
max_line_length = off
|
|
35
|
+
|
|
36
|
+
[coverage/**/*]
|
|
37
|
+
indent_size = off
|
|
38
|
+
indent_style = off
|
|
39
|
+
indent = off
|
|
40
|
+
max_line_length = off
|
|
41
|
+
|
|
42
|
+
[.nycrc]
|
|
43
|
+
indent_style = tab
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"root": true,
|
|
3
|
+
|
|
4
|
+
"extends": "@ljharb",
|
|
5
|
+
|
|
6
|
+
"ignorePatterns": [
|
|
7
|
+
"dist/",
|
|
8
|
+
],
|
|
9
|
+
|
|
10
|
+
"rules": {
|
|
11
|
+
"complexity": 0,
|
|
12
|
+
"consistent-return": 1,
|
|
13
|
+
"func-name-matching": 0,
|
|
14
|
+
"id-length": [2, { "min": 1, "max": 25, "properties": "never" }],
|
|
15
|
+
"indent": [2, 4],
|
|
16
|
+
"max-lines-per-function": [2, { "max": 150 }],
|
|
17
|
+
"max-params": [2, 16],
|
|
18
|
+
"max-statements": [2, 100],
|
|
19
|
+
"multiline-comment-style": 0,
|
|
20
|
+
"no-continue": 1,
|
|
21
|
+
"no-magic-numbers": 0,
|
|
22
|
+
"no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"],
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
"overrides": [
|
|
26
|
+
{
|
|
27
|
+
"files": "test/**",
|
|
28
|
+
"rules": {
|
|
29
|
+
"function-paren-newline": 0,
|
|
30
|
+
"max-lines-per-function": 0,
|
|
31
|
+
"max-statements": 0,
|
|
32
|
+
"no-buffer-constructor": 0,
|
|
33
|
+
"no-extend-native": 0,
|
|
34
|
+
"no-throw-literal": 0,
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# These are supported funding model platforms
|
|
2
|
+
|
|
3
|
+
github: [ljharb]
|
|
4
|
+
patreon: # Replace with a single Patreon username
|
|
5
|
+
open_collective: # Replace with a single Open Collective username
|
|
6
|
+
ko_fi: # Replace with a single Ko-fi username
|
|
7
|
+
tidelift: npm/qs
|
|
8
|
+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
9
|
+
liberapay: # Replace with a single Liberapay username
|
|
10
|
+
issuehunt: # Replace with a single IssueHunt username
|
|
11
|
+
otechie: # Replace with a single Otechie username
|
|
12
|
+
custom: # Replace with a single custom sponsorship URL
|