@hectare/platform.clients.customers 1.1.17 → 1.1.18

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.
@@ -180,6 +180,7 @@ export type CreateOrganisationResponse = {
180
180
  grades: Array<number>;
181
181
  regions: Array<string>;
182
182
  }>;
183
+ sellerPreferences?: Array<string>;
183
184
  phone?: {
184
185
  callingCode: string;
185
186
  number: string;
@@ -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;
@@ -180,6 +180,7 @@ export type UserProfile = {
180
180
  grades: Array<number>;
181
181
  regions: Array<string>;
182
182
  }>;
183
+ sellerPreferences?: Array<string>;
183
184
  phone?: {
184
185
  callingCode: string;
185
186
  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.18",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",