@use-stall/types 0.2.5 → 0.2.6

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,11 +1,11 @@
1
1
  {
2
2
  "name": "@use-stall/types",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "Type declarations for Stall SDKs",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "unpkg": "index.js",
10
- "private": false
10
+ "private":false
11
11
  }
@@ -1,4 +1,4 @@
1
- type ModuleKey =
1
+ export type ConnectorModuleKey =
2
2
  | "products"
3
3
  | "variants"
4
4
  | "collections"
@@ -24,7 +24,7 @@ type ModuleKey =
24
24
  | "fulfillments"; // Individual fulfillment instances for an order
25
25
 
26
26
  export interface ConnectorModulesType {
27
- [key in ModuleKey]: {
27
+ [key in ConnectorModuleKey]: {
28
28
  supported: boolean;
29
29
  actions: {
30
30
  create: boolean;