@fiado/type-kit 2.0.84 → 2.0.86

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.
@@ -30,4 +30,5 @@ export declare class AddressBase {
30
30
  region?: string;
31
31
  postalCode?: string;
32
32
  country: string;
33
+ localityExternalRefCode?: string;
33
34
  }
@@ -156,3 +156,7 @@ __decorate([
156
156
  (0, class_validator_1.IsEnum)(country_1.CountryISO2ToISO3),
157
157
  __metadata("design:type", String)
158
158
  ], AddressBase.prototype, "country", void 0);
159
+ __decorate([
160
+ (0, class_validator_1.IsString)(),
161
+ __metadata("design:type", String)
162
+ ], AddressBase.prototype, "localityExternalRefCode", void 0);
@@ -96,6 +96,7 @@ export declare class PeopleResponse {
96
96
  selfieResult: string | null;
97
97
  externalReferenceId: string | null;
98
98
  SSN_ITINRequired: boolean | null;
99
+ hasSSN_ITIN: boolean | null;
99
100
  };
100
101
  SIN: string | null;
101
102
  documentNumber: string;
package/package.json CHANGED
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.84",
3
+ "version": "2.0.86",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
7
7
  "scripts": {
8
- "test": "jest",
9
- "build": "tsc"
8
+ "test": "jest",
9
+ "build": "tsc"
10
10
  },
11
11
  "keywords": [],
12
12
  "author": "Fiado Inc",
13
13
  "license": "ISC",
14
14
  "devDependencies": {
15
- "@types/node": "^20.11.20",
16
- "install": "^0.13.0",
17
- "typescript": "^5.3.3"
15
+ "@types/node": "^20.11.20",
16
+ "install": "^0.13.0",
17
+ "typescript": "^5.3.3"
18
18
  },
19
19
  "dependencies": {
20
- "class-transformer": "^0.5.1",
21
- "class-validator": "^0.14.1"
20
+ "class-transformer": "^0.5.1",
21
+ "class-validator": "^0.14.2"
22
22
  }
23
- }
23
+ }
@@ -127,4 +127,7 @@ export class AddressBase {
127
127
 
128
128
  @IsEnum(CountryISO2ToISO3)
129
129
  country: string;
130
+
131
+ @IsString()
132
+ localityExternalRefCode?: string;
130
133
  }
@@ -99,6 +99,7 @@ export class PeopleResponse {
99
99
  selfieResult:string | null;
100
100
  externalReferenceId:string | null;
101
101
  SSN_ITINRequired:boolean | null;
102
+ hasSSN_ITIN:boolean | null;
102
103
 
103
104
  }
104
105
  SIN: string | null;