@corsa-labs/sdk 3.22.0 → 3.23.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.
@@ -2,5 +2,5 @@ export type AdverseMediaDto = {
2
2
  /**
3
3
  * Indicates if there is adverse media associated with the client
4
4
  */
5
- isAdverseMedia: boolean;
5
+ isAdverseMedia: boolean | null;
6
6
  };
@@ -2,5 +2,5 @@ export type PoliticalExposureDto = {
2
2
  /**
3
3
  * Indicates if the client is politically exposed
4
4
  */
5
- isPoliticallyExposed: boolean;
5
+ isPoliticallyExposed: boolean | null;
6
6
  };
@@ -2,5 +2,5 @@ export type SanctionsDto = {
2
2
  /**
3
3
  * Indicates if the client is under any sanctions
4
4
  */
5
- isSanctioned: boolean;
5
+ isSanctioned: boolean | null;
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corsa-labs/sdk",
3
- "version": "3.22.0",
3
+ "version": "3.23.0",
4
4
  "description": "SDK for Corsa API",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",