@monkeyplus/flow 6.0.62 → 6.0.63

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": "@monkeyplus/flow",
3
- "version": "6.0.62",
3
+ "version": "6.0.63",
4
4
  "description": "@monkeyplus/flow package-first runtime with Vite, Nitro, Vue and a workspace playground.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -1,3 +1,4 @@
1
+ import type { WebPage } from '@unhead/schema-org';
1
2
  import type { UseHeadInput, UseSeoMetaInput } from '@unhead/vue';
2
3
  export type MaybePromise<T> = T | Promise<T>;
3
4
  export interface FlowLocale {
@@ -37,7 +38,10 @@ export interface LegacySeoDefinition {
37
38
  facebook?: boolean;
38
39
  }
39
40
  export type HeadDefinition = UseHeadInput & LegacySeoDefinition & {
40
- seo: UseSeoMetaInput;
41
+ seo: UseSeoMetaInput & {
42
+ webType: WebPage['@type'];
43
+ custom?: any;
44
+ };
41
45
  };
42
46
  /**
43
47
  * @deprecated Use HeadDefinition.