@hectare/platform.clients.customers 1.1.15 → 1.1.17
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 +1 -0
- package/models/BusinessConnectionDetail.d.ts +1 -1
- package/models/BusinessConnectionsSummary.d.ts +1 -1
- package/models/BusinessDetail.d.ts +1 -1
- package/models/BusinessUnitsDetail.d.ts +1 -1
- package/models/BusinessUnitsDetails.d.ts +1 -1
- package/models/CreateBusinessUnit.d.ts +1 -1
- package/models/CreateBusinessUnits.d.ts +1 -1
- package/models/CreateOrganisation.d.ts +1 -1
- package/models/CreateOrganisationResponse.d.ts +2 -2
- package/models/ForgottenPassword.d.ts +2 -1
- package/models/ForgottenPasswordSuccess.d.ts +5 -0
- package/models/ForgottenPasswordSuccess.js +1 -0
- package/models/OrganisationDetail.d.ts +2 -2
- package/models/OrganisationExists.d.ts +2 -2
- package/models/OrganisationSummary.d.ts +1 -1
- package/models/PatchBusinessUnit.d.ts +1 -1
- package/models/PatchOrganisation.d.ts +1 -1
- package/models/UserBasicInfo.d.ts +1 -1
- package/models/UserProfile.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export type { CreateUser } from './models/CreateUser.js';
|
|
|
23
23
|
export type { CustomerConfig } from './models/CustomerConfig.js';
|
|
24
24
|
export type { ForgottenPassword } from './models/ForgottenPassword.js';
|
|
25
25
|
export type { ForgottenPasswordConfirm } from './models/ForgottenPasswordConfirm.js';
|
|
26
|
+
export type { ForgottenPasswordSuccess } from './models/ForgottenPasswordSuccess.js';
|
|
26
27
|
export type { LoginForm } from './models/LoginForm.js';
|
|
27
28
|
export type { LoginSuccess } from './models/LoginSuccess.js';
|
|
28
29
|
export type { LoginTokens } from './models/LoginTokens.js';
|
|
@@ -18,7 +18,7 @@ export type CreateOrganisationResponse = {
|
|
|
18
18
|
coordinates: {
|
|
19
19
|
lat: number;
|
|
20
20
|
lon: number;
|
|
21
|
-
};
|
|
21
|
+
} | null;
|
|
22
22
|
} | null;
|
|
23
23
|
company?: {
|
|
24
24
|
assurance?: {
|
|
@@ -97,7 +97,7 @@ export type CreateOrganisationResponse = {
|
|
|
97
97
|
coordinates: {
|
|
98
98
|
lat: number;
|
|
99
99
|
lon: number;
|
|
100
|
-
};
|
|
100
|
+
} | null;
|
|
101
101
|
} | null;
|
|
102
102
|
countryISO?: 'GB' | 'US' | 'ZA' | 'FR';
|
|
103
103
|
ownerContact?: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -17,7 +17,7 @@ export type OrganisationDetail = {
|
|
|
17
17
|
coordinates: {
|
|
18
18
|
lat: number;
|
|
19
19
|
lon: number;
|
|
20
|
-
};
|
|
20
|
+
} | null;
|
|
21
21
|
} | null;
|
|
22
22
|
company?: {
|
|
23
23
|
assurance?: {
|
|
@@ -96,7 +96,7 @@ export type OrganisationDetail = {
|
|
|
96
96
|
coordinates: {
|
|
97
97
|
lat: number;
|
|
98
98
|
lon: number;
|
|
99
|
-
};
|
|
99
|
+
} | null;
|
|
100
100
|
} | null;
|
|
101
101
|
countryISO?: 'GB' | 'US' | 'ZA' | 'FR';
|
|
102
102
|
ownerContact?: {
|
|
@@ -20,7 +20,7 @@ export type OrganisationExists = {
|
|
|
20
20
|
coordinates: {
|
|
21
21
|
lat: number;
|
|
22
22
|
lon: number;
|
|
23
|
-
};
|
|
23
|
+
} | null;
|
|
24
24
|
} | null;
|
|
25
25
|
company?: {
|
|
26
26
|
assurance?: {
|
|
@@ -99,7 +99,7 @@ export type OrganisationExists = {
|
|
|
99
99
|
coordinates: {
|
|
100
100
|
lat: number;
|
|
101
101
|
lon: number;
|
|
102
|
-
};
|
|
102
|
+
} | null;
|
|
103
103
|
} | null;
|
|
104
104
|
countryISO?: 'GB' | 'US' | 'ZA' | 'FR';
|
|
105
105
|
ownerContact?: {
|
package/models/UserProfile.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export type UserProfile = {
|
|
|
18
18
|
coordinates: {
|
|
19
19
|
lat: number;
|
|
20
20
|
lon: number;
|
|
21
|
-
};
|
|
21
|
+
} | null;
|
|
22
22
|
} | null;
|
|
23
23
|
company?: {
|
|
24
24
|
assurance?: {
|
|
@@ -97,7 +97,7 @@ export type UserProfile = {
|
|
|
97
97
|
coordinates: {
|
|
98
98
|
lat: number;
|
|
99
99
|
lon: number;
|
|
100
|
-
};
|
|
100
|
+
} | null;
|
|
101
101
|
} | null;
|
|
102
102
|
countryISO?: 'GB' | 'US' | 'ZA' | 'FR';
|
|
103
103
|
ownerContact?: {
|