@klymchuk/v2-types 1.0.3 → 1.0.5

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": "@klymchuk/v2-types",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "author": "Mykhailo Klymchuk",
5
5
  "description": "Shared TypeScript types for klymchuk-brand-v2 projects",
6
6
  "main": "./src/index.ts",
@@ -31,7 +31,7 @@
31
31
  "ecommerce"
32
32
  ],
33
33
  "dependencies": {
34
- "@medusajs/types": "2.12.4"
34
+ "@medusajs/types": "2.13.1"
35
35
  },
36
36
  "license": "ISC"
37
37
  }
package/src/index.ts CHANGED
@@ -10,6 +10,7 @@ export * from '@medusajs/types';
10
10
  export * from './utils.types.js';
11
11
  export * from './my-np.types.js';
12
12
  export * from './checkout.types.js';
13
+ export * from './seo.types.js';
13
14
 
14
15
  interface OrderCheckoutParams {
15
16
  cart_id: string
@@ -0,0 +1,12 @@
1
+ interface SeoMetadata {
2
+ title?: string;
3
+ description?: string;
4
+ shortDescription?: string;
5
+ instagramLink?: string;
6
+ twitterLink?: string;
7
+ keywords?: string[];
8
+ }
9
+
10
+ export type {
11
+ SeoMetadata,
12
+ };