@consilioweb/payload-seo-analyzer 1.8.0 → 1.9.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 +33 -1
- package/dist/client.cjs +232 -6
- package/dist/client.js +232 -6
- package/dist/index.cjs +393 -120
- package/dist/index.d.cts +19 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +393 -120
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -168,6 +168,11 @@ interface SeoFeatures {
|
|
|
168
168
|
* enabled, the redirect URI registered, and ideally SEO_GSC_ENCRYPTION_KEY for token-at-rest.
|
|
169
169
|
*/
|
|
170
170
|
gscApi?: boolean;
|
|
171
|
+
/**
|
|
172
|
+
* Background cache warm-up on init + hourly (pre-loads collection data). Enabled by
|
|
173
|
+
* default. Set to `false` on low-memory hosting to avoid loading all documents at startup.
|
|
174
|
+
*/
|
|
175
|
+
warmCache?: boolean;
|
|
171
176
|
/** Duplicate content detection (endpoint) */
|
|
172
177
|
duplicateContent?: boolean;
|
|
173
178
|
/** Settings view (/admin/seo-config) */
|
|
@@ -448,6 +453,8 @@ interface DashboardTranslations {
|
|
|
448
453
|
};
|
|
449
454
|
seoView: {
|
|
450
455
|
loadingAudit: string;
|
|
456
|
+
buildingAudit: string;
|
|
457
|
+
buildTimeout: string;
|
|
451
458
|
errorSaving: string;
|
|
452
459
|
auditTitle: string;
|
|
453
460
|
pagesAnalyzed: string;
|
|
@@ -891,6 +898,18 @@ interface DashboardTranslations {
|
|
|
891
898
|
metaTitle: string;
|
|
892
899
|
metaDescription: string;
|
|
893
900
|
emptyValue: string;
|
|
901
|
+
optimizeWithAi: string;
|
|
902
|
+
optimizeIntro: string;
|
|
903
|
+
optimizeRunning: string;
|
|
904
|
+
applyAll: string;
|
|
905
|
+
applied: string;
|
|
906
|
+
whyChanges: string;
|
|
907
|
+
labelCurrent: string;
|
|
908
|
+
labelSuggested: string;
|
|
909
|
+
labelFocusKeyword: string;
|
|
910
|
+
heuristicNote: string;
|
|
911
|
+
applySaveHint: string;
|
|
912
|
+
noMetaChange: string;
|
|
894
913
|
};
|
|
895
914
|
scoreHistory: {
|
|
896
915
|
loading: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -168,6 +168,11 @@ interface SeoFeatures {
|
|
|
168
168
|
* enabled, the redirect URI registered, and ideally SEO_GSC_ENCRYPTION_KEY for token-at-rest.
|
|
169
169
|
*/
|
|
170
170
|
gscApi?: boolean;
|
|
171
|
+
/**
|
|
172
|
+
* Background cache warm-up on init + hourly (pre-loads collection data). Enabled by
|
|
173
|
+
* default. Set to `false` on low-memory hosting to avoid loading all documents at startup.
|
|
174
|
+
*/
|
|
175
|
+
warmCache?: boolean;
|
|
171
176
|
/** Duplicate content detection (endpoint) */
|
|
172
177
|
duplicateContent?: boolean;
|
|
173
178
|
/** Settings view (/admin/seo-config) */
|
|
@@ -448,6 +453,8 @@ interface DashboardTranslations {
|
|
|
448
453
|
};
|
|
449
454
|
seoView: {
|
|
450
455
|
loadingAudit: string;
|
|
456
|
+
buildingAudit: string;
|
|
457
|
+
buildTimeout: string;
|
|
451
458
|
errorSaving: string;
|
|
452
459
|
auditTitle: string;
|
|
453
460
|
pagesAnalyzed: string;
|
|
@@ -891,6 +898,18 @@ interface DashboardTranslations {
|
|
|
891
898
|
metaTitle: string;
|
|
892
899
|
metaDescription: string;
|
|
893
900
|
emptyValue: string;
|
|
901
|
+
optimizeWithAi: string;
|
|
902
|
+
optimizeIntro: string;
|
|
903
|
+
optimizeRunning: string;
|
|
904
|
+
applyAll: string;
|
|
905
|
+
applied: string;
|
|
906
|
+
whyChanges: string;
|
|
907
|
+
labelCurrent: string;
|
|
908
|
+
labelSuggested: string;
|
|
909
|
+
labelFocusKeyword: string;
|
|
910
|
+
heuristicNote: string;
|
|
911
|
+
applySaveHint: string;
|
|
912
|
+
noMetaChange: string;
|
|
894
913
|
};
|
|
895
914
|
scoreHistory: {
|
|
896
915
|
loading: string;
|