@hectare/platform.clients.customers 1.1.112 → 1.1.114

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
@@ -53,6 +53,7 @@ export type { UserBasicInfoWithStatsSchema } from './models/UserBasicInfoWithSta
53
53
  export type { UserDetail } from './models/UserDetail.js';
54
54
  export type { UserExistsSchema } from './models/UserExistsSchema.js';
55
55
  export type { UserProfile } from './models/UserProfile.js';
56
+ export type { VerifyEmailSchema } from './models/VerifyEmailSchema.js';
56
57
  export type { VerifyMagicLogin } from './models/VerifyMagicLogin.js';
57
58
  export type { VerifyUpdate } from './models/VerifyUpdate.js';
58
59
  export type { VerifyUserAttribute } from './models/VerifyUserAttribute.js';
@@ -1,6 +1,6 @@
1
1
  export type BusinessLookupSchema = {
2
2
  name: string;
3
- source: 'rt' | 'companies-house';
3
+ source: 'rt' | 'sqc' | 'companies-house';
4
4
  id: string;
5
5
  postcode: string;
6
6
  };
@@ -89,6 +89,8 @@ export type SearchResultsOrganisationDetailSchema = {
89
89
  clearUrl: string;
90
90
  terms: Array<{
91
91
  name: string;
92
+ id: string;
93
+ hits: string;
92
94
  clearUrl: string;
93
95
  }>;
94
96
  }>;
@@ -97,6 +97,8 @@ export type SearchResultsUserDetailSchema = {
97
97
  clearUrl: string;
98
98
  terms: Array<{
99
99
  name: string;
100
+ id: string;
101
+ hits: string;
100
102
  clearUrl: string;
101
103
  }>;
102
104
  }>;
@@ -0,0 +1,4 @@
1
+ export type VerifyEmailSchema = {
2
+ id: string;
3
+ action?: 'resend' | 'verify';
4
+ };
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.112",
3
+ "version": "1.1.114",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",