@hectare/platform.clients.customers 1.1.50 → 1.1.51

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.
@@ -105,6 +105,7 @@ export type CreateOrganisationResponse = {
105
105
  };
106
106
  whatsApp: boolean;
107
107
  sms: boolean;
108
+ push: boolean;
108
109
  onboardingProgress: Array<string> | null;
109
110
  };
110
111
  tokens?: {
@@ -21,6 +21,7 @@ export type PatchUser = {
21
21
  };
22
22
  whatsAppNotifications?: boolean | null;
23
23
  smsNotifications?: boolean | null;
24
+ pushNotifications?: boolean | null;
24
25
  preferences?: Array<string> | null;
25
26
  onboardingProgress?: Array<string> | null;
26
27
  };
@@ -19,6 +19,7 @@ export type SearchResultsUserDetailSchema = {
19
19
  };
20
20
  whatsApp: boolean;
21
21
  sms: boolean;
22
+ push: boolean;
22
23
  onboardingProgress: Array<string> | null;
23
24
  };
24
25
  tokens?: {
@@ -58,6 +58,7 @@ export type UserBasicInfo = {
58
58
  };
59
59
  whatsApp: boolean;
60
60
  sms: boolean;
61
+ push: boolean;
61
62
  onboardingProgress: Array<string> | null;
62
63
  };
63
64
  authPlatformId?: string;
@@ -58,6 +58,7 @@ export type UserBasicInfoWithStatsSchema = {
58
58
  };
59
59
  whatsApp: boolean;
60
60
  sms: boolean;
61
+ push: boolean;
61
62
  onboardingProgress: Array<string> | null;
62
63
  };
63
64
  authPlatformId?: string;
@@ -18,6 +18,7 @@ export type UserDetail = {
18
18
  };
19
19
  whatsApp: boolean;
20
20
  sms: boolean;
21
+ push: boolean;
21
22
  onboardingProgress: Array<string> | null;
22
23
  };
23
24
  tokens?: {
@@ -105,6 +105,7 @@ export type UserProfile = {
105
105
  };
106
106
  whatsApp: boolean;
107
107
  sms: boolean;
108
+ push: boolean;
108
109
  onboardingProgress: Array<string> | null;
109
110
  };
110
111
  tokens?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.50",
3
+ "version": "1.1.51",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",