@risika/api-response-types-dev 1.201.0 → 1.203.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.
- package/company/index.ts +2 -1
- package/company/relations_out.ts +52 -0
- package/package.json +1 -1
package/company/index.ts
CHANGED
|
@@ -17,4 +17,5 @@ export type { History as History } from "./history"
|
|
|
17
17
|
export type { Operating as Operating } from "./operating"
|
|
18
18
|
export type { Owners as Owners } from "./owners"
|
|
19
19
|
export type { ProductionUnit as ProductionUnit } from "./production_unit"
|
|
20
|
-
export type { Relations as Relations } from "./relations"
|
|
20
|
+
export type { Relations as Relations } from "./relations"
|
|
21
|
+
export type { RelationsOut as RelationsOut } from "./relations_out"
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
5
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
6
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
export interface RelationsOut {
|
|
10
|
+
name: string | null;
|
|
11
|
+
type: string;
|
|
12
|
+
address: {} | null;
|
|
13
|
+
local_organization_id: LocalOrganizationId;
|
|
14
|
+
politically_exposed_persons: null;
|
|
15
|
+
relations: {
|
|
16
|
+
local_organization_id: LocalOrganizationId;
|
|
17
|
+
company_name: string | null;
|
|
18
|
+
company_status_code: string | null;
|
|
19
|
+
company_status: string | null;
|
|
20
|
+
company_type: {
|
|
21
|
+
short: string | null;
|
|
22
|
+
long: string | null;
|
|
23
|
+
};
|
|
24
|
+
score: number | null;
|
|
25
|
+
risk_assessment: string | null;
|
|
26
|
+
risk_assessment_code: string | null;
|
|
27
|
+
functions: PersonFunction[];
|
|
28
|
+
}[];
|
|
29
|
+
has_bo?: boolean;
|
|
30
|
+
page: number;
|
|
31
|
+
limit: number;
|
|
32
|
+
total: number;
|
|
33
|
+
total_pages: number;
|
|
34
|
+
}
|
|
35
|
+
export interface LocalOrganizationId {
|
|
36
|
+
country: ("DK" | "SE" | "NO" | "FI" | "FO" | "DE" | "UK" | "dk" | "se" | "no" | "fi" | "fo" | "de" | "uk") | null;
|
|
37
|
+
id: string | null;
|
|
38
|
+
hash?: string | null;
|
|
39
|
+
}
|
|
40
|
+
export interface PersonFunction {
|
|
41
|
+
function: string;
|
|
42
|
+
valid_from: string | null;
|
|
43
|
+
valid_to: string | null;
|
|
44
|
+
title: string;
|
|
45
|
+
shares_interval?: string | null;
|
|
46
|
+
shares?: number | null;
|
|
47
|
+
share_of_ownership_percentage?: string | number | null;
|
|
48
|
+
shares_owned?: number | null;
|
|
49
|
+
total_shares?: number | null;
|
|
50
|
+
voting_rights?: null | string;
|
|
51
|
+
voting_rights_interval?: null | string;
|
|
52
|
+
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@risika/api-response-types-dev","version":"1.
|
|
1
|
+
{"name":"@risika/api-response-types-dev","version":"1.203.0","main":"index.js","license":"MIT","type":"module"}
|