@strapi/plugin-documentation 5.50.1 → 5.50.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.
@@ -37,7 +37,10 @@ var ko = {
37
37
  "pages.SettingsPage.toggle.label": "액세스 제한",
38
38
  "plugin.description.long": "Swagger UI를 사용하여 오픈 API 문서를 만들고 API를 시각화합니다.",
39
39
  "plugin.description.short": "Swagger UI를 사용하여 오픈 API 문서를 만들고 API를 시각화합니다.",
40
- "plugin.name": "도큐멘테이션"
40
+ "plugin.name": "도큐멘테이션",
41
+ "Input.error.contain.lowercase": "비밀번호에는 소문자가 하나 이상 포함되어야 합니다",
42
+ "Input.error.contain.number": "비밀번호에는 숫자가 하나 이상 포함되어야 합니다",
43
+ "Input.error.contain.uppercase": "비밀번호에는 대문자가 하나 이상 포함되어야 합니다"
41
44
  };
42
45
 
43
46
  module.exports = ko;
@@ -1 +1 @@
1
- {"version":3,"file":"ko.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"ko.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -35,7 +35,10 @@ var ko = {
35
35
  "pages.SettingsPage.toggle.label": "액세스 제한",
36
36
  "plugin.description.long": "Swagger UI를 사용하여 오픈 API 문서를 만들고 API를 시각화합니다.",
37
37
  "plugin.description.short": "Swagger UI를 사용하여 오픈 API 문서를 만들고 API를 시각화합니다.",
38
- "plugin.name": "도큐멘테이션"
38
+ "plugin.name": "도큐멘테이션",
39
+ "Input.error.contain.lowercase": "비밀번호에는 소문자가 하나 이상 포함되어야 합니다",
40
+ "Input.error.contain.number": "비밀번호에는 숫자가 하나 이상 포함되어야 합니다",
41
+ "Input.error.contain.uppercase": "비밀번호에는 대문자가 하나 이상 포함되어야 합니다"
39
42
  };
40
43
 
41
44
  export { ko as default };
@@ -1 +1 @@
1
- {"version":3,"file":"ko.json.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"ko.json.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -52,7 +52,7 @@ declare const _default: {
52
52
  register: typeof register;
53
53
  services: {
54
54
  documentation: ({ strapi }: {
55
- strapi: import("@strapi/types/dist/core").Strapi;
55
+ strapi: import("@strapi/types/dist/core/strapi.js").Strapi;
56
56
  }) => {
57
57
  getDocumentationVersion(): string;
58
58
  getFullDocumentationPath(): string;
@@ -73,7 +73,7 @@ declare const _default: {
73
73
  generateFullDoc(versionOpt?: string): Promise<void>;
74
74
  };
75
75
  override: ({ strapi }: {
76
- strapi: import("@strapi/types/dist/core").Strapi;
76
+ strapi: import("@strapi/types/dist/core/strapi.js").Strapi;
77
77
  }) => {
78
78
  registeredOverrides: Partial<import("./types").PluginConfig>[];
79
79
  excludedFromGeneration: string[];
@@ -2,7 +2,7 @@ import { type DocumentationService } from './documentation';
2
2
  import { type OverrideService } from './override';
3
3
  declare const _default: {
4
4
  documentation: ({ strapi }: {
5
- strapi: import("@strapi/types/dist/core").Strapi;
5
+ strapi: import("@strapi/types/dist/core/strapi.js").Strapi;
6
6
  }) => {
7
7
  getDocumentationVersion(): string;
8
8
  getFullDocumentationPath(): string;
@@ -23,7 +23,7 @@ declare const _default: {
23
23
  generateFullDoc(versionOpt?: string): Promise<void>;
24
24
  };
25
25
  override: ({ strapi }: {
26
- strapi: import("@strapi/types/dist/core").Strapi;
26
+ strapi: import("@strapi/types/dist/core/strapi.js").Strapi;
27
27
  }) => {
28
28
  registeredOverrides: Partial<import("../types").PluginConfig>[];
29
29
  excludedFromGeneration: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/plugin-documentation",
3
- "version": "5.50.1",
3
+ "version": "5.50.2",
4
4
  "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
5
5
  "homepage": "https://strapi.io",
6
6
  "bugs": {
@@ -52,24 +52,24 @@
52
52
  "build:types:server": "run -T tsc -p server/tsconfig.build.json --emitDeclarationOnly",
53
53
  "build:types:admin": "run -T tsc -p admin/tsconfig.build.json --emitDeclarationOnly",
54
54
  "clean": "run -T rimraf ./dist",
55
- "lint": "run -T eslint .",
55
+ "lint": "run -T eslint . --max-warnings=0",
56
56
  "test:front": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js",
57
57
  "test:front:watch": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js --watchAll",
58
58
  "test:ts:front": "run -T tsc -p admin/tsconfig.json",
59
- "test:ts:back": "run -T tsc --noEmit -p server/tsconfig.json",
59
+ "test:ts:back": "run -T tsc -p server/tsconfig.json",
60
60
  "test:unit": "run -T jest --verbose",
61
61
  "test:unit:watch": "run -T jest --watch",
62
62
  "watch": "run -T rollup -c -w"
63
63
  },
64
64
  "dependencies": {
65
65
  "@reduxjs/toolkit": "1.9.7",
66
- "@strapi/admin": "5.50.1",
67
- "@strapi/design-system": "2.2.1",
68
- "@strapi/icons": "2.2.1",
69
- "@strapi/utils": "5.50.1",
66
+ "@strapi/admin": "5.50.2",
67
+ "@strapi/design-system": "2.2.3",
68
+ "@strapi/icons": "2.2.3",
69
+ "@strapi/utils": "5.50.2",
70
70
  "bcryptjs": "2.4.3",
71
71
  "cheerio": "^1.2.0",
72
- "formik": "2.4.5",
72
+ "formik": "2.4.9",
73
73
  "fs-extra": "11.3.4",
74
74
  "immer": "9.0.21",
75
75
  "koa-static": "^5.0.0",
@@ -82,14 +82,19 @@
82
82
  },
83
83
  "devDependencies": {
84
84
  "@apidevtools/swagger-parser": "^10.1.0",
85
- "@strapi/admin-test-utils": "5.50.1",
86
- "@strapi/strapi": "5.50.1",
87
- "@strapi/types": "5.50.1",
85
+ "@strapi/admin-test-utils": "5.50.2",
86
+ "@strapi/strapi": "5.50.2",
87
+ "@strapi/types": "5.50.2",
88
+ "@testing-library/dom": "10.4.1",
89
+ "@testing-library/jest-dom": "6.9.1",
88
90
  "@testing-library/react": "16.3.2",
89
91
  "@testing-library/user-event": "14.6.1",
90
92
  "@types/fs-extra": "11.0.4",
93
+ "@types/jest": "29.5.2",
91
94
  "@types/koa": "2.15.2",
95
+ "@types/node": "20.19.41",
92
96
  "@types/swagger-ui-dist": "3.30.4",
97
+ "jest": "29.6.0",
93
98
  "koa": "2.16.4",
94
99
  "koa-body": "6.0.1",
95
100
  "koa-session": "7.0.2",