@risika/api-response-types-dev 1.85.0 → 1.87.0
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.
|
@@ -6,16 +6,14 @@
|
|
|
6
6
|
* and run json-schema-to-typescript to regenerate this file.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
export
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
has_bo: boolean;
|
|
18
|
-
}
|
|
9
|
+
export type MostRelevant = {
|
|
10
|
+
local_organization_id?: LocalOrganizationId;
|
|
11
|
+
name?: string;
|
|
12
|
+
weight?: string;
|
|
13
|
+
date?: string;
|
|
14
|
+
changes?: MonitorEvent[];
|
|
15
|
+
}[];
|
|
16
|
+
|
|
19
17
|
export interface LocalOrganizationId {
|
|
20
18
|
country: ("DK" | "SE" | "NO" | "FI" | "FO" | "DE" | "UK" | "dk" | "se" | "no" | "fi" | "fo" | "de" | "uk") | null;
|
|
21
19
|
id: string | null;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@risika/api-response-types-dev","version":"1.
|
|
1
|
+
{"name":"@risika/api-response-types-dev","version":"1.87.0","main":"index.js","license":"MIT","type":"module"}
|
|
@@ -6,16 +6,14 @@
|
|
|
6
6
|
* and run json-schema-to-typescript to regenerate this file.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
export
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
has_bo: boolean;
|
|
18
|
-
}
|
|
9
|
+
export type List = {
|
|
10
|
+
personal_id: number | string;
|
|
11
|
+
name: string;
|
|
12
|
+
aliases: string[];
|
|
13
|
+
functions: PersonSearchFunction[] | null;
|
|
14
|
+
active_company_relations: string[];
|
|
15
|
+
}[];
|
|
16
|
+
|
|
19
17
|
export interface PersonSearchFunction {
|
|
20
18
|
active: boolean;
|
|
21
19
|
function: null | string;
|