@hectare/platform.clients.customers 1.1.105 → 1.1.106

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/index.d.ts CHANGED
@@ -27,7 +27,6 @@ export type { LinkUser } from './models/LinkUser.js';
27
27
  export type { LoginForm } from './models/LoginForm.js';
28
28
  export type { LoginSuccess } from './models/LoginSuccess.js';
29
29
  export type { LoginTokens } from './models/LoginTokens.js';
30
- export type { LookupUserByTelephoneSchema } from './models/LookupUserByTelephoneSchema.js';
31
30
  export type { OrganisationDetail } from './models/OrganisationDetail.js';
32
31
  export type { OrganisationExists } from './models/OrganisationExists.js';
33
32
  export type { OrganisationSummary } from './models/OrganisationSummary.js';
@@ -82,6 +82,7 @@ export type BasicSearchUserDetail = {
82
82
  region: string | null;
83
83
  tags: Array<string>;
84
84
  }>;
85
+ businesses: Array<string>;
85
86
  notificationsEnabled?: boolean;
86
87
  }>;
87
88
  totalDocs?: number;
@@ -161,6 +161,7 @@ export type CreateOrganisationResponse = {
161
161
  region: string | null;
162
162
  tags: Array<string>;
163
163
  }>;
164
+ businesses: Array<string>;
164
165
  notificationsEnabled?: boolean;
165
166
  };
166
167
  };
@@ -8,4 +8,5 @@ export type CreateUser = {
8
8
  pushToken?: string | null;
9
9
  roles?: Array<string> | null;
10
10
  businessUnits?: Array<string> | null;
11
+ businesses?: Array<string> | null;
11
12
  };
@@ -8,6 +8,7 @@ export type PatchUser = {
8
8
  pushToken?: string | null;
9
9
  roles?: Array<string> | null;
10
10
  businessUnits?: Array<string> | null;
11
+ businesses?: Array<string> | null;
11
12
  phoneLandline?: string | null;
12
13
  avatar?: {
13
14
  id: string;
@@ -82,6 +82,7 @@ export type SearchResultsUserDetailSchema = {
82
82
  region: string | null;
83
83
  tags: Array<string>;
84
84
  }>;
85
+ businesses: Array<string>;
85
86
  notificationsEnabled?: boolean;
86
87
  }>;
87
88
  custom?: any;
@@ -72,4 +72,5 @@ export type UserBasicInfo = {
72
72
  };
73
73
  authPlatformId: string;
74
74
  userTypes: Array<'seller' | 'buyer' | 'advisor'>;
75
+ businesses: Array<string>;
75
76
  };
@@ -72,6 +72,7 @@ export type UserBasicInfoWithStatsSchema = {
72
72
  };
73
73
  authPlatformId?: string;
74
74
  userTypes?: Array<'seller' | 'buyer' | 'advisor'>;
75
+ businesses?: Array<string>;
75
76
  stats: {
76
77
  numberOfBids?: number;
77
78
  conversionRate: number;
@@ -81,5 +81,6 @@ export type UserDetail = {
81
81
  region: string | null;
82
82
  tags: Array<string>;
83
83
  }>;
84
+ businesses: Array<string>;
84
85
  notificationsEnabled?: boolean;
85
86
  };
@@ -161,6 +161,7 @@ export type UserProfile = {
161
161
  region: string | null;
162
162
  tags: Array<string>;
163
163
  }>;
164
+ businesses: Array<string>;
164
165
  notificationsEnabled?: boolean;
165
166
  };
166
167
  access: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.105",
3
+ "version": "1.1.106",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",
@@ -1,3 +0,0 @@
1
- export type LookupUserByTelephoneSchema = {
2
- phone?: string | null;
3
- };
@@ -1 +0,0 @@
1
- export {};