@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.
@@ -20,8 +20,10 @@ export type BasicSearchUserDetail = {
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;
@@ -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;
@@ -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;
@@ -67,6 +67,7 @@ export type UserBasicInfo = {
67
67
  whatsApp: boolean;
68
68
  sms: boolean;
69
69
  push: boolean;
70
+ biometrics: boolean;
70
71
  onboardingProgress: Array<string> | null;
71
72
  };
72
73
  authPlatformId: string;
@@ -67,6 +67,7 @@ export type UserBasicInfoWithStatsSchema = {
67
67
  whatsApp: boolean;
68
68
  sms: boolean;
69
69
  push: boolean;
70
+ biometrics: boolean;
70
71
  onboardingProgress: Array<string> | null;
71
72
  };
72
73
  authPlatformId?: string;
@@ -19,8 +19,10 @@ export type UserDetail = {
19
19
  whatsApp: boolean;
20
20
  sms: boolean;
21
21
  push: boolean;
22
+ biometrics: boolean;
22
23
  onboardingProgress: Array<string> | null;
23
24
  };
25
+ purchases: Array<'insights'>;
24
26
  tokens?: {
25
27
  id?: string;
26
28
  access?: string;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.103",
3
+ "version": "1.1.105",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",