oro-sdk 2.12.2 → 2.13.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.
@@ -44,6 +44,7 @@ export interface PhoneData {
44
44
  countryCode: string;
45
45
  type: 'MAIN' | 'ALTERNATE' | 'RECEPTION' | 'FAX' | 'TEXT_TELEPHONE_TTY' | 'INFO' | 'OTHER';
46
46
  isTollFree: boolean;
47
+ province?: string;
47
48
  }
48
49
  export interface IntervalData {
49
50
  start: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.12.2",
2
+ "version": "2.13.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -59,7 +59,7 @@
59
59
  "form-data": "^4.0.0",
60
60
  "formdata-node": "^4.3.1",
61
61
  "idb-keyval": "^5.0.6",
62
- "oro-sdk-apis": "1.8.3",
62
+ "oro-sdk-apis": "1.9.0",
63
63
  "oro-toolbox": "0.0.6",
64
64
  "uuid": "^8.3.2"
65
65
  }
@@ -57,6 +57,7 @@ export interface PhoneData {
57
57
  | 'INFO'
58
58
  | 'OTHER' //The type of phone.
59
59
  isTollFree: boolean //If the number is toll free or not.
60
+ province?: string //If the number is specific to a province
60
61
  }
61
62
 
62
63
  export interface IntervalData {