@capgo/native-market 1.1.15 → 1.1.18

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.
Files changed (3) hide show
  1. package/README.md +15 -5
  2. package/dist/docs.json +10 -10
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -113,7 +113,7 @@ NativeMarket.search({
113
113
  ### openStoreListing(...)
114
114
 
115
115
  ```typescript
116
- openStoreListing(options: { appId: string; country?: string; }) => Promise<void>
116
+ openStoreListing(options: { appId: string; country?: string; }) => any
117
117
  ```
118
118
 
119
119
  This method will launch link in Play/App Store.
@@ -122,6 +122,8 @@ This method will launch link in Play/App Store.
122
122
  | ------------- | ------------------------------------------------- |
123
123
  | **`options`** | <code>{ appId: string; country?: string; }</code> |
124
124
 
125
+ **Returns:** <code>any</code>
126
+
125
127
  **Since:** 1.0.0
126
128
 
127
129
  --------------------
@@ -130,7 +132,7 @@ This method will launch link in Play/App Store.
130
132
  ### openDevPage(...)
131
133
 
132
134
  ```typescript
133
- openDevPage(options: { devId: string; }) => Promise<void>
135
+ openDevPage(options: { devId: string; }) => any
134
136
  ```
135
137
 
136
138
  This method will deep-link directly to an Play/App store listing page.
@@ -141,6 +143,8 @@ Only in Android.
141
143
  | ------------- | ------------------------------- |
142
144
  | **`options`** | <code>{ devId: string; }</code> |
143
145
 
146
+ **Returns:** <code>any</code>
147
+
144
148
  **Since:** 1.0.0
145
149
 
146
150
  --------------------
@@ -149,7 +153,7 @@ Only in Android.
149
153
  ### openCollection(...)
150
154
 
151
155
  ```typescript
152
- openCollection(options: { name: string; }) => Promise<void>
156
+ openCollection(options: { name: string; }) => any
153
157
  ```
154
158
 
155
159
  This method will link users to a collection or top charts.
@@ -159,6 +163,8 @@ Only in Android.
159
163
  | ------------- | ------------------------------ |
160
164
  | **`options`** | <code>{ name: string; }</code> |
161
165
 
166
+ **Returns:** <code>any</code>
167
+
162
168
  **Since:** 1.0.0
163
169
 
164
170
  --------------------
@@ -167,7 +173,7 @@ Only in Android.
167
173
  ### openEditorChoicePage(...)
168
174
 
169
175
  ```typescript
170
- openEditorChoicePage(options: { editorChoice: string; }) => Promise<void>
176
+ openEditorChoicePage(options: { editorChoice: string; }) => any
171
177
  ```
172
178
 
173
179
  This method will link users to Editor's choice page.
@@ -178,6 +184,8 @@ Only in Android.
178
184
  | ------------- | -------------------------------------- |
179
185
  | **`options`** | <code>{ editorChoice: string; }</code> |
180
186
 
187
+ **Returns:** <code>any</code>
188
+
181
189
  **Since:** 1.0.0
182
190
 
183
191
  --------------------
@@ -186,7 +194,7 @@ Only in Android.
186
194
  ### search(...)
187
195
 
188
196
  ```typescript
189
- search(options: { terms: string; }) => Promise<void>
197
+ search(options: { terms: string; }) => any
190
198
  ```
191
199
 
192
200
  This method will link users to custom search query.
@@ -197,6 +205,8 @@ Only in Android.
197
205
  | ------------- | ------------------------------- |
198
206
  | **`options`** | <code>{ terms: string; }</code> |
199
207
 
208
+ **Returns:** <code>any</code>
209
+
200
210
  **Since:** 1.0.0
201
211
 
202
212
  --------------------
package/dist/docs.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "methods": [
8
8
  {
9
9
  "name": "openStoreListing",
10
- "signature": "(options: { appId: string; country?: string; }) => Promise<void>",
10
+ "signature": "(options: { appId: string; country?: string; }) => any",
11
11
  "parameters": [
12
12
  {
13
13
  "name": "options",
@@ -15,7 +15,7 @@
15
15
  "type": "{ appId: string; country?: string | undefined; }"
16
16
  }
17
17
  ],
18
- "returns": "Promise<void>",
18
+ "returns": "any",
19
19
  "tags": [
20
20
  {
21
21
  "name": "param",
@@ -40,7 +40,7 @@
40
40
  },
41
41
  {
42
42
  "name": "openDevPage",
43
- "signature": "(options: { devId: string; }) => Promise<void>",
43
+ "signature": "(options: { devId: string; }) => any",
44
44
  "parameters": [
45
45
  {
46
46
  "name": "options",
@@ -48,7 +48,7 @@
48
48
  "type": "{ devId: string; }"
49
49
  }
50
50
  ],
51
- "returns": "Promise<void>",
51
+ "returns": "any",
52
52
  "tags": [
53
53
  {
54
54
  "name": "param",
@@ -69,7 +69,7 @@
69
69
  },
70
70
  {
71
71
  "name": "openCollection",
72
- "signature": "(options: { name: string; }) => Promise<void>",
72
+ "signature": "(options: { name: string; }) => any",
73
73
  "parameters": [
74
74
  {
75
75
  "name": "options",
@@ -77,7 +77,7 @@
77
77
  "type": "{ name: string; }"
78
78
  }
79
79
  ],
80
- "returns": "Promise<void>",
80
+ "returns": "any",
81
81
  "tags": [
82
82
  {
83
83
  "name": "param",
@@ -98,7 +98,7 @@
98
98
  },
99
99
  {
100
100
  "name": "openEditorChoicePage",
101
- "signature": "(options: { editorChoice: string; }) => Promise<void>",
101
+ "signature": "(options: { editorChoice: string; }) => any",
102
102
  "parameters": [
103
103
  {
104
104
  "name": "options",
@@ -106,7 +106,7 @@
106
106
  "type": "{ editorChoice: string; }"
107
107
  }
108
108
  ],
109
- "returns": "Promise<void>",
109
+ "returns": "any",
110
110
  "tags": [
111
111
  {
112
112
  "name": "param",
@@ -127,7 +127,7 @@
127
127
  },
128
128
  {
129
129
  "name": "search",
130
- "signature": "(options: { terms: string; }) => Promise<void>",
130
+ "signature": "(options: { terms: string; }) => any",
131
131
  "parameters": [
132
132
  {
133
133
  "name": "options",
@@ -135,7 +135,7 @@
135
135
  "type": "{ terms: string; }"
136
136
  }
137
137
  ],
138
- "returns": "Promise<void>",
138
+ "returns": "any",
139
139
  "tags": [
140
140
  {
141
141
  "name": "param",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/native-market",
3
- "version": "1.1.15",
3
+ "version": "1.1.18",
4
4
  "description": "A native market plugin for linking to google play or app store.",
5
5
  "module": "dist/esm/index.js",
6
6
  "main": "dist/esm/index.js",