@risika/api-response-types 1.1.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.
Files changed (121) hide show
  1. package/README.md +20 -0
  2. package/account/counter/decrement.ts +11 -0
  3. package/account/credit_policy/get.ts +62 -0
  4. package/account/credit_policy/get_active_countries.ts +11 -0
  5. package/account/credit_policy/set.ts +11 -0
  6. package/account/enterprise_credit_policies/create.ts +12 -0
  7. package/account/enterprise_credit_policies/evaluate.ts +106 -0
  8. package/account/enterprise_credit_policies/evaluate_monitoring_list.ts +96 -0
  9. package/account/enterprise_credit_policies/remove.ts +11 -0
  10. package/account/enterprise_credit_policies/schema/policy.ts +142 -0
  11. package/account/enterprise_credit_policies/support/outputs_table.ts +13 -0
  12. package/account/enterprise_credit_policies/support/rules_table.ts +14 -0
  13. package/account/enterprise_credit_policies/support/variables.ts +72 -0
  14. package/account/enterprise_credit_policies/update.ts +19 -0
  15. package/account/enterprise_credit_policies/validate.ts +17 -0
  16. package/account/enterprise_credit_policies.ts +35 -0
  17. package/account/index.ts +21 -0
  18. package/account/notes/add.ts +17 -0
  19. package/account/notes/get.ts +17 -0
  20. package/account/notes/list.ts +33 -0
  21. package/account/notes/remove.ts +11 -0
  22. package/account/status.ts +131 -0
  23. package/company/alike.ts +208 -0
  24. package/company/basics.ts +202 -0
  25. package/company/basics_list.ts +208 -0
  26. package/company/ean.ts +14 -0
  27. package/company/employees.ts +15 -0
  28. package/company/events/payment_remarks.ts +25 -0
  29. package/company/events.ts +46 -0
  30. package/company/hierarchy/child.ts +67 -0
  31. package/company/hierarchy/node.ts +97 -0
  32. package/company/hierarchy/parent.ts +67 -0
  33. package/company/hierarchy/single.ts +37 -0
  34. package/company/hierarchy/summary.ts +25 -0
  35. package/company/hierarchy/walkdown.ts +101 -0
  36. package/company/hierarchy/walkup.ts +101 -0
  37. package/company/history.ts +39 -0
  38. package/company/index.ts +20 -0
  39. package/company/operating.ts +29 -0
  40. package/company/owners.ts +20 -0
  41. package/company/production_unit.ts +39 -0
  42. package/company/relations.ts +65 -0
  43. package/convert_currency.ts +11 -0
  44. package/export/company.ts +85 -0
  45. package/export/index.ts +2 -0
  46. package/financial/index.ts +5 -0
  47. package/financial/numbers.ts +87 -0
  48. package/financial/performance.ts +35 -0
  49. package/financial/ratios.ts +37 -0
  50. package/financial/stats.ts +35 -0
  51. package/fraud_policy/fraud_indicators_get.ts +24 -0
  52. package/fraud_policy/get.ts +25 -0
  53. package/fraud_policy/index.ts +5 -0
  54. package/fraud_policy/set.ts +11 -0
  55. package/fraud_policy/set_request.ts +14 -0
  56. package/highlights.ts +67 -0
  57. package/index.ts +21 -0
  58. package/last_update.ts +44 -0
  59. package/list/api_versions.ts +9 -0
  60. package/list/auditors.ts +13 -0
  61. package/list/cities.ts +13 -0
  62. package/list/company_statuses.ts +13 -0
  63. package/list/company_types.ts +13 -0
  64. package/list/currencies.ts +11 -0
  65. package/list/employee_interval.ts +13 -0
  66. package/list/highlights.ts +16 -0
  67. package/list/index.ts +15 -0
  68. package/list/industries.ts +25 -0
  69. package/list/municipalities.ts +13 -0
  70. package/list/policy_outcomes.ts +14 -0
  71. package/list/policy_violations.ts +14 -0
  72. package/list/regions.ts +19 -0
  73. package/list/zipcodes.ts +13 -0
  74. package/liveness.ts +11 -0
  75. package/monitor/add.ts +17 -0
  76. package/monitor/export.ts +212 -0
  77. package/monitor/extract.ts +46 -0
  78. package/monitor/index.ts +20 -0
  79. package/monitor/list/add.ts +11 -0
  80. package/monitor/list/most_relevant.ts +51 -0
  81. package/monitor/list/most_relevant_list.ts +9 -0
  82. package/monitor/list/policy_violations.ts +32 -0
  83. package/monitor/list/remove.ts +11 -0
  84. package/monitor/list/rename.ts +11 -0
  85. package/monitor/list/show.ts +20 -0
  86. package/monitor/list/statistics/aggregated_highlights.ts +16 -0
  87. package/monitor/list/statistics/category.ts +50 -0
  88. package/monitor/list/statistics/compliance.ts +49 -0
  89. package/monitor/list/statistics/timeline.ts +43 -0
  90. package/monitor/list/visibility.ts +11 -0
  91. package/monitor/list.ts +212 -0
  92. package/monitor/listpaged.ts +219 -0
  93. package/monitor/remove.ts +17 -0
  94. package/monitor/verify.ts +12 -0
  95. package/package.json +1 -0
  96. package/person/index.ts +3 -0
  97. package/person/relations.ts +68 -0
  98. package/person/relations_list.ts +20 -0
  99. package/phone_numbers.ts +23 -0
  100. package/rating/credit/override.ts +17 -0
  101. package/rating/credit.ts +13 -0
  102. package/rating/index.ts +4 -0
  103. package/rating/scores.ts +26 -0
  104. package/readiness.ts +11 -0
  105. package/registration/debt.ts +54 -0
  106. package/registration/index.ts +3 -0
  107. package/registration/properties.ts +91 -0
  108. package/search/company.ts +74 -0
  109. package/search/index.ts +4 -0
  110. package/search/person.ts +22 -0
  111. package/search/production_units.ts +38 -0
  112. package/statistics/company_visits/list.ts +29 -0
  113. package/statistics/company_visits/register.ts +11 -0
  114. package/statistics/company_visits/summary.ts +18 -0
  115. package/statistics/index.ts +6 -0
  116. package/statistics/person_visits/list.ts +20 -0
  117. package/statistics/person_visits/register.ts +11 -0
  118. package/test/exception.ts +11 -0
  119. package/test/index.ts +2 -0
  120. package/validate/index.ts +2 -0
  121. package/validate/local_id.ts +21 -0
@@ -0,0 +1,101 @@
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 type HierarchyList = HierarchySingle[];
10
+
11
+ export interface Walkdown {
12
+ assets: number | null;
13
+ currency: string | null;
14
+ current_assets: number | null;
15
+ equity: number | null;
16
+ financial_trend: {
17
+ assets: Trends;
18
+ current_assets: Trends;
19
+ equity: Trends;
20
+ profit_loss: Trends;
21
+ report_period: {
22
+ current: {
23
+ report_end: string;
24
+ report_start: string;
25
+ };
26
+ previous: {
27
+ report_end: string;
28
+ report_start: string;
29
+ };
30
+ };
31
+ } | null;
32
+ functions: HierarchyFunctions;
33
+ local_id: LocalOrganizationId;
34
+ local_organization_id: LocalOrganizationId;
35
+ name: string | null;
36
+ personal_id: string | null;
37
+ profit_loss: number | null;
38
+ score: number | null;
39
+ shares?: number | null;
40
+ shares_interval?: string | null;
41
+ type: string | null;
42
+ valid_from?: string | null;
43
+ children?: HierarchyList;
44
+ parents?: HierarchyList;
45
+ }
46
+ export interface Trends {
47
+ current: number;
48
+ previous: number;
49
+ trend: "UP" | "NEUTRAL" | "DOWN" | "UNKNOWN";
50
+ }
51
+ export interface HierarchyFunctions {
52
+ /**
53
+ * This interface was referenced by `HierarchyFunctions`'s JSON-Schema definition
54
+ * via the `patternProperty` "^.*$".
55
+ */
56
+ [k: string]: {
57
+ name?: string | null;
58
+ personal_id?: string | null;
59
+ valid_from?: string;
60
+ } | null;
61
+ }
62
+ export interface LocalOrganizationId {
63
+ country: ("DK" | "SE" | "NO" | "FI" | "FO" | "DE" | "UK" | "dk" | "se" | "no" | "fi" | "fo" | "de" | "uk") | null;
64
+ id: string | null;
65
+ hash?: string | null;
66
+ }
67
+ export interface HierarchySingle {
68
+ assets: number | null;
69
+ currency: string | null;
70
+ current_assets: number | null;
71
+ equity: number | null;
72
+ financial_trend: {
73
+ assets: Trends;
74
+ current_assets: Trends;
75
+ equity: Trends;
76
+ profit_loss: Trends;
77
+ report_period: {
78
+ current: {
79
+ report_end: string;
80
+ report_start: string;
81
+ };
82
+ previous: {
83
+ report_end: string;
84
+ report_start: string;
85
+ };
86
+ };
87
+ } | null;
88
+ functions: HierarchyFunctions;
89
+ local_id: LocalOrganizationId;
90
+ local_organization_id: LocalOrganizationId;
91
+ name: string | null;
92
+ personal_id: string | null;
93
+ profit_loss: number | null;
94
+ score: number | null;
95
+ shares?: number | null;
96
+ shares_interval?: string | null;
97
+ type: string | null;
98
+ valid_from?: string | null;
99
+ children?: HierarchyList;
100
+ parents?: HierarchyList;
101
+ }
@@ -0,0 +1,101 @@
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 type HierarchyList = HierarchySingle[];
10
+
11
+ export interface Walkup {
12
+ assets: number | null;
13
+ currency: string | null;
14
+ current_assets: number | null;
15
+ equity: number | null;
16
+ financial_trend: {
17
+ assets: Trends;
18
+ current_assets: Trends;
19
+ equity: Trends;
20
+ profit_loss: Trends;
21
+ report_period: {
22
+ current: {
23
+ report_end: string;
24
+ report_start: string;
25
+ };
26
+ previous: {
27
+ report_end: string;
28
+ report_start: string;
29
+ };
30
+ };
31
+ } | null;
32
+ functions: HierarchyFunctions;
33
+ local_id: LocalOrganizationId;
34
+ local_organization_id: LocalOrganizationId;
35
+ name: string | null;
36
+ personal_id: string | null;
37
+ profit_loss: number | null;
38
+ score: number | null;
39
+ shares?: number | null;
40
+ shares_interval?: string | null;
41
+ type: string | null;
42
+ valid_from?: string | null;
43
+ children?: HierarchyList;
44
+ parents?: HierarchyList;
45
+ }
46
+ export interface Trends {
47
+ current: number;
48
+ previous: number;
49
+ trend: "UP" | "NEUTRAL" | "DOWN" | "UNKNOWN";
50
+ }
51
+ export interface HierarchyFunctions {
52
+ /**
53
+ * This interface was referenced by `HierarchyFunctions`'s JSON-Schema definition
54
+ * via the `patternProperty` "^.*$".
55
+ */
56
+ [k: string]: {
57
+ name?: string | null;
58
+ personal_id?: string | null;
59
+ valid_from?: string;
60
+ } | null;
61
+ }
62
+ export interface LocalOrganizationId {
63
+ country: ("DK" | "SE" | "NO" | "FI" | "FO" | "DE" | "UK" | "dk" | "se" | "no" | "fi" | "fo" | "de" | "uk") | null;
64
+ id: string | null;
65
+ hash?: string | null;
66
+ }
67
+ export interface HierarchySingle {
68
+ assets: number | null;
69
+ currency: string | null;
70
+ current_assets: number | null;
71
+ equity: number | null;
72
+ financial_trend: {
73
+ assets: Trends;
74
+ current_assets: Trends;
75
+ equity: Trends;
76
+ profit_loss: Trends;
77
+ report_period: {
78
+ current: {
79
+ report_end: string;
80
+ report_start: string;
81
+ };
82
+ previous: {
83
+ report_end: string;
84
+ report_start: string;
85
+ };
86
+ };
87
+ } | null;
88
+ functions: HierarchyFunctions;
89
+ local_id: LocalOrganizationId;
90
+ local_organization_id: LocalOrganizationId;
91
+ name: string | null;
92
+ personal_id: string | null;
93
+ profit_loss: number | null;
94
+ score: number | null;
95
+ shares?: number | null;
96
+ shares_interval?: string | null;
97
+ type: string | null;
98
+ valid_from?: string | null;
99
+ children?: HierarchyList;
100
+ parents?: HierarchyList;
101
+ }
@@ -0,0 +1,39 @@
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 type DataObject = {
10
+ valid_from: string;
11
+ valid_to: string | null;
12
+ data:
13
+ | string
14
+ | {
15
+ /**
16
+ * This interface was referenced by `undefined`'s JSON-Schema definition
17
+ * via the `patternProperty` "^.*$".
18
+ */
19
+ [k: string]: number;
20
+ }
21
+ | {
22
+ city?: string;
23
+ coname?: string | null;
24
+ country?: string | null;
25
+ municipality?: string;
26
+ number?: string;
27
+ postdistrict?: string | null;
28
+ street?: string | null;
29
+ zipcode?: string | number;
30
+ };
31
+ }[];
32
+
33
+ export interface History {
34
+ address?: DataObject;
35
+ capital?: DataObject;
36
+ name?: DataObject;
37
+ employment?: DataObject;
38
+ other?: DataObject;
39
+ }
@@ -0,0 +1,20 @@
1
+ // @ts-nocheck
2
+ export type { Alike as Alike } from "./alike"
3
+ export type { Basics as Basics } from "./basics"
4
+ export type { BasicsList as BasicsList } from "./basics_list"
5
+ export type { Ean as Ean } from "./ean"
6
+ export type { Employees as Employees } from "./employees"
7
+ export type { PaymentRemarks as EventsPaymentRemarks } from "./events/payment_remarks"
8
+ export type { Events as Events } from "./events"
9
+ export type { Child as HierarchyChild } from "./hierarchy/child"
10
+ export type { Node as HierarchyNode } from "./hierarchy/node"
11
+ export type { Parent as HierarchyParent } from "./hierarchy/parent"
12
+ export type { Single as HierarchySingle } from "./hierarchy/single"
13
+ export type { Summary as HierarchySummary } from "./hierarchy/summary"
14
+ export type { Walkdown as HierarchyWalkdown } from "./hierarchy/walkdown"
15
+ export type { Walkup as HierarchyWalkup } from "./hierarchy/walkup"
16
+ export type { History as History } from "./history"
17
+ export type { Operating as Operating } from "./operating"
18
+ export type { Owners as Owners } from "./owners"
19
+ export type { ProductionUnit as ProductionUnit } from "./production_unit"
20
+ export type { Relations as Relations } from "./relations"
@@ -0,0 +1,29 @@
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 type DataObject = {
10
+ group_relation_id: LocalOrganizationId;
11
+ local_organization_id: LocalOrganizationId;
12
+ group_relation_name: string | null;
13
+ name: string | null;
14
+ }[];
15
+
16
+ export interface Operating {
17
+ currency: string | null;
18
+ group: null | DataObject;
19
+ group_assets: number | null;
20
+ group_employees_number: number | null;
21
+ group_id: string | null;
22
+ primary_id: string | null;
23
+ primary_name: string | null;
24
+ }
25
+ export interface LocalOrganizationId {
26
+ country: ("DK" | "SE" | "NO" | "FI" | "FO" | "DE" | "UK" | "dk" | "se" | "no" | "fi" | "fo" | "de" | "uk") | null;
27
+ id: string | null;
28
+ hash?: string | null;
29
+ }
@@ -0,0 +1,20 @@
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 Owners {
10
+ total_shares: number;
11
+ last_updated: string;
12
+ owners: {
13
+ type: "PERSON" | "COMPANY";
14
+ owner: string;
15
+ landcode: string;
16
+ percentage: number;
17
+ shares: number;
18
+ beneficial_owner: boolean;
19
+ }[];
20
+ }
@@ -0,0 +1,39 @@
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 type ProductionUnit =
10
+ | {
11
+ local_organization_id?: string;
12
+ unit_id?: string;
13
+ address?: {
14
+ city: string | null;
15
+ coname?: string | null;
16
+ coordinates: {
17
+ lat: number | null;
18
+ lng: number | null;
19
+ } | null;
20
+ country?: string | null;
21
+ local_region: string | null;
22
+ municipality: string | null;
23
+ number: string | null;
24
+ postdistrict: string | null;
25
+ street: string | null;
26
+ zipcode: number | string | null;
27
+ };
28
+ advertisement_protection?: boolean | null;
29
+ name?: string;
30
+ industry_code?: string;
31
+ industry_description?: string;
32
+ fte_interval?: string | null;
33
+ employees_interval?: string | null;
34
+ email?: string | null;
35
+ phone_number?: string | null;
36
+ valid_from?: string;
37
+ valid_to?: string | null;
38
+ }[]
39
+ | string[];
@@ -0,0 +1,65 @@
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 type LocalOrganizationIdList = LocalOrganizationId[];
10
+
11
+ export interface Relations {
12
+ owner_information: {
13
+ total_owners: null | number;
14
+ beneficial_owners: null | number;
15
+ legal_owners: null | number;
16
+ owners: null | number;
17
+ other_percentage: null | string;
18
+ };
19
+ relations: {
20
+ active_company_relations: LocalOrganizationIdList;
21
+ country: "DK" | "SE" | "NO" | "FI" | "FO" | "DE" | "UK" | "dk" | "se" | "no" | "fi" | "fo" | "de" | "uk";
22
+ functions: PersonFunction[];
23
+ local_organization_id?: LocalOrganizationId;
24
+ name: string | null;
25
+ personal_id: number | string;
26
+ politically_exposed_persons?: Pep | null;
27
+ special_ownership?: {
28
+ valid_to: string | null;
29
+ valid_from: string;
30
+ title: string;
31
+ description: string[];
32
+ }[];
33
+ type: string;
34
+ }[];
35
+ }
36
+ export interface LocalOrganizationId {
37
+ country: ("DK" | "SE" | "NO" | "FI" | "FO" | "DE" | "UK" | "dk" | "se" | "no" | "fi" | "fo" | "de" | "uk") | null;
38
+ id: string | null;
39
+ hash?: string | null;
40
+ }
41
+ export interface PersonFunction {
42
+ function: string;
43
+ valid_from: string | null;
44
+ valid_to: string | null;
45
+ title: string;
46
+ shares_interval?: string | null;
47
+ shares?: number | null;
48
+ share_of_ownership_percentage?: string | number | null;
49
+ shares_owned?: number | null;
50
+ total_shares?: number | null;
51
+ voting_rights?: null | string;
52
+ voting_rights_interval?: null | string;
53
+ }
54
+ export interface Pep {
55
+ date_added_to_pep: string | null;
56
+ description: string;
57
+ description_code: string;
58
+ duties:
59
+ | []
60
+ | [
61
+ {
62
+ [k: string]: unknown;
63
+ }
64
+ ];
65
+ }
@@ -0,0 +1,11 @@
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 ConvertCurrency {
10
+ converted: number | null;
11
+ }
@@ -0,0 +1,85 @@
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 Company {
10
+ search_result: {
11
+ local_organization_id: LocalOrganizationId;
12
+ active: boolean;
13
+ company_name: string;
14
+ company_type: string;
15
+ employees_interval: null | string;
16
+ address: {
17
+ city: null | string;
18
+ coname: null | string;
19
+ number: null | string;
20
+ street: null | string;
21
+ country: null | string;
22
+ zipcode: null | number | string;
23
+ municipality: null | string;
24
+ postdistrict: null | string;
25
+ };
26
+ main_industry_code: {
27
+ code: string;
28
+ description: string;
29
+ };
30
+ email: {
31
+ email: null | string;
32
+ hidden: boolean | null;
33
+ };
34
+ phone: {
35
+ phone: null | string;
36
+ hidden: boolean | null;
37
+ };
38
+ advertisement_protected: boolean | null;
39
+ webpage: null | string;
40
+ management: string[] | null;
41
+ date_of_incorporation: string | null;
42
+ assets: number | null;
43
+ equity: number | null;
44
+ capital: number | null;
45
+ powers_to_bind: string | null;
46
+ solidity_ratio: number | null;
47
+ return_on_equity: number | null;
48
+ gross_margin: number | null;
49
+ liabilities_and_equity: number | null;
50
+ short_term_debt: number | null;
51
+ long_term_debt: number | null;
52
+ provisions: number | null;
53
+ cash: number | null;
54
+ short_term_receivables_from_sales_and_services: number | null;
55
+ inventories: number | null;
56
+ noncurrent_assets: number | null;
57
+ property_plant_and_equipment: number | null;
58
+ intangible_assets: number | null;
59
+ profit_loss: number | null;
60
+ ebitda: number | null;
61
+ depreciation: number | null;
62
+ gross_result: number | null;
63
+ revenue: number | null;
64
+ currency: string | null;
65
+ name_and_surname_of_auditor: string | null;
66
+ type_of_auditor_assistance: string | null;
67
+ bank_local_id: string | null;
68
+ bank_name: string | null;
69
+ report_end: string | null;
70
+ report_start: string | null;
71
+ consolidated_statement: boolean | null;
72
+ current_financial_assets: number | null;
73
+ average_number_of_employees: number | null;
74
+ }[];
75
+ rows: {
76
+ to: number;
77
+ from: number;
78
+ };
79
+ count: number;
80
+ }
81
+ export interface LocalOrganizationId {
82
+ country: ("DK" | "SE" | "NO" | "FI" | "FO" | "DE" | "UK" | "dk" | "se" | "no" | "fi" | "fo" | "de" | "uk") | null;
83
+ id: string | null;
84
+ hash?: string | null;
85
+ }
@@ -0,0 +1,2 @@
1
+ // @ts-nocheck
2
+ export type { Company as Company } from "./company"
@@ -0,0 +1,5 @@
1
+ // @ts-nocheck
2
+ export type { Numbers as Numbers } from "./numbers"
3
+ export type { Performance as Performance } from "./performance"
4
+ export type { Ratios as Ratios } from "./ratios"
5
+ export type { Stats as Stats } from "./stats"
@@ -0,0 +1,87 @@
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 type Numbers =
10
+ | {}
11
+ | {
12
+ period: {
13
+ start: string;
14
+ end: string;
15
+ };
16
+ revenue: null | number;
17
+ revenue_estimate: null | string;
18
+ other_income: null | number;
19
+ costs: null | number;
20
+ gross_result: null | number;
21
+ operating_costs: null | number;
22
+ other_operating_income: null | number;
23
+ staff_expenses: null | number;
24
+ ebitda: null | number;
25
+ depreciation: null | number;
26
+ ebit: null | number;
27
+ interest_income: null | number;
28
+ interest_expenses: null | number;
29
+ other_net_financial_income: null | number;
30
+ net_financial_income: null | number;
31
+ ordinary_profit: null | number;
32
+ extraordinary_item: null | number;
33
+ profit_loss_before_tax: null | number;
34
+ tax_expenses: null | number;
35
+ profit_loss: null | number;
36
+ goodwill: null | number;
37
+ other_intangible_assets: null | number;
38
+ intangible_assets: null | number;
39
+ land_and_buildings: null | number;
40
+ plant_equipment_and_fixtures: null | number;
41
+ other_property_plant_and_equipment: null | number;
42
+ property_plant_and_equipment: null | number;
43
+ noncurrent_receivables: null | number;
44
+ noncurrent_investments: null | number;
45
+ other_noncurrent_financial_assets: null | number;
46
+ noncurrent_financial_assets: null | number;
47
+ noncurrent_assets: null | number;
48
+ inventories: null | number;
49
+ current_prepayments: null | number;
50
+ short_term_receivables_from_sales_and_services: null | number;
51
+ short_term_receivables_from_group_enterprises: null | number;
52
+ other_short_term_receivables: null | number;
53
+ short_term_receivables: null | number;
54
+ current_financial_assets: null | number;
55
+ cash: null | number;
56
+ current_assets: null | number;
57
+ assets: null | number;
58
+ contributed_capital: null | number;
59
+ reserves: null | number;
60
+ share_premium_account?: null | number;
61
+ restricted_equity?: null | number;
62
+ dividend: null | number;
63
+ retained_earnings: null | number;
64
+ equity_adjustment_items?: null | number;
65
+ unrestricted_equity?: null | number;
66
+ equity_before_minority_interests: null | number;
67
+ minority_interests: null | number;
68
+ equity: null | number;
69
+ untaxed_reserves?: null | number;
70
+ provisions: null | number;
71
+ long_term_debt_to_group_enterprises: null | number;
72
+ long_term_debt_to_banks: null | number;
73
+ long_term_mortgage_debt: null | number;
74
+ equity_loan: null | number;
75
+ deferred_tax: null | number;
76
+ other_long_term_debt: null | number;
77
+ long_term_debt: null | number;
78
+ short_term_debt_to_group_enterprises: null | number;
79
+ short_term_debt_to_banks: null | number;
80
+ short_term_mortgage_debt: null | number;
81
+ short_term_trade_payables: null | number;
82
+ short_term_tax_payables: null | number;
83
+ other_short_term_debt: null | number;
84
+ short_term_debt: null | number;
85
+ debt: null | number;
86
+ liabilities_and_equity: null | number;
87
+ }[];
@@ -0,0 +1,35 @@
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 Performance {
10
+ gross_margin?: Variable;
11
+ operating_margin?: Variable;
12
+ profit_margin?: Variable;
13
+ return_on_equity?: Variable;
14
+ return_on_assets?: Variable;
15
+ return_on_net_assets?: Variable;
16
+ basic_earning_power?: Variable;
17
+ current_ratio?: Variable;
18
+ current_assets_to_equity?: Variable;
19
+ cash_ratio?: Variable;
20
+ capacity_ratio?: Variable;
21
+ asset_turnover?: Variable;
22
+ inventory_conversion_ratio?: Variable;
23
+ debt_ratio?: Variable;
24
+ debt_to_equity_ratio?: Variable;
25
+ income_to_debt_ratio?: Variable;
26
+ ebitda_to_debt_ratio?: Variable;
27
+ interest_coverage?: Variable;
28
+ solidity_ratio?: Variable;
29
+ liabilities_to_equity_ratio?: Variable;
30
+ one_year_change_in_equity?: Variable;
31
+ }
32
+ export interface Variable {
33
+ performance: number | null;
34
+ explanation: string | null;
35
+ }
@@ -0,0 +1,37 @@
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 type Ratios =
10
+ | {}
11
+ | {
12
+ period: {
13
+ start: string;
14
+ end: string;
15
+ };
16
+ gross_margin: null | number;
17
+ operating_margin: null | number;
18
+ profit_margin: null | number;
19
+ return_on_equity: null | number;
20
+ return_on_assets: null | number;
21
+ return_on_net_assets: null | number;
22
+ basic_earning_power: null | number;
23
+ current_ratio: null | number;
24
+ current_assets_to_equity: null | number;
25
+ cash_ratio: null | number;
26
+ capacity_ratio: null | number;
27
+ asset_turnover: null | number;
28
+ inventory_conversion_ratio: null | number;
29
+ debt_ratio: null | number;
30
+ debt_to_equity_ratio: null | number;
31
+ income_to_debt_ratio: null | number;
32
+ ebitda_to_debt_ratio: null | number;
33
+ interest_coverage: null | number;
34
+ solidity_ratio: null | number;
35
+ liabilities_to_equity_ratio: null | number;
36
+ one_year_change_in_equity: null | number;
37
+ }[];