@@ -2208,7 +2208,7 @@ class Particle {
2208
2208
* @param {Object } [options.headers] Key/Value pairs like `{ 'X-FOO': 'foo', X-BAR: 'bar' }` to send as headers.
2209
2209
* @param {Object } [options.context] Request context.
2210
2210
*
2211
- * @returns {Promise<{body: {block : ResponseBlock[]}, statusCode: int}> } A promise that resolves to an array of logic block data.
2211
+ * @returns {Promise<{body: {blocks : ResponseBlock[]}, statusCode: int}> } A promise that resolves to an array of logic block data.
2212
2212
*/
2213
2213
listLogicBlocks ( { auth, org, headers, context } ) {
2214
2214
return this . get ( {
@@ -2229,7 +2229,7 @@ class Particle {
2229
2229
* @param {Object } [options.headers] Key/Value pairs like `{ 'X-FOO': 'foo', X-BAR: 'bar' }` to send as headers.
2230
2230
* @param {Object } [options.context] Request context
2231
2231
*
2232
- * @returns {Promise<{body: {blocks : BlockRun[]}, statusCode: int}> } A promise that resolves to an array of block run data.
2232
+ * @returns {Promise<{body: {block_runs : BlockRun[]}, statusCode: int}> } A promise that resolves to an array of block run data.
2233
2233
*/
2234
2234
listBlockRuns ( { auth, org, blockId, headers, context } ) {
2235
2235
return this . get ( {
@@ -2251,7 +2251,7 @@ class Particle {
2251
2251
* @param {Object } [options.headers] Key/Value pairs like `{ 'X-FOO': 'foo', X-BAR: 'bar' }` to send as headers.
2252
2252
* @param {Object } [options.context] Request context
2253
2253
*
2254
- * @returns {Promise<{body: {block_runs : BlockRun[] }, statusCode: int}> } A promise that resolves to an array of block run data for the specified block run ID.
2254
+ * @returns {Promise<{body: {block_run : BlockRun}, statusCode: int}> } A promise that resolves to an array of block run data for the specified block run ID.
2255
2255
*/
2256
2256
getBlockRun ( { auth, org, blockId, runId, headers, context } ) {
2257
2257
return this . get ( {
@@ -2469,7 +2469,7 @@ class Particle {
2469
2469
* @param {Object } [options.headers] Key/Value pairs like `{ 'X-FOO': 'foo', X-BAR: 'bar' }` to send as headers.
2470
2470
* @param {Object } [options.context] Request context.
2471
2471
*
2472
- * @returns {Promise<{body: {instance : ResponseLedgerInstance[]}, statusCode: int}> } A promise that resolves to an array of ledger instance data.
2472
+ * @returns {Promise<{body: {instances : ResponseLedgerInstance[]}, statusCode: int}> } A promise that resolves to an array of ledger instance data.
2473
2473
*/
2474
2474
listLedgerInstances ( { auth, org, ledgerName, headers, context } ) {
2475
2475
return this . get ( {
0 commit comments