@hectare/platform.clients.customers 1.1.108 → 1.1.110

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.
@@ -7,6 +7,7 @@ export type BasicSearchUserDetail = {
7
7
  name: string;
8
8
  countryISO: 'GB' | 'US' | 'ZA' | 'FR';
9
9
  email: string;
10
+ emailVerified?: boolean;
10
11
  pushToken?: string;
11
12
  external?: boolean;
12
13
  impersonating?: boolean;
@@ -86,6 +86,7 @@ export type CreateOrganisationResponse = {
86
86
  name: string;
87
87
  countryISO: 'GB' | 'US' | 'ZA' | 'FR';
88
88
  email: string;
89
+ emailVerified?: boolean;
89
90
  pushToken?: string;
90
91
  external?: boolean;
91
92
  impersonating?: boolean;
@@ -1,6 +1,7 @@
1
1
  export type CreateUser = {
2
2
  givenName: string;
3
3
  familyName: string;
4
+ password?: string | null;
4
5
  countryISO?: 'GB' | 'US' | 'ZA' | 'FR';
5
6
  organisationId?: string;
6
7
  email: string;
@@ -1,6 +1,7 @@
1
1
  export type PatchUser = {
2
2
  givenName?: string;
3
3
  familyName?: string;
4
+ password?: string | null;
4
5
  countryISO?: 'GB' | 'US' | 'ZA' | 'FR';
5
6
  organisationId?: string;
6
7
  email?: string;
@@ -3,6 +3,7 @@ export type RegisterSchema = {
3
3
  familyName: string;
4
4
  email: string;
5
5
  phone: string | null;
6
+ password?: string | null;
6
7
  businessName: string;
7
8
  referralCode?: string;
8
9
  farmSoftware?: string;
@@ -7,6 +7,7 @@ export type SearchResultsUserDetailSchema = {
7
7
  name: string;
8
8
  countryISO: 'GB' | 'US' | 'ZA' | 'FR';
9
9
  email: string;
10
+ emailVerified?: boolean;
10
11
  pushToken?: string;
11
12
  external?: boolean;
12
13
  impersonating?: boolean;
@@ -6,6 +6,7 @@ export type UserDetail = {
6
6
  name: string;
7
7
  countryISO: 'GB' | 'US' | 'ZA' | 'FR';
8
8
  email: string;
9
+ emailVerified?: boolean;
9
10
  pushToken?: string;
10
11
  external?: boolean;
11
12
  impersonating?: boolean;
@@ -86,6 +86,7 @@ export type UserProfile = {
86
86
  name: string;
87
87
  countryISO: 'GB' | 'US' | 'ZA' | 'FR';
88
88
  email: string;
89
+ emailVerified?: boolean;
89
90
  pushToken?: string;
90
91
  external?: boolean;
91
92
  impersonating?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.108",
3
+ "version": "1.1.110",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",