@hectare/platform.clients.customers 1.1.28 → 1.1.29

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.
@@ -5,10 +5,6 @@ export type UserAccess = {
5
5
  read?: boolean;
6
6
  write?: boolean;
7
7
  }>;
8
- inventory: Record<string, {
9
- read?: boolean;
10
- write?: boolean;
11
- }>;
12
8
  account: Record<string, {
13
9
  read?: boolean;
14
10
  write?: boolean;
@@ -223,10 +223,6 @@ export type UserProfile = {
223
223
  read?: boolean;
224
224
  write?: boolean;
225
225
  }>;
226
- inventory: Record<string, {
227
- read?: boolean;
228
- write?: boolean;
229
- }>;
230
226
  account: Record<string, {
231
227
  read?: boolean;
232
228
  write?: boolean;
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.28",
3
+ "version": "1.1.29",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",
7
- "type": "commonjs",
7
+ "type": "module",
8
8
  "author": "engineering@wearehectare.com",
9
9
  "source": "index.js",
10
10
  "publishConfig": {
11
11
  "access": "public"
12
- }
12
+ },
13
+ "module": "./index.js"
13
14
  }