@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.
- package/models/BusinessConnectionDetail.d.ts +1 -0
- package/models/BusinessConnectionsSummary.d.ts +1 -0
- package/models/ContactDetail.d.ts +1 -0
- package/models/CreateOrganisationResponse.d.ts +2 -0
- package/models/OrganisationDetail.d.ts +1 -0
- package/models/OrganisationExists.d.ts +1 -0
- package/models/PatchUser.d.ts +1 -0
- package/models/UserDetail.d.ts +1 -0
- package/models/UserProfile.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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;
|
package/models/PatchUser.d.ts
CHANGED
|
@@ -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;
|
package/models/UserDetail.d.ts
CHANGED
package/models/UserProfile.d.ts
CHANGED
|
@@ -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;
|