omni-osint-query-client 1.2.6 → 1.3.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/dist/types.gen.d.ts +12 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -331,6 +331,12 @@ export type Organization = {
|
|
|
331
331
|
* Represents a person.
|
|
332
332
|
*/
|
|
333
333
|
export type Person = {
|
|
334
|
+
/**
|
|
335
|
+
* Type
|
|
336
|
+
*
|
|
337
|
+
* Role type of person
|
|
338
|
+
*/
|
|
339
|
+
type?: string | null;
|
|
334
340
|
/**
|
|
335
341
|
* Role
|
|
336
342
|
*
|
|
@@ -678,6 +684,12 @@ export type ValidationError = {
|
|
|
678
684
|
* Represents a website.
|
|
679
685
|
*/
|
|
680
686
|
export type Website = {
|
|
687
|
+
/**
|
|
688
|
+
* Type
|
|
689
|
+
*
|
|
690
|
+
* Type of website
|
|
691
|
+
*/
|
|
692
|
+
type?: string | null;
|
|
681
693
|
/**
|
|
682
694
|
* Url
|
|
683
695
|
*
|