@hectare/platform.clients.customers 1.1.13 → 1.1.15
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 +0 -10
- package/models/BusinessUnitsDetail.d.ts +0 -10
- package/models/BusinessUnitsDetails.d.ts +0 -10
- package/models/CreateBusinessUnit.d.ts +0 -10
- package/models/CreateBusinessUnits.d.ts +0 -10
- package/models/CreateOrganisation.d.ts +0 -5
- package/models/CreateOrganisationResponse.d.ts +0 -10
- package/models/OrganisationDetail.d.ts +0 -10
- package/models/OrganisationExists.d.ts +0 -10
- package/models/OrganisationSummary.d.ts +0 -4
- package/models/PatchBusinessUnit.d.ts +0 -10
- package/models/PatchOrganisation.d.ts +0 -10
- package/models/UserProfile.d.ts +0 -10
- package/package.json +1 -1
- package/models/RequestFullAccountSchema.d.ts +0 -10
- package/models/RequestFullAccountSchema.js +0 -1
package/index.d.ts
CHANGED
|
@@ -35,7 +35,6 @@ export type { PatchOrganisation } from './models/PatchOrganisation.js';
|
|
|
35
35
|
export type { PatchOrganisationAdvancePay } from './models/PatchOrganisationAdvancePay.js';
|
|
36
36
|
export type { PatchUser } from './models/PatchUser.js';
|
|
37
37
|
export type { RedTractorCertificate } from './models/RedTractorCertificate.js';
|
|
38
|
-
export type { RequestFullAccountSchema } from './models/RequestFullAccountSchema.js';
|
|
39
38
|
export type { Role } from './models/Role.js';
|
|
40
39
|
export type { RoleGroup } from './models/RoleGroup.js';
|
|
41
40
|
export type { SendMagicLogin } from './models/SendMagicLogin.js';
|
|
@@ -31,17 +31,7 @@ export type BusinessDetail = {
|
|
|
31
31
|
tags?: Array<string>;
|
|
32
32
|
locationTag?: string;
|
|
33
33
|
managementTag?: string;
|
|
34
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
35
34
|
holdingNumber?: string;
|
|
36
|
-
sqc?: {
|
|
37
|
-
number: string;
|
|
38
|
-
isAssured: boolean;
|
|
39
|
-
} | null;
|
|
40
|
-
assurances?: Array<{
|
|
41
|
-
id: string | null;
|
|
42
|
-
body: 'RT' | 'SQC';
|
|
43
|
-
assured: boolean;
|
|
44
|
-
}>;
|
|
45
35
|
assurance?: {
|
|
46
36
|
id: string | null;
|
|
47
37
|
body: 'RT' | 'SQC';
|
|
@@ -37,17 +37,7 @@ export type BusinessUnitsDetail = {
|
|
|
37
37
|
tags?: Array<string>;
|
|
38
38
|
locationTag?: string;
|
|
39
39
|
managementTag?: string;
|
|
40
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
41
40
|
holdingNumber?: string;
|
|
42
|
-
sqc?: {
|
|
43
|
-
number: string;
|
|
44
|
-
isAssured: boolean;
|
|
45
|
-
} | null;
|
|
46
|
-
assurances?: Array<{
|
|
47
|
-
id: string | null;
|
|
48
|
-
body: 'RT' | 'SQC';
|
|
49
|
-
assured: boolean;
|
|
50
|
-
}>;
|
|
51
41
|
assurance?: {
|
|
52
42
|
id: string | null;
|
|
53
43
|
body: 'RT' | 'SQC';
|
|
@@ -46,17 +46,7 @@ export type BusinessUnitsDetails = {
|
|
|
46
46
|
tags?: Array<string>;
|
|
47
47
|
locationTag?: string;
|
|
48
48
|
managementTag?: string;
|
|
49
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
50
49
|
holdingNumber?: string;
|
|
51
|
-
sqc?: {
|
|
52
|
-
number: string;
|
|
53
|
-
isAssured: boolean;
|
|
54
|
-
} | null;
|
|
55
|
-
assurances?: Array<{
|
|
56
|
-
id: string | null;
|
|
57
|
-
body: 'RT' | 'SQC';
|
|
58
|
-
assured: boolean;
|
|
59
|
-
}>;
|
|
60
50
|
assurance?: {
|
|
61
51
|
id: string | null;
|
|
62
52
|
body: 'RT' | 'SQC';
|
|
@@ -28,16 +28,6 @@ export type CreateBusinessUnit = {
|
|
|
28
28
|
locationTag?: string;
|
|
29
29
|
managementTag?: string;
|
|
30
30
|
holdingNumber: string;
|
|
31
|
-
sqc?: {
|
|
32
|
-
number: string;
|
|
33
|
-
isAssured: boolean;
|
|
34
|
-
} | null;
|
|
35
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
36
|
-
assurances?: Array<{
|
|
37
|
-
id: string | null;
|
|
38
|
-
body: 'RT' | 'SQC';
|
|
39
|
-
assured: boolean;
|
|
40
|
-
}>;
|
|
41
31
|
assurance?: {
|
|
42
32
|
id: string | null;
|
|
43
33
|
body: 'RT' | 'SQC';
|
|
@@ -28,16 +28,6 @@ export type CreateBusinessUnits = Array<{
|
|
|
28
28
|
locationTag?: string;
|
|
29
29
|
managementTag?: string;
|
|
30
30
|
holdingNumber: string;
|
|
31
|
-
sqc?: {
|
|
32
|
-
number: string;
|
|
33
|
-
isAssured: boolean;
|
|
34
|
-
} | null;
|
|
35
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
36
|
-
assurances?: Array<{
|
|
37
|
-
id: string | null;
|
|
38
|
-
body: 'RT' | 'SQC';
|
|
39
|
-
assured: boolean;
|
|
40
|
-
}>;
|
|
41
31
|
assurance?: {
|
|
42
32
|
id: string | null;
|
|
43
33
|
body: 'RT' | 'SQC';
|
|
@@ -21,11 +21,6 @@ export type CreateOrganisationResponse = {
|
|
|
21
21
|
};
|
|
22
22
|
} | null;
|
|
23
23
|
company?: {
|
|
24
|
-
assurances?: Array<{
|
|
25
|
-
id: string | null;
|
|
26
|
-
body: 'RT' | 'SQC';
|
|
27
|
-
assured: boolean;
|
|
28
|
-
}>;
|
|
29
24
|
assurance?: {
|
|
30
25
|
id: string | null;
|
|
31
26
|
body: 'RT' | 'SQC';
|
|
@@ -56,11 +51,6 @@ export type CreateOrganisationResponse = {
|
|
|
56
51
|
authPlatformId?: string;
|
|
57
52
|
impersonate?: string | null;
|
|
58
53
|
};
|
|
59
|
-
sqc?: {
|
|
60
|
-
number: string;
|
|
61
|
-
isAssured: boolean;
|
|
62
|
-
} | null;
|
|
63
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
64
54
|
settlementContacts?: Array<{
|
|
65
55
|
name: string;
|
|
66
56
|
email: string;
|
|
@@ -20,11 +20,6 @@ export type OrganisationDetail = {
|
|
|
20
20
|
};
|
|
21
21
|
} | null;
|
|
22
22
|
company?: {
|
|
23
|
-
assurances?: Array<{
|
|
24
|
-
id: string | null;
|
|
25
|
-
body: 'RT' | 'SQC';
|
|
26
|
-
assured: boolean;
|
|
27
|
-
}>;
|
|
28
23
|
assurance?: {
|
|
29
24
|
id: string | null;
|
|
30
25
|
body: 'RT' | 'SQC';
|
|
@@ -55,11 +50,6 @@ export type OrganisationDetail = {
|
|
|
55
50
|
authPlatformId?: string;
|
|
56
51
|
impersonate?: string | null;
|
|
57
52
|
};
|
|
58
|
-
sqc?: {
|
|
59
|
-
number: string;
|
|
60
|
-
isAssured: boolean;
|
|
61
|
-
} | null;
|
|
62
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
63
53
|
settlementContacts?: Array<{
|
|
64
54
|
name: string;
|
|
65
55
|
email: string;
|
|
@@ -23,11 +23,6 @@ export type OrganisationExists = {
|
|
|
23
23
|
};
|
|
24
24
|
} | null;
|
|
25
25
|
company?: {
|
|
26
|
-
assurances?: Array<{
|
|
27
|
-
id: string | null;
|
|
28
|
-
body: 'RT' | 'SQC';
|
|
29
|
-
assured: boolean;
|
|
30
|
-
}>;
|
|
31
26
|
assurance?: {
|
|
32
27
|
id: string | null;
|
|
33
28
|
body: 'RT' | 'SQC';
|
|
@@ -58,11 +53,6 @@ export type OrganisationExists = {
|
|
|
58
53
|
authPlatformId?: string;
|
|
59
54
|
impersonate?: string | null;
|
|
60
55
|
};
|
|
61
|
-
sqc?: {
|
|
62
|
-
number: string;
|
|
63
|
-
isAssured: boolean;
|
|
64
|
-
} | null;
|
|
65
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
66
56
|
settlementContacts?: Array<{
|
|
67
57
|
name: string;
|
|
68
58
|
email: string;
|
|
@@ -26,16 +26,6 @@ export type PatchBusinessUnit = {
|
|
|
26
26
|
locationTag?: string;
|
|
27
27
|
managementTag?: string;
|
|
28
28
|
holdingNumber?: string | null;
|
|
29
|
-
sqc?: {
|
|
30
|
-
number: string;
|
|
31
|
-
isAssured: boolean;
|
|
32
|
-
} | null;
|
|
33
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
34
|
-
assurances?: Array<{
|
|
35
|
-
id: string | null;
|
|
36
|
-
body: 'RT' | 'SQC';
|
|
37
|
-
assured: boolean;
|
|
38
|
-
}>;
|
|
39
29
|
assurance?: {
|
|
40
30
|
id: string | null;
|
|
41
31
|
body: 'RT' | 'SQC';
|
|
@@ -19,11 +19,6 @@ export type PatchOrganisation = {
|
|
|
19
19
|
};
|
|
20
20
|
} | null;
|
|
21
21
|
company?: {
|
|
22
|
-
assurances?: Array<{
|
|
23
|
-
id: string | null;
|
|
24
|
-
body: 'RT' | 'SQC';
|
|
25
|
-
assured: boolean;
|
|
26
|
-
}>;
|
|
27
22
|
assurance?: {
|
|
28
23
|
id: string | null;
|
|
29
24
|
body: 'RT' | 'SQC';
|
|
@@ -38,11 +33,6 @@ export type PatchOrganisation = {
|
|
|
38
33
|
id: string;
|
|
39
34
|
url: string | null;
|
|
40
35
|
} | null;
|
|
41
|
-
sqc?: {
|
|
42
|
-
number: string;
|
|
43
|
-
isAssured: boolean;
|
|
44
|
-
} | null;
|
|
45
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
46
36
|
} | null;
|
|
47
37
|
name?: string | null;
|
|
48
38
|
countryISO?: 'GB' | 'US' | 'ZA' | 'FR';
|
package/models/UserProfile.d.ts
CHANGED
|
@@ -21,11 +21,6 @@ export type UserProfile = {
|
|
|
21
21
|
};
|
|
22
22
|
} | null;
|
|
23
23
|
company?: {
|
|
24
|
-
assurances?: Array<{
|
|
25
|
-
id: string | null;
|
|
26
|
-
body: 'RT' | 'SQC';
|
|
27
|
-
assured: boolean;
|
|
28
|
-
}>;
|
|
29
24
|
assurance?: {
|
|
30
25
|
id: string | null;
|
|
31
26
|
body: 'RT' | 'SQC';
|
|
@@ -56,11 +51,6 @@ export type UserProfile = {
|
|
|
56
51
|
authPlatformId?: string;
|
|
57
52
|
impersonate?: string | null;
|
|
58
53
|
};
|
|
59
|
-
sqc?: {
|
|
60
|
-
number: string;
|
|
61
|
-
isAssured: boolean;
|
|
62
|
-
} | null;
|
|
63
|
-
assuranceScheme?: 'RT' | 'SQC';
|
|
64
54
|
settlementContacts?: Array<{
|
|
65
55
|
name: string;
|
|
66
56
|
email: string;
|
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export type RequestFullAccountSchema = {
|
|
2
|
-
requestType: 'account' | 'tradingBuyerAccount';
|
|
3
|
-
firstName: string;
|
|
4
|
-
lastName: string;
|
|
5
|
-
businessName: string;
|
|
6
|
-
referralCode?: string;
|
|
7
|
-
companyNumber: string | null;
|
|
8
|
-
emailAddress: string;
|
|
9
|
-
phone: string | null;
|
|
10
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|