@docusaurus/plugin-content-blog 3.7.0-canary-6228 → 3.7.0-canary-6231

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/plugin-content-blog",
3
- "version": "3.7.0-canary-6228",
3
+ "version": "3.7.0-canary-6231",
4
4
  "description": "Blog plugin for Docusaurus.",
5
5
  "main": "lib/index.js",
6
6
  "types": "src/plugin-content-blog.d.ts",
@@ -31,14 +31,14 @@
31
31
  },
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "@docusaurus/core": "3.7.0-canary-6228",
35
- "@docusaurus/logger": "3.7.0-canary-6228",
36
- "@docusaurus/mdx-loader": "3.7.0-canary-6228",
37
- "@docusaurus/theme-common": "3.7.0-canary-6228",
38
- "@docusaurus/types": "3.7.0-canary-6228",
39
- "@docusaurus/utils": "3.7.0-canary-6228",
40
- "@docusaurus/utils-common": "3.7.0-canary-6228",
41
- "@docusaurus/utils-validation": "3.7.0-canary-6228",
34
+ "@docusaurus/core": "3.7.0-canary-6231",
35
+ "@docusaurus/logger": "3.7.0-canary-6231",
36
+ "@docusaurus/mdx-loader": "3.7.0-canary-6231",
37
+ "@docusaurus/theme-common": "3.7.0-canary-6231",
38
+ "@docusaurus/types": "3.7.0-canary-6231",
39
+ "@docusaurus/utils": "3.7.0-canary-6231",
40
+ "@docusaurus/utils-common": "3.7.0-canary-6231",
41
+ "@docusaurus/utils-validation": "3.7.0-canary-6231",
42
42
  "cheerio": "1.0.0-rc.12",
43
43
  "feed": "^4.2.2",
44
44
  "fs-extra": "^11.1.1",
@@ -63,5 +63,5 @@
63
63
  "@total-typescript/shoehorn": "^0.1.2",
64
64
  "tree-node-cli": "^1.6.0"
65
65
  },
66
- "gitHead": "3f8026882f9caca53ae9d217f12bfc26db79bba3"
66
+ "gitHead": "6a28543acaedb9fd6b7d7a6731dc9d89f45f5437"
67
67
  }
@@ -16,7 +16,12 @@ declare module '@docusaurus/plugin-content-blog' {
16
16
  FrontMatterLastUpdate,
17
17
  TagsPluginOptions,
18
18
  } from '@docusaurus/utils';
19
- import type {DocusaurusConfig, Plugin, LoadContext} from '@docusaurus/types';
19
+ import type {
20
+ DocusaurusConfig,
21
+ Plugin,
22
+ LoadContext,
23
+ OptionValidationContext,
24
+ } from '@docusaurus/types';
20
25
  import type {Item as FeedItem} from 'feed';
21
26
  import type {Overwrite} from 'utility-types';
22
27
 
@@ -666,6 +671,10 @@ declare module '@docusaurus/plugin-content-blog' {
666
671
  context: LoadContext,
667
672
  options: PluginOptions,
668
673
  ): Promise<Plugin<BlogContent>>;
674
+
675
+ export function validateOptions(
676
+ args: OptionValidationContext<Options | undefined, PluginOptions>,
677
+ ): PluginOptions;
669
678
  }
670
679
 
671
680
  declare module '@theme/BlogPostPage' {