@hectare/platform.clients.customers 1.1.17 → 1.1.19

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.
@@ -12,6 +12,7 @@ export type BusinessConnectionDetail = {
12
12
  email?: string;
13
13
  id?: string;
14
14
  authPlatformId?: string;
15
+ hasProfile?: boolean;
15
16
  }>;
16
17
  location?: {
17
18
  what3words: string | null;
@@ -14,6 +14,7 @@ export type BusinessConnectionsSummary = {
14
14
  email?: string;
15
15
  id?: string;
16
16
  authPlatformId?: string;
17
+ hasProfile?: boolean;
17
18
  }>;
18
19
  location?: {
19
20
  what3words: string | null;
@@ -8,4 +8,5 @@ export type ContactDetail = {
8
8
  email?: string;
9
9
  id?: string;
10
10
  authPlatformId?: string;
11
+ hasProfile?: boolean;
11
12
  };
@@ -79,6 +79,7 @@ export type CreateOrganisationResponse = {
79
79
  email?: string;
80
80
  id?: string;
81
81
  authPlatformId?: string;
82
+ hasProfile?: boolean;
82
83
  }>;
83
84
  location?: {
84
85
  what3words: string | null;
@@ -180,6 +181,7 @@ export type CreateOrganisationResponse = {
180
181
  grades: Array<number>;
181
182
  regions: Array<string>;
182
183
  }>;
184
+ sellerPreferences?: Array<string>;
183
185
  phone?: {
184
186
  callingCode: string;
185
187
  number: string;
@@ -78,6 +78,7 @@ export type OrganisationDetail = {
78
78
  email?: string;
79
79
  id?: string;
80
80
  authPlatformId?: string;
81
+ hasProfile?: boolean;
81
82
  }>;
82
83
  location?: {
83
84
  what3words: string | null;
@@ -81,6 +81,7 @@ export type OrganisationExists = {
81
81
  email?: string;
82
82
  id?: string;
83
83
  authPlatformId?: string;
84
+ hasProfile?: boolean;
84
85
  }>;
85
86
  location?: {
86
87
  what3words: string | null;
@@ -21,6 +21,7 @@ export type PatchUser = {
21
21
  };
22
22
  whatsAppNotifications?: boolean | null;
23
23
  smsNotifications?: boolean | null;
24
+ preferences?: Array<string> | null;
24
25
  onboardingProgress?: Array<(number | string)> | null;
25
26
  harvestNotificationDismissed?: boolean | null;
26
27
  harvestDialogDismissed?: boolean | null;
@@ -41,6 +41,7 @@ export type UserDetail = {
41
41
  grades: Array<number>;
42
42
  regions: Array<string>;
43
43
  }>;
44
+ sellerPreferences?: Array<string>;
44
45
  phone?: {
45
46
  callingCode: string;
46
47
  number: string;
@@ -79,6 +79,7 @@ export type UserProfile = {
79
79
  email?: string;
80
80
  id?: string;
81
81
  authPlatformId?: string;
82
+ hasProfile?: boolean;
82
83
  }>;
83
84
  location?: {
84
85
  what3words: string | null;
@@ -180,6 +181,7 @@ export type UserProfile = {
180
181
  grades: Array<number>;
181
182
  regions: Array<string>;
182
183
  }>;
184
+ sellerPreferences?: Array<string>;
183
185
  phone?: {
184
186
  callingCode: string;
185
187
  number: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.17",
3
+ "version": "1.1.19",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",