sowhat-types 2.0.263 → 2.0.264

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/index.d.mts CHANGED
@@ -491,6 +491,7 @@ interface UpdateProInput {
491
491
  certifications?: ProCertificationEnum[] | null;
492
492
  sirenId?: string | null;
493
493
  oriasId?: string | null;
494
+ regulation?: string | null;
494
495
  notificationEmail?: string | null;
495
496
  }
496
497
 
@@ -500,8 +501,9 @@ interface ManualInitializeProInput {
500
501
  email: string;
501
502
  companyWebsite: string;
502
503
  companyName: string;
503
- oriasId: string;
504
+ oriasId: string | null;
504
505
  sirenId: string;
506
+ regulation: string | null;
505
507
  }
506
508
 
507
509
  interface CreateProLeadsAlertInput {
@@ -1056,6 +1058,7 @@ interface ProResponse {
1056
1058
  companyDescription: string | null;
1057
1059
  sirenId: string | null;
1058
1060
  oriasId: string | null;
1061
+ regulation: string | null;
1059
1062
  certifications: ProCertificationEnum[];
1060
1063
  status: ProStatusEnum;
1061
1064
  notificationEmail: string | null;
package/dist/index.d.ts CHANGED
@@ -491,6 +491,7 @@ interface UpdateProInput {
491
491
  certifications?: ProCertificationEnum[] | null;
492
492
  sirenId?: string | null;
493
493
  oriasId?: string | null;
494
+ regulation?: string | null;
494
495
  notificationEmail?: string | null;
495
496
  }
496
497
 
@@ -500,8 +501,9 @@ interface ManualInitializeProInput {
500
501
  email: string;
501
502
  companyWebsite: string;
502
503
  companyName: string;
503
- oriasId: string;
504
+ oriasId: string | null;
504
505
  sirenId: string;
506
+ regulation: string | null;
505
507
  }
506
508
 
507
509
  interface CreateProLeadsAlertInput {
@@ -1056,6 +1058,7 @@ interface ProResponse {
1056
1058
  companyDescription: string | null;
1057
1059
  sirenId: string | null;
1058
1060
  oriasId: string | null;
1061
+ regulation: string | null;
1059
1062
  certifications: ProCertificationEnum[];
1060
1063
  status: ProStatusEnum;
1061
1064
  notificationEmail: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.263",
3
+ "version": "2.0.264",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",