@capgo/capacitor-updater 5.7.3 → 5.7.4
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 +284 -226
- package/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java +1 -1
- package/dist/docs.json +552 -397
- package/dist/esm/definitions.d.ts +295 -292
- package/dist/esm/web.d.ts +20 -54
- package/dist/esm/web.js.map +1 -1
- package/ios/Plugin/CapacitorUpdaterPlugin.swift +1 -1
- package/package.json +1 -1
package/dist/docs.json
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
"methods": [
|
|
8
8
|
{
|
|
9
9
|
"name": "notifyAppReady",
|
|
10
|
-
"signature": "() => Promise<
|
|
10
|
+
"signature": "() => Promise<AppReadyResult>",
|
|
11
11
|
"parameters": [],
|
|
12
|
-
"returns": "Promise<
|
|
12
|
+
"returns": "Promise<AppReadyResult>",
|
|
13
13
|
"tags": [
|
|
14
14
|
{
|
|
15
15
|
"name": "returns",
|
|
@@ -17,38 +17,37 @@
|
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
"name": "throws",
|
|
20
|
-
"text": "
|
|
20
|
+
"text": "{Error}"
|
|
21
21
|
}
|
|
22
22
|
],
|
|
23
23
|
"docs": "Notify Capacitor Updater that the current bundle is working (a rollback will occur if this method is not called on every app launch)\nBy default this method should be called in the first 10 sec after app launch, otherwise a rollback will occur.\nChange this behaviour with {@link appReadyTimeout}",
|
|
24
24
|
"complexTypes": [
|
|
25
|
-
"
|
|
25
|
+
"AppReadyResult"
|
|
26
26
|
],
|
|
27
27
|
"slug": "notifyappready"
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "setUpdateUrl",
|
|
31
|
-
"signature": "(options:
|
|
31
|
+
"signature": "(options: UpdateUrl) => Promise<void>",
|
|
32
32
|
"parameters": [
|
|
33
33
|
{
|
|
34
34
|
"name": "options",
|
|
35
|
-
"docs": "",
|
|
36
|
-
"type": "
|
|
35
|
+
"docs": "contains the URL to use for checking for updates.",
|
|
36
|
+
"type": "UpdateUrl"
|
|
37
37
|
}
|
|
38
38
|
],
|
|
39
39
|
"returns": "Promise<void>",
|
|
40
40
|
"tags": [
|
|
41
41
|
{
|
|
42
|
-
"name": "
|
|
43
|
-
"text": "
|
|
42
|
+
"name": "param",
|
|
43
|
+
"text": "options contains the URL to use for checking for updates."
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
"name": "
|
|
47
|
-
"text": "url The URL to use for checking for updates."
|
|
46
|
+
"name": "returns"
|
|
48
47
|
},
|
|
49
48
|
{
|
|
50
49
|
"name": "throws",
|
|
51
|
-
"text": "
|
|
50
|
+
"text": "{Error}"
|
|
52
51
|
},
|
|
53
52
|
{
|
|
54
53
|
"name": "since",
|
|
@@ -56,65 +55,67 @@
|
|
|
56
55
|
}
|
|
57
56
|
],
|
|
58
57
|
"docs": "Set the updateUrl for the app, this will be used to check for updates.",
|
|
59
|
-
"complexTypes": [
|
|
58
|
+
"complexTypes": [
|
|
59
|
+
"UpdateUrl"
|
|
60
|
+
],
|
|
60
61
|
"slug": "setupdateurl"
|
|
61
62
|
},
|
|
62
63
|
{
|
|
63
64
|
"name": "setStatsUrl",
|
|
64
|
-
"signature": "(options:
|
|
65
|
+
"signature": "(options: StatsUrl) => Promise<void>",
|
|
65
66
|
"parameters": [
|
|
66
67
|
{
|
|
67
68
|
"name": "options",
|
|
68
|
-
"docs": "",
|
|
69
|
-
"type": "
|
|
69
|
+
"docs": "contains the URL to use for sending statistics.",
|
|
70
|
+
"type": "StatsUrl"
|
|
70
71
|
}
|
|
71
72
|
],
|
|
72
73
|
"returns": "Promise<void>",
|
|
73
74
|
"tags": [
|
|
74
75
|
{
|
|
75
|
-
"name": "
|
|
76
|
-
"text": "
|
|
76
|
+
"name": "param",
|
|
77
|
+
"text": "options contains the URL to use for sending statistics."
|
|
77
78
|
},
|
|
78
79
|
{
|
|
79
|
-
"name": "
|
|
80
|
-
"text": "url The URL to use for sending statistics."
|
|
80
|
+
"name": "returns"
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
83
|
"name": "throws",
|
|
84
|
-
"text": "
|
|
84
|
+
"text": "{Error}"
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
"name": "since",
|
|
88
88
|
"text": "5.4.0"
|
|
89
89
|
}
|
|
90
90
|
],
|
|
91
|
-
"docs": "Set the statsUrl for the app, this will be used to send statistics.",
|
|
92
|
-
"complexTypes": [
|
|
91
|
+
"docs": "Set the statsUrl for the app, this will be used to send statistics. Passing an empty string will disable statistics gathering.",
|
|
92
|
+
"complexTypes": [
|
|
93
|
+
"StatsUrl"
|
|
94
|
+
],
|
|
93
95
|
"slug": "setstatsurl"
|
|
94
96
|
},
|
|
95
97
|
{
|
|
96
98
|
"name": "setChannelUrl",
|
|
97
|
-
"signature": "(options:
|
|
99
|
+
"signature": "(options: ChannelUrl) => Promise<void>",
|
|
98
100
|
"parameters": [
|
|
99
101
|
{
|
|
100
102
|
"name": "options",
|
|
101
|
-
"docs": "",
|
|
102
|
-
"type": "
|
|
103
|
+
"docs": "contains the URL to use for setting the channel.",
|
|
104
|
+
"type": "ChannelUrl"
|
|
103
105
|
}
|
|
104
106
|
],
|
|
105
107
|
"returns": "Promise<void>",
|
|
106
108
|
"tags": [
|
|
107
109
|
{
|
|
108
|
-
"name": "
|
|
109
|
-
"text": "
|
|
110
|
+
"name": "param",
|
|
111
|
+
"text": "options contains the URL to use for setting the channel."
|
|
110
112
|
},
|
|
111
113
|
{
|
|
112
|
-
"name": "
|
|
113
|
-
"text": "url The URL to use for setting the channel."
|
|
114
|
+
"name": "returns"
|
|
114
115
|
},
|
|
115
116
|
{
|
|
116
117
|
"name": "throws",
|
|
117
|
-
"text": "
|
|
118
|
+
"text": "{Error}"
|
|
118
119
|
},
|
|
119
120
|
{
|
|
120
121
|
"name": "since",
|
|
@@ -122,201 +123,205 @@
|
|
|
122
123
|
}
|
|
123
124
|
],
|
|
124
125
|
"docs": "Set the channelUrl for the app, this will be used to set the channel.",
|
|
125
|
-
"complexTypes": [
|
|
126
|
+
"complexTypes": [
|
|
127
|
+
"ChannelUrl"
|
|
128
|
+
],
|
|
126
129
|
"slug": "setchannelurl"
|
|
127
130
|
},
|
|
128
131
|
{
|
|
129
132
|
"name": "download",
|
|
130
|
-
"signature": "(options:
|
|
133
|
+
"signature": "(options: DownloadOptions) => Promise<BundleInfo>",
|
|
131
134
|
"parameters": [
|
|
132
135
|
{
|
|
133
136
|
"name": "options",
|
|
134
|
-
"docs": "",
|
|
135
|
-
"type": "
|
|
137
|
+
"docs": "The {@link DownloadOptions} for downloading a new bundle zip.",
|
|
138
|
+
"type": "DownloadOptions"
|
|
136
139
|
}
|
|
137
140
|
],
|
|
138
141
|
"returns": "Promise<BundleInfo>",
|
|
139
142
|
"tags": [
|
|
140
143
|
{
|
|
141
|
-
"name": "
|
|
142
|
-
"text": "
|
|
144
|
+
"name": "example",
|
|
145
|
+
"text": "const bundle = await CapacitorUpdater.download({ url: `https://example.com/versions/${version}/dist.zip`, version });"
|
|
143
146
|
},
|
|
144
147
|
{
|
|
145
|
-
"name": "
|
|
146
|
-
"text": "
|
|
148
|
+
"name": "returns",
|
|
149
|
+
"text": "The {@link BundleInfo} for the specified bundle."
|
|
147
150
|
},
|
|
148
151
|
{
|
|
149
152
|
"name": "param",
|
|
150
|
-
"text": "
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"name": "example",
|
|
154
|
-
"text": "https://example.com/versions/{version}/dist.zip"
|
|
153
|
+
"text": "options The {@link DownloadOptions} for downloading a new bundle zip."
|
|
155
154
|
}
|
|
156
155
|
],
|
|
157
156
|
"docs": "Download a new bundle from the provided URL, it should be a zip file, with files inside or with a unique id inside with all your files",
|
|
158
157
|
"complexTypes": [
|
|
159
|
-
"BundleInfo"
|
|
158
|
+
"BundleInfo",
|
|
159
|
+
"DownloadOptions"
|
|
160
160
|
],
|
|
161
161
|
"slug": "download"
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
164
|
"name": "next",
|
|
165
|
-
"signature": "(options:
|
|
165
|
+
"signature": "(options: BundleId) => Promise<BundleInfo>",
|
|
166
166
|
"parameters": [
|
|
167
167
|
{
|
|
168
168
|
"name": "options",
|
|
169
|
-
"docs": "",
|
|
170
|
-
"type": "
|
|
169
|
+
"docs": "Contains the ID of the next Bundle to set on next app launch. {@link BundleInfo.id}",
|
|
170
|
+
"type": "BundleId"
|
|
171
171
|
}
|
|
172
172
|
],
|
|
173
173
|
"returns": "Promise<BundleInfo>",
|
|
174
174
|
"tags": [
|
|
175
175
|
{
|
|
176
|
-
"name": "
|
|
177
|
-
"text": "
|
|
176
|
+
"name": "param",
|
|
177
|
+
"text": "options Contains the ID of the next Bundle to set on next app launch. {@link BundleInfo.id}"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
|
-
"name": "
|
|
181
|
-
"text": "
|
|
180
|
+
"name": "returns",
|
|
181
|
+
"text": "The {@link BundleInfo} for the specified bundle id."
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
"name": "throws",
|
|
185
|
-
"text": "
|
|
185
|
+
"text": "{Error} When there is no index.html file inside the bundle folder."
|
|
186
186
|
}
|
|
187
187
|
],
|
|
188
188
|
"docs": "Set the next bundle to be used when the app is reloaded.",
|
|
189
189
|
"complexTypes": [
|
|
190
|
-
"BundleInfo"
|
|
190
|
+
"BundleInfo",
|
|
191
|
+
"BundleId"
|
|
191
192
|
],
|
|
192
193
|
"slug": "next"
|
|
193
194
|
},
|
|
194
195
|
{
|
|
195
196
|
"name": "set",
|
|
196
|
-
"signature": "(options:
|
|
197
|
+
"signature": "(options: BundleId) => Promise<void>",
|
|
197
198
|
"parameters": [
|
|
198
199
|
{
|
|
199
200
|
"name": "options",
|
|
200
|
-
"docs": "",
|
|
201
|
-
"type": "
|
|
201
|
+
"docs": "A {@link BundleId} object containing the new bundle id to set as current.",
|
|
202
|
+
"type": "BundleId"
|
|
202
203
|
}
|
|
203
204
|
],
|
|
204
205
|
"returns": "Promise<void>",
|
|
205
206
|
"tags": [
|
|
206
207
|
{
|
|
207
208
|
"name": "param",
|
|
208
|
-
"text": "
|
|
209
|
+
"text": "options A {@link BundleId} object containing the new bundle id to set as current."
|
|
209
210
|
},
|
|
210
211
|
{
|
|
211
|
-
"name": "returns"
|
|
212
|
-
"text": "An empty promise."
|
|
212
|
+
"name": "returns"
|
|
213
213
|
},
|
|
214
214
|
{
|
|
215
215
|
"name": "throws",
|
|
216
|
-
"text": "
|
|
216
|
+
"text": "{Error} When there are is no index.html file inside the bundle folder."
|
|
217
217
|
}
|
|
218
218
|
],
|
|
219
219
|
"docs": "Set the current bundle and immediately reloads the app.",
|
|
220
|
-
"complexTypes": [
|
|
220
|
+
"complexTypes": [
|
|
221
|
+
"BundleId"
|
|
222
|
+
],
|
|
221
223
|
"slug": "set"
|
|
222
224
|
},
|
|
223
225
|
{
|
|
224
226
|
"name": "delete",
|
|
225
|
-
"signature": "(options:
|
|
227
|
+
"signature": "(options: BundleId) => Promise<void>",
|
|
226
228
|
"parameters": [
|
|
227
229
|
{
|
|
228
230
|
"name": "options",
|
|
229
|
-
"docs": "",
|
|
230
|
-
"type": "
|
|
231
|
+
"docs": "A {@link BundleId} object containing the ID of a bundle to delete (note, this is the bundle id, NOT the version name)",
|
|
232
|
+
"type": "BundleId"
|
|
231
233
|
}
|
|
232
234
|
],
|
|
233
235
|
"returns": "Promise<void>",
|
|
234
236
|
"tags": [
|
|
235
237
|
{
|
|
236
|
-
"name": "
|
|
237
|
-
"text": "
|
|
238
|
+
"name": "param",
|
|
239
|
+
"text": "options A {@link BundleId} object containing the ID of a bundle to delete (note, this is the bundle id, NOT the version name)"
|
|
238
240
|
},
|
|
239
241
|
{
|
|
240
|
-
"name": "
|
|
241
|
-
"text": "
|
|
242
|
+
"name": "returns",
|
|
243
|
+
"text": "When the bundle is deleted"
|
|
242
244
|
},
|
|
243
245
|
{
|
|
244
246
|
"name": "throws",
|
|
245
|
-
"text": "
|
|
247
|
+
"text": "{Error}"
|
|
246
248
|
}
|
|
247
249
|
],
|
|
248
|
-
"docs": "
|
|
249
|
-
"complexTypes": [
|
|
250
|
+
"docs": "Deletes the specified bundle from the native app storage. Use with {@link list} to get the stored Bundle IDs.",
|
|
251
|
+
"complexTypes": [
|
|
252
|
+
"BundleId"
|
|
253
|
+
],
|
|
250
254
|
"slug": "delete"
|
|
251
255
|
},
|
|
252
256
|
{
|
|
253
257
|
"name": "list",
|
|
254
|
-
"signature": "() => Promise<
|
|
258
|
+
"signature": "() => Promise<BundleListResult>",
|
|
255
259
|
"parameters": [],
|
|
256
|
-
"returns": "Promise<
|
|
260
|
+
"returns": "Promise<BundleListResult>",
|
|
257
261
|
"tags": [
|
|
258
262
|
{
|
|
259
263
|
"name": "returns",
|
|
260
|
-
"text": "
|
|
264
|
+
"text": "A Promise containing the {@link BundleListResult.bundles}"
|
|
261
265
|
},
|
|
262
266
|
{
|
|
263
267
|
"name": "throws",
|
|
264
|
-
"text": "
|
|
268
|
+
"text": "{Error}"
|
|
265
269
|
}
|
|
266
270
|
],
|
|
267
271
|
"docs": "Get all locally downloaded bundles in your app",
|
|
268
272
|
"complexTypes": [
|
|
269
|
-
"
|
|
273
|
+
"BundleListResult"
|
|
270
274
|
],
|
|
271
275
|
"slug": "list"
|
|
272
276
|
},
|
|
273
277
|
{
|
|
274
278
|
"name": "reset",
|
|
275
|
-
"signature": "(options?:
|
|
279
|
+
"signature": "(options?: ResetOptions | undefined) => Promise<void>",
|
|
276
280
|
"parameters": [
|
|
277
281
|
{
|
|
278
282
|
"name": "options",
|
|
279
|
-
"docs": "",
|
|
280
|
-
"type": "
|
|
283
|
+
"docs": "Containing {@link ResetOptions.toLastSuccessful}, `true` resets to the builtin bundle and `false` will reset to the last successfully loaded bundle.",
|
|
284
|
+
"type": "ResetOptions | undefined"
|
|
281
285
|
}
|
|
282
286
|
],
|
|
283
287
|
"returns": "Promise<void>",
|
|
284
288
|
"tags": [
|
|
285
289
|
{
|
|
286
|
-
"name": "
|
|
287
|
-
"text": "
|
|
290
|
+
"name": "param",
|
|
291
|
+
"text": "options Containing {@link ResetOptions.toLastSuccessful}, `true` resets to the builtin bundle and `false` will reset to the last successfully loaded bundle."
|
|
288
292
|
},
|
|
289
293
|
{
|
|
290
|
-
"name": "
|
|
291
|
-
"text": "toLastSuccessful [false] if yes it reset to to the last successfully loaded bundle instead of `builtin`"
|
|
294
|
+
"name": "returns"
|
|
292
295
|
},
|
|
293
296
|
{
|
|
294
297
|
"name": "throws",
|
|
295
|
-
"text": "
|
|
298
|
+
"text": "{Error}"
|
|
296
299
|
}
|
|
297
300
|
],
|
|
298
|
-
"docs": "
|
|
299
|
-
"complexTypes": [
|
|
301
|
+
"docs": "Reset the app to the `builtin` bundle (the one sent to Apple App Store / Google Play Store ) or the last successfully loaded bundle.",
|
|
302
|
+
"complexTypes": [
|
|
303
|
+
"ResetOptions"
|
|
304
|
+
],
|
|
300
305
|
"slug": "reset"
|
|
301
306
|
},
|
|
302
307
|
{
|
|
303
308
|
"name": "current",
|
|
304
|
-
"signature": "() => Promise<
|
|
309
|
+
"signature": "() => Promise<CurrentBundleResult>",
|
|
305
310
|
"parameters": [],
|
|
306
|
-
"returns": "Promise<
|
|
311
|
+
"returns": "Promise<CurrentBundleResult>",
|
|
307
312
|
"tags": [
|
|
308
313
|
{
|
|
309
314
|
"name": "returns",
|
|
310
|
-
"text": "
|
|
315
|
+
"text": "A Promise evaluating to the {@link CurrentBundleResult}"
|
|
311
316
|
},
|
|
312
317
|
{
|
|
313
318
|
"name": "throws",
|
|
314
|
-
"text": "
|
|
319
|
+
"text": "{Error}"
|
|
315
320
|
}
|
|
316
321
|
],
|
|
317
|
-
"docs": "Get the current bundle, if none are set it returns `builtin
|
|
322
|
+
"docs": "Get the current bundle, if none are set it returns `builtin`. currentNative is the original bundle installed on the device",
|
|
318
323
|
"complexTypes": [
|
|
319
|
-
"
|
|
324
|
+
"CurrentBundleResult"
|
|
320
325
|
],
|
|
321
326
|
"slug": "current"
|
|
322
327
|
},
|
|
@@ -328,11 +333,11 @@
|
|
|
328
333
|
"tags": [
|
|
329
334
|
{
|
|
330
335
|
"name": "returns",
|
|
331
|
-
"text": "
|
|
336
|
+
"text": "A Promise which is resolved when the view is reloaded"
|
|
332
337
|
},
|
|
333
338
|
{
|
|
334
339
|
"name": "throws",
|
|
335
|
-
"text": "
|
|
340
|
+
"text": "{Error}"
|
|
336
341
|
}
|
|
337
342
|
],
|
|
338
343
|
"docs": "Reload the view",
|
|
@@ -341,48 +346,47 @@
|
|
|
341
346
|
},
|
|
342
347
|
{
|
|
343
348
|
"name": "setMultiDelay",
|
|
344
|
-
"signature": "(options:
|
|
349
|
+
"signature": "(options: MultiDelayConditions) => Promise<void>",
|
|
345
350
|
"parameters": [
|
|
346
351
|
{
|
|
347
352
|
"name": "options",
|
|
348
|
-
"docs": "
|
|
349
|
-
"type": "
|
|
353
|
+
"docs": "Containing the {@link MultiDelayConditions} array of conditions to set",
|
|
354
|
+
"type": "MultiDelayConditions"
|
|
350
355
|
}
|
|
351
356
|
],
|
|
352
357
|
"returns": "Promise<void>",
|
|
353
358
|
"tags": [
|
|
354
359
|
{
|
|
355
|
-
"name": "
|
|
356
|
-
"text": "
|
|
360
|
+
"name": "example",
|
|
361
|
+
"text": "// Install the update after the user kills the app or after a background of 300000 ms (5 minutes)\nawait CapacitorUpdater.setMultiDelay({ delayConditions: [{ kind: 'kill' }, { kind: 'background', value: '300000' }] })"
|
|
357
362
|
},
|
|
358
363
|
{
|
|
359
|
-
"name": "
|
|
360
|
-
"text": "
|
|
364
|
+
"name": "example",
|
|
365
|
+
"text": "// Install the update after the specific iso8601 date is expired\nawait CapacitorUpdater.setMultiDelay({ delayConditions: [{ kind: 'date', value: '2022-09-14T06:14:11.920Z' }] })"
|
|
361
366
|
},
|
|
362
367
|
{
|
|
363
368
|
"name": "example",
|
|
364
|
-
"text": "
|
|
369
|
+
"text": "// Install the update after the first background (default behaviour without setting delay)\nawait CapacitorUpdater.setMultiDelay({ delayConditions: [{ kind: 'background' }] })"
|
|
365
370
|
},
|
|
366
371
|
{
|
|
367
|
-
"name": "
|
|
368
|
-
"text": "
|
|
372
|
+
"name": "param",
|
|
373
|
+
"text": "options Containing the {@link MultiDelayConditions} array of conditions to set"
|
|
369
374
|
},
|
|
370
375
|
{
|
|
371
|
-
"name": "
|
|
372
|
-
"text": "setMultiDelay({ delayConditions: [{ kind: 'background' }] })\n// installs the update after the the first background (default behaviour without setting delay)"
|
|
376
|
+
"name": "returns"
|
|
373
377
|
},
|
|
374
378
|
{
|
|
375
379
|
"name": "throws",
|
|
376
|
-
"text": "
|
|
380
|
+
"text": "{Error}"
|
|
377
381
|
},
|
|
378
382
|
{
|
|
379
383
|
"name": "since",
|
|
380
384
|
"text": "4.3.0"
|
|
381
385
|
}
|
|
382
386
|
],
|
|
383
|
-
"docs": "
|
|
387
|
+
"docs": "Sets a {@link DelayCondition} array containing conditions that the Plugin will use to determine when to install updates.",
|
|
384
388
|
"complexTypes": [
|
|
385
|
-
"
|
|
389
|
+
"MultiDelayConditions"
|
|
386
390
|
],
|
|
387
391
|
"slug": "setmultidelay"
|
|
388
392
|
},
|
|
@@ -393,35 +397,34 @@
|
|
|
393
397
|
"returns": "Promise<void>",
|
|
394
398
|
"tags": [
|
|
395
399
|
{
|
|
396
|
-
"name": "returns"
|
|
397
|
-
"text": "an Promise resolved directly"
|
|
400
|
+
"name": "returns"
|
|
398
401
|
},
|
|
399
402
|
{
|
|
400
403
|
"name": "throws",
|
|
401
|
-
"text": "
|
|
404
|
+
"text": "{Error}"
|
|
402
405
|
},
|
|
403
406
|
{
|
|
404
407
|
"name": "since",
|
|
405
408
|
"text": "4.0.0"
|
|
406
409
|
}
|
|
407
410
|
],
|
|
408
|
-
"docs": "
|
|
411
|
+
"docs": "Cancels a {@link DelayCondition} to process an update immediately.",
|
|
409
412
|
"complexTypes": [],
|
|
410
413
|
"slug": "canceldelay"
|
|
411
414
|
},
|
|
412
415
|
{
|
|
413
416
|
"name": "getLatest",
|
|
414
|
-
"signature": "() => Promise<
|
|
417
|
+
"signature": "() => Promise<LatestVersion>",
|
|
415
418
|
"parameters": [],
|
|
416
|
-
"returns": "Promise<
|
|
419
|
+
"returns": "Promise<LatestVersion>",
|
|
417
420
|
"tags": [
|
|
418
421
|
{
|
|
419
422
|
"name": "returns",
|
|
420
|
-
"text": "
|
|
423
|
+
"text": "A Promise resolved when url is loaded"
|
|
421
424
|
},
|
|
422
425
|
{
|
|
423
426
|
"name": "throws",
|
|
424
|
-
"text": "
|
|
427
|
+
"text": "{Error}"
|
|
425
428
|
},
|
|
426
429
|
{
|
|
427
430
|
"name": "since",
|
|
@@ -430,42 +433,42 @@
|
|
|
430
433
|
],
|
|
431
434
|
"docs": "Get Latest bundle available from update Url",
|
|
432
435
|
"complexTypes": [
|
|
433
|
-
"
|
|
436
|
+
"LatestVersion"
|
|
434
437
|
],
|
|
435
438
|
"slug": "getlatest"
|
|
436
439
|
},
|
|
437
440
|
{
|
|
438
441
|
"name": "setChannel",
|
|
439
|
-
"signature": "(options: SetChannelOptions) => Promise<
|
|
442
|
+
"signature": "(options: SetChannelOptions) => Promise<ChannelRes>",
|
|
440
443
|
"parameters": [
|
|
441
444
|
{
|
|
442
445
|
"name": "options",
|
|
443
|
-
"docs": "
|
|
446
|
+
"docs": "Is the {@link SetChannelOptions} channel to set",
|
|
444
447
|
"type": "SetChannelOptions"
|
|
445
448
|
}
|
|
446
449
|
],
|
|
447
|
-
"returns": "Promise<
|
|
450
|
+
"returns": "Promise<ChannelRes>",
|
|
448
451
|
"tags": [
|
|
449
452
|
{
|
|
450
|
-
"name": "
|
|
451
|
-
"text": "
|
|
453
|
+
"name": "param",
|
|
454
|
+
"text": "options Is the {@link SetChannelOptions} channel to set"
|
|
452
455
|
},
|
|
453
456
|
{
|
|
454
|
-
"name": "
|
|
455
|
-
"text": "
|
|
457
|
+
"name": "returns",
|
|
458
|
+
"text": "A Promise which is resolved when the new channel is set"
|
|
456
459
|
},
|
|
457
460
|
{
|
|
458
461
|
"name": "throws",
|
|
459
|
-
"text": "
|
|
462
|
+
"text": "{Error}"
|
|
460
463
|
},
|
|
461
464
|
{
|
|
462
465
|
"name": "since",
|
|
463
466
|
"text": "4.7.0"
|
|
464
467
|
}
|
|
465
468
|
],
|
|
466
|
-
"docs": "
|
|
469
|
+
"docs": "Sets the channel for this device. The channel has to allow for self assignment for this to work.\nDo not use this method to set the channel at boot when `autoUpdate` is enabled in the {@link PluginsConfig}.\nThis method is to set the channel after the app is ready.",
|
|
467
470
|
"complexTypes": [
|
|
468
|
-
"
|
|
471
|
+
"ChannelRes",
|
|
469
472
|
"SetChannelOptions"
|
|
470
473
|
],
|
|
471
474
|
"slug": "setchannel"
|
|
@@ -484,18 +487,18 @@
|
|
|
484
487
|
"tags": [
|
|
485
488
|
{
|
|
486
489
|
"name": "returns",
|
|
487
|
-
"text": "
|
|
490
|
+
"text": "A Promise resolved when channel is set"
|
|
488
491
|
},
|
|
489
492
|
{
|
|
490
493
|
"name": "throws",
|
|
491
|
-
"text": "
|
|
494
|
+
"text": "{Error}"
|
|
492
495
|
},
|
|
493
496
|
{
|
|
494
497
|
"name": "since",
|
|
495
498
|
"text": "4.7.0"
|
|
496
499
|
}
|
|
497
500
|
],
|
|
498
|
-
"docs": "Unset
|
|
501
|
+
"docs": "Unset the channel for this device. The device will then return to the default channel",
|
|
499
502
|
"complexTypes": [
|
|
500
503
|
"UnsetChannelOptions"
|
|
501
504
|
],
|
|
@@ -503,26 +506,26 @@
|
|
|
503
506
|
},
|
|
504
507
|
{
|
|
505
508
|
"name": "getChannel",
|
|
506
|
-
"signature": "() => Promise<
|
|
509
|
+
"signature": "() => Promise<GetChannelRes>",
|
|
507
510
|
"parameters": [],
|
|
508
|
-
"returns": "Promise<
|
|
511
|
+
"returns": "Promise<GetChannelRes>",
|
|
509
512
|
"tags": [
|
|
510
513
|
{
|
|
511
514
|
"name": "returns",
|
|
512
|
-
"text": "
|
|
515
|
+
"text": "A Promise that resolves with the channel info"
|
|
513
516
|
},
|
|
514
517
|
{
|
|
515
518
|
"name": "throws",
|
|
516
|
-
"text": "
|
|
519
|
+
"text": "{Error}"
|
|
517
520
|
},
|
|
518
521
|
{
|
|
519
522
|
"name": "since",
|
|
520
523
|
"text": "4.8.0"
|
|
521
524
|
}
|
|
522
525
|
],
|
|
523
|
-
"docs": "
|
|
526
|
+
"docs": "Get the channel for this device",
|
|
524
527
|
"complexTypes": [
|
|
525
|
-
"
|
|
528
|
+
"GetChannelRes"
|
|
526
529
|
],
|
|
527
530
|
"slug": "getchannel"
|
|
528
531
|
},
|
|
@@ -538,32 +541,131 @@
|
|
|
538
541
|
],
|
|
539
542
|
"returns": "Promise<void>",
|
|
540
543
|
"tags": [
|
|
541
|
-
{
|
|
542
|
-
"name": "returns",
|
|
543
|
-
"text": "an Promise resolved instantly"
|
|
544
|
-
},
|
|
545
544
|
{
|
|
546
545
|
"name": "param",
|
|
547
546
|
"text": "options is the {@link SetCustomIdOptions} customId to set"
|
|
548
547
|
},
|
|
548
|
+
{
|
|
549
|
+
"name": "returns",
|
|
550
|
+
"text": "an Promise resolved instantly"
|
|
551
|
+
},
|
|
549
552
|
{
|
|
550
553
|
"name": "throws",
|
|
551
|
-
"text": "
|
|
554
|
+
"text": "{Error}"
|
|
552
555
|
},
|
|
553
556
|
{
|
|
554
557
|
"name": "since",
|
|
555
558
|
"text": "4.9.0"
|
|
556
559
|
}
|
|
557
560
|
],
|
|
558
|
-
"docs": "Set
|
|
561
|
+
"docs": "Set a custom ID for this device",
|
|
559
562
|
"complexTypes": [
|
|
560
563
|
"SetCustomIdOptions"
|
|
561
564
|
],
|
|
562
565
|
"slug": "setcustomid"
|
|
563
566
|
},
|
|
567
|
+
{
|
|
568
|
+
"name": "getBuiltinVersion",
|
|
569
|
+
"signature": "() => Promise<BuiltinVersion>",
|
|
570
|
+
"parameters": [],
|
|
571
|
+
"returns": "Promise<BuiltinVersion>",
|
|
572
|
+
"tags": [
|
|
573
|
+
{
|
|
574
|
+
"name": "returns",
|
|
575
|
+
"text": "A Promise with version for this device"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"name": "since",
|
|
579
|
+
"text": "5.2.0"
|
|
580
|
+
}
|
|
581
|
+
],
|
|
582
|
+
"docs": "Get the native app version or the builtin version if set in config",
|
|
583
|
+
"complexTypes": [
|
|
584
|
+
"BuiltinVersion"
|
|
585
|
+
],
|
|
586
|
+
"slug": "getbuiltinversion"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"name": "getDeviceId",
|
|
590
|
+
"signature": "() => Promise<DeviceId>",
|
|
591
|
+
"parameters": [],
|
|
592
|
+
"returns": "Promise<DeviceId>",
|
|
593
|
+
"tags": [
|
|
594
|
+
{
|
|
595
|
+
"name": "returns",
|
|
596
|
+
"text": "A Promise with id for this device"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"name": "throws",
|
|
600
|
+
"text": "{Error}"
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
"docs": "Get unique ID used to identify device (sent to auto update server)",
|
|
604
|
+
"complexTypes": [
|
|
605
|
+
"DeviceId"
|
|
606
|
+
],
|
|
607
|
+
"slug": "getdeviceid"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"name": "getPluginVersion",
|
|
611
|
+
"signature": "() => Promise<PluginVersion>",
|
|
612
|
+
"parameters": [],
|
|
613
|
+
"returns": "Promise<PluginVersion>",
|
|
614
|
+
"tags": [
|
|
615
|
+
{
|
|
616
|
+
"name": "returns",
|
|
617
|
+
"text": "A Promise with Plugin version"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"name": "throws",
|
|
621
|
+
"text": "{Error}"
|
|
622
|
+
}
|
|
623
|
+
],
|
|
624
|
+
"docs": "Get the native Capacitor Updater plugin version (sent to auto update server)",
|
|
625
|
+
"complexTypes": [
|
|
626
|
+
"PluginVersion"
|
|
627
|
+
],
|
|
628
|
+
"slug": "getpluginversion"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"name": "isAutoUpdateEnabled",
|
|
632
|
+
"signature": "() => Promise<AutoUpdateEnabled>",
|
|
633
|
+
"parameters": [],
|
|
634
|
+
"returns": "Promise<AutoUpdateEnabled>",
|
|
635
|
+
"tags": [
|
|
636
|
+
{
|
|
637
|
+
"name": "returns",
|
|
638
|
+
"text": "The status for auto update. Evaluates to `false` in manual mode."
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"name": "throws",
|
|
642
|
+
"text": "{Error}"
|
|
643
|
+
}
|
|
644
|
+
],
|
|
645
|
+
"docs": "Get the state of auto update config.",
|
|
646
|
+
"complexTypes": [
|
|
647
|
+
"AutoUpdateEnabled"
|
|
648
|
+
],
|
|
649
|
+
"slug": "isautoupdateenabled"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"name": "removeAllListeners",
|
|
653
|
+
"signature": "() => Promise<void>",
|
|
654
|
+
"parameters": [],
|
|
655
|
+
"returns": "Promise<void>",
|
|
656
|
+
"tags": [
|
|
657
|
+
{
|
|
658
|
+
"name": "since",
|
|
659
|
+
"text": "1.0.0"
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"docs": "Remove all listeners for this plugin.",
|
|
663
|
+
"complexTypes": [],
|
|
664
|
+
"slug": "removealllisteners"
|
|
665
|
+
},
|
|
564
666
|
{
|
|
565
667
|
"name": "addListener",
|
|
566
|
-
"signature": "(eventName: \"download\", listenerFunc:
|
|
668
|
+
"signature": "(eventName: \"download\", listenerFunc: (state: DownloadEvent) => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
567
669
|
"parameters": [
|
|
568
670
|
{
|
|
569
671
|
"name": "eventName",
|
|
@@ -573,7 +675,7 @@
|
|
|
573
675
|
{
|
|
574
676
|
"name": "listenerFunc",
|
|
575
677
|
"docs": "",
|
|
576
|
-
"type": "
|
|
678
|
+
"type": "(state: DownloadEvent) => void"
|
|
577
679
|
}
|
|
578
680
|
],
|
|
579
681
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -583,16 +685,16 @@
|
|
|
583
685
|
"text": "2.0.11"
|
|
584
686
|
}
|
|
585
687
|
],
|
|
586
|
-
"docs": "Listen for download event in the App
|
|
688
|
+
"docs": "Listen for bundle download event in the App. Fires once a download has started, during downloading and when finished.",
|
|
587
689
|
"complexTypes": [
|
|
588
690
|
"PluginListenerHandle",
|
|
589
|
-
"
|
|
691
|
+
"DownloadEvent"
|
|
590
692
|
],
|
|
591
693
|
"slug": "addlistenerdownload"
|
|
592
694
|
},
|
|
593
695
|
{
|
|
594
696
|
"name": "addListener",
|
|
595
|
-
"signature": "(eventName: \"noNeedUpdate\", listenerFunc:
|
|
697
|
+
"signature": "(eventName: \"noNeedUpdate\", listenerFunc: (state: NoNeedEvent) => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
596
698
|
"parameters": [
|
|
597
699
|
{
|
|
598
700
|
"name": "eventName",
|
|
@@ -602,7 +704,7 @@
|
|
|
602
704
|
{
|
|
603
705
|
"name": "listenerFunc",
|
|
604
706
|
"docs": "",
|
|
605
|
-
"type": "
|
|
707
|
+
"type": "(state: NoNeedEvent) => void"
|
|
606
708
|
}
|
|
607
709
|
],
|
|
608
710
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -612,16 +714,16 @@
|
|
|
612
714
|
"text": "4.0.0"
|
|
613
715
|
}
|
|
614
716
|
],
|
|
615
|
-
"docs": "Listen for no need to update event,
|
|
717
|
+
"docs": "Listen for no need to update event, useful when you want force check every time the app is launched",
|
|
616
718
|
"complexTypes": [
|
|
617
719
|
"PluginListenerHandle",
|
|
618
|
-
"
|
|
720
|
+
"NoNeedEvent"
|
|
619
721
|
],
|
|
620
722
|
"slug": "addlistenernoneedupdate"
|
|
621
723
|
},
|
|
622
724
|
{
|
|
623
725
|
"name": "addListener",
|
|
624
|
-
"signature": "(eventName: \"updateAvailable\", listenerFunc:
|
|
726
|
+
"signature": "(eventName: \"updateAvailable\", listenerFunc: (state: UpdateAvailableEvent) => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
625
727
|
"parameters": [
|
|
626
728
|
{
|
|
627
729
|
"name": "eventName",
|
|
@@ -631,7 +733,7 @@
|
|
|
631
733
|
{
|
|
632
734
|
"name": "listenerFunc",
|
|
633
735
|
"docs": "",
|
|
634
|
-
"type": "
|
|
736
|
+
"type": "(state: UpdateAvailableEvent) => void"
|
|
635
737
|
}
|
|
636
738
|
],
|
|
637
739
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -641,16 +743,16 @@
|
|
|
641
743
|
"text": "4.0.0"
|
|
642
744
|
}
|
|
643
745
|
],
|
|
644
|
-
"docs": "Listen for
|
|
746
|
+
"docs": "Listen for available update event, useful when you want to force check every time the app is launched",
|
|
645
747
|
"complexTypes": [
|
|
646
748
|
"PluginListenerHandle",
|
|
647
|
-
"
|
|
749
|
+
"UpdateAvailableEvent"
|
|
648
750
|
],
|
|
649
751
|
"slug": "addlistenerupdateavailable"
|
|
650
752
|
},
|
|
651
753
|
{
|
|
652
754
|
"name": "addListener",
|
|
653
|
-
"signature": "(eventName: \"downloadComplete\", listenerFunc:
|
|
755
|
+
"signature": "(eventName: \"downloadComplete\", listenerFunc: (state: DownloadCompleteEvent) => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
654
756
|
"parameters": [
|
|
655
757
|
{
|
|
656
758
|
"name": "eventName",
|
|
@@ -660,7 +762,7 @@
|
|
|
660
762
|
{
|
|
661
763
|
"name": "listenerFunc",
|
|
662
764
|
"docs": "",
|
|
663
|
-
"type": "
|
|
765
|
+
"type": "(state: DownloadCompleteEvent) => void"
|
|
664
766
|
}
|
|
665
767
|
],
|
|
666
768
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -670,16 +772,16 @@
|
|
|
670
772
|
"text": "4.0.0"
|
|
671
773
|
}
|
|
672
774
|
],
|
|
673
|
-
"docs": "Listen for
|
|
775
|
+
"docs": "Listen for downloadComplete events.",
|
|
674
776
|
"complexTypes": [
|
|
675
777
|
"PluginListenerHandle",
|
|
676
|
-
"
|
|
778
|
+
"DownloadCompleteEvent"
|
|
677
779
|
],
|
|
678
780
|
"slug": "addlistenerdownloadcomplete"
|
|
679
781
|
},
|
|
680
782
|
{
|
|
681
783
|
"name": "addListener",
|
|
682
|
-
"signature": "(eventName: \"majorAvailable\", listenerFunc:
|
|
784
|
+
"signature": "(eventName: \"majorAvailable\", listenerFunc: (state: MajorAvailableEvent) => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
683
785
|
"parameters": [
|
|
684
786
|
{
|
|
685
787
|
"name": "eventName",
|
|
@@ -689,7 +791,7 @@
|
|
|
689
791
|
{
|
|
690
792
|
"name": "listenerFunc",
|
|
691
793
|
"docs": "",
|
|
692
|
-
"type": "
|
|
794
|
+
"type": "(state: MajorAvailableEvent) => void"
|
|
693
795
|
}
|
|
694
796
|
],
|
|
695
797
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -702,13 +804,13 @@
|
|
|
702
804
|
"docs": "Listen for Major update event in the App, let you know when major update is blocked by setting disableAutoUpdateBreaking",
|
|
703
805
|
"complexTypes": [
|
|
704
806
|
"PluginListenerHandle",
|
|
705
|
-
"
|
|
807
|
+
"MajorAvailableEvent"
|
|
706
808
|
],
|
|
707
809
|
"slug": "addlistenermajoravailable"
|
|
708
810
|
},
|
|
709
811
|
{
|
|
710
812
|
"name": "addListener",
|
|
711
|
-
"signature": "(eventName: \"updateFailed\", listenerFunc:
|
|
813
|
+
"signature": "(eventName: \"updateFailed\", listenerFunc: (state: UpdateFailedEvent) => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
712
814
|
"parameters": [
|
|
713
815
|
{
|
|
714
816
|
"name": "eventName",
|
|
@@ -718,7 +820,7 @@
|
|
|
718
820
|
{
|
|
719
821
|
"name": "listenerFunc",
|
|
720
822
|
"docs": "",
|
|
721
|
-
"type": "
|
|
823
|
+
"type": "(state: UpdateFailedEvent) => void"
|
|
722
824
|
}
|
|
723
825
|
],
|
|
724
826
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -731,13 +833,13 @@
|
|
|
731
833
|
"docs": "Listen for update fail event in the App, let you know when update has fail to install at next app start",
|
|
732
834
|
"complexTypes": [
|
|
733
835
|
"PluginListenerHandle",
|
|
734
|
-
"
|
|
836
|
+
"UpdateFailedEvent"
|
|
735
837
|
],
|
|
736
838
|
"slug": "addlistenerupdatefailed"
|
|
737
839
|
},
|
|
738
840
|
{
|
|
739
841
|
"name": "addListener",
|
|
740
|
-
"signature": "(eventName: \"downloadFailed\", listenerFunc:
|
|
842
|
+
"signature": "(eventName: \"downloadFailed\", listenerFunc: (state: DownloadFailedEvent) => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
741
843
|
"parameters": [
|
|
742
844
|
{
|
|
743
845
|
"name": "eventName",
|
|
@@ -747,7 +849,7 @@
|
|
|
747
849
|
{
|
|
748
850
|
"name": "listenerFunc",
|
|
749
851
|
"docs": "",
|
|
750
|
-
"type": "
|
|
852
|
+
"type": "(state: DownloadFailedEvent) => void"
|
|
751
853
|
}
|
|
752
854
|
],
|
|
753
855
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -757,16 +859,16 @@
|
|
|
757
859
|
"text": "4.0.0"
|
|
758
860
|
}
|
|
759
861
|
],
|
|
760
|
-
"docs": "Listen for download fail event in the App, let you know when download has
|
|
862
|
+
"docs": "Listen for download fail event in the App, let you know when a bundle download has failed",
|
|
761
863
|
"complexTypes": [
|
|
762
864
|
"PluginListenerHandle",
|
|
763
|
-
"
|
|
865
|
+
"DownloadFailedEvent"
|
|
764
866
|
],
|
|
765
867
|
"slug": "addlistenerdownloadfailed"
|
|
766
868
|
},
|
|
767
869
|
{
|
|
768
870
|
"name": "addListener",
|
|
769
|
-
"signature": "(eventName: \"appReloaded\", listenerFunc:
|
|
871
|
+
"signature": "(eventName: \"appReloaded\", listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
770
872
|
"parameters": [
|
|
771
873
|
{
|
|
772
874
|
"name": "eventName",
|
|
@@ -776,7 +878,7 @@
|
|
|
776
878
|
{
|
|
777
879
|
"name": "listenerFunc",
|
|
778
880
|
"docs": "",
|
|
779
|
-
"type": "
|
|
881
|
+
"type": "() => void"
|
|
780
882
|
}
|
|
781
883
|
],
|
|
782
884
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -786,16 +888,15 @@
|
|
|
786
888
|
"text": "4.3.0"
|
|
787
889
|
}
|
|
788
890
|
],
|
|
789
|
-
"docs": "Listen for reload event in the App, let you know when reload has
|
|
891
|
+
"docs": "Listen for reload event in the App, let you know when reload has happened",
|
|
790
892
|
"complexTypes": [
|
|
791
|
-
"PluginListenerHandle"
|
|
792
|
-
"AppReloadedListener"
|
|
893
|
+
"PluginListenerHandle"
|
|
793
894
|
],
|
|
794
895
|
"slug": "addlistenerappreloaded"
|
|
795
896
|
},
|
|
796
897
|
{
|
|
797
898
|
"name": "addListener",
|
|
798
|
-
"signature": "(eventName: \"appReady\", listenerFunc:
|
|
899
|
+
"signature": "(eventName: \"appReady\", listenerFunc: (state: AppReadyEvent) => void) => Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
799
900
|
"parameters": [
|
|
800
901
|
{
|
|
801
902
|
"name": "eventName",
|
|
@@ -805,7 +906,7 @@
|
|
|
805
906
|
{
|
|
806
907
|
"name": "listenerFunc",
|
|
807
908
|
"docs": "",
|
|
808
|
-
"type": "
|
|
909
|
+
"type": "(state: AppReadyEvent) => void"
|
|
809
910
|
}
|
|
810
911
|
],
|
|
811
912
|
"returns": "Promise<PluginListenerHandle> & PluginListenerHandle",
|
|
@@ -818,105 +919,32 @@
|
|
|
818
919
|
"docs": "Listen for app ready event in the App, let you know when app is ready to use",
|
|
819
920
|
"complexTypes": [
|
|
820
921
|
"PluginListenerHandle",
|
|
821
|
-
"
|
|
922
|
+
"AppReadyEvent"
|
|
822
923
|
],
|
|
823
924
|
"slug": "addlistenerappready"
|
|
824
|
-
},
|
|
825
|
-
{
|
|
826
|
-
"name": "getBuiltinVersion",
|
|
827
|
-
"signature": "() => Promise<{ version: string; }>",
|
|
828
|
-
"parameters": [],
|
|
829
|
-
"returns": "Promise<{ version: string; }>",
|
|
830
|
-
"tags": [
|
|
831
|
-
{
|
|
832
|
-
"name": "returns",
|
|
833
|
-
"text": "an Promise with version for this device"
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
"name": "since",
|
|
837
|
-
"text": "5.2.0"
|
|
838
|
-
}
|
|
839
|
-
],
|
|
840
|
-
"docs": "Get the native app version or the builtin version if set in config",
|
|
841
|
-
"complexTypes": [],
|
|
842
|
-
"slug": "getbuiltinversion"
|
|
843
|
-
},
|
|
844
|
-
{
|
|
845
|
-
"name": "getDeviceId",
|
|
846
|
-
"signature": "() => Promise<{ deviceId: string; }>",
|
|
847
|
-
"parameters": [],
|
|
848
|
-
"returns": "Promise<{ deviceId: string; }>",
|
|
849
|
-
"tags": [
|
|
850
|
-
{
|
|
851
|
-
"name": "returns",
|
|
852
|
-
"text": "an Promise with id for this device"
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
"name": "throws",
|
|
856
|
-
"text": "An error if the something went wrong"
|
|
857
|
-
}
|
|
858
|
-
],
|
|
859
|
-
"docs": "Get unique ID used to identify device (sent to auto update server)",
|
|
860
|
-
"complexTypes": [],
|
|
861
|
-
"slug": "getdeviceid"
|
|
862
|
-
},
|
|
863
|
-
{
|
|
864
|
-
"name": "getPluginVersion",
|
|
865
|
-
"signature": "() => Promise<{ version: string; }>",
|
|
866
|
-
"parameters": [],
|
|
867
|
-
"returns": "Promise<{ version: string; }>",
|
|
868
|
-
"tags": [
|
|
869
|
-
{
|
|
870
|
-
"name": "returns",
|
|
871
|
-
"text": "an Promise with version for this device"
|
|
872
|
-
},
|
|
873
|
-
{
|
|
874
|
-
"name": "throws",
|
|
875
|
-
"text": "An error if the something went wrong"
|
|
876
|
-
}
|
|
877
|
-
],
|
|
878
|
-
"docs": "Get the native Capacitor Updater plugin version (sent to auto update server)",
|
|
879
|
-
"complexTypes": [],
|
|
880
|
-
"slug": "getpluginversion"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"name": "isAutoUpdateEnabled",
|
|
884
|
-
"signature": "() => Promise<{ enabled: boolean; }>",
|
|
885
|
-
"parameters": [],
|
|
886
|
-
"returns": "Promise<{ enabled: boolean; }>",
|
|
887
|
-
"tags": [
|
|
888
|
-
{
|
|
889
|
-
"name": "returns",
|
|
890
|
-
"text": "The status for auto update."
|
|
891
|
-
},
|
|
892
|
-
{
|
|
893
|
-
"name": "throws",
|
|
894
|
-
"text": "An error if the something went wrong"
|
|
895
|
-
}
|
|
896
|
-
],
|
|
897
|
-
"docs": "Get the state of auto update config. This will return `false` in manual mode.",
|
|
898
|
-
"complexTypes": [],
|
|
899
|
-
"slug": "isautoupdateenabled"
|
|
900
|
-
},
|
|
901
|
-
{
|
|
902
|
-
"name": "removeAllListeners",
|
|
903
|
-
"signature": "() => Promise<void>",
|
|
904
|
-
"parameters": [],
|
|
905
|
-
"returns": "Promise<void>",
|
|
906
|
-
"tags": [
|
|
907
|
-
{
|
|
908
|
-
"name": "since",
|
|
909
|
-
"text": "1.0.0"
|
|
910
|
-
}
|
|
911
|
-
],
|
|
912
|
-
"docs": "Remove all listeners for this plugin.",
|
|
913
|
-
"complexTypes": [],
|
|
914
|
-
"slug": "removealllisteners"
|
|
915
925
|
}
|
|
916
926
|
],
|
|
917
927
|
"properties": []
|
|
918
928
|
},
|
|
919
929
|
"interfaces": [
|
|
930
|
+
{
|
|
931
|
+
"name": "AppReadyResult",
|
|
932
|
+
"slug": "appreadyresult",
|
|
933
|
+
"docs": "",
|
|
934
|
+
"tags": [],
|
|
935
|
+
"methods": [],
|
|
936
|
+
"properties": [
|
|
937
|
+
{
|
|
938
|
+
"name": "bundle",
|
|
939
|
+
"tags": [],
|
|
940
|
+
"docs": "",
|
|
941
|
+
"complexTypes": [
|
|
942
|
+
"BundleInfo"
|
|
943
|
+
],
|
|
944
|
+
"type": "BundleInfo"
|
|
945
|
+
}
|
|
946
|
+
]
|
|
947
|
+
},
|
|
920
948
|
{
|
|
921
949
|
"name": "BundleInfo",
|
|
922
950
|
"slug": "bundleinfo",
|
|
@@ -964,16 +992,194 @@
|
|
|
964
992
|
]
|
|
965
993
|
},
|
|
966
994
|
{
|
|
967
|
-
"name": "
|
|
968
|
-
"slug": "
|
|
995
|
+
"name": "UpdateUrl",
|
|
996
|
+
"slug": "updateurl",
|
|
969
997
|
"docs": "",
|
|
970
998
|
"tags": [],
|
|
971
999
|
"methods": [],
|
|
972
1000
|
"properties": [
|
|
973
1001
|
{
|
|
974
|
-
"name": "
|
|
975
|
-
"tags": [
|
|
976
|
-
|
|
1002
|
+
"name": "url",
|
|
1003
|
+
"tags": [],
|
|
1004
|
+
"docs": "",
|
|
1005
|
+
"complexTypes": [],
|
|
1006
|
+
"type": "string"
|
|
1007
|
+
}
|
|
1008
|
+
]
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"name": "StatsUrl",
|
|
1012
|
+
"slug": "statsurl",
|
|
1013
|
+
"docs": "",
|
|
1014
|
+
"tags": [],
|
|
1015
|
+
"methods": [],
|
|
1016
|
+
"properties": [
|
|
1017
|
+
{
|
|
1018
|
+
"name": "url",
|
|
1019
|
+
"tags": [],
|
|
1020
|
+
"docs": "",
|
|
1021
|
+
"complexTypes": [],
|
|
1022
|
+
"type": "string"
|
|
1023
|
+
}
|
|
1024
|
+
]
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"name": "ChannelUrl",
|
|
1028
|
+
"slug": "channelurl",
|
|
1029
|
+
"docs": "",
|
|
1030
|
+
"tags": [],
|
|
1031
|
+
"methods": [],
|
|
1032
|
+
"properties": [
|
|
1033
|
+
{
|
|
1034
|
+
"name": "url",
|
|
1035
|
+
"tags": [],
|
|
1036
|
+
"docs": "",
|
|
1037
|
+
"complexTypes": [],
|
|
1038
|
+
"type": "string"
|
|
1039
|
+
}
|
|
1040
|
+
]
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"name": "DownloadOptions",
|
|
1044
|
+
"slug": "downloadoptions",
|
|
1045
|
+
"docs": "",
|
|
1046
|
+
"tags": [],
|
|
1047
|
+
"methods": [],
|
|
1048
|
+
"properties": [
|
|
1049
|
+
{
|
|
1050
|
+
"name": "url",
|
|
1051
|
+
"tags": [],
|
|
1052
|
+
"docs": "The URL of the bundle zip file (e.g: dist.zip) to be downloaded. (This can be any URL. E.g: Amazon S3, a GitHub tag, any other place you've hosted your bundle.)",
|
|
1053
|
+
"complexTypes": [],
|
|
1054
|
+
"type": "string"
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"name": "version",
|
|
1058
|
+
"tags": [],
|
|
1059
|
+
"docs": "The version code/name of this bundle/version",
|
|
1060
|
+
"complexTypes": [],
|
|
1061
|
+
"type": "string"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"name": "sessionKey",
|
|
1065
|
+
"tags": [],
|
|
1066
|
+
"docs": "",
|
|
1067
|
+
"complexTypes": [],
|
|
1068
|
+
"type": "string | undefined"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"name": "checksum",
|
|
1072
|
+
"tags": [],
|
|
1073
|
+
"docs": "",
|
|
1074
|
+
"complexTypes": [],
|
|
1075
|
+
"type": "string | undefined"
|
|
1076
|
+
}
|
|
1077
|
+
]
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"name": "BundleId",
|
|
1081
|
+
"slug": "bundleid",
|
|
1082
|
+
"docs": "",
|
|
1083
|
+
"tags": [],
|
|
1084
|
+
"methods": [],
|
|
1085
|
+
"properties": [
|
|
1086
|
+
{
|
|
1087
|
+
"name": "id",
|
|
1088
|
+
"tags": [],
|
|
1089
|
+
"docs": "",
|
|
1090
|
+
"complexTypes": [],
|
|
1091
|
+
"type": "string"
|
|
1092
|
+
}
|
|
1093
|
+
]
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"name": "BundleListResult",
|
|
1097
|
+
"slug": "bundlelistresult",
|
|
1098
|
+
"docs": "",
|
|
1099
|
+
"tags": [],
|
|
1100
|
+
"methods": [],
|
|
1101
|
+
"properties": [
|
|
1102
|
+
{
|
|
1103
|
+
"name": "bundles",
|
|
1104
|
+
"tags": [],
|
|
1105
|
+
"docs": "",
|
|
1106
|
+
"complexTypes": [
|
|
1107
|
+
"BundleInfo"
|
|
1108
|
+
],
|
|
1109
|
+
"type": "BundleInfo[]"
|
|
1110
|
+
}
|
|
1111
|
+
]
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"name": "ResetOptions",
|
|
1115
|
+
"slug": "resetoptions",
|
|
1116
|
+
"docs": "",
|
|
1117
|
+
"tags": [],
|
|
1118
|
+
"methods": [],
|
|
1119
|
+
"properties": [
|
|
1120
|
+
{
|
|
1121
|
+
"name": "toLastSuccessful",
|
|
1122
|
+
"tags": [],
|
|
1123
|
+
"docs": "",
|
|
1124
|
+
"complexTypes": [],
|
|
1125
|
+
"type": "boolean"
|
|
1126
|
+
}
|
|
1127
|
+
]
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"name": "CurrentBundleResult",
|
|
1131
|
+
"slug": "currentbundleresult",
|
|
1132
|
+
"docs": "",
|
|
1133
|
+
"tags": [],
|
|
1134
|
+
"methods": [],
|
|
1135
|
+
"properties": [
|
|
1136
|
+
{
|
|
1137
|
+
"name": "bundle",
|
|
1138
|
+
"tags": [],
|
|
1139
|
+
"docs": "",
|
|
1140
|
+
"complexTypes": [
|
|
1141
|
+
"BundleInfo"
|
|
1142
|
+
],
|
|
1143
|
+
"type": "BundleInfo"
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"name": "native",
|
|
1147
|
+
"tags": [],
|
|
1148
|
+
"docs": "",
|
|
1149
|
+
"complexTypes": [],
|
|
1150
|
+
"type": "string"
|
|
1151
|
+
}
|
|
1152
|
+
]
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"name": "MultiDelayConditions",
|
|
1156
|
+
"slug": "multidelayconditions",
|
|
1157
|
+
"docs": "",
|
|
1158
|
+
"tags": [],
|
|
1159
|
+
"methods": [],
|
|
1160
|
+
"properties": [
|
|
1161
|
+
{
|
|
1162
|
+
"name": "delayConditions",
|
|
1163
|
+
"tags": [],
|
|
1164
|
+
"docs": "",
|
|
1165
|
+
"complexTypes": [
|
|
1166
|
+
"DelayCondition"
|
|
1167
|
+
],
|
|
1168
|
+
"type": "DelayCondition[]"
|
|
1169
|
+
}
|
|
1170
|
+
]
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"name": "DelayCondition",
|
|
1174
|
+
"slug": "delaycondition",
|
|
1175
|
+
"docs": "",
|
|
1176
|
+
"tags": [],
|
|
1177
|
+
"methods": [],
|
|
1178
|
+
"properties": [
|
|
1179
|
+
{
|
|
1180
|
+
"name": "kind",
|
|
1181
|
+
"tags": [
|
|
1182
|
+
{
|
|
977
1183
|
"text": "value is useless for",
|
|
978
1184
|
"name": "param"
|
|
979
1185
|
},
|
|
@@ -998,7 +1204,7 @@
|
|
|
998
1204
|
]
|
|
999
1205
|
},
|
|
1000
1206
|
{
|
|
1001
|
-
"name": "
|
|
1207
|
+
"name": "LatestVersion",
|
|
1002
1208
|
"slug": "latestversion",
|
|
1003
1209
|
"docs": "",
|
|
1004
1210
|
"tags": [],
|
|
@@ -1012,7 +1218,7 @@
|
|
|
1012
1218
|
"name": "since"
|
|
1013
1219
|
}
|
|
1014
1220
|
],
|
|
1015
|
-
"docs": "
|
|
1221
|
+
"docs": "Result of getLatest method",
|
|
1016
1222
|
"complexTypes": [],
|
|
1017
1223
|
"type": "string"
|
|
1018
1224
|
},
|
|
@@ -1061,7 +1267,7 @@
|
|
|
1061
1267
|
]
|
|
1062
1268
|
},
|
|
1063
1269
|
{
|
|
1064
|
-
"name": "
|
|
1270
|
+
"name": "ChannelRes",
|
|
1065
1271
|
"slug": "channelres",
|
|
1066
1272
|
"docs": "",
|
|
1067
1273
|
"tags": [],
|
|
@@ -1135,7 +1341,7 @@
|
|
|
1135
1341
|
]
|
|
1136
1342
|
},
|
|
1137
1343
|
{
|
|
1138
|
-
"name": "
|
|
1344
|
+
"name": "GetChannelRes",
|
|
1139
1345
|
"slug": "getchannelres",
|
|
1140
1346
|
"docs": "",
|
|
1141
1347
|
"tags": [],
|
|
@@ -1199,6 +1405,70 @@
|
|
|
1199
1405
|
}
|
|
1200
1406
|
]
|
|
1201
1407
|
},
|
|
1408
|
+
{
|
|
1409
|
+
"name": "BuiltinVersion",
|
|
1410
|
+
"slug": "builtinversion",
|
|
1411
|
+
"docs": "",
|
|
1412
|
+
"tags": [],
|
|
1413
|
+
"methods": [],
|
|
1414
|
+
"properties": [
|
|
1415
|
+
{
|
|
1416
|
+
"name": "version",
|
|
1417
|
+
"tags": [],
|
|
1418
|
+
"docs": "",
|
|
1419
|
+
"complexTypes": [],
|
|
1420
|
+
"type": "string"
|
|
1421
|
+
}
|
|
1422
|
+
]
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"name": "DeviceId",
|
|
1426
|
+
"slug": "deviceid",
|
|
1427
|
+
"docs": "",
|
|
1428
|
+
"tags": [],
|
|
1429
|
+
"methods": [],
|
|
1430
|
+
"properties": [
|
|
1431
|
+
{
|
|
1432
|
+
"name": "deviceId",
|
|
1433
|
+
"tags": [],
|
|
1434
|
+
"docs": "",
|
|
1435
|
+
"complexTypes": [],
|
|
1436
|
+
"type": "string"
|
|
1437
|
+
}
|
|
1438
|
+
]
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"name": "PluginVersion",
|
|
1442
|
+
"slug": "pluginversion",
|
|
1443
|
+
"docs": "",
|
|
1444
|
+
"tags": [],
|
|
1445
|
+
"methods": [],
|
|
1446
|
+
"properties": [
|
|
1447
|
+
{
|
|
1448
|
+
"name": "version",
|
|
1449
|
+
"tags": [],
|
|
1450
|
+
"docs": "",
|
|
1451
|
+
"complexTypes": [],
|
|
1452
|
+
"type": "string"
|
|
1453
|
+
}
|
|
1454
|
+
]
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"name": "AutoUpdateEnabled",
|
|
1458
|
+
"slug": "autoupdateenabled",
|
|
1459
|
+
"docs": "",
|
|
1460
|
+
"tags": [],
|
|
1461
|
+
"methods": [],
|
|
1462
|
+
"properties": [
|
|
1463
|
+
{
|
|
1464
|
+
"name": "enabled",
|
|
1465
|
+
"tags": [],
|
|
1466
|
+
"docs": "",
|
|
1467
|
+
"complexTypes": [],
|
|
1468
|
+
"type": "boolean"
|
|
1469
|
+
}
|
|
1470
|
+
]
|
|
1471
|
+
},
|
|
1202
1472
|
{
|
|
1203
1473
|
"name": "PluginListenerHandle",
|
|
1204
1474
|
"slug": "pluginlistenerhandle",
|
|
@@ -1246,7 +1516,7 @@
|
|
|
1246
1516
|
]
|
|
1247
1517
|
},
|
|
1248
1518
|
{
|
|
1249
|
-
"name": "
|
|
1519
|
+
"name": "NoNeedEvent",
|
|
1250
1520
|
"slug": "noneedevent",
|
|
1251
1521
|
"docs": "",
|
|
1252
1522
|
"tags": [],
|
|
@@ -1269,7 +1539,7 @@
|
|
|
1269
1539
|
]
|
|
1270
1540
|
},
|
|
1271
1541
|
{
|
|
1272
|
-
"name": "
|
|
1542
|
+
"name": "UpdateAvailableEvent",
|
|
1273
1543
|
"slug": "updateavailableevent",
|
|
1274
1544
|
"docs": "",
|
|
1275
1545
|
"tags": [],
|
|
@@ -1394,7 +1664,7 @@
|
|
|
1394
1664
|
"name": "since"
|
|
1395
1665
|
}
|
|
1396
1666
|
],
|
|
1397
|
-
"docs": "
|
|
1667
|
+
"docs": "Emitted when the app is ready to use.",
|
|
1398
1668
|
"complexTypes": [
|
|
1399
1669
|
"BundleInfo"
|
|
1400
1670
|
],
|
|
@@ -1457,121 +1727,6 @@
|
|
|
1457
1727
|
"complexTypes": []
|
|
1458
1728
|
}
|
|
1459
1729
|
]
|
|
1460
|
-
},
|
|
1461
|
-
{
|
|
1462
|
-
"name": "DownloadChangeListener",
|
|
1463
|
-
"slug": "downloadchangelistener",
|
|
1464
|
-
"docs": "",
|
|
1465
|
-
"types": [
|
|
1466
|
-
{
|
|
1467
|
-
"text": "(state: DownloadEvent): void",
|
|
1468
|
-
"complexTypes": [
|
|
1469
|
-
"DownloadEvent"
|
|
1470
|
-
]
|
|
1471
|
-
}
|
|
1472
|
-
]
|
|
1473
|
-
},
|
|
1474
|
-
{
|
|
1475
|
-
"name": "NoNeedListener",
|
|
1476
|
-
"slug": "noneedlistener",
|
|
1477
|
-
"docs": "",
|
|
1478
|
-
"types": [
|
|
1479
|
-
{
|
|
1480
|
-
"text": "(state: noNeedEvent): void",
|
|
1481
|
-
"complexTypes": [
|
|
1482
|
-
"noNeedEvent"
|
|
1483
|
-
]
|
|
1484
|
-
}
|
|
1485
|
-
]
|
|
1486
|
-
},
|
|
1487
|
-
{
|
|
1488
|
-
"name": "UpdateAvailabledListener",
|
|
1489
|
-
"slug": "updateavailabledlistener",
|
|
1490
|
-
"docs": "",
|
|
1491
|
-
"types": [
|
|
1492
|
-
{
|
|
1493
|
-
"text": "(state: updateAvailableEvent): void",
|
|
1494
|
-
"complexTypes": [
|
|
1495
|
-
"updateAvailableEvent"
|
|
1496
|
-
]
|
|
1497
|
-
}
|
|
1498
|
-
]
|
|
1499
|
-
},
|
|
1500
|
-
{
|
|
1501
|
-
"name": "DownloadCompleteListener",
|
|
1502
|
-
"slug": "downloadcompletelistener",
|
|
1503
|
-
"docs": "",
|
|
1504
|
-
"types": [
|
|
1505
|
-
{
|
|
1506
|
-
"text": "(state: DownloadCompleteEvent): void",
|
|
1507
|
-
"complexTypes": [
|
|
1508
|
-
"DownloadCompleteEvent"
|
|
1509
|
-
]
|
|
1510
|
-
}
|
|
1511
|
-
]
|
|
1512
|
-
},
|
|
1513
|
-
{
|
|
1514
|
-
"name": "MajorAvailableListener",
|
|
1515
|
-
"slug": "majoravailablelistener",
|
|
1516
|
-
"docs": "",
|
|
1517
|
-
"types": [
|
|
1518
|
-
{
|
|
1519
|
-
"text": "(state: MajorAvailableEvent): void",
|
|
1520
|
-
"complexTypes": [
|
|
1521
|
-
"MajorAvailableEvent"
|
|
1522
|
-
]
|
|
1523
|
-
}
|
|
1524
|
-
]
|
|
1525
|
-
},
|
|
1526
|
-
{
|
|
1527
|
-
"name": "UpdateFailedListener",
|
|
1528
|
-
"slug": "updatefailedlistener",
|
|
1529
|
-
"docs": "",
|
|
1530
|
-
"types": [
|
|
1531
|
-
{
|
|
1532
|
-
"text": "(state: UpdateFailedEvent): void",
|
|
1533
|
-
"complexTypes": [
|
|
1534
|
-
"UpdateFailedEvent"
|
|
1535
|
-
]
|
|
1536
|
-
}
|
|
1537
|
-
]
|
|
1538
|
-
},
|
|
1539
|
-
{
|
|
1540
|
-
"name": "DownloadFailedListener",
|
|
1541
|
-
"slug": "downloadfailedlistener",
|
|
1542
|
-
"docs": "",
|
|
1543
|
-
"types": [
|
|
1544
|
-
{
|
|
1545
|
-
"text": "(state: DownloadFailedEvent): void",
|
|
1546
|
-
"complexTypes": [
|
|
1547
|
-
"DownloadFailedEvent"
|
|
1548
|
-
]
|
|
1549
|
-
}
|
|
1550
|
-
]
|
|
1551
|
-
},
|
|
1552
|
-
{
|
|
1553
|
-
"name": "AppReloadedListener",
|
|
1554
|
-
"slug": "appreloadedlistener",
|
|
1555
|
-
"docs": "",
|
|
1556
|
-
"types": [
|
|
1557
|
-
{
|
|
1558
|
-
"text": "(state: void): void",
|
|
1559
|
-
"complexTypes": []
|
|
1560
|
-
}
|
|
1561
|
-
]
|
|
1562
|
-
},
|
|
1563
|
-
{
|
|
1564
|
-
"name": "AppReadyListener",
|
|
1565
|
-
"slug": "appreadylistener",
|
|
1566
|
-
"docs": "",
|
|
1567
|
-
"types": [
|
|
1568
|
-
{
|
|
1569
|
-
"text": "(state: AppReadyEvent): void",
|
|
1570
|
-
"complexTypes": [
|
|
1571
|
-
"AppReadyEvent"
|
|
1572
|
-
]
|
|
1573
|
-
}
|
|
1574
|
-
]
|
|
1575
1730
|
}
|
|
1576
1731
|
],
|
|
1577
1732
|
"pluginConfigs": [
|
|
@@ -1876,7 +2031,7 @@
|
|
|
1876
2031
|
"type": "string | undefined"
|
|
1877
2032
|
}
|
|
1878
2033
|
],
|
|
1879
|
-
"docs": "CapacitorUpdater can be configured with
|
|
2034
|
+
"docs": "CapacitorUpdater can be configured with these options:"
|
|
1880
2035
|
}
|
|
1881
2036
|
]
|
|
1882
2037
|
}
|