@hectare/platform.clients.customers 1.1.103 → 1.1.105
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/BasicSearchUserDetail.d.ts +2 -0
- package/models/CreateOrganisationResponse.d.ts +2 -0
- package/models/PatchUser.d.ts +2 -0
- package/models/SearchResultsUserDetailSchema.d.ts +2 -0
- package/models/UserBasicInfo.d.ts +1 -0
- package/models/UserBasicInfoWithStatsSchema.d.ts +1 -0
- package/models/UserDetail.d.ts +2 -0
- package/models/UserProfile.d.ts +2 -0
- package/package.json +1 -1
|
@@ -99,8 +99,10 @@ export type CreateOrganisationResponse = {
|
|
|
99
99
|
whatsApp: boolean;
|
|
100
100
|
sms: boolean;
|
|
101
101
|
push: boolean;
|
|
102
|
+
biometrics: boolean;
|
|
102
103
|
onboardingProgress: Array<string> | null;
|
|
103
104
|
};
|
|
105
|
+
purchases: Array<'insights'>;
|
|
104
106
|
tokens?: {
|
|
105
107
|
id?: string;
|
|
106
108
|
access?: string;
|
package/models/PatchUser.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ export type PatchUser = {
|
|
|
23
23
|
whatsAppNotifications?: boolean | null;
|
|
24
24
|
smsNotifications?: boolean | null;
|
|
25
25
|
pushNotifications?: boolean | null;
|
|
26
|
+
biometricsEnabled?: boolean;
|
|
27
|
+
purchases?: Array<'insights'>;
|
|
26
28
|
preferences?: Array<string> | null;
|
|
27
29
|
preferencesRegionISOs?: Array<string> | null;
|
|
28
30
|
buyerExFarmPreferences?: Array<{
|
|
@@ -20,8 +20,10 @@ export type SearchResultsUserDetailSchema = {
|
|
|
20
20
|
whatsApp: boolean;
|
|
21
21
|
sms: boolean;
|
|
22
22
|
push: boolean;
|
|
23
|
+
biometrics: boolean;
|
|
23
24
|
onboardingProgress: Array<string> | null;
|
|
24
25
|
};
|
|
26
|
+
purchases: Array<'insights'>;
|
|
25
27
|
tokens?: {
|
|
26
28
|
id?: string;
|
|
27
29
|
access?: string;
|
package/models/UserDetail.d.ts
CHANGED
package/models/UserProfile.d.ts
CHANGED
|
@@ -99,8 +99,10 @@ export type UserProfile = {
|
|
|
99
99
|
whatsApp: boolean;
|
|
100
100
|
sms: boolean;
|
|
101
101
|
push: boolean;
|
|
102
|
+
biometrics: boolean;
|
|
102
103
|
onboardingProgress: Array<string> | null;
|
|
103
104
|
};
|
|
105
|
+
purchases: Array<'insights'>;
|
|
104
106
|
tokens?: {
|
|
105
107
|
id?: string;
|
|
106
108
|
access?: string;
|