strapi-plugin-blogseo 1.1.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/LICENSE +21 -0
- package/README.md +81 -0
- package/dist/admin/Settings-BJbpMBlx.mjs +149 -0
- package/dist/admin/Settings-C3-8r0LW.js +149 -0
- package/dist/admin/en-CEwYiwKv.mjs +8 -0
- package/dist/admin/en-DXs_qePG.js +8 -0
- package/dist/admin/index.js +68 -0
- package/dist/admin/index.mjs +68 -0
- package/dist/admin/src/components/Initializer.d.ts +5 -0
- package/dist/admin/src/components/PluginIcon.d.ts +2 -0
- package/dist/admin/src/index.d.ts +3 -0
- package/dist/admin/src/pages/Settings.d.ts +2 -0
- package/dist/admin/src/pluginId.d.ts +1 -0
- package/dist/admin/src/utils/getTranslation.d.ts +2 -0
- package/dist/server/index.js +206 -0
- package/dist/server/index.mjs +206 -0
- package/dist/server/src/bootstrap.d.ts +5 -0
- package/dist/server/src/config/index.d.ts +7 -0
- package/dist/server/src/content-types/index.d.ts +2 -0
- package/dist/server/src/controllers/blogseo.d.ts +11 -0
- package/dist/server/src/controllers/index.d.ts +12 -0
- package/dist/server/src/destroy.d.ts +5 -0
- package/dist/server/src/index.d.ts +98 -0
- package/dist/server/src/middlewares/index.d.ts +2 -0
- package/dist/server/src/policies/index.d.ts +2 -0
- package/dist/server/src/register.d.ts +5 -0
- package/dist/server/src/routes/admin/index.d.ts +12 -0
- package/dist/server/src/routes/content-api/index.d.ts +12 -0
- package/dist/server/src/routes/index.d.ts +25 -0
- package/dist/server/src/services/blogseo.d.ts +43 -0
- package/dist/server/src/services/index.d.ts +43 -0
- package/dist/server/src/utils/getService.d.ts +3 -0
- package/package.json +89 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
blogseo: ({ strapi }: {
|
|
3
|
+
strapi: import('@strapi/types/dist/core').Strapi;
|
|
4
|
+
}) => {
|
|
5
|
+
getStatus(): Promise<{
|
|
6
|
+
connected: boolean;
|
|
7
|
+
siteUrl: string;
|
|
8
|
+
pluralApiId: string;
|
|
9
|
+
}>;
|
|
10
|
+
listCollectionContentTypes(): {
|
|
11
|
+
uid: string;
|
|
12
|
+
displayName: any;
|
|
13
|
+
pluralApiId: any;
|
|
14
|
+
}[];
|
|
15
|
+
listContentTypeSchemas(): {
|
|
16
|
+
uid: string;
|
|
17
|
+
apiID: any;
|
|
18
|
+
schema: {
|
|
19
|
+
displayName: any;
|
|
20
|
+
singularName: any;
|
|
21
|
+
pluralName: any;
|
|
22
|
+
kind: any;
|
|
23
|
+
draftAndPublish: any;
|
|
24
|
+
pluginOptions: any;
|
|
25
|
+
attributes: {
|
|
26
|
+
[k: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
}[];
|
|
30
|
+
connect({ apiKey, pluralApiId, serverUrl, }: {
|
|
31
|
+
apiKey: string;
|
|
32
|
+
pluralApiId: string;
|
|
33
|
+
serverUrl: string;
|
|
34
|
+
}): Promise<{
|
|
35
|
+
connected: boolean;
|
|
36
|
+
siteUrl: string;
|
|
37
|
+
}>;
|
|
38
|
+
disconnect(): Promise<{
|
|
39
|
+
connected: boolean;
|
|
40
|
+
}>;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
export default _default;
|
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.1.0",
|
|
3
|
+
"keywords": [
|
|
4
|
+
"strapi",
|
|
5
|
+
"strapi-plugin",
|
|
6
|
+
"plugin",
|
|
7
|
+
"blogseo",
|
|
8
|
+
"seo",
|
|
9
|
+
"blog",
|
|
10
|
+
"backlinks",
|
|
11
|
+
"content",
|
|
12
|
+
"ai"
|
|
13
|
+
],
|
|
14
|
+
"type": "commonjs",
|
|
15
|
+
"exports": {
|
|
16
|
+
"./package.json": "./package.json",
|
|
17
|
+
"./strapi-admin": {
|
|
18
|
+
"types": "./dist/admin/src/index.d.ts",
|
|
19
|
+
"source": "./admin/src/index.ts",
|
|
20
|
+
"import": "./dist/admin/index.mjs",
|
|
21
|
+
"require": "./dist/admin/index.js",
|
|
22
|
+
"default": "./dist/admin/index.js"
|
|
23
|
+
},
|
|
24
|
+
"./strapi-server": {
|
|
25
|
+
"types": "./dist/server/src/index.d.ts",
|
|
26
|
+
"source": "./server/src/index.ts",
|
|
27
|
+
"import": "./dist/server/index.mjs",
|
|
28
|
+
"require": "./dist/server/index.js",
|
|
29
|
+
"default": "./dist/server/index.js"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "strapi-plugin build",
|
|
37
|
+
"watch": "strapi-plugin watch",
|
|
38
|
+
"watch:link": "strapi-plugin watch:link",
|
|
39
|
+
"verify": "strapi-plugin verify",
|
|
40
|
+
"test:ts:front": "tsc -p admin/tsconfig.json --noEmit",
|
|
41
|
+
"test:ts:back": "tsc -p server/tsconfig.json --noEmit"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@strapi/design-system": "^2.2.1",
|
|
45
|
+
"@strapi/icons": "^2.2.1",
|
|
46
|
+
"@strapi/sdk-plugin": "^6.1.1",
|
|
47
|
+
"@strapi/strapi": "^5.49.0",
|
|
48
|
+
"@strapi/typescript-utils": "^5.49.0",
|
|
49
|
+
"@types/react": "^18.3.31",
|
|
50
|
+
"@types/react-dom": "^18.3.7",
|
|
51
|
+
"prettier": "^3.9.4",
|
|
52
|
+
"react": "^18.3.1",
|
|
53
|
+
"react-dom": "^18.3.1",
|
|
54
|
+
"react-intl": "^6.8.9",
|
|
55
|
+
"react-router-dom": "^6.30.4",
|
|
56
|
+
"styled-components": "^6.4.3",
|
|
57
|
+
"typescript": "^5.9.3",
|
|
58
|
+
"yalc": "^1.0.0-pre.53"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"@strapi/design-system": "^2.2.1",
|
|
62
|
+
"@strapi/icons": "^2.2.1",
|
|
63
|
+
"@strapi/sdk-plugin": "^6.1.1",
|
|
64
|
+
"@strapi/strapi": "^5.49.0",
|
|
65
|
+
"react": "^18.3.1",
|
|
66
|
+
"react-dom": "^18.3.1",
|
|
67
|
+
"react-intl": "^6.8.9",
|
|
68
|
+
"react-router-dom": "^6.30.4",
|
|
69
|
+
"styled-components": "^6.4.3"
|
|
70
|
+
},
|
|
71
|
+
"strapi": {
|
|
72
|
+
"kind": "plugin",
|
|
73
|
+
"name": "blogseo",
|
|
74
|
+
"displayName": "BlogSEO",
|
|
75
|
+
"description": "Build high-quality backlinks and publish AI-generated SEO articles straight into your Strapi collections with BlogSEO."
|
|
76
|
+
},
|
|
77
|
+
"name": "strapi-plugin-blogseo",
|
|
78
|
+
"description": "Build high-quality backlinks and publish AI-generated SEO articles straight into your Strapi collections with BlogSEO.",
|
|
79
|
+
"license": "MIT",
|
|
80
|
+
"repository": {
|
|
81
|
+
"type": "git",
|
|
82
|
+
"url": "git+ssh://git@github.com/baballev/blogseo-strapi-plugin.git"
|
|
83
|
+
},
|
|
84
|
+
"bugs": {
|
|
85
|
+
"url": "https://github.com/baballev/blogseo-strapi-plugin/issues"
|
|
86
|
+
},
|
|
87
|
+
"homepage": "https://www.blogseo.io",
|
|
88
|
+
"author": "Vincent JOSSE <support@blogseo.io>"
|
|
89
|
+
}
|