@orion-studios/payload-seo-audit 1.1.1 → 1.1.3

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.
@@ -0,0 +1,3 @@
1
+ import type { CollectionConfig } from 'payload';
2
+ export declare const SeoDashboardViewCompat: CollectionConfig;
3
+ //# sourceMappingURL=SeoDashboardViewCompat.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SeoDashboardViewCompat.d.ts","sourceRoot":"","sources":["../../src/collections/SeoDashboardViewCompat.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAM/C,eAAO,MAAM,sBAAsB,EAAE,gBAkBpC,CAAA"}
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SeoDashboardViewCompat = void 0;
4
+ exports.SeoDashboardViewCompat = {
5
+ slug: 'seo-dashboard-view',
6
+ labels: {
7
+ singular: 'SEO Dashboard View (Compat)',
8
+ plural: 'SEO Dashboard View (Compat)',
9
+ },
10
+ admin: {
11
+ hidden: true,
12
+ group: false,
13
+ hideAPIURL: true,
14
+ },
15
+ access: {
16
+ read: () => false,
17
+ create: () => false,
18
+ update: () => false,
19
+ delete: () => false,
20
+ },
21
+ fields: [],
22
+ };
@@ -6,7 +6,7 @@ exports.SeoDashboard = {
6
6
  slug: 'seo-dashboard',
7
7
  label: 'SEO Dashboard',
8
8
  admin: {
9
- group: false,
9
+ group: 'SEO',
10
10
  components: {
11
11
  views: {
12
12
  edit: {
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ const SeoSnapshots_1 = require("./collections/SeoSnapshots");
7
7
  const SeoPageResults_1 = require("./collections/SeoPageResults");
8
8
  const SeoKeywordVisibility_1 = require("./collections/SeoKeywordVisibility");
9
9
  const SeoAuthoritySnapshots_1 = require("./collections/SeoAuthoritySnapshots");
10
- const SeoDashboardView_1 = require("./collections/SeoDashboardView");
10
+ const SeoDashboardViewCompat_1 = require("./collections/SeoDashboardViewCompat");
11
11
  const SeoDashboard_1 = require("./globals/SeoDashboard");
12
12
  const SeoIntegrations_1 = require("./globals/SeoIntegrations");
13
13
  const seoAuditPlugin = (pluginConfig) => {
@@ -15,7 +15,7 @@ const seoAuditPlugin = (pluginConfig) => {
15
15
  const seoConfig = (0, config_1.normalizeConfig)(pluginConfig);
16
16
  const collections = [
17
17
  ...(incomingConfig.collections || []),
18
- SeoDashboardView_1.SeoDashboardView,
18
+ SeoDashboardViewCompat_1.SeoDashboardViewCompat,
19
19
  SeoSnapshots_1.SeoSnapshots,
20
20
  SeoPageResults_1.SeoPageResults,
21
21
  SeoKeywordVisibility_1.SeoKeywordVisibility,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orion-studios/payload-seo-audit",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Professional SEO audit system for Payload CMS 3.0 + Next.js 15 projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,3 +0,0 @@
1
- import type { CollectionConfig } from 'payload';
2
- export declare const SeoDashboardView: CollectionConfig;
3
- //# sourceMappingURL=SeoDashboardView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SeoDashboardView.d.ts","sourceRoot":"","sources":["../../src/collections/SeoDashboardView.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAG/C,eAAO,MAAM,gBAAgB,EAAE,gBAyB9B,CAAA"}
@@ -1,30 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SeoDashboardView = void 0;
4
- const access_1 = require("../utilities/access");
5
- exports.SeoDashboardView = {
6
- slug: 'seo-dashboard-view',
7
- labels: {
8
- singular: 'SEO Dashboard',
9
- plural: 'SEO Dashboard',
10
- },
11
- admin: {
12
- group: 'SEO',
13
- hideAPIURL: true,
14
- defaultColumns: [],
15
- components: {
16
- views: {
17
- list: {
18
- Component: '@orion-studios/payload-seo-audit/components#SeoDashboard',
19
- },
20
- },
21
- },
22
- },
23
- access: {
24
- read: access_1.seoAdminAccess,
25
- create: () => false,
26
- update: () => false,
27
- delete: () => false,
28
- },
29
- fields: [],
30
- };