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.
@@ -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
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omni-osint-query-client",
3
- "version": "1.2.6",
3
+ "version": "1.3.0",
4
4
  "engines": {
5
5
  "node": ">=24.0.0"
6
6
  },