@milaboratories/pl-drivers 1.5.10 → 1.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/dist/clients/constructors.d.ts.map +1 -1
  2. package/dist/clients/download.d.ts.map +1 -1
  3. package/dist/clients/logs.d.ts.map +1 -1
  4. package/dist/clients/ls_api.d.ts.map +1 -1
  5. package/dist/clients/progress.d.ts.map +1 -1
  6. package/dist/clients/upload.d.ts.map +1 -1
  7. package/dist/drivers/download_blob.d.ts +2 -2
  8. package/dist/drivers/download_blob.d.ts.map +1 -1
  9. package/dist/drivers/download_blob_task.d.ts +2 -2
  10. package/dist/drivers/download_blob_task.d.ts.map +1 -1
  11. package/dist/drivers/download_blob_url/driver.d.ts +46 -0
  12. package/dist/drivers/download_blob_url/driver.d.ts.map +1 -0
  13. package/dist/drivers/download_blob_url/driver_id.d.ts +6 -0
  14. package/dist/drivers/download_blob_url/driver_id.d.ts.map +1 -0
  15. package/dist/drivers/download_blob_url/snapshot.d.ts +7 -0
  16. package/dist/drivers/download_blob_url/snapshot.d.ts.map +1 -0
  17. package/dist/drivers/download_blob_url/task.d.ts +63 -0
  18. package/dist/drivers/download_blob_url/task.d.ts.map +1 -0
  19. package/dist/drivers/download_blob_url/url.d.ts +6 -0
  20. package/dist/drivers/download_blob_url/url.d.ts.map +1 -0
  21. package/dist/drivers/download_url.d.ts +2 -2
  22. package/dist/drivers/download_url.d.ts.map +1 -1
  23. package/dist/drivers/helpers/download_local_handle.d.ts.map +1 -1
  24. package/dist/drivers/helpers/download_remote_handle.d.ts.map +1 -1
  25. package/dist/drivers/helpers/files_cache.d.ts.map +1 -1
  26. package/dist/drivers/helpers/logs_handle.d.ts +1 -1
  27. package/dist/drivers/helpers/logs_handle.d.ts.map +1 -1
  28. package/dist/drivers/helpers/ls_remote_import_handle.d.ts +1 -1
  29. package/dist/drivers/helpers/ls_remote_import_handle.d.ts.map +1 -1
  30. package/dist/drivers/helpers/ls_storage_entry.d.ts +1 -1
  31. package/dist/drivers/helpers/ls_storage_entry.d.ts.map +1 -1
  32. package/dist/drivers/logs.d.ts +2 -2
  33. package/dist/drivers/logs.d.ts.map +1 -1
  34. package/dist/drivers/logs_stream.d.ts +2 -2
  35. package/dist/drivers/logs_stream.d.ts.map +1 -1
  36. package/dist/drivers/ls.d.ts +1 -1
  37. package/dist/drivers/ls.d.ts.map +1 -1
  38. package/dist/drivers/types.d.ts.map +1 -1
  39. package/dist/drivers/upload.d.ts +1 -1
  40. package/dist/drivers/upload.d.ts.map +1 -1
  41. package/dist/drivers/upload_task.d.ts +1 -1
  42. package/dist/drivers/upload_task.d.ts.map +1 -1
  43. package/dist/drivers/virtual_storages.d.ts.map +1 -1
  44. package/dist/helpers/download.d.ts.map +1 -1
  45. package/dist/index.d.ts +2 -0
  46. package/dist/index.d.ts.map +1 -1
  47. package/dist/index.js +2 -2
  48. package/dist/index.js.map +1 -1
  49. package/dist/index.mjs +2310 -2067
  50. package/dist/index.mjs.map +1 -1
  51. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts.map +1 -1
  52. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts.map +1 -1
  53. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts.map +1 -1
  54. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts.map +1 -1
  55. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts.map +1 -1
  56. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts.map +1 -1
  57. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts.map +1 -1
  58. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.d.ts.map +1 -1
  59. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.d.ts.map +1 -1
  60. package/dist/proto/google/api/http.d.ts +28 -28
  61. package/dist/proto/google/api/http.d.ts.map +1 -1
  62. package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
  63. package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
  64. package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
  65. package/package.json +9 -4
  66. package/src/clients/constructors.ts +11 -11
  67. package/src/clients/download.test.ts +11 -10
  68. package/src/clients/download.ts +15 -14
  69. package/src/clients/logs.ts +13 -12
  70. package/src/clients/ls_api.ts +7 -7
  71. package/src/clients/progress.ts +15 -13
  72. package/src/clients/upload.test.ts +6 -5
  73. package/src/clients/upload.ts +28 -26
  74. package/src/drivers/download_blob.test.ts +21 -20
  75. package/src/drivers/download_blob.ts +47 -42
  76. package/src/drivers/download_blob_task.ts +25 -21
  77. package/src/drivers/download_blob_url/driver.ts +225 -0
  78. package/src/drivers/download_blob_url/driver_id.ts +11 -0
  79. package/src/drivers/download_blob_url/snapshot.ts +20 -0
  80. package/src/drivers/download_blob_url/task.ts +222 -0
  81. package/src/drivers/download_blob_url/url.test.ts +39 -0
  82. package/src/drivers/download_blob_url/url.ts +43 -0
  83. package/src/drivers/download_url.test.ts +3 -3
  84. package/src/drivers/download_url.ts +21 -20
  85. package/src/drivers/helpers/download_local_handle.ts +2 -2
  86. package/src/drivers/helpers/download_remote_handle.ts +8 -8
  87. package/src/drivers/helpers/files_cache.test.ts +7 -6
  88. package/src/drivers/helpers/files_cache.ts +2 -1
  89. package/src/drivers/helpers/helpers.ts +1 -1
  90. package/src/drivers/helpers/logs_handle.ts +7 -7
  91. package/src/drivers/helpers/ls_remote_import_handle.ts +7 -7
  92. package/src/drivers/helpers/ls_storage_entry.ts +6 -5
  93. package/src/drivers/logs.test.ts +23 -22
  94. package/src/drivers/logs.ts +13 -12
  95. package/src/drivers/logs_stream.ts +42 -37
  96. package/src/drivers/ls.test.ts +2 -2
  97. package/src/drivers/ls.ts +38 -35
  98. package/src/drivers/types.ts +12 -11
  99. package/src/drivers/upload.test.ts +19 -17
  100. package/src/drivers/upload.ts +30 -25
  101. package/src/drivers/upload_task.ts +23 -19
  102. package/src/drivers/virtual_storages.ts +6 -6
  103. package/src/helpers/download.ts +8 -8
  104. package/src/index.ts +2 -0
  105. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +4 -4
  106. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +88 -73
  107. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +2 -2
  108. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +71 -56
  109. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +6 -5
  110. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +130 -106
  111. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +14 -10
  112. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +142 -121
  113. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.ts +11 -8
  114. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.ts +216 -174
  115. package/src/proto/google/api/http.ts +95 -86
  116. package/src/proto/google/protobuf/descriptor.ts +674 -593
  117. package/src/proto/google/protobuf/duration.ts +31 -26
  118. package/src/proto/google/protobuf/timestamp.ts +52 -44
@@ -121,31 +121,34 @@ class LsAPI$Type extends MessageType<LsAPI> {
121
121
  constructor() {
122
122
  super('MiLaboratories.Controller.Shared.LsAPI', []);
123
123
  }
124
+
124
125
  create(value?: PartialMessage<LsAPI>): LsAPI {
125
126
  const message = globalThis.Object.create(this.messagePrototype!);
126
127
  if (value !== undefined)
127
128
  reflectionMergePartial<LsAPI>(this, message, value);
128
129
  return message;
129
130
  }
131
+
130
132
  internalBinaryRead(
131
133
  reader: IBinaryReader,
132
134
  length: number,
133
135
  options: BinaryReadOptions,
134
- target?: LsAPI
136
+ target?: LsAPI,
135
137
  ): LsAPI {
136
138
  return target ?? this.create();
137
139
  }
140
+
138
141
  internalBinaryWrite(
139
142
  message: LsAPI,
140
143
  writer: IBinaryWriter,
141
- options: BinaryWriteOptions
144
+ options: BinaryWriteOptions,
142
145
  ): IBinaryWriter {
143
- let u = options.writeUnknownFields;
146
+ const u = options.writeUnknownFields;
144
147
  if (u !== false)
145
148
  (u == true ? UnknownFieldHandler.onWrite : u)(
146
149
  this.typeName,
147
150
  message,
148
- writer
151
+ writer,
149
152
  );
150
153
  return writer;
151
154
  }
@@ -158,21 +161,22 @@ export const LsAPI = new LsAPI$Type();
158
161
  class LsAPI_ListItem$Type extends MessageType<LsAPI_ListItem> {
159
162
  constructor() {
160
163
  super('MiLaboratories.Controller.Shared.LsAPI.ListItem', [
161
- { no: 1, name: 'name', kind: 'scalar', T: 9 /*ScalarType.STRING*/ },
164
+ { no: 1, name: 'name', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
162
165
  {
163
166
  no: 2,
164
167
  name: 'size',
165
168
  kind: 'scalar',
166
- T: 4 /*ScalarType.UINT64*/,
167
- L: 0 /*LongType.BIGINT*/
169
+ T: 4 /* ScalarType.UINT64 */,
170
+ L: 0, /* LongType.BIGINT */
168
171
  },
169
- { no: 3, name: 'is_dir', kind: 'scalar', T: 8 /*ScalarType.BOOL*/ },
170
- { no: 10, name: 'full_name', kind: 'scalar', T: 9 /*ScalarType.STRING*/ },
171
- { no: 11, name: 'directory', kind: 'scalar', T: 9 /*ScalarType.STRING*/ },
172
+ { no: 3, name: 'is_dir', kind: 'scalar', T: 8 /* ScalarType.BOOL */ },
173
+ { no: 10, name: 'full_name', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
174
+ { no: 11, name: 'directory', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
172
175
  { no: 12, name: 'last_modified', kind: 'message', T: () => Timestamp },
173
- { no: 13, name: 'version', kind: 'scalar', T: 9 /*ScalarType.STRING*/ }
176
+ { no: 13, name: 'version', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
174
177
  ]);
175
178
  }
179
+
176
180
  create(value?: PartialMessage<LsAPI_ListItem>): LsAPI_ListItem {
177
181
  const message = globalThis.Object.create(this.messagePrototype!);
178
182
  message.name = '';
@@ -185,16 +189,17 @@ class LsAPI_ListItem$Type extends MessageType<LsAPI_ListItem> {
185
189
  reflectionMergePartial<LsAPI_ListItem>(this, message, value);
186
190
  return message;
187
191
  }
192
+
188
193
  internalBinaryRead(
189
194
  reader: IBinaryReader,
190
195
  length: number,
191
196
  options: BinaryReadOptions,
192
- target?: LsAPI_ListItem
197
+ target?: LsAPI_ListItem,
193
198
  ): LsAPI_ListItem {
194
- let message = target ?? this.create(),
199
+ const message = target ?? this.create(),
195
200
  end = reader.pos + length;
196
201
  while (reader.pos < end) {
197
- let [fieldNo, wireType] = reader.tag();
202
+ const [fieldNo, wireType] = reader.tag();
198
203
  switch (fieldNo) {
199
204
  case /* string name */ 1:
200
205
  message.name = reader.string();
@@ -216,35 +221,36 @@ class LsAPI_ListItem$Type extends MessageType<LsAPI_ListItem> {
216
221
  reader,
217
222
  reader.uint32(),
218
223
  options,
219
- message.lastModified
224
+ message.lastModified,
220
225
  );
221
226
  break;
222
227
  case /* string version */ 13:
223
228
  message.version = reader.string();
224
229
  break;
225
230
  default:
226
- let u = options.readUnknownField;
231
+ const u = options.readUnknownField;
227
232
  if (u === 'throw')
228
233
  throw new globalThis.Error(
229
- `Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`
234
+ `Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`,
230
235
  );
231
- let d = reader.skip(wireType);
236
+ const d = reader.skip(wireType);
232
237
  if (u !== false)
233
238
  (u === true ? UnknownFieldHandler.onRead : u)(
234
239
  this.typeName,
235
240
  message,
236
241
  fieldNo,
237
242
  wireType,
238
- d
243
+ d,
239
244
  );
240
245
  }
241
246
  }
242
247
  return message;
243
248
  }
249
+
244
250
  internalBinaryWrite(
245
251
  message: LsAPI_ListItem,
246
252
  writer: IBinaryWriter,
247
- options: BinaryWriteOptions
253
+ options: BinaryWriteOptions,
248
254
  ): IBinaryWriter {
249
255
  /* string name = 1; */
250
256
  if (message.name !== '')
@@ -266,17 +272,17 @@ class LsAPI_ListItem$Type extends MessageType<LsAPI_ListItem> {
266
272
  Timestamp.internalBinaryWrite(
267
273
  message.lastModified,
268
274
  writer.tag(12, WireType.LengthDelimited).fork(),
269
- options
275
+ options,
270
276
  ).join();
271
277
  /* string version = 13; */
272
278
  if (message.version !== '')
273
279
  writer.tag(13, WireType.LengthDelimited).string(message.version);
274
- let u = options.writeUnknownFields;
280
+ const u = options.writeUnknownFields;
275
281
  if (u !== false)
276
282
  (u == true ? UnknownFieldHandler.onWrite : u)(
277
283
  this.typeName,
278
284
  message,
279
- writer
285
+ writer,
280
286
  );
281
287
  return writer;
282
288
  }
@@ -290,31 +296,34 @@ class LsAPI_List$Type extends MessageType<LsAPI_List> {
290
296
  constructor() {
291
297
  super('MiLaboratories.Controller.Shared.LsAPI.List', []);
292
298
  }
299
+
293
300
  create(value?: PartialMessage<LsAPI_List>): LsAPI_List {
294
301
  const message = globalThis.Object.create(this.messagePrototype!);
295
302
  if (value !== undefined)
296
303
  reflectionMergePartial<LsAPI_List>(this, message, value);
297
304
  return message;
298
305
  }
306
+
299
307
  internalBinaryRead(
300
308
  reader: IBinaryReader,
301
309
  length: number,
302
310
  options: BinaryReadOptions,
303
- target?: LsAPI_List
311
+ target?: LsAPI_List,
304
312
  ): LsAPI_List {
305
313
  return target ?? this.create();
306
314
  }
315
+
307
316
  internalBinaryWrite(
308
317
  message: LsAPI_List,
309
318
  writer: IBinaryWriter,
310
- options: BinaryWriteOptions
319
+ options: BinaryWriteOptions,
311
320
  ): IBinaryWriter {
312
- let u = options.writeUnknownFields;
321
+ const u = options.writeUnknownFields;
313
322
  if (u !== false)
314
323
  (u == true ? UnknownFieldHandler.onWrite : u)(
315
324
  this.typeName,
316
325
  message,
317
- writer
326
+ writer,
318
327
  );
319
328
  return writer;
320
329
  }
@@ -331,12 +340,13 @@ class LsAPI_List_Request$Type extends MessageType<LsAPI_List_Request> {
331
340
  no: 1,
332
341
  name: 'resource_id',
333
342
  kind: 'scalar',
334
- T: 4 /*ScalarType.UINT64*/,
335
- L: 0 /*LongType.BIGINT*/
343
+ T: 4 /* ScalarType.UINT64 */,
344
+ L: 0, /* LongType.BIGINT */
336
345
  },
337
- { no: 2, name: 'location', kind: 'scalar', T: 9 /*ScalarType.STRING*/ }
346
+ { no: 2, name: 'location', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
338
347
  ]);
339
348
  }
349
+
340
350
  create(value?: PartialMessage<LsAPI_List_Request>): LsAPI_List_Request {
341
351
  const message = globalThis.Object.create(this.messagePrototype!);
342
352
  message.resourceId = 0n;
@@ -345,16 +355,17 @@ class LsAPI_List_Request$Type extends MessageType<LsAPI_List_Request> {
345
355
  reflectionMergePartial<LsAPI_List_Request>(this, message, value);
346
356
  return message;
347
357
  }
358
+
348
359
  internalBinaryRead(
349
360
  reader: IBinaryReader,
350
361
  length: number,
351
362
  options: BinaryReadOptions,
352
- target?: LsAPI_List_Request
363
+ target?: LsAPI_List_Request,
353
364
  ): LsAPI_List_Request {
354
- let message = target ?? this.create(),
365
+ const message = target ?? this.create(),
355
366
  end = reader.pos + length;
356
367
  while (reader.pos < end) {
357
- let [fieldNo, wireType] = reader.tag();
368
+ const [fieldNo, wireType] = reader.tag();
358
369
  switch (fieldNo) {
359
370
  case /* uint64 resource_id */ 1:
360
371
  message.resourceId = reader.uint64().toBigInt();
@@ -363,28 +374,29 @@ class LsAPI_List_Request$Type extends MessageType<LsAPI_List_Request> {
363
374
  message.location = reader.string();
364
375
  break;
365
376
  default:
366
- let u = options.readUnknownField;
377
+ const u = options.readUnknownField;
367
378
  if (u === 'throw')
368
379
  throw new globalThis.Error(
369
- `Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`
380
+ `Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`,
370
381
  );
371
- let d = reader.skip(wireType);
382
+ const d = reader.skip(wireType);
372
383
  if (u !== false)
373
384
  (u === true ? UnknownFieldHandler.onRead : u)(
374
385
  this.typeName,
375
386
  message,
376
387
  fieldNo,
377
388
  wireType,
378
- d
389
+ d,
379
390
  );
380
391
  }
381
392
  }
382
393
  return message;
383
394
  }
395
+
384
396
  internalBinaryWrite(
385
397
  message: LsAPI_List_Request,
386
398
  writer: IBinaryWriter,
387
- options: BinaryWriteOptions
399
+ options: BinaryWriteOptions,
388
400
  ): IBinaryWriter {
389
401
  /* uint64 resource_id = 1; */
390
402
  if (message.resourceId !== 0n)
@@ -392,12 +404,12 @@ class LsAPI_List_Request$Type extends MessageType<LsAPI_List_Request> {
392
404
  /* string location = 2; */
393
405
  if (message.location !== '')
394
406
  writer.tag(2, WireType.LengthDelimited).string(message.location);
395
- let u = options.writeUnknownFields;
407
+ const u = options.writeUnknownFields;
396
408
  if (u !== false)
397
409
  (u == true ? UnknownFieldHandler.onWrite : u)(
398
410
  this.typeName,
399
411
  message,
400
- writer
412
+ writer,
401
413
  );
402
414
  return writer;
403
415
  }
@@ -414,12 +426,13 @@ class LsAPI_List_Response$Type extends MessageType<LsAPI_List_Response> {
414
426
  no: 1,
415
427
  name: 'items',
416
428
  kind: 'message',
417
- repeat: 1 /*RepeatType.PACKED*/,
418
- T: () => LsAPI_ListItem
429
+ repeat: 1 /* RepeatType.PACKED */,
430
+ T: () => LsAPI_ListItem,
419
431
  },
420
- { no: 2, name: 'delimiter', kind: 'scalar', T: 9 /*ScalarType.STRING*/ }
432
+ { no: 2, name: 'delimiter', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
421
433
  ]);
422
434
  }
435
+
423
436
  create(value?: PartialMessage<LsAPI_List_Response>): LsAPI_List_Response {
424
437
  const message = globalThis.Object.create(this.messagePrototype!);
425
438
  message.items = [];
@@ -428,65 +441,67 @@ class LsAPI_List_Response$Type extends MessageType<LsAPI_List_Response> {
428
441
  reflectionMergePartial<LsAPI_List_Response>(this, message, value);
429
442
  return message;
430
443
  }
444
+
431
445
  internalBinaryRead(
432
446
  reader: IBinaryReader,
433
447
  length: number,
434
448
  options: BinaryReadOptions,
435
- target?: LsAPI_List_Response
449
+ target?: LsAPI_List_Response,
436
450
  ): LsAPI_List_Response {
437
- let message = target ?? this.create(),
451
+ const message = target ?? this.create(),
438
452
  end = reader.pos + length;
439
453
  while (reader.pos < end) {
440
- let [fieldNo, wireType] = reader.tag();
454
+ const [fieldNo, wireType] = reader.tag();
441
455
  switch (fieldNo) {
442
456
  case /* repeated MiLaboratories.Controller.Shared.LsAPI.ListItem items */ 1:
443
457
  message.items.push(
444
- LsAPI_ListItem.internalBinaryRead(reader, reader.uint32(), options)
458
+ LsAPI_ListItem.internalBinaryRead(reader, reader.uint32(), options),
445
459
  );
446
460
  break;
447
461
  case /* string delimiter */ 2:
448
462
  message.delimiter = reader.string();
449
463
  break;
450
464
  default:
451
- let u = options.readUnknownField;
465
+ const u = options.readUnknownField;
452
466
  if (u === 'throw')
453
467
  throw new globalThis.Error(
454
- `Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`
468
+ `Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`,
455
469
  );
456
- let d = reader.skip(wireType);
470
+ const d = reader.skip(wireType);
457
471
  if (u !== false)
458
472
  (u === true ? UnknownFieldHandler.onRead : u)(
459
473
  this.typeName,
460
474
  message,
461
475
  fieldNo,
462
476
  wireType,
463
- d
477
+ d,
464
478
  );
465
479
  }
466
480
  }
467
481
  return message;
468
482
  }
483
+
469
484
  internalBinaryWrite(
470
485
  message: LsAPI_List_Response,
471
486
  writer: IBinaryWriter,
472
- options: BinaryWriteOptions
487
+ options: BinaryWriteOptions,
473
488
  ): IBinaryWriter {
474
489
  /* repeated MiLaboratories.Controller.Shared.LsAPI.ListItem items = 1; */
475
490
  for (let i = 0; i < message.items.length; i++)
476
491
  LsAPI_ListItem.internalBinaryWrite(
477
492
  message.items[i],
478
493
  writer.tag(1, WireType.LengthDelimited).fork(),
479
- options
494
+ options,
480
495
  ).join();
481
496
  /* string delimiter = 2; */
482
497
  if (message.delimiter !== '')
483
498
  writer.tag(2, WireType.LengthDelimited).string(message.delimiter);
484
- let u = options.writeUnknownFields;
499
+ const u = options.writeUnknownFields;
485
500
  if (u !== false)
486
501
  (u == true ? UnknownFieldHandler.onWrite : u)(
487
502
  this.typeName,
488
503
  message,
489
- writer
504
+ writer,
490
505
  );
491
506
  return writer;
492
507
  }
@@ -499,5 +514,5 @@ export const LsAPI_List_Response = new LsAPI_List_Response$Type();
499
514
  * @generated ServiceType for protobuf service MiLaboratories.Controller.Shared.LS
500
515
  */
501
516
  export const LS = new ServiceType('MiLaboratories.Controller.Shared.LS', [
502
- { name: 'List', options: {}, I: LsAPI_List_Request, O: LsAPI_List_Response }
517
+ { name: 'List', options: {}, I: LsAPI_List_Request, O: LsAPI_List_Response },
503
518
  ]);
@@ -55,7 +55,7 @@ export class ProgressClient implements IProgressClient, ServiceInfo {
55
55
  */
56
56
  getStatus(
57
57
  input: ProgressAPI_GetStatus_Request,
58
- options?: RpcOptions
58
+ options?: RpcOptions,
59
59
  ): UnaryCall<ProgressAPI_GetStatus_Request, ProgressAPI_GetStatus_Response> {
60
60
  const method = this.methods[0],
61
61
  opt = this._transport.mergeOptions(options);
@@ -64,16 +64,17 @@ export class ProgressClient implements IProgressClient, ServiceInfo {
64
64
  ProgressAPI_GetStatus_Response
65
65
  >('unary', this._transport, method, opt, input);
66
66
  }
67
+
67
68
  /**
68
69
  * @generated from protobuf rpc: RealtimeStatus(MiLaboratories.Controller.Shared.ProgressAPI.RealtimeStatus.Request) returns (stream MiLaboratories.Controller.Shared.ProgressAPI.RealtimeStatus.Response);
69
70
  */
70
71
  realtimeStatus(
71
72
  input: ProgressAPI_RealtimeStatus_Request,
72
- options?: RpcOptions
73
+ options?: RpcOptions,
73
74
  ): ServerStreamingCall<
74
- ProgressAPI_RealtimeStatus_Request,
75
- ProgressAPI_RealtimeStatus_Response
76
- > {
75
+ ProgressAPI_RealtimeStatus_Request,
76
+ ProgressAPI_RealtimeStatus_Response
77
+ > {
77
78
  const method = this.methods[1],
78
79
  opt = this._transport.mergeOptions(options);
79
80
  return stackIntercept<