@hectare/platform.clients.customers 1.1.24 → 1.1.25

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.
@@ -143,7 +143,7 @@ export type CreateOrganisationResponse = {
143
143
  salesforceId?: string;
144
144
  };
145
145
  user?: {
146
- id?: string;
146
+ id: string;
147
147
  givenName?: string;
148
148
  type?: 'internal' | 'external';
149
149
  familyName?: string;
@@ -1,6 +1,6 @@
1
1
  export type SearchResultsUserDetailSchema = {
2
2
  docs?: Array<{
3
- id?: string;
3
+ id: string;
4
4
  givenName?: string;
5
5
  type?: 'internal' | 'external';
6
6
  familyName?: string;
@@ -1,5 +1,5 @@
1
1
  export type UserDetail = {
2
- id?: string;
2
+ id: string;
3
3
  givenName?: string;
4
4
  type?: 'internal' | 'external';
5
5
  familyName?: string;
@@ -143,7 +143,7 @@ export type UserProfile = {
143
143
  salesforceId?: string;
144
144
  };
145
145
  user: {
146
- id?: string;
146
+ id: string;
147
147
  givenName?: string;
148
148
  type?: 'internal' | 'external';
149
149
  familyName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.24",
3
+ "version": "1.1.25",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",