@hectare/platform.clients.customers 1.1.62 → 1.1.64
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.
|
@@ -99,19 +99,19 @@ export type SearchResultsOrganisationDetailSchema = {
|
|
|
99
99
|
}>;
|
|
100
100
|
}>;
|
|
101
101
|
facets?: Array<{
|
|
102
|
-
displayName
|
|
103
|
-
clearUrl
|
|
104
|
-
disabled
|
|
105
|
-
name
|
|
106
|
-
selected
|
|
107
|
-
active
|
|
108
|
-
terms
|
|
109
|
-
name
|
|
110
|
-
url
|
|
111
|
-
hits
|
|
112
|
-
selected
|
|
113
|
-
id
|
|
114
|
-
state
|
|
102
|
+
displayName: string;
|
|
103
|
+
clearUrl: string;
|
|
104
|
+
disabled: boolean;
|
|
105
|
+
name: string;
|
|
106
|
+
selected: boolean;
|
|
107
|
+
active: boolean;
|
|
108
|
+
terms: Array<{
|
|
109
|
+
name: string;
|
|
110
|
+
url: string;
|
|
111
|
+
hits: number;
|
|
112
|
+
selected: boolean;
|
|
113
|
+
id: string;
|
|
114
|
+
state: 'checked disabled' | 'checked' | 'disabled' | '';
|
|
115
115
|
aggregations?: Record<string, {
|
|
116
116
|
sum?: number;
|
|
117
117
|
min?: number;
|
|
@@ -88,19 +88,19 @@ export type SearchResultsUserDetailSchema = {
|
|
|
88
88
|
}>;
|
|
89
89
|
}>;
|
|
90
90
|
facets?: Array<{
|
|
91
|
-
displayName
|
|
92
|
-
clearUrl
|
|
93
|
-
disabled
|
|
94
|
-
name
|
|
95
|
-
selected
|
|
96
|
-
active
|
|
97
|
-
terms
|
|
98
|
-
name
|
|
99
|
-
url
|
|
100
|
-
hits
|
|
101
|
-
selected
|
|
102
|
-
id
|
|
103
|
-
state
|
|
91
|
+
displayName: string;
|
|
92
|
+
clearUrl: string;
|
|
93
|
+
disabled: boolean;
|
|
94
|
+
name: string;
|
|
95
|
+
selected: boolean;
|
|
96
|
+
active: boolean;
|
|
97
|
+
terms: Array<{
|
|
98
|
+
name: string;
|
|
99
|
+
url: string;
|
|
100
|
+
hits: number;
|
|
101
|
+
selected: boolean;
|
|
102
|
+
id: string;
|
|
103
|
+
state: 'checked disabled' | 'checked' | 'disabled' | '';
|
|
104
104
|
aggregations?: Record<string, {
|
|
105
105
|
sum?: number;
|
|
106
106
|
min?: number;
|