native-fn 1.1.7 → 1.1.9

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.
@@ -50,9 +50,20 @@ export interface Contact {
50
50
  name?: string[];
51
51
  email?: string[];
52
52
  tel?: string[];
53
- address?: string;
53
+ address?: ContactAddress[];
54
54
  icon?: Blob[];
55
55
  }
56
+ export interface ContactAddress {
57
+ country?: string;
58
+ region?: string;
59
+ city?: string;
60
+ dependentLocality?: string;
61
+ postalCode?: string;
62
+ sortingCode?: string;
63
+ organization?: string;
64
+ recipient?: string;
65
+ addressLine?: string[];
66
+ }
56
67
  export interface ContactOptions {
57
68
  multiple?: boolean;
58
69
  }
@@ -50,9 +50,20 @@ export interface Contact {
50
50
  name?: string[];
51
51
  email?: string[];
52
52
  tel?: string[];
53
- address?: string;
53
+ address?: ContactAddress[];
54
54
  icon?: Blob[];
55
55
  }
56
+ export interface ContactAddress {
57
+ country?: string;
58
+ region?: string;
59
+ city?: string;
60
+ dependentLocality?: string;
61
+ postalCode?: string;
62
+ sortingCode?: string;
63
+ organization?: string;
64
+ recipient?: string;
65
+ addressLine?: string[];
66
+ }
56
67
  export interface ContactOptions {
57
68
  multiple?: boolean;
58
69
  }
@@ -50,9 +50,20 @@ export interface Contact {
50
50
  name?: string[];
51
51
  email?: string[];
52
52
  tel?: string[];
53
- address?: string;
53
+ address?: ContactAddress[];
54
54
  icon?: Blob[];
55
55
  }
56
+ export interface ContactAddress {
57
+ country?: string;
58
+ region?: string;
59
+ city?: string;
60
+ dependentLocality?: string;
61
+ postalCode?: string;
62
+ sortingCode?: string;
63
+ organization?: string;
64
+ recipient?: string;
65
+ addressLine?: string[];
66
+ }
56
67
  export interface ContactOptions {
57
68
  multiple?: boolean;
58
69
  }
@@ -96,9 +96,20 @@ interface Contact {
96
96
  name?: string[];
97
97
  email?: string[];
98
98
  tel?: string[];
99
- address?: string;
99
+ address?: ContactAddress[];
100
100
  icon?: Blob[];
101
101
  }
102
+ interface ContactAddress {
103
+ country?: string;
104
+ region?: string;
105
+ city?: string;
106
+ dependentLocality?: string;
107
+ postalCode?: string;
108
+ sortingCode?: string;
109
+ organization?: string;
110
+ recipient?: string;
111
+ addressLine?: string[];
112
+ }
102
113
 
103
114
  declare global {
104
115
  interface Document {
@@ -50,9 +50,20 @@ export interface Contact {
50
50
  name?: string[];
51
51
  email?: string[];
52
52
  tel?: string[];
53
- address?: string;
53
+ address?: ContactAddress[];
54
54
  icon?: Blob[];
55
55
  }
56
+ export interface ContactAddress {
57
+ country?: string;
58
+ region?: string;
59
+ city?: string;
60
+ dependentLocality?: string;
61
+ postalCode?: string;
62
+ sortingCode?: string;
63
+ organization?: string;
64
+ recipient?: string;
65
+ addressLine?: string[];
66
+ }
56
67
  export interface ContactOptions {
57
68
  multiple?: boolean;
58
69
  }
@@ -50,9 +50,20 @@ export interface Contact {
50
50
  name?: string[];
51
51
  email?: string[];
52
52
  tel?: string[];
53
- address?: string;
53
+ address?: ContactAddress[];
54
54
  icon?: Blob[];
55
55
  }
56
+ export interface ContactAddress {
57
+ country?: string;
58
+ region?: string;
59
+ city?: string;
60
+ dependentLocality?: string;
61
+ postalCode?: string;
62
+ sortingCode?: string;
63
+ organization?: string;
64
+ recipient?: string;
65
+ addressLine?: string[];
66
+ }
56
67
  export interface ContactOptions {
57
68
  multiple?: boolean;
58
69
  }
@@ -50,9 +50,20 @@ export interface Contact {
50
50
  name?: string[];
51
51
  email?: string[];
52
52
  tel?: string[];
53
- address?: string;
53
+ address?: ContactAddress[];
54
54
  icon?: Blob[];
55
55
  }
56
+ export interface ContactAddress {
57
+ country?: string;
58
+ region?: string;
59
+ city?: string;
60
+ dependentLocality?: string;
61
+ postalCode?: string;
62
+ sortingCode?: string;
63
+ organization?: string;
64
+ recipient?: string;
65
+ addressLine?: string[];
66
+ }
56
67
  export interface ContactOptions {
57
68
  multiple?: boolean;
58
69
  }
@@ -50,9 +50,20 @@ export interface Contact {
50
50
  name?: string[];
51
51
  email?: string[];
52
52
  tel?: string[];
53
- address?: string;
53
+ address?: ContactAddress[];
54
54
  icon?: Blob[];
55
55
  }
56
+ export interface ContactAddress {
57
+ country?: string;
58
+ region?: string;
59
+ city?: string;
60
+ dependentLocality?: string;
61
+ postalCode?: string;
62
+ sortingCode?: string;
63
+ organization?: string;
64
+ recipient?: string;
65
+ addressLine?: string[];
66
+ }
56
67
  export interface ContactOptions {
57
68
  multiple?: boolean;
58
69
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-fn",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": " ",
5
5
  "type": "module",
6
6