@hectare/platform.clients.customers 1.1.42 → 1.1.44

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.
@@ -54,6 +54,7 @@ export type BusinessDetail = {
54
54
  id: string | null;
55
55
  key?: string | null;
56
56
  body: 'RT' | 'SQC';
57
+ name?: string | null;
57
58
  location?: string | null;
58
59
  } | null;
59
60
  };
@@ -60,6 +60,7 @@ export type BusinessUnitsDetail = {
60
60
  id: string | null;
61
61
  key?: string | null;
62
62
  body: 'RT' | 'SQC';
63
+ name?: string | null;
63
64
  location?: string | null;
64
65
  } | null;
65
66
  };
@@ -69,6 +69,7 @@ export type BusinessUnitsDetails = {
69
69
  id: string | null;
70
70
  key?: string | null;
71
71
  body: 'RT' | 'SQC';
72
+ name?: string | null;
72
73
  location?: string | null;
73
74
  } | null;
74
75
  };
@@ -49,6 +49,7 @@ export type CreateBusinessUnit = {
49
49
  id: string | null;
50
50
  key?: string | null;
51
51
  body: 'RT' | 'SQC';
52
+ name?: string | null;
52
53
  location?: string | null;
53
54
  } | null;
54
55
  };
@@ -49,6 +49,7 @@ export type CreateBusinessUnits = Array<{
49
49
  id: string | null;
50
50
  key?: string | null;
51
51
  body: 'RT' | 'SQC';
52
+ name?: string | null;
52
53
  location?: string | null;
53
54
  } | null;
54
55
  };
@@ -23,6 +23,7 @@ export type CreateOrganisation = {
23
23
  id: string | null;
24
24
  key?: string | null;
25
25
  body: 'RT' | 'SQC';
26
+ name?: string | null;
26
27
  location?: string | null;
27
28
  } | null;
28
29
  id?: string | null;
@@ -25,6 +25,7 @@ export type CreateOrganisationResponse = {
25
25
  id: string | null;
26
26
  key?: string | null;
27
27
  body: 'RT' | 'SQC';
28
+ name?: string | null;
28
29
  location?: string | null;
29
30
  } | null;
30
31
  id?: string | null;
@@ -9,4 +9,5 @@ export type CreateUnvettedOrganisationSchema = {
9
9
  modules: Array<string>;
10
10
  signupPurpose?: Array<number>;
11
11
  assuranceBody?: 'RT' | 'SQC' | null;
12
+ assuranceKey?: string | null;
12
13
  };
@@ -24,6 +24,7 @@ export type OrganisationDetail = {
24
24
  id: string | null;
25
25
  key?: string | null;
26
26
  body: 'RT' | 'SQC';
27
+ name?: string | null;
27
28
  location?: string | null;
28
29
  } | null;
29
30
  id?: string | null;
@@ -27,6 +27,7 @@ export type OrganisationExists = {
27
27
  id: string | null;
28
28
  key?: string | null;
29
29
  body: 'RT' | 'SQC';
30
+ name?: string | null;
30
31
  location?: string | null;
31
32
  } | null;
32
33
  id?: string | null;
@@ -66,6 +66,7 @@ export type OrganisationSummary = {
66
66
  id: string | null;
67
67
  key?: string | null;
68
68
  body: 'RT' | 'SQC';
69
+ name?: string | null;
69
70
  location?: string | null;
70
71
  } | null;
71
72
  assuranceId?: string;
@@ -48,6 +48,7 @@ export type PatchBusinessUnit = {
48
48
  id: string | null;
49
49
  key?: string | null;
50
50
  body: 'RT' | 'SQC';
51
+ name?: string | null;
51
52
  location?: string | null;
52
53
  } | null;
53
54
  };
@@ -23,6 +23,7 @@ export type PatchOrganisation = {
23
23
  id: string | null;
24
24
  key?: string | null;
25
25
  body: 'RT' | 'SQC';
26
+ name?: string | null;
26
27
  location?: string | null;
27
28
  } | null;
28
29
  id?: string | null;
@@ -25,6 +25,7 @@ export type SearchResultsOrganisationDetailSchema = {
25
25
  id: string | null;
26
26
  key?: string | null;
27
27
  body: 'RT' | 'SQC';
28
+ name?: string | null;
28
29
  location?: string | null;
29
30
  } | null;
30
31
  id?: string | null;
@@ -25,6 +25,7 @@ export type UserProfile = {
25
25
  id: string | null;
26
26
  key?: string | null;
27
27
  body: 'RT' | 'SQC';
28
+ name?: string | null;
28
29
  location?: string | null;
29
30
  } | null;
30
31
  id?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.customers",
3
- "version": "1.1.42",
3
+ "version": "1.1.44",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",