@shopfront/types 0.0.1-alpha.10 → 0.0.1-alpha.12

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/Database.gen.ts CHANGED
@@ -33,6 +33,10 @@ export interface KitchenShopfrontItem<
33
33
  item: TItem;
34
34
  }
35
35
 
36
+ export interface KitchenSellableItem {
37
+ id: string;
38
+ }
39
+
36
40
  export interface KitchenShopfrontProduct {
37
41
  id: string;
38
42
  name: string;
package/index.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  // Generation Version: 1
2
- export * as database from './Database.gen';
2
+ export * as scopes from "./Scopes.gen.ts";
3
+ export * as database from "./Database.gen.ts";
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@shopfront/types",
3
- "version": "0.0.1-alpha.10",
4
- "main": "index.ts",
5
- "types": "index.ts",
3
+ "version": "0.0.1-alpha.12",
4
+ "type": "module",
5
+ "main": "./index.ts",
6
+ "types": "./index.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./index.ts",
10
+ "import": "./index.ts"
11
+ }
12
+ },
6
13
  "files": [
7
14
  "index.ts",
8
15
  "Scopes.gen.ts",