@hectare/platform.clients.customers 1.1.119 → 1.1.121
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 +0 -1
- package/models/BusinessDetail.d.ts +3 -0
- package/models/BusinessUnitsDetail.d.ts +3 -0
- package/models/BusinessUnitsDetails.d.ts +3 -0
- package/package.json +1 -1
- package/models/CreateUnvettedOrganisationSchema.d.ts +0 -20
- package/models/CreateUnvettedOrganisationSchema.js +0 -1
package/index.d.ts
CHANGED
|
@@ -19,7 +19,6 @@ export type { CreateBusinessUnits } from './models/CreateBusinessUnits.js';
|
|
|
19
19
|
export type { CreateOrganisation } from './models/CreateOrganisation.js';
|
|
20
20
|
export type { CreateOrganisationResponse } from './models/CreateOrganisationResponse.js';
|
|
21
21
|
export type { CreateOrUpdatePriceAlertsSchema } from './models/CreateOrUpdatePriceAlertsSchema.js';
|
|
22
|
-
export type { CreateUnvettedOrganisationSchema } from './models/CreateUnvettedOrganisationSchema.js';
|
|
23
22
|
export type { CreateUser } from './models/CreateUser.js';
|
|
24
23
|
export type { CustomerConfig } from './models/CustomerConfig.js';
|
|
25
24
|
export type { ForgottenPassword } from './models/ForgottenPassword.js';
|
|
@@ -4,6 +4,7 @@ export type BusinessDetail = {
|
|
|
4
4
|
type: 'trading-entity' | 'farm';
|
|
5
5
|
businessUnitId: string;
|
|
6
6
|
organisationId: string;
|
|
7
|
+
organisationName: string;
|
|
7
8
|
locations: Array<{
|
|
8
9
|
id: number | null;
|
|
9
10
|
reference: string | null;
|
|
@@ -38,6 +39,8 @@ export type BusinessDetail = {
|
|
|
38
39
|
businessName: string;
|
|
39
40
|
givenName: string;
|
|
40
41
|
familyName: string;
|
|
42
|
+
createdAtUTC: string;
|
|
43
|
+
vetted: boolean;
|
|
41
44
|
phone?: {
|
|
42
45
|
callingCode: string;
|
|
43
46
|
number: string;
|
|
@@ -10,6 +10,7 @@ export type BusinessUnitsDetail = {
|
|
|
10
10
|
type: 'trading-entity' | 'farm';
|
|
11
11
|
businessUnitId: string;
|
|
12
12
|
organisationId: string;
|
|
13
|
+
organisationName: string;
|
|
13
14
|
locations: Array<{
|
|
14
15
|
id: number | null;
|
|
15
16
|
reference: string | null;
|
|
@@ -44,6 +45,8 @@ export type BusinessUnitsDetail = {
|
|
|
44
45
|
businessName: string;
|
|
45
46
|
givenName: string;
|
|
46
47
|
familyName: string;
|
|
48
|
+
createdAtUTC: string;
|
|
49
|
+
vetted: boolean;
|
|
47
50
|
phone?: {
|
|
48
51
|
callingCode: string;
|
|
49
52
|
number: string;
|
|
@@ -19,6 +19,7 @@ export type BusinessUnitsDetails = {
|
|
|
19
19
|
type: 'trading-entity' | 'farm';
|
|
20
20
|
businessUnitId: string;
|
|
21
21
|
organisationId: string;
|
|
22
|
+
organisationName: string;
|
|
22
23
|
locations: Array<{
|
|
23
24
|
id: number | null;
|
|
24
25
|
reference: string | null;
|
|
@@ -53,6 +54,8 @@ export type BusinessUnitsDetails = {
|
|
|
53
54
|
businessName: string;
|
|
54
55
|
givenName: string;
|
|
55
56
|
familyName: string;
|
|
57
|
+
createdAtUTC: string;
|
|
58
|
+
vetted: boolean;
|
|
56
59
|
phone?: {
|
|
57
60
|
callingCode: string;
|
|
58
61
|
number: string;
|
package/package.json
CHANGED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export type CreateUnvettedOrganisationSchema = {
|
|
2
|
-
givenName: string;
|
|
3
|
-
familyName: string;
|
|
4
|
-
email: string;
|
|
5
|
-
phone: string | null;
|
|
6
|
-
businessName: string;
|
|
7
|
-
referralCode?: string;
|
|
8
|
-
modules: Array<string>;
|
|
9
|
-
signupPurpose: Array<number>;
|
|
10
|
-
holdingOrMembershipNumber?: string | null;
|
|
11
|
-
assuranceBody?: 'RT' | 'SQC' | null;
|
|
12
|
-
assuranceKey?: string | null;
|
|
13
|
-
assurance?: {
|
|
14
|
-
id: string | null;
|
|
15
|
-
key?: string | null;
|
|
16
|
-
body: 'RT' | 'SQC';
|
|
17
|
-
name?: string | null;
|
|
18
|
-
location?: string | null;
|
|
19
|
-
} | null;
|
|
20
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|