@hectare/platform.clients.customers 1.1.22 → 1.1.24

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.
@@ -162,7 +162,7 @@ export type CreateOrganisationResponse = {
162
162
  };
163
163
  whatsApp: boolean;
164
164
  sms: boolean;
165
- onboardingProgress: Array<(number | string)> | null;
165
+ onboardingProgress: Array<string> | null;
166
166
  harvestNotificationDismissed: boolean;
167
167
  harvestDialogDismissed: boolean;
168
168
  listingsWelcomeRead: boolean;
@@ -175,6 +175,7 @@ export type CreateOrganisationResponse = {
175
175
  };
176
176
  groups?: Array<string>;
177
177
  roles?: Array<string>;
178
+ userTypes?: Array<string>;
178
179
  profiles?: Array<{
179
180
  organisationId: string;
180
181
  businessUnits: Array<string>;
@@ -22,7 +22,7 @@ export type PatchUser = {
22
22
  whatsAppNotifications?: boolean | null;
23
23
  smsNotifications?: boolean | null;
24
24
  preferences?: Array<string> | null;
25
- onboardingProgress?: Array<(number | string)> | null;
25
+ onboardingProgress?: Array<string> | null;
26
26
  harvestNotificationDismissed?: boolean | null;
27
27
  harvestDialogDismissed?: boolean | null;
28
28
  listingsWelcomeRead?: boolean | null;
@@ -19,7 +19,7 @@ export type SearchResultsUserDetailSchema = {
19
19
  };
20
20
  whatsApp: boolean;
21
21
  sms: boolean;
22
- onboardingProgress: Array<(number | string)> | null;
22
+ onboardingProgress: Array<string> | null;
23
23
  harvestNotificationDismissed: boolean;
24
24
  harvestDialogDismissed: boolean;
25
25
  listingsWelcomeRead: boolean;
@@ -32,6 +32,7 @@ export type SearchResultsUserDetailSchema = {
32
32
  };
33
33
  groups?: Array<string>;
34
34
  roles?: Array<string>;
35
+ userTypes?: Array<string>;
35
36
  profiles?: Array<{
36
37
  organisationId: string;
37
38
  businessUnits: Array<string>;
@@ -62,10 +62,11 @@ export type UserBasicInfo = {
62
62
  };
63
63
  whatsApp: boolean;
64
64
  sms: boolean;
65
- onboardingProgress: Array<(number | string)> | null;
65
+ onboardingProgress: Array<string> | null;
66
66
  harvestNotificationDismissed: boolean;
67
67
  harvestDialogDismissed: boolean;
68
68
  listingsWelcomeRead: boolean;
69
69
  };
70
70
  authPlatformId?: string;
71
+ userTypes?: Array<string>;
71
72
  };
@@ -18,7 +18,7 @@ export type UserDetail = {
18
18
  };
19
19
  whatsApp: boolean;
20
20
  sms: boolean;
21
- onboardingProgress: Array<(number | string)> | null;
21
+ onboardingProgress: Array<string> | null;
22
22
  harvestNotificationDismissed: boolean;
23
23
  harvestDialogDismissed: boolean;
24
24
  listingsWelcomeRead: boolean;
@@ -31,6 +31,7 @@ export type UserDetail = {
31
31
  };
32
32
  groups?: Array<string>;
33
33
  roles?: Array<string>;
34
+ userTypes?: Array<string>;
34
35
  profiles?: Array<{
35
36
  organisationId: string;
36
37
  businessUnits: Array<string>;
@@ -162,7 +162,7 @@ export type UserProfile = {
162
162
  };
163
163
  whatsApp: boolean;
164
164
  sms: boolean;
165
- onboardingProgress: Array<(number | string)> | null;
165
+ onboardingProgress: Array<string> | null;
166
166
  harvestNotificationDismissed: boolean;
167
167
  harvestDialogDismissed: boolean;
168
168
  listingsWelcomeRead: boolean;
@@ -175,6 +175,7 @@ export type UserProfile = {
175
175
  };
176
176
  groups?: Array<string>;
177
177
  roles?: Array<string>;
178
+ userTypes?: Array<string>;
178
179
  profiles?: Array<{
179
180
  organisationId: string;
180
181
  businessUnits: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.22",
3
+ "version": "1.1.24",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",