@risika/api-response-types 1.9.0 → 1.11.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/account/index.ts +0 -1
- package/company/alike.ts +8 -0
- package/company/basics.ts +8 -0
- package/company/basics_list.ts +8 -0
- package/financial/numbers.ts +1 -0
- package/monitor/export.ts +10 -0
- package/monitor/list.ts +10 -0
- package/monitor/listpaged.ts +10 -0
- package/package.json +1 -1
- package/search/company.ts +8 -0
- package/account/credit_policy/apply_all.ts +0 -11
package/account/index.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
export type { Decrement as CounterDecrement } from "./counter/decrement"
|
|
3
|
-
export type { ApplyAll as CreditPolicyApplyAll } from "./credit_policy/apply_all"
|
|
4
3
|
export type { Get as CreditPolicyGet } from "./credit_policy/get"
|
|
5
4
|
export type { GetActiveCountries as CreditPolicyGetActiveCountries } from "./credit_policy/get_active_countries"
|
|
6
5
|
export type { Set as CreditPolicySet } from "./credit_policy/set"
|
package/company/alike.ts
CHANGED
|
@@ -158,6 +158,10 @@ export interface CreditPolicyFalse {
|
|
|
158
158
|
| "POLICY_PROFIT_LOSS"
|
|
159
159
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
160
160
|
text: string;
|
|
161
|
+
matched_persons?: {
|
|
162
|
+
entity_id: string;
|
|
163
|
+
name: string | null;
|
|
164
|
+
}[];
|
|
161
165
|
},
|
|
162
166
|
...{
|
|
163
167
|
code:
|
|
@@ -184,6 +188,10 @@ export interface CreditPolicyFalse {
|
|
|
184
188
|
| "POLICY_PROFIT_LOSS"
|
|
185
189
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
186
190
|
text: string;
|
|
191
|
+
matched_persons?: {
|
|
192
|
+
entity_id: string;
|
|
193
|
+
name: string | null;
|
|
194
|
+
}[];
|
|
187
195
|
}[]
|
|
188
196
|
];
|
|
189
197
|
}
|
package/company/basics.ts
CHANGED
|
@@ -152,6 +152,10 @@ export interface CreditPolicyFalse {
|
|
|
152
152
|
| "POLICY_PROFIT_LOSS"
|
|
153
153
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
154
154
|
text: string;
|
|
155
|
+
matched_persons?: {
|
|
156
|
+
entity_id: string;
|
|
157
|
+
name: string | null;
|
|
158
|
+
}[];
|
|
155
159
|
},
|
|
156
160
|
...{
|
|
157
161
|
code:
|
|
@@ -178,6 +182,10 @@ export interface CreditPolicyFalse {
|
|
|
178
182
|
| "POLICY_PROFIT_LOSS"
|
|
179
183
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
180
184
|
text: string;
|
|
185
|
+
matched_persons?: {
|
|
186
|
+
entity_id: string;
|
|
187
|
+
name: string | null;
|
|
188
|
+
}[];
|
|
181
189
|
}[]
|
|
182
190
|
];
|
|
183
191
|
}
|
package/company/basics_list.ts
CHANGED
|
@@ -158,6 +158,10 @@ export interface CreditPolicyFalse {
|
|
|
158
158
|
| "POLICY_PROFIT_LOSS"
|
|
159
159
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
160
160
|
text: string;
|
|
161
|
+
matched_persons?: {
|
|
162
|
+
entity_id: string;
|
|
163
|
+
name: string | null;
|
|
164
|
+
}[];
|
|
161
165
|
},
|
|
162
166
|
...{
|
|
163
167
|
code:
|
|
@@ -184,6 +188,10 @@ export interface CreditPolicyFalse {
|
|
|
184
188
|
| "POLICY_PROFIT_LOSS"
|
|
185
189
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
186
190
|
text: string;
|
|
191
|
+
matched_persons?: {
|
|
192
|
+
entity_id: string;
|
|
193
|
+
name: string | null;
|
|
194
|
+
}[];
|
|
187
195
|
}[]
|
|
188
196
|
];
|
|
189
197
|
}
|
package/financial/numbers.ts
CHANGED
|
@@ -29,6 +29,7 @@ export type Numbers =
|
|
|
29
29
|
other_net_financial_income: null | number;
|
|
30
30
|
net_financial_income: null | number;
|
|
31
31
|
ordinary_profit: null | number;
|
|
32
|
+
year_end_financial_closure_dispositions?: null | number;
|
|
32
33
|
extraordinary_item: null | number;
|
|
33
34
|
profit_loss_before_tax: null | number;
|
|
34
35
|
tax_expenses: null | number;
|
package/monitor/export.ts
CHANGED
|
@@ -45,6 +45,8 @@ export interface CompanyMonitorListAllSchema {
|
|
|
45
45
|
status_code: string | null;
|
|
46
46
|
score: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10) | null;
|
|
47
47
|
credit_max: number;
|
|
48
|
+
upfront?: number | null;
|
|
49
|
+
credit_days?: number;
|
|
48
50
|
address: Address;
|
|
49
51
|
financial_key_figures: FinancialKeyFigures;
|
|
50
52
|
industry_code: string | null;
|
|
@@ -181,6 +183,10 @@ export interface CreditPolicyFalse {
|
|
|
181
183
|
| "POLICY_PROFIT_LOSS"
|
|
182
184
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
183
185
|
text: string;
|
|
186
|
+
matched_persons?: {
|
|
187
|
+
entity_id: string;
|
|
188
|
+
name: string | null;
|
|
189
|
+
}[];
|
|
184
190
|
},
|
|
185
191
|
...{
|
|
186
192
|
code:
|
|
@@ -207,6 +213,10 @@ export interface CreditPolicyFalse {
|
|
|
207
213
|
| "POLICY_PROFIT_LOSS"
|
|
208
214
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
209
215
|
text: string;
|
|
216
|
+
matched_persons?: {
|
|
217
|
+
entity_id: string;
|
|
218
|
+
name: string | null;
|
|
219
|
+
}[];
|
|
210
220
|
}[]
|
|
211
221
|
];
|
|
212
222
|
}
|
package/monitor/list.ts
CHANGED
|
@@ -45,6 +45,8 @@ export interface CompanyMonitorListAllSchema {
|
|
|
45
45
|
status_code: string | null;
|
|
46
46
|
score: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10) | null;
|
|
47
47
|
credit_max: number;
|
|
48
|
+
upfront?: number | null;
|
|
49
|
+
credit_days?: number;
|
|
48
50
|
address: Address;
|
|
49
51
|
financial_key_figures: FinancialKeyFigures;
|
|
50
52
|
industry_code: string | null;
|
|
@@ -181,6 +183,10 @@ export interface CreditPolicyFalse {
|
|
|
181
183
|
| "POLICY_PROFIT_LOSS"
|
|
182
184
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
183
185
|
text: string;
|
|
186
|
+
matched_persons?: {
|
|
187
|
+
entity_id: string;
|
|
188
|
+
name: string | null;
|
|
189
|
+
}[];
|
|
184
190
|
},
|
|
185
191
|
...{
|
|
186
192
|
code:
|
|
@@ -207,6 +213,10 @@ export interface CreditPolicyFalse {
|
|
|
207
213
|
| "POLICY_PROFIT_LOSS"
|
|
208
214
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
209
215
|
text: string;
|
|
216
|
+
matched_persons?: {
|
|
217
|
+
entity_id: string;
|
|
218
|
+
name: string | null;
|
|
219
|
+
}[];
|
|
210
220
|
}[]
|
|
211
221
|
];
|
|
212
222
|
}
|
package/monitor/listpaged.ts
CHANGED
|
@@ -45,6 +45,8 @@ export interface Listpaged {
|
|
|
45
45
|
status_code: string;
|
|
46
46
|
score: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10) | null;
|
|
47
47
|
credit_max: number;
|
|
48
|
+
upfront?: number | null;
|
|
49
|
+
credit_days?: number;
|
|
48
50
|
address: Address;
|
|
49
51
|
financial_key_figures: FinancialKeyFigures;
|
|
50
52
|
industry_code: string;
|
|
@@ -188,6 +190,10 @@ export interface CreditPolicyFalse {
|
|
|
188
190
|
| "POLICY_PROFIT_LOSS"
|
|
189
191
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
190
192
|
text: string;
|
|
193
|
+
matched_persons?: {
|
|
194
|
+
entity_id: string;
|
|
195
|
+
name: string | null;
|
|
196
|
+
}[];
|
|
191
197
|
},
|
|
192
198
|
...{
|
|
193
199
|
code:
|
|
@@ -214,6 +220,10 @@ export interface CreditPolicyFalse {
|
|
|
214
220
|
| "POLICY_PROFIT_LOSS"
|
|
215
221
|
| "POLICY_NUMBER_OF_EMPLOYEES";
|
|
216
222
|
text: string;
|
|
223
|
+
matched_persons?: {
|
|
224
|
+
entity_id: string;
|
|
225
|
+
name: string | null;
|
|
226
|
+
}[];
|
|
217
227
|
}[]
|
|
218
228
|
];
|
|
219
229
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@risika/api-response-types","version":"1.
|
|
1
|
+
{"name":"@risika/api-response-types","version":"1.11.0","main":"index.js","license":"MIT","type":"module"}
|
package/search/company.ts
CHANGED
|
@@ -65,10 +65,18 @@ export interface CreditPolicyFalse {
|
|
|
65
65
|
{
|
|
66
66
|
code: string;
|
|
67
67
|
text: string;
|
|
68
|
+
matched_persons?: {
|
|
69
|
+
entity_id: string;
|
|
70
|
+
name: string | null;
|
|
71
|
+
}[];
|
|
68
72
|
},
|
|
69
73
|
...{
|
|
70
74
|
code: string;
|
|
71
75
|
text: string;
|
|
76
|
+
matched_persons?: {
|
|
77
|
+
entity_id: string;
|
|
78
|
+
name: string | null;
|
|
79
|
+
}[];
|
|
72
80
|
}[]
|
|
73
81
|
];
|
|
74
82
|
}
|
|
@@ -1,11 +0,0 @@
|
|
|
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 ApplyAll {
|
|
10
|
-
status: "ok";
|
|
11
|
-
}
|