@fragus/sam-types 1.0.76 → 1.0.79

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.76",
2
+ "version": "1.0.79",
3
3
  "name": "@fragus/sam-types",
4
4
  "description": "Typescript interfaces for all types used to communicate between SAM client(s) and the SAM API",
5
5
  "author": "Fragus",
@@ -1,4 +1,4 @@
1
- export interface IPinLookupResponse {
1
+ export interface IPinLookupResult {
2
2
  personalIdentityNo: string
3
3
  firstName: string
4
4
  fullFirstNames: string
@@ -10,3 +10,10 @@ export interface IPinLookupResponse {
10
10
  postalCode: string
11
11
  city: string
12
12
  }
13
+
14
+ export interface IPinLookupResponse {
15
+ name: string
16
+ address: string
17
+ city: string
18
+ zip: string
19
+ }