@hectare/platform.clients.customers 1.1.28 → 1.1.30
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/models/BusinessDetail.d.ts +1 -0
- package/models/BusinessUnitsDetail.d.ts +1 -0
- package/models/BusinessUnitsDetails.d.ts +1 -0
- package/models/CreateBusinessUnit.d.ts +1 -0
- package/models/CreateBusinessUnits.d.ts +1 -0
- package/models/CreateOrganisation.d.ts +1 -0
- package/models/CreateOrganisationResponse.d.ts +1 -0
- package/models/OrganisationDetail.d.ts +1 -0
- package/models/OrganisationExists.d.ts +1 -0
- package/models/PatchBusinessUnit.d.ts +1 -0
- package/models/PatchOrganisation.d.ts +1 -0
- package/models/UserAccess.d.ts +0 -4
- package/models/UserProfile.d.ts +1 -4
- package/package.json +4 -3
package/models/UserAccess.d.ts
CHANGED
package/models/UserProfile.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export type UserProfile = {
|
|
|
23
23
|
company?: {
|
|
24
24
|
assurance?: {
|
|
25
25
|
id: string | null;
|
|
26
|
+
key?: string | null;
|
|
26
27
|
body: 'RT' | 'SQC';
|
|
27
28
|
} | null;
|
|
28
29
|
id?: string | null;
|
|
@@ -223,10 +224,6 @@ export type UserProfile = {
|
|
|
223
224
|
read?: boolean;
|
|
224
225
|
write?: boolean;
|
|
225
226
|
}>;
|
|
226
|
-
inventory: Record<string, {
|
|
227
|
-
read?: boolean;
|
|
228
|
-
write?: boolean;
|
|
229
|
-
}>;
|
|
230
227
|
account: Record<string, {
|
|
231
228
|
read?: boolean;
|
|
232
229
|
write?: boolean;
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hectare/platform.clients.customers",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"exported": true,
|
|
6
6
|
"types": "index.d.ts",
|
|
7
|
-
"type": "
|
|
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
|
}
|