@lifeaz/gate-helper 1.0.2 → 1.0.3

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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # 🔐 GATE Helper
2
- **1.0.2** Global Authentication and Trust Endpoint Helper
2
+ **1.0.3** Global Authentication and Trust Endpoint Helper
3
3
 
4
4
  ---
5
5
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.3
package/dist/main.d.ts CHANGED
@@ -61,7 +61,7 @@ export interface Geozone {
61
61
  }
62
62
  export interface State {
63
63
  id: UUID;
64
- country: Country;
64
+ country?: Country | null;
65
65
  name: string;
66
66
  iso: string;
67
67
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lifeaz/gate-helper",
3
3
  "description": "Lifeaz Global Authentication and Trust Endpoint Helper",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",
7
7
  "engines": {
package/src/main.ts CHANGED
@@ -72,7 +72,7 @@ export interface Geozone {
72
72
 
73
73
  export interface State {
74
74
  id: UUID;
75
- country: Country;
75
+ country?: Country|null;
76
76
  name: string;
77
77
  iso: string;
78
78
  }