particle-api-js 9.1.1 → 9.3.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.
- package/.circleci/config.yml +79 -0
- package/.nvmrc +1 -0
- package/CHANGELOG.md +9 -0
- package/README.md +90 -2
- package/RELEASE.md +8 -10
- package/dist/particle.min.js +3 -3
- package/dist/particle.min.js.map +1 -1
- package/docs/api.md +102 -102
- package/lib/Agent.js +6 -1
- package/lib/Agent.js.map +1 -1
- package/lib/Client.js +2 -2
- package/lib/Client.js.map +1 -1
- package/lib/Particle.js +8 -0
- package/lib/Particle.js.map +1 -1
- package/package.json +12 -6
- package/test/Agent.spec.js +23 -1
- package/test/Client.spec.js +2 -2
- package/test/EventStream-e2e-node.js +1 -0
- package/test/Particle.spec.js +15 -0
- package/.travis.yml +0 -34
- package/travis_tests.sh +0 -11
package/docs/api.md
CHANGED
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
|
|
108
108
|
## Particle
|
|
109
109
|
|
|
110
|
-
[src/Particle.js:17-
|
|
110
|
+
[src/Particle.js:17-2152](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L17-L2152 "Source code on GitHub")
|
|
111
111
|
|
|
112
112
|
Particle Cloud API wrapper.
|
|
113
113
|
|
|
@@ -123,7 +123,7 @@ Most Particle methods take a single unnamed argument object documented as
|
|
|
123
123
|
|
|
124
124
|
### constructor
|
|
125
125
|
|
|
126
|
-
[src/Particle.js:25-30](https://github.com/particle-iot/particle-api-js/blob/
|
|
126
|
+
[src/Particle.js:25-30](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L25-L30 "Source code on GitHub")
|
|
127
127
|
|
|
128
128
|
Contructor for the Cloud API wrapper.
|
|
129
129
|
|
|
@@ -135,7 +135,7 @@ Create a new Particle object and call methods below on it.
|
|
|
135
135
|
|
|
136
136
|
### login
|
|
137
137
|
|
|
138
|
-
[src/Particle.js:66-81](https://github.com/particle-iot/particle-api-js/blob/
|
|
138
|
+
[src/Particle.js:66-81](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L66-L81 "Source code on GitHub")
|
|
139
139
|
|
|
140
140
|
Login to Particle Cloud using an existing Particle acccount.
|
|
141
141
|
|
|
@@ -152,7 +152,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
152
152
|
|
|
153
153
|
### sendOtp
|
|
154
154
|
|
|
155
|
-
[src/Particle.js:92-106](https://github.com/particle-iot/particle-api-js/blob/
|
|
155
|
+
[src/Particle.js:92-106](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L92-L106 "Source code on GitHub")
|
|
156
156
|
|
|
157
157
|
If login failed with an 'mfa_required' error, this must be called with a valid OTP code to login
|
|
158
158
|
|
|
@@ -168,7 +168,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
168
168
|
|
|
169
169
|
### enableMfa
|
|
170
170
|
|
|
171
|
-
[src/Particle.js:116-118](https://github.com/particle-iot/particle-api-js/blob/
|
|
171
|
+
[src/Particle.js:116-118](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L116-L118 "Source code on GitHub")
|
|
172
172
|
|
|
173
173
|
Enable MFA on the currently logged in user
|
|
174
174
|
|
|
@@ -183,7 +183,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
183
183
|
|
|
184
184
|
### confirmMfa
|
|
185
185
|
|
|
186
|
-
[src/Particle.js:131-145](https://github.com/particle-iot/particle-api-js/blob/
|
|
186
|
+
[src/Particle.js:131-145](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L131-L145 "Source code on GitHub")
|
|
187
187
|
|
|
188
188
|
Confirm MFA for the user. This must be called with current TOTP code, determined from the results of enableMfa(). You will be prompted to enter an OTP code every time you login after enrollment is confirmed.
|
|
189
189
|
|
|
@@ -201,7 +201,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
201
201
|
|
|
202
202
|
### disableMfa
|
|
203
203
|
|
|
204
|
-
[src/Particle.js:156-164](https://github.com/particle-iot/particle-api-js/blob/
|
|
204
|
+
[src/Particle.js:156-164](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L156-L164 "Source code on GitHub")
|
|
205
205
|
|
|
206
206
|
Disable MFA for the user.
|
|
207
207
|
|
|
@@ -217,7 +217,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
217
217
|
|
|
218
218
|
### createCustomer
|
|
219
219
|
|
|
220
|
-
[src/Particle.js:176-190](https://github.com/particle-iot/particle-api-js/blob/
|
|
220
|
+
[src/Particle.js:176-190](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L176-L190 "Source code on GitHub")
|
|
221
221
|
|
|
222
222
|
Create Customer for Product.
|
|
223
223
|
|
|
@@ -234,7 +234,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
234
234
|
|
|
235
235
|
### loginAsClientOwner
|
|
236
236
|
|
|
237
|
-
[src/Particle.js:199-211](https://github.com/particle-iot/particle-api-js/blob/
|
|
237
|
+
[src/Particle.js:199-211](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L199-L211 "Source code on GitHub")
|
|
238
238
|
|
|
239
239
|
Login to Particle Cloud using an OAuth client.
|
|
240
240
|
|
|
@@ -248,7 +248,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
248
248
|
|
|
249
249
|
### createUser
|
|
250
250
|
|
|
251
|
-
[src/Particle.js:223-234](https://github.com/particle-iot/particle-api-js/blob/
|
|
251
|
+
[src/Particle.js:223-234](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L223-L234 "Source code on GitHub")
|
|
252
252
|
|
|
253
253
|
Create a user account for the Particle Cloud
|
|
254
254
|
|
|
@@ -265,7 +265,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
265
265
|
|
|
266
266
|
### verifyUser
|
|
267
267
|
|
|
268
|
-
[src/Particle.js:244-251](https://github.com/particle-iot/particle-api-js/blob/
|
|
268
|
+
[src/Particle.js:244-251](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L244-L251 "Source code on GitHub")
|
|
269
269
|
|
|
270
270
|
Verify new user account via verification email
|
|
271
271
|
|
|
@@ -280,7 +280,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
280
280
|
|
|
281
281
|
### resetPassword
|
|
282
282
|
|
|
283
|
-
[src/Particle.js:261-268](https://github.com/particle-iot/particle-api-js/blob/
|
|
283
|
+
[src/Particle.js:261-268](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L261-L268 "Source code on GitHub")
|
|
284
284
|
|
|
285
285
|
Send reset password email for a Particle Cloud user account
|
|
286
286
|
|
|
@@ -295,7 +295,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
295
295
|
|
|
296
296
|
### deleteAccessToken
|
|
297
297
|
|
|
298
|
-
[src/Particle.js:280-288](https://github.com/particle-iot/particle-api-js/blob/
|
|
298
|
+
[src/Particle.js:280-288](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L280-L288 "Source code on GitHub")
|
|
299
299
|
|
|
300
300
|
Revoke an access token
|
|
301
301
|
|
|
@@ -312,7 +312,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
312
312
|
|
|
313
313
|
### deleteCurrentAccessToken
|
|
314
314
|
|
|
315
|
-
[src/Particle.js:298-305](https://github.com/particle-iot/particle-api-js/blob/
|
|
315
|
+
[src/Particle.js:298-305](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L298-L305 "Source code on GitHub")
|
|
316
316
|
|
|
317
317
|
Revoke the current session access token
|
|
318
318
|
|
|
@@ -327,7 +327,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
327
327
|
|
|
328
328
|
### deleteActiveAccessTokens
|
|
329
329
|
|
|
330
|
-
[src/Particle.js:315-322](https://github.com/particle-iot/particle-api-js/blob/
|
|
330
|
+
[src/Particle.js:315-322](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L315-L322 "Source code on GitHub")
|
|
331
331
|
|
|
332
332
|
Revoke all active access tokens
|
|
333
333
|
|
|
@@ -342,7 +342,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
342
342
|
|
|
343
343
|
### deleteUser
|
|
344
344
|
|
|
345
|
-
[src/Particle.js:333-341](https://github.com/particle-iot/particle-api-js/blob/
|
|
345
|
+
[src/Particle.js:333-341](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L333-L341 "Source code on GitHub")
|
|
346
346
|
|
|
347
347
|
Delete the current user
|
|
348
348
|
|
|
@@ -358,7 +358,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
358
358
|
|
|
359
359
|
### listAccessTokens
|
|
360
360
|
|
|
361
|
-
[src/Particle.js:353-361](https://github.com/particle-iot/particle-api-js/blob/
|
|
361
|
+
[src/Particle.js:353-361](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L353-L361 "Source code on GitHub")
|
|
362
362
|
|
|
363
363
|
List all valid access tokens for a Particle Cloud account
|
|
364
364
|
|
|
@@ -375,7 +375,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
375
375
|
|
|
376
376
|
### trackingIdentity
|
|
377
377
|
|
|
378
|
-
[src/Particle.js:373-381](https://github.com/particle-iot/particle-api-js/blob/
|
|
378
|
+
[src/Particle.js:373-381](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L373-L381 "Source code on GitHub")
|
|
379
379
|
|
|
380
380
|
Retrieves the information that is used to identify the current login for tracking.
|
|
381
381
|
|
|
@@ -392,7 +392,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
392
392
|
|
|
393
393
|
### listDevices
|
|
394
394
|
|
|
395
|
-
[src/Particle.js:399-411](https://github.com/particle-iot/particle-api-js/blob/
|
|
395
|
+
[src/Particle.js:399-411](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L399-L411 "Source code on GitHub")
|
|
396
396
|
|
|
397
397
|
List devices claimed to the account or product
|
|
398
398
|
|
|
@@ -415,7 +415,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
415
415
|
|
|
416
416
|
### getDevice
|
|
417
417
|
|
|
418
|
-
[src/Particle.js:423-426](https://github.com/particle-iot/particle-api-js/blob/
|
|
418
|
+
[src/Particle.js:423-426](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L423-L426 "Source code on GitHub")
|
|
419
419
|
|
|
420
420
|
Get detailed informationa about a device
|
|
421
421
|
|
|
@@ -432,7 +432,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
432
432
|
|
|
433
433
|
### claimDevice
|
|
434
434
|
|
|
435
|
-
[src/Particle.js:437-448](https://github.com/particle-iot/particle-api-js/blob/
|
|
435
|
+
[src/Particle.js:437-448](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L437-L448 "Source code on GitHub")
|
|
436
436
|
|
|
437
437
|
Claim a device to the account. The device must be online and unclaimed.
|
|
438
438
|
|
|
@@ -449,7 +449,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
449
449
|
|
|
450
450
|
### addDeviceToProduct
|
|
451
451
|
|
|
452
|
-
[src/Particle.js:462-480](https://github.com/particle-iot/particle-api-js/blob/
|
|
452
|
+
[src/Particle.js:462-480](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L462-L480 "Source code on GitHub")
|
|
453
453
|
|
|
454
454
|
Add a device to a product or move device out of quarantine.
|
|
455
455
|
|
|
@@ -468,7 +468,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
468
468
|
|
|
469
469
|
### removeDevice
|
|
470
470
|
|
|
471
|
-
[src/Particle.js:493-497](https://github.com/particle-iot/particle-api-js/blob/
|
|
471
|
+
[src/Particle.js:493-497](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L493-L497 "Source code on GitHub")
|
|
472
472
|
|
|
473
473
|
Unclaim / Remove a device from your account or product, or deny quarantine
|
|
474
474
|
|
|
@@ -486,7 +486,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
486
486
|
|
|
487
487
|
### removeDeviceOwner
|
|
488
488
|
|
|
489
|
-
[src/Particle.js:509-512](https://github.com/particle-iot/particle-api-js/blob/
|
|
489
|
+
[src/Particle.js:509-512](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L509-L512 "Source code on GitHub")
|
|
490
490
|
|
|
491
491
|
Unclaim a product device its the owner, but keep it in the product
|
|
492
492
|
|
|
@@ -503,7 +503,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
503
503
|
|
|
504
504
|
### renameDevice
|
|
505
505
|
|
|
506
|
-
[src/Particle.js:525-527](https://github.com/particle-iot/particle-api-js/blob/
|
|
506
|
+
[src/Particle.js:525-527](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L525-L527 "Source code on GitHub")
|
|
507
507
|
|
|
508
508
|
Rename a device
|
|
509
509
|
|
|
@@ -521,7 +521,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
521
521
|
|
|
522
522
|
### signalDevice
|
|
523
523
|
|
|
524
|
-
[src/Particle.js:540-542](https://github.com/particle-iot/particle-api-js/blob/
|
|
524
|
+
[src/Particle.js:540-542](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L540-L542 "Source code on GitHub")
|
|
525
525
|
|
|
526
526
|
Instruct the device to turn on/off the LED in a rainbow pattern
|
|
527
527
|
|
|
@@ -539,7 +539,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
539
539
|
|
|
540
540
|
### setDeviceNotes
|
|
541
541
|
|
|
542
|
-
[src/Particle.js:555-557](https://github.com/particle-iot/particle-api-js/blob/
|
|
542
|
+
[src/Particle.js:555-557](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L555-L557 "Source code on GitHub")
|
|
543
543
|
|
|
544
544
|
Store some notes about device
|
|
545
545
|
|
|
@@ -557,7 +557,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
557
557
|
|
|
558
558
|
### markAsDevelopmentDevice
|
|
559
559
|
|
|
560
|
-
[src/Particle.js:570-572](https://github.com/particle-iot/particle-api-js/blob/
|
|
560
|
+
[src/Particle.js:570-572](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L570-L572 "Source code on GitHub")
|
|
561
561
|
|
|
562
562
|
Mark device as being used in development of a product so it opts out of automatic firmware updates
|
|
563
563
|
|
|
@@ -575,7 +575,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
575
575
|
|
|
576
576
|
### lockDeviceProductFirmware
|
|
577
577
|
|
|
578
|
-
[src/Particle.js:586-588](https://github.com/particle-iot/particle-api-js/blob/
|
|
578
|
+
[src/Particle.js:586-588](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L586-L588 "Source code on GitHub")
|
|
579
579
|
|
|
580
580
|
Mark device as being used in development of a product so it opts out of automatic firmware updates
|
|
581
581
|
|
|
@@ -594,7 +594,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
594
594
|
|
|
595
595
|
### unlockDeviceProductFirmware
|
|
596
596
|
|
|
597
|
-
[src/Particle.js:600-602](https://github.com/particle-iot/particle-api-js/blob/
|
|
597
|
+
[src/Particle.js:600-602](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L600-L602 "Source code on GitHub")
|
|
598
598
|
|
|
599
599
|
Mark device as receiving automatic firmware updates
|
|
600
600
|
|
|
@@ -611,7 +611,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
611
611
|
|
|
612
612
|
### updateDevice
|
|
613
613
|
|
|
614
|
-
[src/Particle.js:621-632](https://github.com/particle-iot/particle-api-js/blob/
|
|
614
|
+
[src/Particle.js:621-632](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L621-L632 "Source code on GitHub")
|
|
615
615
|
|
|
616
616
|
Update multiple device attributes at the same time
|
|
617
617
|
|
|
@@ -635,7 +635,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
635
635
|
|
|
636
636
|
### provisionDevice
|
|
637
637
|
|
|
638
|
-
[src/Particle.js:643-651](https://github.com/particle-iot/particle-api-js/blob/
|
|
638
|
+
[src/Particle.js:643-651](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L643-L651 "Source code on GitHub")
|
|
639
639
|
|
|
640
640
|
Provision a new device for products that allow self-provisioning
|
|
641
641
|
|
|
@@ -651,7 +651,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
651
651
|
|
|
652
652
|
### getClaimCode
|
|
653
653
|
|
|
654
|
-
[src/Particle.js:665-668](https://github.com/particle-iot/particle-api-js/blob/
|
|
654
|
+
[src/Particle.js:665-668](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L665-L668 "Source code on GitHub")
|
|
655
655
|
|
|
656
656
|
Generate a claim code to use in the device claiming process.
|
|
657
657
|
To generate a claim code for a product, the access token MUST belong to a
|
|
@@ -670,7 +670,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
670
670
|
|
|
671
671
|
### getVariable
|
|
672
672
|
|
|
673
|
-
[src/Particle.js:700-706](https://github.com/particle-iot/particle-api-js/blob/
|
|
673
|
+
[src/Particle.js:700-706](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L700-L706 "Source code on GitHub")
|
|
674
674
|
|
|
675
675
|
Get the value of a device variable
|
|
676
676
|
|
|
@@ -688,7 +688,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
688
688
|
|
|
689
689
|
### flashDevice
|
|
690
690
|
|
|
691
|
-
[src/Particle.js:720-731](https://github.com/particle-iot/particle-api-js/blob/
|
|
691
|
+
[src/Particle.js:720-731](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L720-L731 "Source code on GitHub")
|
|
692
692
|
|
|
693
693
|
Compile and flash application firmware to a device. Pass a pre-compiled binary to flash it directly to the device.
|
|
694
694
|
|
|
@@ -707,7 +707,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
707
707
|
|
|
708
708
|
### flashTinker
|
|
709
709
|
|
|
710
|
-
[src/Particle.js:742-755](https://github.com/particle-iot/particle-api-js/blob/
|
|
710
|
+
[src/Particle.js:742-755](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L742-L755 "Source code on GitHub")
|
|
711
711
|
|
|
712
712
|
DEPRECATED: Flash the Tinker application to a device. Instead compile and flash the Tinker source code.
|
|
713
713
|
|
|
@@ -723,7 +723,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
723
723
|
|
|
724
724
|
### compileCode
|
|
725
725
|
|
|
726
|
-
[src/Particle.js:768-786](https://github.com/particle-iot/particle-api-js/blob/
|
|
726
|
+
[src/Particle.js:768-786](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L768-L786 "Source code on GitHub")
|
|
727
727
|
|
|
728
728
|
Compile firmware using the Particle Cloud
|
|
729
729
|
|
|
@@ -741,7 +741,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
741
741
|
|
|
742
742
|
### downloadFirmwareBinary
|
|
743
743
|
|
|
744
|
-
[src/Particle.js:797-808](https://github.com/particle-iot/particle-api-js/blob/
|
|
744
|
+
[src/Particle.js:797-808](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L797-L808 "Source code on GitHub")
|
|
745
745
|
|
|
746
746
|
Download a firmware binary
|
|
747
747
|
|
|
@@ -757,7 +757,7 @@ Returns **[Request](https://developer.mozilla.org/en-US/Add-ons/SDK/High-Level_A
|
|
|
757
757
|
|
|
758
758
|
### sendPublicKey
|
|
759
759
|
|
|
760
|
-
[src/Particle.js:821-835](https://github.com/particle-iot/particle-api-js/blob/
|
|
760
|
+
[src/Particle.js:821-835](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L821-L835 "Source code on GitHub")
|
|
761
761
|
|
|
762
762
|
Send a new device public key to the Particle Cloud
|
|
763
763
|
|
|
@@ -775,7 +775,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
775
775
|
|
|
776
776
|
### callFunction
|
|
777
777
|
|
|
778
|
-
[src/Particle.js:849-854](https://github.com/particle-iot/particle-api-js/blob/
|
|
778
|
+
[src/Particle.js:849-854](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L849-L854 "Source code on GitHub")
|
|
779
779
|
|
|
780
780
|
Call a device function
|
|
781
781
|
|
|
@@ -794,7 +794,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
794
794
|
|
|
795
795
|
### getEventStream
|
|
796
796
|
|
|
797
|
-
[src/Particle.js:867-891](https://github.com/particle-iot/particle-api-js/blob/
|
|
797
|
+
[src/Particle.js:867-891](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L867-L891 "Source code on GitHub")
|
|
798
798
|
|
|
799
799
|
Get a stream of events
|
|
800
800
|
|
|
@@ -812,7 +812,7 @@ emit 'event' events.
|
|
|
812
812
|
|
|
813
813
|
### publishEvent
|
|
814
814
|
|
|
815
|
-
[src/Particle.js:905-909](https://github.com/particle-iot/particle-api-js/blob/
|
|
815
|
+
[src/Particle.js:905-909](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L905-L909 "Source code on GitHub")
|
|
816
816
|
|
|
817
817
|
Publish a event to the Particle Cloud
|
|
818
818
|
|
|
@@ -831,7 +831,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
831
831
|
|
|
832
832
|
### createWebhook
|
|
833
833
|
|
|
834
|
-
[src/Particle.js:936-958](https://github.com/particle-iot/particle-api-js/blob/
|
|
834
|
+
[src/Particle.js:936-958](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L936-L958 "Source code on GitHub")
|
|
835
835
|
|
|
836
836
|
Create a webhook
|
|
837
837
|
|
|
@@ -863,7 +863,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
863
863
|
|
|
864
864
|
### deleteWebhook
|
|
865
865
|
|
|
866
|
-
[src/Particle.js:970-973](https://github.com/particle-iot/particle-api-js/blob/
|
|
866
|
+
[src/Particle.js:970-973](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L970-L973 "Source code on GitHub")
|
|
867
867
|
|
|
868
868
|
Delete a webhook
|
|
869
869
|
|
|
@@ -880,7 +880,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
880
880
|
|
|
881
881
|
### listWebhooks
|
|
882
882
|
|
|
883
|
-
[src/Particle.js:984-987](https://github.com/particle-iot/particle-api-js/blob/
|
|
883
|
+
[src/Particle.js:984-987](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L984-L987 "Source code on GitHub")
|
|
884
884
|
|
|
885
885
|
List all webhooks owned by the account or product
|
|
886
886
|
|
|
@@ -896,7 +896,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
896
896
|
|
|
897
897
|
### createIntegration
|
|
898
898
|
|
|
899
|
-
[src/Particle.js:1004-1008](https://github.com/particle-iot/particle-api-js/blob/
|
|
899
|
+
[src/Particle.js:1004-1008](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1004-L1008 "Source code on GitHub")
|
|
900
900
|
|
|
901
901
|
Create an integration to send events to an external service
|
|
902
902
|
|
|
@@ -917,7 +917,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
917
917
|
|
|
918
918
|
### editIntegration
|
|
919
919
|
|
|
920
|
-
[src/Particle.js:1026-1030](https://github.com/particle-iot/particle-api-js/blob/
|
|
920
|
+
[src/Particle.js:1026-1030](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1026-L1030 "Source code on GitHub")
|
|
921
921
|
|
|
922
922
|
Edit an integration to send events to an external service
|
|
923
923
|
|
|
@@ -939,7 +939,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
939
939
|
|
|
940
940
|
### deleteIntegration
|
|
941
941
|
|
|
942
|
-
[src/Particle.js:1043-1046](https://github.com/particle-iot/particle-api-js/blob/
|
|
942
|
+
[src/Particle.js:1043-1046](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1043-L1046 "Source code on GitHub")
|
|
943
943
|
|
|
944
944
|
Delete an integration to send events to an external service
|
|
945
945
|
|
|
@@ -956,7 +956,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
956
956
|
|
|
957
957
|
### listIntegrations
|
|
958
958
|
|
|
959
|
-
[src/Particle.js:1057-1060](https://github.com/particle-iot/particle-api-js/blob/
|
|
959
|
+
[src/Particle.js:1057-1060](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1057-L1060 "Source code on GitHub")
|
|
960
960
|
|
|
961
961
|
List all integrations owned by the account or product
|
|
962
962
|
|
|
@@ -972,7 +972,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
972
972
|
|
|
973
973
|
### getUserInfo
|
|
974
974
|
|
|
975
|
-
[src/Particle.js:1070-1072](https://github.com/particle-iot/particle-api-js/blob/
|
|
975
|
+
[src/Particle.js:1070-1072](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1070-L1072 "Source code on GitHub")
|
|
976
976
|
|
|
977
977
|
Get details about the current user
|
|
978
978
|
|
|
@@ -987,7 +987,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
987
987
|
|
|
988
988
|
### setUserInfo
|
|
989
989
|
|
|
990
|
-
[src/Particle.js:1083-1086](https://github.com/particle-iot/particle-api-js/blob/
|
|
990
|
+
[src/Particle.js:1083-1086](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1083-L1086 "Source code on GitHub")
|
|
991
991
|
|
|
992
992
|
Set details on the current user
|
|
993
993
|
|
|
@@ -1003,7 +1003,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1003
1003
|
|
|
1004
1004
|
### changeUsername
|
|
1005
1005
|
|
|
1006
|
-
[src/Particle.js:1099-1107](https://github.com/particle-iot/particle-api-js/blob/
|
|
1006
|
+
[src/Particle.js:1099-1107](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1099-L1107 "Source code on GitHub")
|
|
1007
1007
|
|
|
1008
1008
|
Change username (i.e, email)
|
|
1009
1009
|
|
|
@@ -1021,7 +1021,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1021
1021
|
|
|
1022
1022
|
### changeUserPassword
|
|
1023
1023
|
|
|
1024
|
-
[src/Particle.js:1120-1128](https://github.com/particle-iot/particle-api-js/blob/
|
|
1024
|
+
[src/Particle.js:1120-1128](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1120-L1128 "Source code on GitHub")
|
|
1025
1025
|
|
|
1026
1026
|
Change user's password
|
|
1027
1027
|
|
|
@@ -1039,7 +1039,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1039
1039
|
|
|
1040
1040
|
### listSIMs
|
|
1041
1041
|
|
|
1042
|
-
[src/Particle.js:1144-1148](https://github.com/particle-iot/particle-api-js/blob/
|
|
1042
|
+
[src/Particle.js:1144-1148](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1144-L1148 "Source code on GitHub")
|
|
1043
1043
|
|
|
1044
1044
|
List SIM cards owned by a user or product
|
|
1045
1045
|
|
|
@@ -1060,7 +1060,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1060
1060
|
|
|
1061
1061
|
### getSIMDataUsage
|
|
1062
1062
|
|
|
1063
|
-
[src/Particle.js:1160-1166](https://github.com/particle-iot/particle-api-js/blob/
|
|
1063
|
+
[src/Particle.js:1160-1166](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1160-L1166 "Source code on GitHub")
|
|
1064
1064
|
|
|
1065
1065
|
Get data usage for one SIM card for the current billing period
|
|
1066
1066
|
|
|
@@ -1077,7 +1077,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1077
1077
|
|
|
1078
1078
|
### getFleetDataUsage
|
|
1079
1079
|
|
|
1080
|
-
[src/Particle.js:1177-1184](https://github.com/particle-iot/particle-api-js/blob/
|
|
1080
|
+
[src/Particle.js:1177-1184](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1177-L1184 "Source code on GitHub")
|
|
1081
1081
|
|
|
1082
1082
|
Get data usage for all SIM cards in a product the current billing period
|
|
1083
1083
|
|
|
@@ -1093,7 +1093,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1093
1093
|
|
|
1094
1094
|
### checkSIM
|
|
1095
1095
|
|
|
1096
|
-
[src/Particle.js:1195-1197](https://github.com/particle-iot/particle-api-js/blob/
|
|
1096
|
+
[src/Particle.js:1195-1197](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1195-L1197 "Source code on GitHub")
|
|
1097
1097
|
|
|
1098
1098
|
Check SIM status
|
|
1099
1099
|
|
|
@@ -1109,7 +1109,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1109
1109
|
|
|
1110
1110
|
### activateSIM
|
|
1111
1111
|
|
|
1112
|
-
[src/Particle.js:1211-1221](https://github.com/particle-iot/particle-api-js/blob/
|
|
1112
|
+
[src/Particle.js:1211-1221](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1211-L1221 "Source code on GitHub")
|
|
1113
1113
|
|
|
1114
1114
|
Activate and add SIM cards to an account or product
|
|
1115
1115
|
|
|
@@ -1129,7 +1129,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1129
1129
|
|
|
1130
1130
|
### deactivateSIM
|
|
1131
1131
|
|
|
1132
|
-
[src/Particle.js:1233-1237](https://github.com/particle-iot/particle-api-js/blob/
|
|
1132
|
+
[src/Particle.js:1233-1237](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1233-L1237 "Source code on GitHub")
|
|
1133
1133
|
|
|
1134
1134
|
Deactivate a SIM card so it doesn't incur data usage in future months.
|
|
1135
1135
|
|
|
@@ -1146,7 +1146,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1146
1146
|
|
|
1147
1147
|
### reactivateSIM
|
|
1148
1148
|
|
|
1149
|
-
[src/Particle.js:1250-1254](https://github.com/particle-iot/particle-api-js/blob/
|
|
1149
|
+
[src/Particle.js:1250-1254](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1250-L1254 "Source code on GitHub")
|
|
1150
1150
|
|
|
1151
1151
|
Reactivate a SIM card the was deactivated or unpause a SIM card that was automatically paused
|
|
1152
1152
|
|
|
@@ -1164,7 +1164,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1164
1164
|
|
|
1165
1165
|
### updateSIM
|
|
1166
1166
|
|
|
1167
|
-
[src/Particle.js:1267-1271](https://github.com/particle-iot/particle-api-js/blob/
|
|
1167
|
+
[src/Particle.js:1267-1271](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1267-L1271 "Source code on GitHub")
|
|
1168
1168
|
|
|
1169
1169
|
Update SIM card data limit
|
|
1170
1170
|
|
|
@@ -1182,7 +1182,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1182
1182
|
|
|
1183
1183
|
### removeSIM
|
|
1184
1184
|
|
|
1185
|
-
[src/Particle.js:1283-1286](https://github.com/particle-iot/particle-api-js/blob/
|
|
1185
|
+
[src/Particle.js:1283-1286](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1283-L1286 "Source code on GitHub")
|
|
1186
1186
|
|
|
1187
1187
|
Remove a SIM card from an account so it can be activated by a different account
|
|
1188
1188
|
|
|
@@ -1199,7 +1199,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1199
1199
|
|
|
1200
1200
|
### listBuildTargets
|
|
1201
1201
|
|
|
1202
|
-
[src/Particle.js:1297-1300](https://github.com/particle-iot/particle-api-js/blob/
|
|
1202
|
+
[src/Particle.js:1297-1300](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1297-L1300 "Source code on GitHub")
|
|
1203
1203
|
|
|
1204
1204
|
List valid build targets to be used for compiling
|
|
1205
1205
|
|
|
@@ -1215,7 +1215,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1215
1215
|
|
|
1216
1216
|
### listLibraries
|
|
1217
1217
|
|
|
1218
|
-
[src/Particle.js:1326-1343](https://github.com/particle-iot/particle-api-js/blob/
|
|
1218
|
+
[src/Particle.js:1326-1343](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1326-L1343 "Source code on GitHub")
|
|
1219
1219
|
|
|
1220
1220
|
List firmware libraries
|
|
1221
1221
|
|
|
@@ -1244,7 +1244,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1244
1244
|
|
|
1245
1245
|
### getLibrary
|
|
1246
1246
|
|
|
1247
|
-
[src/Particle.js:1359-1367](https://github.com/particle-iot/particle-api-js/blob/
|
|
1247
|
+
[src/Particle.js:1359-1367](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1359-L1367 "Source code on GitHub")
|
|
1248
1248
|
|
|
1249
1249
|
Get firmware library details
|
|
1250
1250
|
|
|
@@ -1261,7 +1261,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1261
1261
|
|
|
1262
1262
|
### getLibraryVersions
|
|
1263
1263
|
|
|
1264
|
-
[src/Particle.js:1380-1388](https://github.com/particle-iot/particle-api-js/blob/
|
|
1264
|
+
[src/Particle.js:1380-1388](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1380-L1388 "Source code on GitHub")
|
|
1265
1265
|
|
|
1266
1266
|
Firmware library details for each version
|
|
1267
1267
|
|
|
@@ -1279,7 +1279,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1279
1279
|
|
|
1280
1280
|
### contributeLibrary
|
|
1281
1281
|
|
|
1282
|
-
[src/Particle.js:1400-1413](https://github.com/particle-iot/particle-api-js/blob/
|
|
1282
|
+
[src/Particle.js:1400-1413](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1400-L1413 "Source code on GitHub")
|
|
1283
1283
|
|
|
1284
1284
|
Contribute a new library version from a compressed archive
|
|
1285
1285
|
|
|
@@ -1296,7 +1296,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1296
1296
|
|
|
1297
1297
|
### publishLibrary
|
|
1298
1298
|
|
|
1299
|
-
[src/Particle.js:1424-1433](https://github.com/particle-iot/particle-api-js/blob/
|
|
1299
|
+
[src/Particle.js:1424-1433](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1424-L1433 "Source code on GitHub")
|
|
1300
1300
|
|
|
1301
1301
|
Publish the latest version of a library to the public
|
|
1302
1302
|
|
|
@@ -1312,7 +1312,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1312
1312
|
|
|
1313
1313
|
### deleteLibrary
|
|
1314
1314
|
|
|
1315
|
-
[src/Particle.js:1445-1453](https://github.com/particle-iot/particle-api-js/blob/
|
|
1315
|
+
[src/Particle.js:1445-1453](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1445-L1453 "Source code on GitHub")
|
|
1316
1316
|
|
|
1317
1317
|
Delete one version of a library or an entire private library
|
|
1318
1318
|
|
|
@@ -1329,7 +1329,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1329
1329
|
|
|
1330
1330
|
### downloadFile
|
|
1331
1331
|
|
|
1332
|
-
[src/Particle.js:1463-1466](https://github.com/particle-iot/particle-api-js/blob/
|
|
1332
|
+
[src/Particle.js:1463-1466](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1463-L1466 "Source code on GitHub")
|
|
1333
1333
|
|
|
1334
1334
|
Download an external file that may not be on the API
|
|
1335
1335
|
|
|
@@ -1344,7 +1344,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1344
1344
|
|
|
1345
1345
|
### listOAuthClients
|
|
1346
1346
|
|
|
1347
|
-
[src/Particle.js:1477-1480](https://github.com/particle-iot/particle-api-js/blob/
|
|
1347
|
+
[src/Particle.js:1477-1480](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1477-L1480 "Source code on GitHub")
|
|
1348
1348
|
|
|
1349
1349
|
List OAuth client created by the account
|
|
1350
1350
|
|
|
@@ -1360,7 +1360,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1360
1360
|
|
|
1361
1361
|
### createOAuthClient
|
|
1362
1362
|
|
|
1363
|
-
[src/Particle.js:1495-1499](https://github.com/particle-iot/particle-api-js/blob/
|
|
1363
|
+
[src/Particle.js:1495-1499](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1495-L1499 "Source code on GitHub")
|
|
1364
1364
|
|
|
1365
1365
|
Create an OAuth client
|
|
1366
1366
|
|
|
@@ -1380,7 +1380,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1380
1380
|
|
|
1381
1381
|
### updateOAuthClient
|
|
1382
1382
|
|
|
1383
|
-
[src/Particle.js:1513-1517](https://github.com/particle-iot/particle-api-js/blob/
|
|
1383
|
+
[src/Particle.js:1513-1517](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1513-L1517 "Source code on GitHub")
|
|
1384
1384
|
|
|
1385
1385
|
Update an OAuth client
|
|
1386
1386
|
|
|
@@ -1399,7 +1399,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1399
1399
|
|
|
1400
1400
|
### deleteOAuthClient
|
|
1401
1401
|
|
|
1402
|
-
[src/Particle.js:1529-1532](https://github.com/particle-iot/particle-api-js/blob/
|
|
1402
|
+
[src/Particle.js:1529-1532](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1529-L1532 "Source code on GitHub")
|
|
1403
1403
|
|
|
1404
1404
|
Delete an OAuth client
|
|
1405
1405
|
|
|
@@ -1416,7 +1416,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1416
1416
|
|
|
1417
1417
|
### listProducts
|
|
1418
1418
|
|
|
1419
|
-
[src/Particle.js:1542-1544](https://github.com/particle-iot/particle-api-js/blob/
|
|
1419
|
+
[src/Particle.js:1542-1544](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1542-L1544 "Source code on GitHub")
|
|
1420
1420
|
|
|
1421
1421
|
List products the account has access to
|
|
1422
1422
|
|
|
@@ -1431,7 +1431,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1431
1431
|
|
|
1432
1432
|
### getProduct
|
|
1433
1433
|
|
|
1434
|
-
[src/Particle.js:1555-1557](https://github.com/particle-iot/particle-api-js/blob/
|
|
1434
|
+
[src/Particle.js:1555-1557](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1555-L1557 "Source code on GitHub")
|
|
1435
1435
|
|
|
1436
1436
|
Get detailed information about a product
|
|
1437
1437
|
|
|
@@ -1447,7 +1447,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1447
1447
|
|
|
1448
1448
|
### listProductFirmware
|
|
1449
1449
|
|
|
1450
|
-
[src/Particle.js:1568-1570](https://github.com/particle-iot/particle-api-js/blob/
|
|
1450
|
+
[src/Particle.js:1568-1570](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1568-L1570 "Source code on GitHub")
|
|
1451
1451
|
|
|
1452
1452
|
List product firmware versions
|
|
1453
1453
|
|
|
@@ -1463,7 +1463,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1463
1463
|
|
|
1464
1464
|
### uploadProductFirmware
|
|
1465
1465
|
|
|
1466
|
-
[src/Particle.js:1586-1602](https://github.com/particle-iot/particle-api-js/blob/
|
|
1466
|
+
[src/Particle.js:1586-1602](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1586-L1602 "Source code on GitHub")
|
|
1467
1467
|
|
|
1468
1468
|
List product firmware versions
|
|
1469
1469
|
|
|
@@ -1484,7 +1484,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1484
1484
|
|
|
1485
1485
|
### getProductFirmware
|
|
1486
1486
|
|
|
1487
|
-
[src/Particle.js:1614-1621](https://github.com/particle-iot/particle-api-js/blob/
|
|
1487
|
+
[src/Particle.js:1614-1621](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1614-L1621 "Source code on GitHub")
|
|
1488
1488
|
|
|
1489
1489
|
Get information about a product firmware version
|
|
1490
1490
|
|
|
@@ -1501,7 +1501,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1501
1501
|
|
|
1502
1502
|
### updateProductFirmware
|
|
1503
1503
|
|
|
1504
|
-
[src/Particle.js:1635-1638](https://github.com/particle-iot/particle-api-js/blob/
|
|
1504
|
+
[src/Particle.js:1635-1638](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1635-L1638 "Source code on GitHub")
|
|
1505
1505
|
|
|
1506
1506
|
Update information for a product firmware version
|
|
1507
1507
|
|
|
@@ -1520,7 +1520,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1520
1520
|
|
|
1521
1521
|
### downloadProductFirmware
|
|
1522
1522
|
|
|
1523
|
-
[src/Particle.js:1650-1661](https://github.com/particle-iot/particle-api-js/blob/
|
|
1523
|
+
[src/Particle.js:1650-1661](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1650-L1661 "Source code on GitHub")
|
|
1524
1524
|
|
|
1525
1525
|
Download a product firmware binary
|
|
1526
1526
|
|
|
@@ -1537,7 +1537,7 @@ Returns **[Request](https://developer.mozilla.org/en-US/Add-ons/SDK/High-Level_A
|
|
|
1537
1537
|
|
|
1538
1538
|
### releaseProductFirmware
|
|
1539
1539
|
|
|
1540
|
-
[src/Particle.js:1685-1688](https://github.com/particle-iot/particle-api-js/blob/
|
|
1540
|
+
[src/Particle.js:1685-1688](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1685-L1688 "Source code on GitHub")
|
|
1541
1541
|
|
|
1542
1542
|
Release a product firmware version as the default version
|
|
1543
1543
|
|
|
@@ -1554,7 +1554,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1554
1554
|
|
|
1555
1555
|
### listTeamMembers
|
|
1556
1556
|
|
|
1557
|
-
[src/Particle.js:1699-1706](https://github.com/particle-iot/particle-api-js/blob/
|
|
1557
|
+
[src/Particle.js:1699-1706](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1699-L1706 "Source code on GitHub")
|
|
1558
1558
|
|
|
1559
1559
|
List product team members
|
|
1560
1560
|
|
|
@@ -1570,7 +1570,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1570
1570
|
|
|
1571
1571
|
### inviteTeamMember
|
|
1572
1572
|
|
|
1573
|
-
[src/Particle.js:1718-1726](https://github.com/particle-iot/particle-api-js/blob/
|
|
1573
|
+
[src/Particle.js:1718-1726](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1718-L1726 "Source code on GitHub")
|
|
1574
1574
|
|
|
1575
1575
|
Invite Particle user to a product team
|
|
1576
1576
|
|
|
@@ -1587,7 +1587,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1587
1587
|
|
|
1588
1588
|
### removeTeamMember
|
|
1589
1589
|
|
|
1590
|
-
[src/Particle.js:1738-1745](https://github.com/particle-iot/particle-api-js/blob/
|
|
1590
|
+
[src/Particle.js:1738-1745](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1738-L1745 "Source code on GitHub")
|
|
1591
1591
|
|
|
1592
1592
|
Remove Particle user to a product team
|
|
1593
1593
|
|
|
@@ -1604,7 +1604,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1604
1604
|
|
|
1605
1605
|
### lookupSerialNumber
|
|
1606
1606
|
|
|
1607
|
-
[src/Particle.js:1756-1763](https://github.com/particle-iot/particle-api-js/blob/
|
|
1607
|
+
[src/Particle.js:1756-1763](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1756-L1763 "Source code on GitHub")
|
|
1608
1608
|
|
|
1609
1609
|
Fetch details about a serial number
|
|
1610
1610
|
|
|
@@ -1620,7 +1620,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1620
1620
|
|
|
1621
1621
|
### createMeshNetwork
|
|
1622
1622
|
|
|
1623
|
-
[src/Particle.js:1776-1784](https://github.com/particle-iot/particle-api-js/blob/
|
|
1623
|
+
[src/Particle.js:1776-1784](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1776-L1784 "Source code on GitHub")
|
|
1624
1624
|
|
|
1625
1625
|
Create a mesh network
|
|
1626
1626
|
|
|
@@ -1638,7 +1638,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1638
1638
|
|
|
1639
1639
|
### removeMeshNetwork
|
|
1640
1640
|
|
|
1641
|
-
[src/Particle.js:1795-1797](https://github.com/particle-iot/particle-api-js/blob/
|
|
1641
|
+
[src/Particle.js:1795-1797](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1795-L1797 "Source code on GitHub")
|
|
1642
1642
|
|
|
1643
1643
|
Remove a mesh network.
|
|
1644
1644
|
|
|
@@ -1654,7 +1654,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1654
1654
|
|
|
1655
1655
|
### listMeshNetworks
|
|
1656
1656
|
|
|
1657
|
-
[src/Particle.js:1809-1812](https://github.com/particle-iot/particle-api-js/blob/
|
|
1657
|
+
[src/Particle.js:1809-1812](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1809-L1812 "Source code on GitHub")
|
|
1658
1658
|
|
|
1659
1659
|
List all mesh networks
|
|
1660
1660
|
|
|
@@ -1671,7 +1671,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1671
1671
|
|
|
1672
1672
|
### getMeshNetwork
|
|
1673
1673
|
|
|
1674
|
-
[src/Particle.js:1823-1825](https://github.com/particle-iot/particle-api-js/blob/
|
|
1674
|
+
[src/Particle.js:1823-1825](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1823-L1825 "Source code on GitHub")
|
|
1675
1675
|
|
|
1676
1676
|
Get information about a mesh network.
|
|
1677
1677
|
|
|
@@ -1687,7 +1687,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1687
1687
|
|
|
1688
1688
|
### updateMeshNetwork
|
|
1689
1689
|
|
|
1690
|
-
[src/Particle.js:1838-1846](https://github.com/particle-iot/particle-api-js/blob/
|
|
1690
|
+
[src/Particle.js:1838-1846](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1838-L1846 "Source code on GitHub")
|
|
1691
1691
|
|
|
1692
1692
|
Modify a mesh network.
|
|
1693
1693
|
|
|
@@ -1705,7 +1705,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1705
1705
|
|
|
1706
1706
|
### addMeshNetworkDevice
|
|
1707
1707
|
|
|
1708
|
-
[src/Particle.js:1858-1867](https://github.com/particle-iot/particle-api-js/blob/
|
|
1708
|
+
[src/Particle.js:1858-1867](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1858-L1867 "Source code on GitHub")
|
|
1709
1709
|
|
|
1710
1710
|
Add a device to a mesh network.
|
|
1711
1711
|
|
|
@@ -1722,7 +1722,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1722
1722
|
|
|
1723
1723
|
### removeMeshNetworkDevice
|
|
1724
1724
|
|
|
1725
|
-
[src/Particle.js:1879-1895](https://github.com/particle-iot/particle-api-js/blob/
|
|
1725
|
+
[src/Particle.js:1879-1895](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1879-L1895 "Source code on GitHub")
|
|
1726
1726
|
|
|
1727
1727
|
Remove a device from a mesh network.
|
|
1728
1728
|
|
|
@@ -1739,7 +1739,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1739
1739
|
|
|
1740
1740
|
### listMeshNetworkDevices
|
|
1741
1741
|
|
|
1742
|
-
[src/Particle.js:1909-1918](https://github.com/particle-iot/particle-api-js/blob/
|
|
1742
|
+
[src/Particle.js:1909-1918](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1909-L1918 "Source code on GitHub")
|
|
1743
1743
|
|
|
1744
1744
|
List all devices of a mesh network.
|
|
1745
1745
|
|
|
@@ -1758,7 +1758,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1758
1758
|
|
|
1759
1759
|
### getProductConfiguration
|
|
1760
1760
|
|
|
1761
|
-
[src/Particle.js:1929-1936](https://github.com/particle-iot/particle-api-js/blob/
|
|
1761
|
+
[src/Particle.js:1929-1936](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1929-L1936 "Source code on GitHub")
|
|
1762
1762
|
|
|
1763
1763
|
Get product configuration
|
|
1764
1764
|
|
|
@@ -1774,7 +1774,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1774
1774
|
|
|
1775
1775
|
### getProductConfigurationSchema
|
|
1776
1776
|
|
|
1777
|
-
[src/Particle.js:1947-1955](https://github.com/particle-iot/particle-api-js/blob/
|
|
1777
|
+
[src/Particle.js:1947-1955](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1947-L1955 "Source code on GitHub")
|
|
1778
1778
|
|
|
1779
1779
|
Get product configuration schema
|
|
1780
1780
|
|
|
@@ -1790,7 +1790,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1790
1790
|
|
|
1791
1791
|
### getProductDeviceConfiguration
|
|
1792
1792
|
|
|
1793
|
-
[src/Particle.js:1967-1974](https://github.com/particle-iot/particle-api-js/blob/
|
|
1793
|
+
[src/Particle.js:1967-1974](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1967-L1974 "Source code on GitHub")
|
|
1794
1794
|
|
|
1795
1795
|
Get product device's configuration
|
|
1796
1796
|
|
|
@@ -1807,7 +1807,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1807
1807
|
|
|
1808
1808
|
### getProductDeviceConfigurationSchema
|
|
1809
1809
|
|
|
1810
|
-
[src/Particle.js:1986-1994](https://github.com/particle-iot/particle-api-js/blob/
|
|
1810
|
+
[src/Particle.js:1986-1994](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L1986-L1994 "Source code on GitHub")
|
|
1811
1811
|
|
|
1812
1812
|
Get product device's configuration schema
|
|
1813
1813
|
|
|
@@ -1824,7 +1824,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1824
1824
|
|
|
1825
1825
|
### setProductConfiguration
|
|
1826
1826
|
|
|
1827
|
-
[src/Particle.js:2006-2014](https://github.com/particle-iot/particle-api-js/blob/
|
|
1827
|
+
[src/Particle.js:2006-2014](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L2006-L2014 "Source code on GitHub")
|
|
1828
1828
|
|
|
1829
1829
|
Set product configuration
|
|
1830
1830
|
|
|
@@ -1841,7 +1841,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1841
1841
|
|
|
1842
1842
|
### setProductDeviceConfiguration
|
|
1843
1843
|
|
|
1844
|
-
[src/Particle.js:2027-2035](https://github.com/particle-iot/particle-api-js/blob/
|
|
1844
|
+
[src/Particle.js:2027-2035](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L2027-L2035 "Source code on GitHub")
|
|
1845
1845
|
|
|
1846
1846
|
Set product configuration for a specific device within the product
|
|
1847
1847
|
|
|
@@ -1859,7 +1859,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1859
1859
|
|
|
1860
1860
|
### getProductLocations
|
|
1861
1861
|
|
|
1862
|
-
[src/Particle.js:2054-2071](https://github.com/particle-iot/particle-api-js/blob/
|
|
1862
|
+
[src/Particle.js:2054-2071](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L2054-L2071 "Source code on GitHub")
|
|
1863
1863
|
|
|
1864
1864
|
Query location for devices within a product
|
|
1865
1865
|
|
|
@@ -1883,7 +1883,7 @@ Returns **[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe
|
|
|
1883
1883
|
|
|
1884
1884
|
### getProductDeviceLocations
|
|
1885
1885
|
|
|
1886
|
-
[src/Particle.js:2088-2100](https://github.com/particle-iot/particle-api-js/blob/
|
|
1886
|
+
[src/Particle.js:2088-2100](https://github.com/particle-iot/particle-api-js/blob/08155420d0a02f384f9538a85165a68a9f068ca4/src/Particle.js#L2088-L2100 "Source code on GitHub")
|
|
1887
1887
|
|
|
1888
1888
|
Query location for one device within a product
|
|
1889
1889
|
|