@hectare/platform.clients.customers 1.1.25 → 1.1.26
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.
|
@@ -204,7 +204,7 @@ export type CreateOrganisationResponse = {
|
|
|
204
204
|
organisationId?: string | null;
|
|
205
205
|
createdAtUTC?: string | null;
|
|
206
206
|
} | null;
|
|
207
|
-
organisationId
|
|
207
|
+
organisationId: string;
|
|
208
208
|
organisationName?: string;
|
|
209
209
|
authPlatformId?: string;
|
|
210
210
|
status?: 'active' | 'pending' | 'inactive' | 'deleted';
|
|
@@ -61,7 +61,7 @@ export type SearchResultsUserDetailSchema = {
|
|
|
61
61
|
organisationId?: string | null;
|
|
62
62
|
createdAtUTC?: string | null;
|
|
63
63
|
} | null;
|
|
64
|
-
organisationId
|
|
64
|
+
organisationId: string;
|
|
65
65
|
organisationName?: string;
|
|
66
66
|
authPlatformId?: string;
|
|
67
67
|
status?: 'active' | 'pending' | 'inactive' | 'deleted';
|
package/models/UserDetail.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ export type UserDetail = {
|
|
|
60
60
|
organisationId?: string | null;
|
|
61
61
|
createdAtUTC?: string | null;
|
|
62
62
|
} | null;
|
|
63
|
-
organisationId
|
|
63
|
+
organisationId: string;
|
|
64
64
|
organisationName?: string;
|
|
65
65
|
authPlatformId?: string;
|
|
66
66
|
status?: 'active' | 'pending' | 'inactive' | 'deleted';
|
package/models/UserProfile.d.ts
CHANGED
|
@@ -204,7 +204,7 @@ export type UserProfile = {
|
|
|
204
204
|
organisationId?: string | null;
|
|
205
205
|
createdAtUTC?: string | null;
|
|
206
206
|
} | null;
|
|
207
|
-
organisationId
|
|
207
|
+
organisationId: string;
|
|
208
208
|
organisationName?: string;
|
|
209
209
|
authPlatformId?: string;
|
|
210
210
|
status?: 'active' | 'pending' | 'inactive' | 'deleted';
|