@strapi/plugin-documentation 4.6.0 → 4.7.0-beta.0
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/README.md +5 -5
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -53,19 +53,19 @@ It has the following structure
|
|
|
53
53
|
|
|
54
54
|
```
|
|
55
55
|
{
|
|
56
|
-
"openapi": "3.0.0" // do not change this version
|
|
56
|
+
"openapi": "3.0.0", // do not change this version
|
|
57
57
|
"info": {
|
|
58
58
|
"version": "1.0.0" // change this line to create a new version
|
|
59
59
|
...
|
|
60
|
-
}
|
|
60
|
+
},
|
|
61
61
|
"x-strapi-config": {
|
|
62
62
|
"path": "/documentation", // Change this line to change to url of the doc
|
|
63
63
|
"showGeneratedFiles": true // Do not change this line at the moment...
|
|
64
64
|
},
|
|
65
|
-
"servers" {} // Your servers config (it will be automated)
|
|
65
|
+
"servers": {}, // Your servers config (it will be automated)
|
|
66
66
|
"externalDocs": {},
|
|
67
|
-
"paths": {} // All your Api routes
|
|
68
|
-
"tags": [] // Group of route
|
|
67
|
+
"paths": {}, // All your Api routes
|
|
68
|
+
"tags": [], // Group of route
|
|
69
69
|
"components": {} // Default generated components and custom ones
|
|
70
70
|
}
|
|
71
71
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/plugin-documentation",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0-beta.0",
|
|
4
4
|
"description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"test": "echo \"no tests yet\""
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@strapi/helper-plugin": "4.
|
|
28
|
-
"@strapi/utils": "4.
|
|
27
|
+
"@strapi/helper-plugin": "4.7.0-beta.0",
|
|
28
|
+
"@strapi/utils": "4.7.0-beta.0",
|
|
29
29
|
"bcryptjs": "2.4.3",
|
|
30
30
|
"cheerio": "^1.0.0-rc.12",
|
|
31
31
|
"fs-extra": "10.0.0",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"react": "^17.0.2",
|
|
37
37
|
"react-copy-to-clipboard": "^5.1.0",
|
|
38
38
|
"react-dom": "^17.0.2",
|
|
39
|
-
"react-intl": "
|
|
40
|
-
"react-redux": "
|
|
39
|
+
"react-intl": "6.2.7",
|
|
40
|
+
"react-redux": "8.0.5",
|
|
41
41
|
"react-router": "^5.2.0",
|
|
42
42
|
"react-router-dom": "5.3.4",
|
|
43
|
-
"redux": "^4.
|
|
43
|
+
"redux": "^4.2.1",
|
|
44
44
|
"reselect": "^4.0.0",
|
|
45
45
|
"swagger-ui-dist": "4.15.5",
|
|
46
46
|
"yaml": "1.10.2"
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@testing-library/react": "12.1.4",
|
|
53
|
-
"msw": "0.
|
|
53
|
+
"msw": "1.0.0"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=14.19.1 <=18.x.x",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
|
|
63
63
|
"kind": "plugin"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "880ba7af867ad43c4cc45b47467b76a9b5606b6e"
|
|
66
66
|
}
|