@hectare/platform.clients.customers 1.1.25 → 1.1.27
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.
|
@@ -155,7 +155,7 @@ export type CreateOrganisationResponse = {
|
|
|
155
155
|
impersonating?: boolean;
|
|
156
156
|
settings?: {
|
|
157
157
|
terms: boolean;
|
|
158
|
-
|
|
158
|
+
termsOnce?: boolean;
|
|
159
159
|
marketingPreferences: {
|
|
160
160
|
marketUpdates: boolean;
|
|
161
161
|
communications: boolean;
|
|
@@ -163,9 +163,6 @@ export type CreateOrganisationResponse = {
|
|
|
163
163
|
whatsApp: boolean;
|
|
164
164
|
sms: boolean;
|
|
165
165
|
onboardingProgress: Array<string> | null;
|
|
166
|
-
harvestNotificationDismissed: boolean;
|
|
167
|
-
harvestDialogDismissed: boolean;
|
|
168
|
-
listingsWelcomeRead: boolean;
|
|
169
166
|
};
|
|
170
167
|
tokens?: {
|
|
171
168
|
id?: string;
|
|
@@ -204,7 +201,7 @@ export type CreateOrganisationResponse = {
|
|
|
204
201
|
organisationId?: string | null;
|
|
205
202
|
createdAtUTC?: string | null;
|
|
206
203
|
} | null;
|
|
207
|
-
organisationId
|
|
204
|
+
organisationId: string;
|
|
208
205
|
organisationName?: string;
|
|
209
206
|
authPlatformId?: string;
|
|
210
207
|
status?: 'active' | 'pending' | 'inactive' | 'deleted';
|
package/models/PatchUser.d.ts
CHANGED
|
@@ -23,7 +23,4 @@ export type PatchUser = {
|
|
|
23
23
|
smsNotifications?: boolean | null;
|
|
24
24
|
preferences?: Array<string> | null;
|
|
25
25
|
onboardingProgress?: Array<string> | null;
|
|
26
|
-
harvestNotificationDismissed?: boolean | null;
|
|
27
|
-
harvestDialogDismissed?: boolean | null;
|
|
28
|
-
listingsWelcomeRead?: boolean | null;
|
|
29
26
|
};
|
|
@@ -12,7 +12,7 @@ export type SearchResultsUserDetailSchema = {
|
|
|
12
12
|
impersonating?: boolean;
|
|
13
13
|
settings?: {
|
|
14
14
|
terms: boolean;
|
|
15
|
-
|
|
15
|
+
termsOnce?: boolean;
|
|
16
16
|
marketingPreferences: {
|
|
17
17
|
marketUpdates: boolean;
|
|
18
18
|
communications: boolean;
|
|
@@ -20,9 +20,6 @@ export type SearchResultsUserDetailSchema = {
|
|
|
20
20
|
whatsApp: boolean;
|
|
21
21
|
sms: boolean;
|
|
22
22
|
onboardingProgress: Array<string> | null;
|
|
23
|
-
harvestNotificationDismissed: boolean;
|
|
24
|
-
harvestDialogDismissed: boolean;
|
|
25
|
-
listingsWelcomeRead: boolean;
|
|
26
23
|
};
|
|
27
24
|
tokens?: {
|
|
28
25
|
id?: string;
|
|
@@ -61,7 +58,7 @@ export type SearchResultsUserDetailSchema = {
|
|
|
61
58
|
organisationId?: string | null;
|
|
62
59
|
createdAtUTC?: string | null;
|
|
63
60
|
} | null;
|
|
64
|
-
organisationId
|
|
61
|
+
organisationId: string;
|
|
65
62
|
organisationName?: string;
|
|
66
63
|
authPlatformId?: string;
|
|
67
64
|
status?: 'active' | 'pending' | 'inactive' | 'deleted';
|
|
@@ -55,7 +55,7 @@ export type UserBasicInfo = {
|
|
|
55
55
|
}>;
|
|
56
56
|
settings?: {
|
|
57
57
|
terms: boolean;
|
|
58
|
-
|
|
58
|
+
termsOnce?: boolean;
|
|
59
59
|
marketingPreferences: {
|
|
60
60
|
marketUpdates: boolean;
|
|
61
61
|
communications: boolean;
|
|
@@ -63,9 +63,6 @@ export type UserBasicInfo = {
|
|
|
63
63
|
whatsApp: boolean;
|
|
64
64
|
sms: boolean;
|
|
65
65
|
onboardingProgress: Array<string> | null;
|
|
66
|
-
harvestNotificationDismissed: boolean;
|
|
67
|
-
harvestDialogDismissed: boolean;
|
|
68
|
-
listingsWelcomeRead: boolean;
|
|
69
66
|
};
|
|
70
67
|
authPlatformId?: string;
|
|
71
68
|
userTypes?: Array<string>;
|
package/models/UserDetail.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export type UserDetail = {
|
|
|
11
11
|
impersonating?: boolean;
|
|
12
12
|
settings?: {
|
|
13
13
|
terms: boolean;
|
|
14
|
-
|
|
14
|
+
termsOnce?: boolean;
|
|
15
15
|
marketingPreferences: {
|
|
16
16
|
marketUpdates: boolean;
|
|
17
17
|
communications: boolean;
|
|
@@ -19,9 +19,6 @@ export type UserDetail = {
|
|
|
19
19
|
whatsApp: boolean;
|
|
20
20
|
sms: boolean;
|
|
21
21
|
onboardingProgress: Array<string> | null;
|
|
22
|
-
harvestNotificationDismissed: boolean;
|
|
23
|
-
harvestDialogDismissed: boolean;
|
|
24
|
-
listingsWelcomeRead: boolean;
|
|
25
22
|
};
|
|
26
23
|
tokens?: {
|
|
27
24
|
id?: string;
|
|
@@ -60,7 +57,7 @@ export type UserDetail = {
|
|
|
60
57
|
organisationId?: string | null;
|
|
61
58
|
createdAtUTC?: string | null;
|
|
62
59
|
} | null;
|
|
63
|
-
organisationId
|
|
60
|
+
organisationId: string;
|
|
64
61
|
organisationName?: string;
|
|
65
62
|
authPlatformId?: string;
|
|
66
63
|
status?: 'active' | 'pending' | 'inactive' | 'deleted';
|
package/models/UserProfile.d.ts
CHANGED
|
@@ -155,7 +155,7 @@ export type UserProfile = {
|
|
|
155
155
|
impersonating?: boolean;
|
|
156
156
|
settings?: {
|
|
157
157
|
terms: boolean;
|
|
158
|
-
|
|
158
|
+
termsOnce?: boolean;
|
|
159
159
|
marketingPreferences: {
|
|
160
160
|
marketUpdates: boolean;
|
|
161
161
|
communications: boolean;
|
|
@@ -163,9 +163,6 @@ export type UserProfile = {
|
|
|
163
163
|
whatsApp: boolean;
|
|
164
164
|
sms: boolean;
|
|
165
165
|
onboardingProgress: Array<string> | null;
|
|
166
|
-
harvestNotificationDismissed: boolean;
|
|
167
|
-
harvestDialogDismissed: boolean;
|
|
168
|
-
listingsWelcomeRead: boolean;
|
|
169
166
|
};
|
|
170
167
|
tokens?: {
|
|
171
168
|
id?: string;
|
|
@@ -204,7 +201,7 @@ export type UserProfile = {
|
|
|
204
201
|
organisationId?: string | null;
|
|
205
202
|
createdAtUTC?: string | null;
|
|
206
203
|
} | null;
|
|
207
|
-
organisationId
|
|
204
|
+
organisationId: string;
|
|
208
205
|
organisationName?: string;
|
|
209
206
|
authPlatformId?: string;
|
|
210
207
|
status?: 'active' | 'pending' | 'inactive' | 'deleted';
|