@risika/api-response-types-dev 1.83.0 → 1.84.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/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@risika/api-response-types-dev","version":"1.83.0","main":"index.js","license":"MIT","type":"module"}
1
+ {"name":"@risika/api-response-types-dev","version":"1.84.0","main":"index.js","license":"MIT","type":"module"}
package/search/person.ts CHANGED
@@ -15,6 +15,7 @@ export interface Person {
15
15
  active_company_relations: string[];
16
16
  }[];
17
17
  count: number;
18
+ has_bo: boolean;
18
19
  }
19
20
  export interface PersonSearchFunction {
20
21
  active: boolean;
@@ -6,14 +6,16 @@
6
6
  * and run json-schema-to-typescript to regenerate this file.
7
7
  */
8
8
 
9
- export type List = {
10
- personal_id: number | string;
11
- name: string;
12
- aliases: string[];
13
- functions: PersonSearchFunction[];
14
- active_company_relations: string[];
15
- }[];
16
-
9
+ export interface List {
10
+ person_visits: {
11
+ personal_id: number | string;
12
+ name: string;
13
+ aliases: string[];
14
+ functions: PersonSearchFunction[] | null;
15
+ active_company_relations: string[];
16
+ }[];
17
+ has_bo: boolean;
18
+ }
17
19
  export interface PersonSearchFunction {
18
20
  active: boolean;
19
21
  function: null | string;