@ws-ui/http-handlers-editor 1.13.0-rc1 → 1.13.1
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/Standalone/index.d.ts +2 -1
- package/dist/Standalone/style.css +1 -1
- package/dist/adapter/reducer/adapter.d.ts +3 -1
- package/dist/adapter/types.d.ts +2 -0
- package/dist/common.cjs.js.map +1 -1
- package/dist/common.es.js.map +1 -1
- package/dist/http-handlers-editor.css +1 -1
- package/dist/index.cjs.js +14 -14
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4747 -4337
- package/dist/index.es.js.map +1 -1
- package/dist/json-schema.json +35 -41
- package/dist/json-schema.json.d.ts +35 -41
- package/package.json +5 -4
package/dist/json-schema.json
CHANGED
|
@@ -1,41 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "array",
|
|
3
|
-
"items": {
|
|
4
|
-
"$ref": "#/definitions/HTTPHandler"
|
|
5
|
-
},
|
|
6
|
-
"definitions": {
|
|
7
|
-
"
|
|
8
|
-
"type": "
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
]
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"type": "array",
|
|
3
|
+
"items": {
|
|
4
|
+
"$ref": "#/definitions/HTTPHandler"
|
|
5
|
+
},
|
|
6
|
+
"definitions": {
|
|
7
|
+
"Verb": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"regex": "^(?:GET|POST|PUT|DELETE)(?:,(?:GET|POST|PUT|DELETE))*$"
|
|
10
|
+
},
|
|
11
|
+
"HTTPHandler": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"id": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"class": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"method": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"pattern": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"regexPattern": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"verbs": {
|
|
30
|
+
"$ref": "#/definitions/Verb"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -1,44 +1,38 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
"type": "array",
|
|
3
|
-
"items": {
|
|
4
|
-
"$ref": "#/definitions/HTTPHandler"
|
|
5
|
-
},
|
|
6
|
-
"definitions": {
|
|
7
|
-
"
|
|
8
|
-
"type": "
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
]
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"type": "array",
|
|
3
|
+
"items": {
|
|
4
|
+
"$ref": "#/definitions/HTTPHandler"
|
|
5
|
+
},
|
|
6
|
+
"definitions": {
|
|
7
|
+
"Verb": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"regex": "^(?:GET|POST|PUT|DELETE)(?:,(?:GET|POST|PUT|DELETE))*$"
|
|
10
|
+
},
|
|
11
|
+
"HTTPHandler": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"id": {
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"class": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
},
|
|
20
|
+
"method": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"pattern": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"regexPattern": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"verbs": {
|
|
30
|
+
"$ref": "#/definitions/Verb"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
42
36
|
;
|
|
43
37
|
|
|
44
38
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/http-handlers-editor",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -22,9 +22,10 @@
|
|
|
22
22
|
"@emotion/react": "^11.4.0",
|
|
23
23
|
"@emotion/styled": "^11.14.0",
|
|
24
24
|
"@headlessui/react": "^1.7.19",
|
|
25
|
-
"@ws-ui/icons": "1.
|
|
26
|
-
"@ws-ui/shared": "1.
|
|
27
|
-
"@ws-ui/store": "1.
|
|
25
|
+
"@ws-ui/icons": "1.14.1",
|
|
26
|
+
"@ws-ui/shared": "1.14.1",
|
|
27
|
+
"@ws-ui/store": "1.14.1",
|
|
28
|
+
"@ws-ui/ui-components": "^1.0.36",
|
|
28
29
|
"classnames": "^2.3.1",
|
|
29
30
|
"downshift": "^6.1.3",
|
|
30
31
|
"lodash": "^4.17.21",
|