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.
- package/README.md +2362 -20
- package/dist/index.d.ts +12 -1
- package/dist/native.cjs +1 -1
- package/dist/native.min.cjs +1 -1
- package/dist/native.min.mjs +1 -1
- package/dist/native.mjs +1 -1
- package/dist/native.umd.js +1 -1
- package/dist/native.umd.min.js +1 -1
- package/dist/plugin/appearance/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/badge/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/battery/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/clipboard/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/dimension/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/fullscreen/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/geolocation/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/notification/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/open/index.d.ts +13 -2
- package/dist/plugin/open/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/permission/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/pip/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/platform/index.d.ts +12 -1
- package/dist/plugin/platform/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/theme/src/plugin/open/types/open.d.ts +12 -1
- package/dist/plugin/vibration/src/plugin/open/types/open.d.ts +12 -1
- package/dist/src/plugin/open/types/open.d.ts +12 -1
- package/package.json +1 -1
|
@@ -50,9 +50,20 @@ export interface Contact {
|
|
|
50
50
|
name?: string[];
|
|
51
51
|
email?: string[];
|
|
52
52
|
tel?: string[];
|
|
53
|
-
address?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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
|
}
|