@milaboratories/pl-client 2.11.3 → 2.11.5

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 (65) hide show
  1. package/dist/core/transaction.d.ts +2 -1
  2. package/dist/core/transaction.d.ts.map +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +1377 -1173
  6. package/dist/index.mjs.map +1 -1
  7. package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +3 -3
  8. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts +4 -4
  9. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts.map +1 -1
  10. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts +16 -16
  11. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts.map +1 -1
  12. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts +2 -2
  13. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts +11 -11
  14. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts +8 -8
  15. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts.map +1 -1
  16. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts +22 -22
  17. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts.map +1 -1
  18. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts +10 -10
  19. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +25 -25
  20. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +50 -50
  21. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +415 -304
  22. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -1
  23. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts +70 -66
  24. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts.map +1 -1
  25. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts +4 -4
  26. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +16 -16
  27. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +30 -30
  28. package/dist/proto/google/api/http.d.ts +93 -89
  29. package/dist/proto/google/api/http.d.ts.map +1 -1
  30. package/dist/proto/google/protobuf/any.d.ts +2 -2
  31. package/dist/proto/google/protobuf/descriptor.d.ts +1298 -1151
  32. package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
  33. package/dist/proto/google/protobuf/duration.d.ts +2 -2
  34. package/dist/proto/google/protobuf/struct.d.ts +10 -8
  35. package/dist/proto/google/protobuf/struct.d.ts.map +1 -1
  36. package/dist/proto/google/protobuf/timestamp.d.ts +2 -2
  37. package/dist/proto/google/protobuf/wrappers.d.ts +36 -9
  38. package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
  39. package/package.json +3 -3
  40. package/src/core/ll_client.test.ts +3 -3
  41. package/src/core/ll_transaction.test.ts +4 -4
  42. package/src/core/transaction.ts +2 -0
  43. package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +5 -5
  44. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +23 -24
  45. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +232 -247
  46. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +3 -3
  47. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +13 -13
  48. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +35 -37
  49. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +375 -399
  50. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +11 -11
  51. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +26 -26
  52. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +51 -51
  53. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +687 -418
  54. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +113 -101
  55. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +5 -5
  56. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +17 -17
  57. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +50 -50
  58. package/src/proto/google/api/http.ts +290 -295
  59. package/src/proto/google/protobuf/any.ts +3 -3
  60. package/src/proto/google/protobuf/descriptor.ts +3235 -3123
  61. package/src/proto/google/protobuf/duration.ts +3 -3
  62. package/src/proto/google/protobuf/empty.ts +1 -1
  63. package/src/proto/google/protobuf/struct.ts +13 -11
  64. package/src/proto/google/protobuf/timestamp.ts +3 -3
  65. package/src/proto/google/protobuf/wrappers.ts +48 -14
@@ -127,7 +127,7 @@ export interface TxAPI {
127
127
  */
128
128
  export interface TxAPI_ClientMessage {
129
129
  /**
130
- * @generated from protobuf field: uint32 request_id = 1;
130
+ * @generated from protobuf field: uint32 request_id = 1
131
131
  */
132
132
  requestId: number;
133
133
  /**
@@ -136,319 +136,325 @@ export interface TxAPI_ClientMessage {
136
136
  request: {
137
137
  oneofKind: "txOpen";
138
138
  /**
139
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Request tx_open = 11;
139
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Request tx_open = 11
140
140
  */
141
141
  txOpen: TxAPI_Open_Request;
142
142
  } | {
143
143
  oneofKind: "txCommit";
144
144
  /**
145
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Commit.Request tx_commit = 12;
145
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Commit.Request tx_commit = 12
146
146
  */
147
147
  txCommit: TxAPI_Commit_Request;
148
148
  } | {
149
149
  oneofKind: "txDiscard";
150
150
  /**
151
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Discard.Request tx_discard = 13;
151
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Discard.Request tx_discard = 13
152
152
  */
153
153
  txDiscard: TxAPI_Discard_Request;
154
154
  } | {
155
155
  oneofKind: "resourceCreateRoot";
156
156
  /**
157
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateRoot.Request resource_create_root = 58;
157
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateRoot.Request resource_create_root = 58
158
158
  */
159
159
  resourceCreateRoot: ResourceAPI_CreateRoot_Request;
160
160
  } | {
161
161
  oneofKind: "resourceRemove";
162
162
  /**
163
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Remove.Request resource_remove = 57;
163
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Remove.Request resource_remove = 57
164
164
  */
165
165
  resourceRemove: ResourceAPI_Remove_Request;
166
166
  } | {
167
167
  oneofKind: "resourceCreateStruct";
168
168
  /**
169
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateStruct.Request resource_create_struct = 51;
169
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateStruct.Request resource_create_struct = 51
170
170
  */
171
171
  resourceCreateStruct: ResourceAPI_CreateStruct_Request;
172
172
  } | {
173
173
  oneofKind: "resourceCreateEphemeral";
174
174
  /**
175
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateEphemeral.Request resource_create_ephemeral = 62;
175
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateEphemeral.Request resource_create_ephemeral = 62
176
176
  */
177
177
  resourceCreateEphemeral: ResourceAPI_CreateEphemeral_Request;
178
178
  } | {
179
179
  oneofKind: "resourceCreateValue";
180
180
  /**
181
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateValue.Request resource_create_value = 52;
181
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateValue.Request resource_create_value = 52
182
182
  */
183
183
  resourceCreateValue: ResourceAPI_CreateValue_Request;
184
184
  } | {
185
185
  oneofKind: "resourceGetValueId";
186
186
  /**
187
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetValueID.Request resource_get_value_id = 63;
187
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetValueID.Request resource_get_value_id = 63
188
188
  */
189
189
  resourceGetValueId: ResourceAPI_GetValueID_Request;
190
190
  } | {
191
191
  oneofKind: "resourceCreateSingleton";
192
192
  /**
193
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateSingleton.Request resource_create_singleton = 64;
193
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateSingleton.Request resource_create_singleton = 64
194
194
  */
195
195
  resourceCreateSingleton: ResourceAPI_CreateSingleton_Request;
196
196
  } | {
197
197
  oneofKind: "resourceGetSingleton";
198
198
  /**
199
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetSingleton.Request resource_get_singleton = 65;
199
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetSingleton.Request resource_get_singleton = 65
200
200
  */
201
201
  resourceGetSingleton: ResourceAPI_GetSingleton_Request;
202
202
  } | {
203
203
  oneofKind: "resourceCreateChild";
204
204
  /**
205
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateChild.Request resource_create_child = 59;
205
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateChild.Request resource_create_child = 59
206
206
  */
207
207
  resourceCreateChild: ResourceAPI_CreateChild_Request;
208
208
  } | {
209
209
  oneofKind: "resourceLockInputs";
210
210
  /**
211
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockInputs.Request resource_lock_inputs = 53;
211
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockInputs.Request resource_lock_inputs = 53
212
212
  */
213
213
  resourceLockInputs: ResourceAPI_LockInputs_Request;
214
214
  } | {
215
215
  oneofKind: "resourceLockOutputs";
216
216
  /**
217
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockOutputs.Request resource_lock_outputs = 56;
217
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockOutputs.Request resource_lock_outputs = 56
218
218
  */
219
219
  resourceLockOutputs: ResourceAPI_LockOutputs_Request;
220
220
  } | {
221
221
  oneofKind: "resourceExists";
222
222
  /**
223
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Exists.Request resource_exists = 54;
223
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Exists.Request resource_exists = 54
224
224
  */
225
225
  resourceExists: ResourceAPI_Exists_Request;
226
226
  } | {
227
227
  oneofKind: "resourceGet";
228
228
  /**
229
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Get.Request resource_get = 55;
229
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Get.Request resource_get = 55
230
230
  */
231
231
  resourceGet: ResourceAPI_Get_Request;
232
232
  } | {
233
233
  oneofKind: "resourceSetError";
234
234
  /**
235
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.SetError.Request resource_set_error = 61;
235
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.SetError.Request resource_set_error = 61
236
236
  */
237
237
  resourceSetError: ResourceAPI_SetError_Request;
238
238
  } | {
239
239
  oneofKind: "resourceListByType";
240
240
  /**
241
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.List.ByType.Request resource_list_by_type = 60;
241
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.List.ByType.Request resource_list_by_type = 60
242
242
  */
243
243
  resourceListByType: ResourceAPI_List_ByType_Request;
244
244
  } | {
245
245
  oneofKind: "resourceNameSet";
246
246
  /**
247
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Set.Request resource_name_set = 66;
247
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Set.Request resource_name_set = 66
248
248
  */
249
249
  resourceNameSet: ResourceAPI_Name_Set_Request;
250
250
  } | {
251
251
  oneofKind: "resourceNameGet";
252
252
  /**
253
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Get.Request resource_name_get = 67;
253
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Get.Request resource_name_get = 67
254
254
  */
255
255
  resourceNameGet: ResourceAPI_Name_Get_Request;
256
256
  } | {
257
257
  oneofKind: "resourceNameExists";
258
258
  /**
259
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Exists.Request resource_name_exists = 68;
259
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Exists.Request resource_name_exists = 68
260
260
  */
261
261
  resourceNameExists: ResourceAPI_Name_Exists_Request;
262
262
  } | {
263
263
  oneofKind: "resourceNameDelete";
264
264
  /**
265
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Delete.Request resource_name_delete = 69;
265
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Delete.Request resource_name_delete = 69
266
266
  */
267
267
  resourceNameDelete: ResourceAPI_Name_Delete_Request;
268
268
  } | {
269
269
  oneofKind: "resourceTree";
270
270
  /**
271
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Request resource_tree = 70;
271
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Request resource_tree = 70
272
272
  */
273
273
  resourceTree: ResourceAPI_Tree_Request;
274
+ } | {
275
+ oneofKind: "resourceTreeSize";
276
+ /**
277
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.TreeSize.Request resource_tree_size = 71
278
+ */
279
+ resourceTreeSize: ResourceAPI_TreeSize_Request;
274
280
  } | {
275
281
  oneofKind: "fieldCreate";
276
282
  /**
277
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Create.Request field_create = 101;
283
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Create.Request field_create = 101
278
284
  */
279
285
  fieldCreate: FieldAPI_Create_Request;
280
286
  } | {
281
287
  oneofKind: "fieldExists";
282
288
  /**
283
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Exists.Request field_exists = 107;
289
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Exists.Request field_exists = 107
284
290
  */
285
291
  fieldExists: FieldAPI_Exists_Request;
286
292
  } | {
287
293
  oneofKind: "fieldSet";
288
294
  /**
289
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Set.Request field_set = 102;
295
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Set.Request field_set = 102
290
296
  */
291
297
  fieldSet: FieldAPI_Set_Request;
292
298
  } | {
293
299
  oneofKind: "fieldSetError";
294
300
  /**
295
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.SetError.Request field_set_error = 105;
301
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.SetError.Request field_set_error = 105
296
302
  */
297
303
  fieldSetError: FieldAPI_SetError_Request;
298
304
  } | {
299
305
  oneofKind: "fieldGet";
300
306
  /**
301
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Get.Request field_get = 103;
307
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Get.Request field_get = 103
302
308
  */
303
309
  fieldGet: FieldAPI_Get_Request;
304
310
  } | {
305
311
  oneofKind: "fieldReset";
306
312
  /**
307
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Reset.Request field_reset = 104;
313
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Reset.Request field_reset = 104
308
314
  */
309
315
  fieldReset: FieldAPI_Reset_Request;
310
316
  } | {
311
317
  oneofKind: "fieldRemove";
312
318
  /**
313
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Remove.Request field_remove = 106;
319
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Remove.Request field_remove = 106
314
320
  */
315
321
  fieldRemove: FieldAPI_Remove_Request;
316
322
  } | {
317
323
  oneofKind: "fieldList";
318
324
  /**
319
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.List.Request field_list = 108;
325
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.List.Request field_list = 108
320
326
  */
321
327
  fieldList: FieldAPI_List_Request;
322
328
  } | {
323
329
  oneofKind: "subscriptionCreate";
324
330
  /**
325
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateSubscription.Request subscription_create = 111;
331
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateSubscription.Request subscription_create = 111
326
332
  */
327
333
  subscriptionCreate: SubscriptionAPI_CreateSubscription_Request;
328
334
  } | {
329
335
  oneofKind: "subscriptionAttachFilter";
330
336
  /**
331
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.AttachFilter.Request subscription_attach_filter = 112;
337
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.AttachFilter.Request subscription_attach_filter = 112
332
338
  */
333
339
  subscriptionAttachFilter: SubscriptionAPI_AttachFilter_Request;
334
340
  } | {
335
341
  oneofKind: "subscriptionDetachFilter";
336
342
  /**
337
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.DetachFilter.Request subscription_detach_filter = 113;
343
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.DetachFilter.Request subscription_detach_filter = 113
338
344
  */
339
345
  subscriptionDetachFilter: SubscriptionAPI_DetachFilter_Request;
340
346
  } | {
341
347
  oneofKind: "subscriptionCreateFilter";
342
348
  /**
343
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateFilter.Request subscription_create_filter = 115;
349
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateFilter.Request subscription_create_filter = 115
344
350
  */
345
351
  subscriptionCreateFilter: SubscriptionAPI_CreateFilter_Request;
346
352
  } | {
347
353
  oneofKind: "notificationGet";
348
354
  /**
349
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Get.Request notification_get = 154;
355
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Get.Request notification_get = 154
350
356
  */
351
357
  notificationGet: NotificationAPI_Get_Request;
352
358
  } | {
353
359
  oneofKind: "notificationAck";
354
360
  /**
355
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Ack.Request notification_ack = 155;
361
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Ack.Request notification_ack = 155
356
362
  */
357
363
  notificationAck: NotificationAPI_Ack_Request;
358
364
  } | {
359
365
  oneofKind: "notificationDiscard";
360
366
  /**
361
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Discard.Request notification_discard = 156;
367
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Discard.Request notification_discard = 156
362
368
  */
363
369
  notificationDiscard: NotificationAPI_Discard_Request;
364
370
  } | {
365
371
  oneofKind: "resourceKeyValueSet";
366
372
  /**
367
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Set.Request resource_key_value_set = 200;
373
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Set.Request resource_key_value_set = 200
368
374
  */
369
375
  resourceKeyValueSet: ResourceKVAPI_Set_Request;
370
376
  } | {
371
377
  oneofKind: "resourceKeyValueGet";
372
378
  /**
373
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Get.Request resource_key_value_get = 201;
379
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Get.Request resource_key_value_get = 201
374
380
  */
375
381
  resourceKeyValueGet: ResourceKVAPI_Get_Request;
376
382
  } | {
377
383
  oneofKind: "resourceKeyValueGetIfExists";
378
384
  /**
379
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetIfExists.Request resource_key_value_get_if_exists = 202;
385
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetIfExists.Request resource_key_value_get_if_exists = 202
380
386
  */
381
387
  resourceKeyValueGetIfExists: ResourceKVAPI_GetIfExists_Request;
382
388
  } | {
383
389
  oneofKind: "resourceKeyValueSetFlag";
384
390
  /**
385
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.SetFlag.Request resource_key_value_set_flag = 203;
391
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.SetFlag.Request resource_key_value_set_flag = 203
386
392
  */
387
393
  resourceKeyValueSetFlag: ResourceKVAPI_SetFlag_Request;
388
394
  } | {
389
395
  oneofKind: "resourceKeyValueGetFlag";
390
396
  /**
391
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Request resource_key_value_get_flag = 204;
397
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Request resource_key_value_get_flag = 204
392
398
  */
393
399
  resourceKeyValueGetFlag: ResourceKVAPI_GetFlag_Request;
394
400
  } | {
395
401
  oneofKind: "resourceKeyValueGetFlagIfExists";
396
402
  /**
397
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Request resource_key_value_get_flag_if_exists = 205;
403
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Request resource_key_value_get_flag_if_exists = 205
398
404
  */
399
405
  resourceKeyValueGetFlagIfExists: ResourceKVAPI_GetFlag_Request;
400
406
  } | {
401
407
  oneofKind: "resourceKeyValueDelete";
402
408
  /**
403
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Delete.Request resource_key_value_delete = 206;
409
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Delete.Request resource_key_value_delete = 206
404
410
  */
405
411
  resourceKeyValueDelete: ResourceKVAPI_Delete_Request;
406
412
  } | {
407
413
  oneofKind: "resourceKeyValueList";
408
414
  /**
409
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Request resource_key_value_list = 207;
415
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Request resource_key_value_list = 207
410
416
  */
411
417
  resourceKeyValueList: ResourceKVAPI_List_Request;
412
418
  } | {
413
419
  oneofKind: "controllerKeyValueSet";
414
420
  /**
415
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Set.Request controller_key_value_set = 250;
421
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Set.Request controller_key_value_set = 250
416
422
  */
417
423
  controllerKeyValueSet: ControllerKVAPI_Set_Request;
418
424
  } | {
419
425
  oneofKind: "controllerKeyValueGet";
420
426
  /**
421
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Get.Request controller_key_value_get = 251;
427
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Get.Request controller_key_value_get = 251
422
428
  */
423
429
  controllerKeyValueGet: ControllerKVAPI_Get_Request;
424
430
  } | {
425
431
  oneofKind: "controllerKeyValueGetIfExists";
426
432
  /**
427
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.GetIfExists.Request controller_key_value_get_if_exists = 252;
433
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.GetIfExists.Request controller_key_value_get_if_exists = 252
428
434
  */
429
435
  controllerKeyValueGetIfExists: ControllerKVAPI_GetIfExists_Request;
430
436
  } | {
431
437
  oneofKind: "cacheSetToField";
432
438
  /**
433
- * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.SetToField.Request cache_set_to_field = 300;
439
+ * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.SetToField.Request cache_set_to_field = 300
434
440
  */
435
441
  cacheSetToField: CacheAPI_SetToField_Request;
436
442
  } | {
437
443
  oneofKind: "cacheDeleteExpiredRecords";
438
444
  /**
439
- * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.DeleteExpiredRecords.Request cache_delete_expired_records = 301;
445
+ * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.DeleteExpiredRecords.Request cache_delete_expired_records = 301
440
446
  */
441
447
  cacheDeleteExpiredRecords: CacheAPI_DeleteExpiredRecords_Request;
442
448
  } | {
443
449
  oneofKind: "controllerFeaturesSet";
444
450
  /**
445
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.SetFeatures.Request controller_features_set = 350;
451
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.SetFeatures.Request controller_features_set = 350
446
452
  */
447
453
  controllerFeaturesSet: ControllerAPI_SetFeatures_Request;
448
454
  } | {
449
455
  oneofKind: "controllerFeaturesClear";
450
456
  /**
451
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.ClearFeatures.Request controller_features_clear = 351;
457
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.ClearFeatures.Request controller_features_clear = 351
452
458
  */
453
459
  controllerFeaturesClear: ControllerAPI_ClearFeatures_Request;
454
460
  } | {
@@ -460,14 +466,14 @@ export interface TxAPI_ClientMessage {
460
466
  */
461
467
  export interface TxAPI_ServerMessage {
462
468
  /**
463
- * @generated from protobuf field: uint32 request_id = 1;
469
+ * @generated from protobuf field: uint32 request_id = 1
464
470
  */
465
471
  requestId: number;
466
472
  /**
467
473
  * Additional response message info for multi-message responses.
468
474
  * Is always empty in single-message responses.
469
475
  *
470
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.ServerMessage.Multi multi_message = 2;
476
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.ServerMessage.Multi multi_message = 2
471
477
  */
472
478
  multiMessage?: TxAPI_ServerMessage_Multi;
473
479
  /**
@@ -476,326 +482,332 @@ export interface TxAPI_ServerMessage {
476
482
  response: {
477
483
  oneofKind: "txOpen";
478
484
  /**
479
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Response tx_open = 11;
485
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Response tx_open = 11
480
486
  */
481
487
  txOpen: TxAPI_Open_Response;
482
488
  } | {
483
489
  oneofKind: "txCommit";
484
490
  /**
485
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Commit.Response tx_commit = 12;
491
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Commit.Response tx_commit = 12
486
492
  */
487
493
  txCommit: TxAPI_Commit_Response;
488
494
  } | {
489
495
  oneofKind: "txDiscard";
490
496
  /**
491
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Discard.Response tx_discard = 13;
497
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Discard.Response tx_discard = 13
492
498
  */
493
499
  txDiscard: TxAPI_Discard_Response;
494
500
  } | {
495
501
  oneofKind: "resourceCreateRoot";
496
502
  /**
497
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateRoot.Response resource_create_root = 58;
503
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateRoot.Response resource_create_root = 58
498
504
  */
499
505
  resourceCreateRoot: ResourceAPI_CreateRoot_Response;
500
506
  } | {
501
507
  oneofKind: "resourceRemove";
502
508
  /**
503
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Remove.Response resource_remove = 57;
509
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Remove.Response resource_remove = 57
504
510
  */
505
511
  resourceRemove: ResourceAPI_Remove_Response;
506
512
  } | {
507
513
  oneofKind: "resourceCreateStruct";
508
514
  /**
509
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateStruct.Response resource_create_struct = 51;
515
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateStruct.Response resource_create_struct = 51
510
516
  */
511
517
  resourceCreateStruct: ResourceAPI_CreateStruct_Response;
512
518
  } | {
513
519
  oneofKind: "resourceCreateEphemeral";
514
520
  /**
515
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateEphemeral.Response resource_create_ephemeral = 62;
521
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateEphemeral.Response resource_create_ephemeral = 62
516
522
  */
517
523
  resourceCreateEphemeral: ResourceAPI_CreateEphemeral_Response;
518
524
  } | {
519
525
  oneofKind: "resourceCreateValue";
520
526
  /**
521
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateValue.Response resource_create_value = 52;
527
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateValue.Response resource_create_value = 52
522
528
  */
523
529
  resourceCreateValue: ResourceAPI_CreateValue_Response;
524
530
  } | {
525
531
  oneofKind: "resourceGetValueId";
526
532
  /**
527
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetValueID.Response resource_get_value_id = 63;
533
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetValueID.Response resource_get_value_id = 63
528
534
  */
529
535
  resourceGetValueId: ResourceAPI_GetValueID_Response;
530
536
  } | {
531
537
  oneofKind: "resourceCreateSingleton";
532
538
  /**
533
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateSingleton.Response resource_create_singleton = 64;
539
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateSingleton.Response resource_create_singleton = 64
534
540
  */
535
541
  resourceCreateSingleton: ResourceAPI_CreateSingleton_Response;
536
542
  } | {
537
543
  oneofKind: "resourceGetSingleton";
538
544
  /**
539
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetSingleton.Response resource_get_singleton = 65;
545
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetSingleton.Response resource_get_singleton = 65
540
546
  */
541
547
  resourceGetSingleton: ResourceAPI_GetSingleton_Response;
542
548
  } | {
543
549
  oneofKind: "resourceCreateChild";
544
550
  /**
545
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateChild.Response resource_create_child = 59;
551
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateChild.Response resource_create_child = 59
546
552
  */
547
553
  resourceCreateChild: ResourceAPI_CreateChild_Response;
548
554
  } | {
549
555
  oneofKind: "resourceLockInputs";
550
556
  /**
551
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockInputs.Response resource_lock_inputs = 53;
557
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockInputs.Response resource_lock_inputs = 53
552
558
  */
553
559
  resourceLockInputs: ResourceAPI_LockInputs_Response;
554
560
  } | {
555
561
  oneofKind: "resourceLockOutputs";
556
562
  /**
557
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockOutputs.Response resource_lock_outputs = 56;
563
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockOutputs.Response resource_lock_outputs = 56
558
564
  */
559
565
  resourceLockOutputs: ResourceAPI_LockOutputs_Response;
560
566
  } | {
561
567
  oneofKind: "resourceExists";
562
568
  /**
563
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Exists.Response resource_exists = 54;
569
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Exists.Response resource_exists = 54
564
570
  */
565
571
  resourceExists: ResourceAPI_Exists_Response;
566
572
  } | {
567
573
  oneofKind: "resourceGet";
568
574
  /**
569
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Get.Response resource_get = 55;
575
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Get.Response resource_get = 55
570
576
  */
571
577
  resourceGet: ResourceAPI_Get_Response;
572
578
  } | {
573
579
  oneofKind: "resourceSetError";
574
580
  /**
575
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.SetError.Response resource_set_error = 61;
581
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.SetError.Response resource_set_error = 61
576
582
  */
577
583
  resourceSetError: ResourceAPI_SetError_Response;
578
584
  } | {
579
585
  oneofKind: "resourceListByType";
580
586
  /**
581
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.List.ByType.Response resource_list_by_type = 60;
587
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.List.ByType.Response resource_list_by_type = 60
582
588
  */
583
589
  resourceListByType: ResourceAPI_List_ByType_Response;
584
590
  } | {
585
591
  oneofKind: "resourceNameSet";
586
592
  /**
587
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Set.Response resource_name_set = 66;
593
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Set.Response resource_name_set = 66
588
594
  */
589
595
  resourceNameSet: ResourceAPI_Name_Set_Response;
590
596
  } | {
591
597
  oneofKind: "resourceNameGet";
592
598
  /**
593
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Get.Response resource_name_get = 67;
599
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Get.Response resource_name_get = 67
594
600
  */
595
601
  resourceNameGet: ResourceAPI_Name_Get_Response;
596
602
  } | {
597
603
  oneofKind: "resourceNameExists";
598
604
  /**
599
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Exists.Response resource_name_exists = 68;
605
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Exists.Response resource_name_exists = 68
600
606
  */
601
607
  resourceNameExists: ResourceAPI_Name_Exists_Response;
602
608
  } | {
603
609
  oneofKind: "resourceNameDelete";
604
610
  /**
605
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Delete.Response resource_name_delete = 69;
611
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Delete.Response resource_name_delete = 69
606
612
  */
607
613
  resourceNameDelete: ResourceAPI_Name_Delete_Response;
608
614
  } | {
609
615
  oneofKind: "resourceTree";
610
616
  /**
611
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Response resource_tree = 70;
617
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Response resource_tree = 70
612
618
  */
613
619
  resourceTree: ResourceAPI_Tree_Response;
620
+ } | {
621
+ oneofKind: "resourceTreeSize";
622
+ /**
623
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.TreeSize.Response resource_tree_size = 71
624
+ */
625
+ resourceTreeSize: ResourceAPI_TreeSize_Response;
614
626
  } | {
615
627
  oneofKind: "fieldCreate";
616
628
  /**
617
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Create.Response field_create = 101;
629
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Create.Response field_create = 101
618
630
  */
619
631
  fieldCreate: FieldAPI_Create_Response;
620
632
  } | {
621
633
  oneofKind: "fieldExists";
622
634
  /**
623
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Exists.Response field_exists = 107;
635
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Exists.Response field_exists = 107
624
636
  */
625
637
  fieldExists: FieldAPI_Exists_Response;
626
638
  } | {
627
639
  oneofKind: "fieldSet";
628
640
  /**
629
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Set.Response field_set = 102;
641
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Set.Response field_set = 102
630
642
  */
631
643
  fieldSet: FieldAPI_Set_Response;
632
644
  } | {
633
645
  oneofKind: "fieldSetError";
634
646
  /**
635
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.SetError.Response field_set_error = 105;
647
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.SetError.Response field_set_error = 105
636
648
  */
637
649
  fieldSetError: FieldAPI_SetError_Response;
638
650
  } | {
639
651
  oneofKind: "fieldGet";
640
652
  /**
641
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Get.Response field_get = 103;
653
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Get.Response field_get = 103
642
654
  */
643
655
  fieldGet: FieldAPI_Get_Response;
644
656
  } | {
645
657
  oneofKind: "fieldReset";
646
658
  /**
647
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Reset.Response field_reset = 104;
659
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Reset.Response field_reset = 104
648
660
  */
649
661
  fieldReset: FieldAPI_Reset_Response;
650
662
  } | {
651
663
  oneofKind: "fieldRemove";
652
664
  /**
653
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Remove.Response field_remove = 106;
665
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Remove.Response field_remove = 106
654
666
  */
655
667
  fieldRemove: FieldAPI_Remove_Response;
656
668
  } | {
657
669
  oneofKind: "fieldList";
658
670
  /**
659
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.List.Response field_list = 108;
671
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.List.Response field_list = 108
660
672
  */
661
673
  fieldList: FieldAPI_List_Response;
662
674
  } | {
663
675
  oneofKind: "subscriptionCreate";
664
676
  /**
665
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateSubscription.Response subscription_create = 111;
677
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateSubscription.Response subscription_create = 111
666
678
  */
667
679
  subscriptionCreate: SubscriptionAPI_CreateSubscription_Response;
668
680
  } | {
669
681
  oneofKind: "subscriptionCreateFilter";
670
682
  /**
671
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateFilter.Response subscription_create_filter = 115;
683
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateFilter.Response subscription_create_filter = 115
672
684
  */
673
685
  subscriptionCreateFilter: SubscriptionAPI_CreateFilter_Response;
674
686
  } | {
675
687
  oneofKind: "subscriptionAttachFilter";
676
688
  /**
677
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.AttachFilter.Response subscription_attach_filter = 112;
689
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.AttachFilter.Response subscription_attach_filter = 112
678
690
  */
679
691
  subscriptionAttachFilter: SubscriptionAPI_AttachFilter_Response;
680
692
  } | {
681
693
  oneofKind: "subscriptionDetachFilter";
682
694
  /**
683
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.DetachFilter.Response subscription_detach_filter = 113;
695
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.DetachFilter.Response subscription_detach_filter = 113
684
696
  */
685
697
  subscriptionDetachFilter: SubscriptionAPI_DetachFilter_Response;
686
698
  } | {
687
699
  oneofKind: "notificationGet";
688
700
  /**
689
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Get.Response notification_get = 154;
701
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Get.Response notification_get = 154
690
702
  */
691
703
  notificationGet: NotificationAPI_Get_Response;
692
704
  } | {
693
705
  oneofKind: "notificationAck";
694
706
  /**
695
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Ack.Response notification_ack = 155;
707
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Ack.Response notification_ack = 155
696
708
  */
697
709
  notificationAck: NotificationAPI_Ack_Response;
698
710
  } | {
699
711
  oneofKind: "notificationDiscard";
700
712
  /**
701
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Discard.Response notification_discard = 156;
713
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Discard.Response notification_discard = 156
702
714
  */
703
715
  notificationDiscard: NotificationAPI_Discard_Response;
704
716
  } | {
705
717
  oneofKind: "resourceKeyValueSet";
706
718
  /**
707
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Set.Response resource_key_value_set = 200;
719
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Set.Response resource_key_value_set = 200
708
720
  */
709
721
  resourceKeyValueSet: ResourceKVAPI_Set_Response;
710
722
  } | {
711
723
  oneofKind: "resourceKeyValueGet";
712
724
  /**
713
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Get.Response resource_key_value_get = 201;
725
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Get.Response resource_key_value_get = 201
714
726
  */
715
727
  resourceKeyValueGet: ResourceKVAPI_Get_Response;
716
728
  } | {
717
729
  oneofKind: "resourceKeyValueGetIfExists";
718
730
  /**
719
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetIfExists.Response resource_key_value_get_if_exists = 202;
731
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetIfExists.Response resource_key_value_get_if_exists = 202
720
732
  */
721
733
  resourceKeyValueGetIfExists: ResourceKVAPI_GetIfExists_Response;
722
734
  } | {
723
735
  oneofKind: "resourceKeyValueSetFlag";
724
736
  /**
725
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.SetFlag.Response resource_key_value_set_flag = 203;
737
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.SetFlag.Response resource_key_value_set_flag = 203
726
738
  */
727
739
  resourceKeyValueSetFlag: ResourceKVAPI_SetFlag_Response;
728
740
  } | {
729
741
  oneofKind: "resourceKeyValueGetFlag";
730
742
  /**
731
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Response resource_key_value_get_flag = 204;
743
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Response resource_key_value_get_flag = 204
732
744
  */
733
745
  resourceKeyValueGetFlag: ResourceKVAPI_GetFlag_Response;
734
746
  } | {
735
747
  oneofKind: "resourceKeyValueGetFlagIfExists";
736
748
  /**
737
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Response resource_key_value_get_flag_if_exists = 205;
749
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Response resource_key_value_get_flag_if_exists = 205
738
750
  */
739
751
  resourceKeyValueGetFlagIfExists: ResourceKVAPI_GetFlag_Response;
740
752
  } | {
741
753
  oneofKind: "resourceKeyValueDelete";
742
754
  /**
743
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Delete.Response resource_key_value_delete = 206;
755
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Delete.Response resource_key_value_delete = 206
744
756
  */
745
757
  resourceKeyValueDelete: ResourceKVAPI_Delete_Response;
746
758
  } | {
747
759
  oneofKind: "resourceKeyValueList";
748
760
  /**
749
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Response resource_key_value_list = 207;
761
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Response resource_key_value_list = 207
750
762
  */
751
763
  resourceKeyValueList: ResourceKVAPI_List_Response;
752
764
  } | {
753
765
  oneofKind: "controllerKeyValueSet";
754
766
  /**
755
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Set.Response controller_key_value_set = 250;
767
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Set.Response controller_key_value_set = 250
756
768
  */
757
769
  controllerKeyValueSet: ControllerKVAPI_Set_Response;
758
770
  } | {
759
771
  oneofKind: "controllerKeyValueGet";
760
772
  /**
761
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Get.Response controller_key_value_get = 251;
773
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Get.Response controller_key_value_get = 251
762
774
  */
763
775
  controllerKeyValueGet: ControllerKVAPI_Get_Response;
764
776
  } | {
765
777
  oneofKind: "controllerKeyValueGetIfExists";
766
778
  /**
767
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.GetIfExists.Response controller_key_value_get_if_exists = 252;
779
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.GetIfExists.Response controller_key_value_get_if_exists = 252
768
780
  */
769
781
  controllerKeyValueGetIfExists: ControllerKVAPI_GetIfExists_Response;
770
782
  } | {
771
783
  oneofKind: "cacheSetToField";
772
784
  /**
773
- * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.SetToField.Response cache_set_to_field = 300;
785
+ * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.SetToField.Response cache_set_to_field = 300
774
786
  */
775
787
  cacheSetToField: CacheAPI_SetToField_Response;
776
788
  } | {
777
789
  oneofKind: "cacheDeleteExpiredRecords";
778
790
  /**
779
- * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.DeleteExpiredRecords.Response cache_delete_expired_records = 301;
791
+ * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.DeleteExpiredRecords.Response cache_delete_expired_records = 301
780
792
  */
781
793
  cacheDeleteExpiredRecords: CacheAPI_DeleteExpiredRecords_Response;
782
794
  } | {
783
795
  oneofKind: "controllerFeaturesSet";
784
796
  /**
785
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.SetFeatures.Response controller_features_set = 350;
797
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.SetFeatures.Response controller_features_set = 350
786
798
  */
787
799
  controllerFeaturesSet: ControllerAPI_SetFeatures_Response;
788
800
  } | {
789
801
  oneofKind: "controllerFeaturesClear";
790
802
  /**
791
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.ClearFeatures.Response controller_features_clear = 351;
803
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.ClearFeatures.Response controller_features_clear = 351
792
804
  */
793
805
  controllerFeaturesClear: ControllerAPI_ClearFeatures_Response;
794
806
  } | {
795
807
  oneofKind: undefined;
796
808
  };
797
809
  /**
798
- * @generated from protobuf field: google.rpc.Status error = 3;
810
+ * @generated from protobuf field: google.rpc.Status error = 3
799
811
  */
800
812
  error?: Status;
801
813
  }
@@ -810,14 +822,14 @@ export interface TxAPI_ServerMessage_Multi {
810
822
  * In that case, the server responses to the client with many messages, each having
811
823
  * the same <request_id> value and different <message_id> values.
812
824
  *
813
- * @generated from protobuf field: uint32 id = 1;
825
+ * @generated from protobuf field: uint32 id = 1
814
826
  */
815
827
  id: number;
816
828
  /**
817
829
  * Sign of the last message in multi-message response.
818
830
  * Helps to wrap multi-message responses into iterators on client side.
819
831
  *
820
- * @generated from protobuf field: bool is_last = 2;
832
+ * @generated from protobuf field: bool is_last = 2
821
833
  */
822
834
  isLast: boolean;
823
835
  /**
@@ -825,7 +837,7 @@ export interface TxAPI_ServerMessage_Multi {
825
837
  * (like listing of empty directory). In that case client still has to know that the request was
826
838
  * handled and the empty result is OK.
827
839
  *
828
- * @generated from protobuf field: bool is_empty = 3;
840
+ * @generated from protobuf field: bool is_empty = 3
829
841
  */
830
842
  isEmpty: boolean;
831
843
  }
@@ -839,13 +851,17 @@ export interface TxAPI_Open {
839
851
  */
840
852
  export interface TxAPI_Open_Request {
841
853
  /**
842
- * @generated from protobuf field: string name = 1;
854
+ * @generated from protobuf field: string name = 1
843
855
  */
844
856
  name: string;
845
857
  /**
846
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Request.WritableTx writable = 2;
858
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Request.WritableTx writable = 2
847
859
  */
848
860
  writable: TxAPI_Open_Request_WritableTx;
861
+ /**
862
+ * @generated from protobuf field: bool enableFormattedErrors = 3
863
+ */
864
+ enableFormattedErrors: boolean;
849
865
  }
850
866
  /**
851
867
  * @generated from protobuf enum MiLaboratories.PL.API.TxAPI.Open.Request.WritableTx
@@ -869,7 +885,7 @@ export declare enum TxAPI_Open_Request_WritableTx {
869
885
  */
870
886
  export interface TxAPI_Open_Response {
871
887
  /**
872
- * @generated from protobuf field: MiLaboratories.PL.API.Tx tx = 1;
888
+ * @generated from protobuf field: MiLaboratories.PL.API.Tx tx = 1
873
889
  */
874
890
  tx?: Tx;
875
891
  }
@@ -888,7 +904,7 @@ export interface TxAPI_Commit_Request {
888
904
  */
889
905
  export interface TxAPI_Commit_Response {
890
906
  /**
891
- * @generated from protobuf field: bool success = 1;
907
+ * @generated from protobuf field: bool success = 1
892
908
  */
893
909
  success: boolean;
894
910
  }
@@ -917,7 +933,7 @@ export interface TxAPI_Sync {
917
933
  */
918
934
  export interface TxAPI_Sync_Request {
919
935
  /**
920
- * @generated from protobuf field: uint64 tx_id = 1;
936
+ * @generated from protobuf field: uint64 tx_id = 1
921
937
  */
922
938
  txId: bigint;
923
939
  }
@@ -941,15 +957,15 @@ export interface ResourceAPI_CreateStruct {
941
957
  */
942
958
  export interface ResourceAPI_CreateStruct_Request {
943
959
  /**
944
- * @generated from protobuf field: uint64 id = 2;
960
+ * @generated from protobuf field: uint64 id = 2
945
961
  */
946
962
  id: bigint;
947
963
  /**
948
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
964
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3
949
965
  */
950
966
  type?: ResourceType;
951
967
  /**
952
- * @generated from protobuf field: optional bytes data = 4;
968
+ * @generated from protobuf field: optional bytes data = 4
953
969
  */
954
970
  data?: Uint8Array;
955
971
  }
@@ -958,7 +974,7 @@ export interface ResourceAPI_CreateStruct_Request {
958
974
  */
959
975
  export interface ResourceAPI_CreateStruct_Response {
960
976
  /**
961
- * @generated from protobuf field: uint64 resource_id = 1;
977
+ * @generated from protobuf field: uint64 resource_id = 1
962
978
  */
963
979
  resourceId: bigint;
964
980
  }
@@ -972,15 +988,15 @@ export interface ResourceAPI_CreateEphemeral {
972
988
  */
973
989
  export interface ResourceAPI_CreateEphemeral_Request {
974
990
  /**
975
- * @generated from protobuf field: uint64 id = 2;
991
+ * @generated from protobuf field: uint64 id = 2
976
992
  */
977
993
  id: bigint;
978
994
  /**
979
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
995
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3
980
996
  */
981
997
  type?: ResourceType;
982
998
  /**
983
- * @generated from protobuf field: optional bytes data = 4;
999
+ * @generated from protobuf field: optional bytes data = 4
984
1000
  */
985
1001
  data?: Uint8Array;
986
1002
  }
@@ -989,7 +1005,7 @@ export interface ResourceAPI_CreateEphemeral_Request {
989
1005
  */
990
1006
  export interface ResourceAPI_CreateEphemeral_Response {
991
1007
  /**
992
- * @generated from protobuf field: uint64 resource_id = 1;
1008
+ * @generated from protobuf field: uint64 resource_id = 1
993
1009
  */
994
1010
  resourceId: bigint;
995
1011
  }
@@ -1003,15 +1019,15 @@ export interface ResourceAPI_CreateChild {
1003
1019
  */
1004
1020
  export interface ResourceAPI_CreateChild_Request {
1005
1021
  /**
1006
- * @generated from protobuf field: uint64 id = 1;
1022
+ * @generated from protobuf field: uint64 id = 1
1007
1023
  */
1008
1024
  id: bigint;
1009
1025
  /**
1010
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 2;
1026
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 2
1011
1027
  */
1012
1028
  type?: ResourceType;
1013
1029
  /**
1014
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef parent_field = 3;
1030
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef parent_field = 3
1015
1031
  */
1016
1032
  parentField?: FieldRef;
1017
1033
  }
@@ -1020,7 +1036,7 @@ export interface ResourceAPI_CreateChild_Request {
1020
1036
  */
1021
1037
  export interface ResourceAPI_CreateChild_Response {
1022
1038
  /**
1023
- * @generated from protobuf field: uint64 resource_id = 1;
1039
+ * @generated from protobuf field: uint64 resource_id = 1
1024
1040
  */
1025
1041
  resourceId: bigint;
1026
1042
  }
@@ -1034,19 +1050,19 @@ export interface ResourceAPI_CreateValue {
1034
1050
  */
1035
1051
  export interface ResourceAPI_CreateValue_Request {
1036
1052
  /**
1037
- * @generated from protobuf field: uint64 id = 2;
1053
+ * @generated from protobuf field: uint64 id = 2
1038
1054
  */
1039
1055
  id: bigint;
1040
1056
  /**
1041
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1057
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3
1042
1058
  */
1043
1059
  type?: ResourceType;
1044
1060
  /**
1045
- * @generated from protobuf field: bytes data = 6;
1061
+ * @generated from protobuf field: bytes data = 6
1046
1062
  */
1047
1063
  data: Uint8Array;
1048
1064
  /**
1049
- * @generated from protobuf field: bool error_if_exists = 7;
1065
+ * @generated from protobuf field: bool error_if_exists = 7
1050
1066
  */
1051
1067
  errorIfExists: boolean;
1052
1068
  }
@@ -1055,7 +1071,7 @@ export interface ResourceAPI_CreateValue_Request {
1055
1071
  */
1056
1072
  export interface ResourceAPI_CreateValue_Response {
1057
1073
  /**
1058
- * @generated from protobuf field: uint64 resource_id = 1;
1074
+ * @generated from protobuf field: uint64 resource_id = 1
1059
1075
  */
1060
1076
  resourceId: bigint;
1061
1077
  }
@@ -1069,11 +1085,11 @@ export interface ResourceAPI_GetValueID {
1069
1085
  */
1070
1086
  export interface ResourceAPI_GetValueID_Request {
1071
1087
  /**
1072
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1;
1088
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1
1073
1089
  */
1074
1090
  type?: ResourceType;
1075
1091
  /**
1076
- * @generated from protobuf field: bytes data = 2;
1092
+ * @generated from protobuf field: bytes data = 2
1077
1093
  */
1078
1094
  data: Uint8Array;
1079
1095
  }
@@ -1082,7 +1098,7 @@ export interface ResourceAPI_GetValueID_Request {
1082
1098
  */
1083
1099
  export interface ResourceAPI_GetValueID_Response {
1084
1100
  /**
1085
- * @generated from protobuf field: uint64 resource_id = 1;
1101
+ * @generated from protobuf field: uint64 resource_id = 1
1086
1102
  */
1087
1103
  resourceId: bigint;
1088
1104
  }
@@ -1096,19 +1112,19 @@ export interface ResourceAPI_CreateSingleton {
1096
1112
  */
1097
1113
  export interface ResourceAPI_CreateSingleton_Request {
1098
1114
  /**
1099
- * @generated from protobuf field: uint64 id = 2;
1115
+ * @generated from protobuf field: uint64 id = 2
1100
1116
  */
1101
1117
  id: bigint;
1102
1118
  /**
1103
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1119
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3
1104
1120
  */
1105
1121
  type?: ResourceType;
1106
1122
  /**
1107
- * @generated from protobuf field: bytes data = 6;
1123
+ * @generated from protobuf field: bytes data = 6
1108
1124
  */
1109
1125
  data: Uint8Array;
1110
1126
  /**
1111
- * @generated from protobuf field: bool error_if_exists = 7;
1127
+ * @generated from protobuf field: bool error_if_exists = 7
1112
1128
  */
1113
1129
  errorIfExists: boolean;
1114
1130
  }
@@ -1117,7 +1133,7 @@ export interface ResourceAPI_CreateSingleton_Request {
1117
1133
  */
1118
1134
  export interface ResourceAPI_CreateSingleton_Response {
1119
1135
  /**
1120
- * @generated from protobuf field: uint64 resource_id = 1;
1136
+ * @generated from protobuf field: uint64 resource_id = 1
1121
1137
  */
1122
1138
  resourceId: bigint;
1123
1139
  }
@@ -1131,15 +1147,15 @@ export interface ResourceAPI_GetSingleton {
1131
1147
  */
1132
1148
  export interface ResourceAPI_GetSingleton_Request {
1133
1149
  /**
1134
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1;
1150
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1
1135
1151
  */
1136
1152
  type?: ResourceType;
1137
1153
  /**
1138
- * @generated from protobuf field: bytes data = 2;
1154
+ * @generated from protobuf field: bytes data = 2
1139
1155
  */
1140
1156
  data: Uint8Array;
1141
1157
  /**
1142
- * @generated from protobuf field: bool load_fields = 3;
1158
+ * @generated from protobuf field: bool load_fields = 3
1143
1159
  */
1144
1160
  loadFields: boolean;
1145
1161
  }
@@ -1148,7 +1164,7 @@ export interface ResourceAPI_GetSingleton_Request {
1148
1164
  */
1149
1165
  export interface ResourceAPI_GetSingleton_Response {
1150
1166
  /**
1151
- * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1167
+ * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1
1152
1168
  */
1153
1169
  resource?: Resource;
1154
1170
  }
@@ -1162,7 +1178,7 @@ export interface ResourceAPI_LockInputs {
1162
1178
  */
1163
1179
  export interface ResourceAPI_LockInputs_Request {
1164
1180
  /**
1165
- * @generated from protobuf field: uint64 resource_id = 1;
1181
+ * @generated from protobuf field: uint64 resource_id = 1
1166
1182
  */
1167
1183
  resourceId: bigint;
1168
1184
  }
@@ -1181,7 +1197,7 @@ export interface ResourceAPI_LockOutputs {
1181
1197
  */
1182
1198
  export interface ResourceAPI_LockOutputs_Request {
1183
1199
  /**
1184
- * @generated from protobuf field: uint64 resource_id = 1;
1200
+ * @generated from protobuf field: uint64 resource_id = 1
1185
1201
  */
1186
1202
  resourceId: bigint;
1187
1203
  }
@@ -1200,7 +1216,7 @@ export interface ResourceAPI_Exists {
1200
1216
  */
1201
1217
  export interface ResourceAPI_Exists_Request {
1202
1218
  /**
1203
- * @generated from protobuf field: uint64 resource_id = 1;
1219
+ * @generated from protobuf field: uint64 resource_id = 1
1204
1220
  */
1205
1221
  resourceId: bigint;
1206
1222
  }
@@ -1209,7 +1225,7 @@ export interface ResourceAPI_Exists_Request {
1209
1225
  */
1210
1226
  export interface ResourceAPI_Exists_Response {
1211
1227
  /**
1212
- * @generated from protobuf field: bool exists = 1;
1228
+ * @generated from protobuf field: bool exists = 1
1213
1229
  */
1214
1230
  exists: boolean;
1215
1231
  }
@@ -1223,11 +1239,11 @@ export interface ResourceAPI_SetError {
1223
1239
  */
1224
1240
  export interface ResourceAPI_SetError_Request {
1225
1241
  /**
1226
- * @generated from protobuf field: uint64 resource_id = 1;
1242
+ * @generated from protobuf field: uint64 resource_id = 1
1227
1243
  */
1228
1244
  resourceId: bigint;
1229
1245
  /**
1230
- * @generated from protobuf field: uint64 error_resource_id = 2;
1246
+ * @generated from protobuf field: uint64 error_resource_id = 2
1231
1247
  */
1232
1248
  errorResourceId: bigint;
1233
1249
  }
@@ -1246,11 +1262,11 @@ export interface ResourceAPI_Get {
1246
1262
  */
1247
1263
  export interface ResourceAPI_Get_Request {
1248
1264
  /**
1249
- * @generated from protobuf field: uint64 resource_id = 1;
1265
+ * @generated from protobuf field: uint64 resource_id = 1
1250
1266
  */
1251
1267
  resourceId: bigint;
1252
1268
  /**
1253
- * @generated from protobuf field: bool load_fields = 2;
1269
+ * @generated from protobuf field: bool load_fields = 2
1254
1270
  */
1255
1271
  loadFields: boolean;
1256
1272
  }
@@ -1259,7 +1275,7 @@ export interface ResourceAPI_Get_Request {
1259
1275
  */
1260
1276
  export interface ResourceAPI_Get_Response {
1261
1277
  /**
1262
- * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1278
+ * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1
1263
1279
  */
1264
1280
  resource?: Resource;
1265
1281
  }
@@ -1278,20 +1294,47 @@ export interface ResourceAPI_List_ByType {
1278
1294
  */
1279
1295
  export interface ResourceAPI_List_ByType_Request {
1280
1296
  /**
1281
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 1;
1297
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 1
1282
1298
  */
1283
1299
  resourceType?: ResourceType;
1300
+ /**
1301
+ * Non-zero value makes API to limit its responses count to at most
1302
+ * <limit> number of items.
1303
+ * Zero value makes API to return all available items.
1304
+ *
1305
+ * @generated from protobuf field: uint32 limit = 3
1306
+ */
1307
+ limit: number;
1308
+ /**
1309
+ * Start listing from given resource ID (not including this resource ID itself)
1310
+ * After == 100 means listing will NOT contain resources with ID = 100 and lower.
1311
+ *
1312
+ * @generated from protobuf field: uint64 after = 6
1313
+ */
1314
+ after: bigint;
1315
+ /**
1316
+ * True value makes API to return original resources instead of duplicates.
1317
+ *
1318
+ * @generated from protobuf field: bool resolve_duplicates = 4
1319
+ */
1320
+ resolveDuplicates: boolean;
1321
+ /**
1322
+ * Load fields for each resource in list.
1323
+ *
1324
+ * @generated from protobuf field: bool load_fields = 5
1325
+ */
1326
+ loadFields: boolean;
1284
1327
  }
1285
1328
  /**
1329
+ * Multi-message
1330
+ *
1286
1331
  * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.List.ByType.Response
1287
1332
  */
1288
1333
  export interface ResourceAPI_List_ByType_Response {
1289
1334
  /**
1290
- * @generated from protobuf field: map<uint64, MiLaboratories.PL.API.Resource> resources = 1;
1335
+ * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1
1291
1336
  */
1292
- resources: {
1293
- [key: string]: Resource;
1294
- };
1337
+ resource?: Resource;
1295
1338
  }
1296
1339
  /**
1297
1340
  * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.CreateRoot
@@ -1303,11 +1346,11 @@ export interface ResourceAPI_CreateRoot {
1303
1346
  */
1304
1347
  export interface ResourceAPI_CreateRoot_Request {
1305
1348
  /**
1306
- * @generated from protobuf field: uint64 id = 2;
1349
+ * @generated from protobuf field: uint64 id = 2
1307
1350
  */
1308
1351
  id: bigint;
1309
1352
  /**
1310
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1353
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3
1311
1354
  */
1312
1355
  type?: ResourceType;
1313
1356
  }
@@ -1316,7 +1359,7 @@ export interface ResourceAPI_CreateRoot_Request {
1316
1359
  */
1317
1360
  export interface ResourceAPI_CreateRoot_Response {
1318
1361
  /**
1319
- * @generated from protobuf field: uint64 resource_id = 1;
1362
+ * @generated from protobuf field: uint64 resource_id = 1
1320
1363
  */
1321
1364
  resourceId: bigint;
1322
1365
  }
@@ -1332,7 +1375,7 @@ export interface ResourceAPI_Remove {
1332
1375
  */
1333
1376
  export interface ResourceAPI_Remove_Request {
1334
1377
  /**
1335
- * @generated from protobuf field: uint64 id = 1;
1378
+ * @generated from protobuf field: uint64 id = 1
1336
1379
  */
1337
1380
  id: bigint;
1338
1381
  }
@@ -1356,11 +1399,11 @@ export interface ResourceAPI_Name_Set {
1356
1399
  */
1357
1400
  export interface ResourceAPI_Name_Set_Request {
1358
1401
  /**
1359
- * @generated from protobuf field: uint64 resource_id = 1;
1402
+ * @generated from protobuf field: uint64 resource_id = 1
1360
1403
  */
1361
1404
  resourceId: bigint;
1362
1405
  /**
1363
- * @generated from protobuf field: string name = 2;
1406
+ * @generated from protobuf field: string name = 2
1364
1407
  */
1365
1408
  name: string;
1366
1409
  }
@@ -1379,7 +1422,7 @@ export interface ResourceAPI_Name_Get {
1379
1422
  */
1380
1423
  export interface ResourceAPI_Name_Get_Request {
1381
1424
  /**
1382
- * @generated from protobuf field: string name = 1;
1425
+ * @generated from protobuf field: string name = 1
1383
1426
  */
1384
1427
  name: string;
1385
1428
  }
@@ -1388,7 +1431,7 @@ export interface ResourceAPI_Name_Get_Request {
1388
1431
  */
1389
1432
  export interface ResourceAPI_Name_Get_Response {
1390
1433
  /**
1391
- * @generated from protobuf field: uint64 resource_id = 1;
1434
+ * @generated from protobuf field: uint64 resource_id = 1
1392
1435
  */
1393
1436
  resourceId: bigint;
1394
1437
  }
@@ -1402,7 +1445,7 @@ export interface ResourceAPI_Name_Exists {
1402
1445
  */
1403
1446
  export interface ResourceAPI_Name_Exists_Request {
1404
1447
  /**
1405
- * @generated from protobuf field: string name = 1;
1448
+ * @generated from protobuf field: string name = 1
1406
1449
  */
1407
1450
  name: string;
1408
1451
  }
@@ -1411,7 +1454,7 @@ export interface ResourceAPI_Name_Exists_Request {
1411
1454
  */
1412
1455
  export interface ResourceAPI_Name_Exists_Response {
1413
1456
  /**
1414
- * @generated from protobuf field: bool exists = 1;
1457
+ * @generated from protobuf field: bool exists = 1
1415
1458
  */
1416
1459
  exists: boolean;
1417
1460
  }
@@ -1425,7 +1468,7 @@ export interface ResourceAPI_Name_Delete {
1425
1468
  */
1426
1469
  export interface ResourceAPI_Name_Delete_Request {
1427
1470
  /**
1428
- * @generated from protobuf field: string name = 1;
1471
+ * @generated from protobuf field: string name = 1
1429
1472
  */
1430
1473
  name: string;
1431
1474
  }
@@ -1444,7 +1487,7 @@ export interface ResourceAPI_Tree {
1444
1487
  */
1445
1488
  export interface ResourceAPI_Tree_Request {
1446
1489
  /**
1447
- * @generated from protobuf field: uint64 resource_id = 1;
1490
+ * @generated from protobuf field: uint64 resource_id = 1
1448
1491
  */
1449
1492
  resourceId: bigint;
1450
1493
  /**
@@ -1455,7 +1498,7 @@ export interface ResourceAPI_Tree_Request {
1455
1498
  * 0 value makes API to return only single resource <resource_id> and is actually
1456
1499
  * equal to Get.Request
1457
1500
  *
1458
- * @generated from protobuf field: optional uint32 max_depth = 2;
1501
+ * @generated from protobuf field: optional uint32 max_depth = 2
1459
1502
  */
1460
1503
  maxDepth?: number;
1461
1504
  }
@@ -1466,10 +1509,40 @@ export interface ResourceAPI_Tree_Request {
1466
1509
  */
1467
1510
  export interface ResourceAPI_Tree_Response {
1468
1511
  /**
1469
- * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1512
+ * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1
1470
1513
  */
1471
1514
  resource?: Resource;
1472
1515
  }
1516
+ /**
1517
+ * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.TreeSize
1518
+ */
1519
+ export interface ResourceAPI_TreeSize {
1520
+ }
1521
+ /**
1522
+ * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.TreeSize.Request
1523
+ */
1524
+ export interface ResourceAPI_TreeSize_Request {
1525
+ /**
1526
+ * @generated from protobuf field: uint64 resource_id = 1
1527
+ */
1528
+ resourceId: bigint;
1529
+ }
1530
+ /**
1531
+ * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.TreeSize.Response
1532
+ */
1533
+ export interface ResourceAPI_TreeSize_Response {
1534
+ /**
1535
+ * size of all tree resources in bytes
1536
+ * could change between call regarding compression algorithm
1537
+ *
1538
+ * @generated from protobuf field: uint64 size = 1
1539
+ */
1540
+ size: bigint;
1541
+ /**
1542
+ * @generated from protobuf field: uint64 resource_count = 2
1543
+ */
1544
+ resourceCount: bigint;
1545
+ }
1473
1546
  /**
1474
1547
  * @generated from protobuf message MiLaboratories.PL.API.FieldAPI
1475
1548
  */
@@ -1485,13 +1558,13 @@ export interface FieldAPI_Create {
1485
1558
  */
1486
1559
  export interface FieldAPI_Create_Request {
1487
1560
  /**
1488
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldType type = 1;
1561
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldType type = 1
1489
1562
  */
1490
1563
  type: FieldType;
1491
1564
  /**
1492
1565
  * field ID is always combination of parent resource ID and field name
1493
1566
  *
1494
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 2;
1567
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 2
1495
1568
  */
1496
1569
  id?: FieldRef;
1497
1570
  }
@@ -1500,7 +1573,7 @@ export interface FieldAPI_Create_Request {
1500
1573
  */
1501
1574
  export interface FieldAPI_Create_Response {
1502
1575
  /**
1503
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef global_id = 1;
1576
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef global_id = 1
1504
1577
  */
1505
1578
  globalId?: FieldRef;
1506
1579
  }
@@ -1514,7 +1587,7 @@ export interface FieldAPI_Exists {
1514
1587
  */
1515
1588
  export interface FieldAPI_Exists_Request {
1516
1589
  /**
1517
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1590
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1
1518
1591
  */
1519
1592
  field?: FieldRef;
1520
1593
  }
@@ -1523,7 +1596,7 @@ export interface FieldAPI_Exists_Request {
1523
1596
  */
1524
1597
  export interface FieldAPI_Exists_Response {
1525
1598
  /**
1526
- * @generated from protobuf field: bool exists = 1;
1599
+ * @generated from protobuf field: bool exists = 1
1527
1600
  */
1528
1601
  exists: boolean;
1529
1602
  }
@@ -1537,11 +1610,11 @@ export interface FieldAPI_Set {
1537
1610
  */
1538
1611
  export interface FieldAPI_Set_Request {
1539
1612
  /**
1540
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1613
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1
1541
1614
  */
1542
1615
  field?: FieldRef;
1543
1616
  /**
1544
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef value = 2;
1617
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef value = 2
1545
1618
  */
1546
1619
  value?: FieldRef;
1547
1620
  }
@@ -1560,11 +1633,11 @@ export interface FieldAPI_SetError {
1560
1633
  */
1561
1634
  export interface FieldAPI_SetError_Request {
1562
1635
  /**
1563
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1636
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1
1564
1637
  */
1565
1638
  field?: FieldRef;
1566
1639
  /**
1567
- * @generated from protobuf field: uint64 err_resource_id = 2;
1640
+ * @generated from protobuf field: uint64 err_resource_id = 2
1568
1641
  */
1569
1642
  errResourceId: bigint;
1570
1643
  }
@@ -1583,7 +1656,7 @@ export interface FieldAPI_Get {
1583
1656
  */
1584
1657
  export interface FieldAPI_Get_Request {
1585
1658
  /**
1586
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1659
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1
1587
1660
  */
1588
1661
  field?: FieldRef;
1589
1662
  }
@@ -1592,7 +1665,7 @@ export interface FieldAPI_Get_Request {
1592
1665
  */
1593
1666
  export interface FieldAPI_Get_Response {
1594
1667
  /**
1595
- * @generated from protobuf field: MiLaboratories.PL.API.Field field = 1;
1668
+ * @generated from protobuf field: MiLaboratories.PL.API.Field field = 1
1596
1669
  */
1597
1670
  field?: Field;
1598
1671
  }
@@ -1606,7 +1679,7 @@ export interface FieldAPI_Reset {
1606
1679
  */
1607
1680
  export interface FieldAPI_Reset_Request {
1608
1681
  /**
1609
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1682
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1
1610
1683
  */
1611
1684
  field?: FieldRef;
1612
1685
  }
@@ -1625,7 +1698,7 @@ export interface FieldAPI_Remove {
1625
1698
  */
1626
1699
  export interface FieldAPI_Remove_Request {
1627
1700
  /**
1628
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1701
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1
1629
1702
  */
1630
1703
  field?: FieldRef;
1631
1704
  }
@@ -1644,14 +1717,14 @@ export interface FieldAPI_List {
1644
1717
  */
1645
1718
  export interface FieldAPI_List_Request {
1646
1719
  /**
1647
- * @generated from protobuf field: uint64 resource_id = 1;
1720
+ * @generated from protobuf field: uint64 resource_id = 1
1648
1721
  */
1649
1722
  resourceId: bigint;
1650
1723
  /**
1651
1724
  * Start the listing from given position, returning first field with
1652
1725
  * name >= start_from.
1653
1726
  *
1654
- * @generated from protobuf field: string start_from = 2;
1727
+ * @generated from protobuf field: string start_from = 2
1655
1728
  */
1656
1729
  startFrom: string;
1657
1730
  /**
@@ -1659,7 +1732,7 @@ export interface FieldAPI_List_Request {
1659
1732
  * most <limit>.
1660
1733
  * Zero value makes API to return all available fields of the resource.
1661
1734
  *
1662
- * @generated from protobuf field: uint32 limit = 3;
1735
+ * @generated from protobuf field: uint32 limit = 3
1663
1736
  */
1664
1737
  limit: number;
1665
1738
  }
@@ -1670,7 +1743,7 @@ export interface FieldAPI_List_Request {
1670
1743
  */
1671
1744
  export interface FieldAPI_List_Response {
1672
1745
  /**
1673
- * @generated from protobuf field: MiLaboratories.PL.API.Field field = 1;
1746
+ * @generated from protobuf field: MiLaboratories.PL.API.Field field = 1
1674
1747
  */
1675
1748
  field?: Field;
1676
1749
  /**
@@ -1681,7 +1754,7 @@ export interface FieldAPI_List_Response {
1681
1754
  *
1682
1755
  * Use <next> value as <start_from> in the List.Request to continue listing.
1683
1756
  *
1684
- * @generated from protobuf field: string next = 4;
1757
+ * @generated from protobuf field: string next = 4
1685
1758
  */
1686
1759
  next: string;
1687
1760
  }
@@ -1700,11 +1773,11 @@ export interface NotificationAPI_Get {
1700
1773
  */
1701
1774
  export interface NotificationAPI_Get_Request {
1702
1775
  /**
1703
- * @generated from protobuf field: uint64 subscription = 1;
1776
+ * @generated from protobuf field: uint64 subscription = 1
1704
1777
  */
1705
1778
  subscription: bigint;
1706
1779
  /**
1707
- * @generated from protobuf field: uint32 max_notifications = 2;
1780
+ * @generated from protobuf field: uint32 max_notifications = 2
1708
1781
  */
1709
1782
  maxNotifications: number;
1710
1783
  }
@@ -1713,7 +1786,7 @@ export interface NotificationAPI_Get_Request {
1713
1786
  */
1714
1787
  export interface NotificationAPI_Get_Response {
1715
1788
  /**
1716
- * @generated from protobuf field: repeated MiLaboratories.PL.API.Notification notifications = 1;
1789
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.Notification notifications = 1
1717
1790
  */
1718
1791
  notifications: Notification[];
1719
1792
  }
@@ -1727,11 +1800,11 @@ export interface NotificationAPI_Ack {
1727
1800
  */
1728
1801
  export interface NotificationAPI_Ack_Request {
1729
1802
  /**
1730
- * @generated from protobuf field: uint64 subscription_id = 1;
1803
+ * @generated from protobuf field: uint64 subscription_id = 1
1731
1804
  */
1732
1805
  subscriptionId: bigint;
1733
1806
  /**
1734
- * @generated from protobuf field: uint64 event_id = 2;
1807
+ * @generated from protobuf field: uint64 event_id = 2
1735
1808
  */
1736
1809
  eventId: bigint;
1737
1810
  }
@@ -1750,11 +1823,11 @@ export interface NotificationAPI_Discard {
1750
1823
  */
1751
1824
  export interface NotificationAPI_Discard_Request {
1752
1825
  /**
1753
- * @generated from protobuf field: uint64 subscription_id = 1;
1826
+ * @generated from protobuf field: uint64 subscription_id = 1
1754
1827
  */
1755
1828
  subscriptionId: bigint;
1756
1829
  /**
1757
- * @generated from protobuf field: uint64 event_id = 2;
1830
+ * @generated from protobuf field: uint64 event_id = 2
1758
1831
  */
1759
1832
  eventId: bigint;
1760
1833
  }
@@ -1778,15 +1851,15 @@ export interface SubscriptionAPI_CreateSubscription {
1778
1851
  */
1779
1852
  export interface SubscriptionAPI_CreateSubscription_Request {
1780
1853
  /**
1781
- * @generated from protobuf field: uint64 id = 1;
1854
+ * @generated from protobuf field: uint64 id = 1
1782
1855
  */
1783
1856
  id: bigint;
1784
1857
  /**
1785
- * @generated from protobuf field: bool blocking = 2;
1858
+ * @generated from protobuf field: bool blocking = 2
1786
1859
  */
1787
1860
  blocking: boolean;
1788
1861
  /**
1789
- * @generated from protobuf field: bool gc = 3;
1862
+ * @generated from protobuf field: bool gc = 3
1790
1863
  */
1791
1864
  gc: boolean;
1792
1865
  }
@@ -1795,7 +1868,7 @@ export interface SubscriptionAPI_CreateSubscription_Request {
1795
1868
  */
1796
1869
  export interface SubscriptionAPI_CreateSubscription_Response {
1797
1870
  /**
1798
- * @generated from protobuf field: uint64 subscription_id = 1;
1871
+ * @generated from protobuf field: uint64 subscription_id = 1
1799
1872
  */
1800
1873
  subscriptionId: bigint;
1801
1874
  }
@@ -1809,11 +1882,11 @@ export interface SubscriptionAPI_CreateFilter {
1809
1882
  */
1810
1883
  export interface SubscriptionAPI_CreateFilter_Request {
1811
1884
  /**
1812
- * @generated from protobuf field: uint64 id = 1;
1885
+ * @generated from protobuf field: uint64 id = 1
1813
1886
  */
1814
1887
  id: bigint;
1815
1888
  /**
1816
- * @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter filter = 2;
1889
+ * @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter filter = 2
1817
1890
  */
1818
1891
  filter?: NotificationFilter;
1819
1892
  }
@@ -1822,7 +1895,7 @@ export interface SubscriptionAPI_CreateFilter_Request {
1822
1895
  */
1823
1896
  export interface SubscriptionAPI_CreateFilter_Response {
1824
1897
  /**
1825
- * @generated from protobuf field: uint64 filter_id = 1;
1898
+ * @generated from protobuf field: uint64 filter_id = 1
1826
1899
  */
1827
1900
  filterId: bigint;
1828
1901
  }
@@ -1836,21 +1909,21 @@ export interface SubscriptionAPI_ListSubscriptions {
1836
1909
  */
1837
1910
  export interface SubscriptionAPI_ListSubscriptions_SubscriptionInfo {
1838
1911
  /**
1839
- * @generated from protobuf field: MiLaboratories.PL.API.Subscription subscription = 1;
1912
+ * @generated from protobuf field: MiLaboratories.PL.API.Subscription subscription = 1
1840
1913
  */
1841
1914
  subscription?: Subscription;
1842
1915
  /**
1843
1916
  * TS of the moment someone last read notifications from subscription.
1844
1917
  * old time = stale (lost) subscription
1845
1918
  *
1846
- * @generated from protobuf field: uint64 last_read_time = 2;
1919
+ * @generated from protobuf field: uint64 last_read_time = 2
1847
1920
  */
1848
1921
  lastReadTime: bigint;
1849
1922
  /**
1850
1923
  * number of not-yet-read notifications in subscription queue
1851
1924
  * (notifications subscriber is expected to get on next reads)
1852
1925
  *
1853
- * @generated from protobuf field: uint64 notification_queue_size = 3;
1926
+ * @generated from protobuf field: uint64 notification_queue_size = 3
1854
1927
  */
1855
1928
  notificationQueueSize: bigint;
1856
1929
  }
@@ -1864,7 +1937,7 @@ export interface SubscriptionAPI_ListSubscriptions_Request {
1864
1937
  */
1865
1938
  export interface SubscriptionAPI_ListSubscriptions_Response {
1866
1939
  /**
1867
- * @generated from protobuf field: repeated MiLaboratories.PL.API.SubscriptionAPI.ListSubscriptions.SubscriptionInfo subscriptions = 1;
1940
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.SubscriptionAPI.ListSubscriptions.SubscriptionInfo subscriptions = 1
1868
1941
  */
1869
1942
  subscriptions: SubscriptionAPI_ListSubscriptions_SubscriptionInfo[];
1870
1943
  }
@@ -1878,15 +1951,15 @@ export interface SubscriptionAPI_AttachFilter {
1878
1951
  */
1879
1952
  export interface SubscriptionAPI_AttachFilter_Request {
1880
1953
  /**
1881
- * @generated from protobuf field: uint64 subscription_id = 1;
1954
+ * @generated from protobuf field: uint64 subscription_id = 1
1882
1955
  */
1883
1956
  subscriptionId: bigint;
1884
1957
  /**
1885
- * @generated from protobuf field: string filter_name = 2;
1958
+ * @generated from protobuf field: string filter_name = 2
1886
1959
  */
1887
1960
  filterName: string;
1888
1961
  /**
1889
- * @generated from protobuf field: uint64 filter_id = 3;
1962
+ * @generated from protobuf field: uint64 filter_id = 3
1890
1963
  */
1891
1964
  filterId: bigint;
1892
1965
  }
@@ -1905,11 +1978,11 @@ export interface SubscriptionAPI_DetachFilter {
1905
1978
  */
1906
1979
  export interface SubscriptionAPI_DetachFilter_Request {
1907
1980
  /**
1908
- * @generated from protobuf field: uint64 subscription_id = 1;
1981
+ * @generated from protobuf field: uint64 subscription_id = 1
1909
1982
  */
1910
1983
  subscriptionId: bigint;
1911
1984
  /**
1912
- * @generated from protobuf field: string filter_name = 2;
1985
+ * @generated from protobuf field: string filter_name = 2
1913
1986
  */
1914
1987
  filterName: string;
1915
1988
  }
@@ -1933,17 +2006,17 @@ export interface ControllerAPI_Register {
1933
2006
  */
1934
2007
  export interface ControllerAPI_Register_Request {
1935
2008
  /**
1936
- * @generated from protobuf field: string controller_type = 1;
2009
+ * @generated from protobuf field: string controller_type = 1
1937
2010
  */
1938
2011
  controllerType: string;
1939
2012
  /**
1940
- * @generated from protobuf field: map<string, MiLaboratories.PL.RTypes.NotificationFilter> filters = 2;
2013
+ * @generated from protobuf field: map<string, MiLaboratories.PL.RTypes.NotificationFilter> filters = 2
1941
2014
  */
1942
2015
  filters: {
1943
2016
  [key: string]: NotificationFilter;
1944
2017
  };
1945
2018
  /**
1946
- * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceSchema resource_schemas = 3;
2019
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceSchema resource_schemas = 3
1947
2020
  */
1948
2021
  resourceSchemas: ResourceSchema[];
1949
2022
  }
@@ -1952,11 +2025,11 @@ export interface ControllerAPI_Register_Request {
1952
2025
  */
1953
2026
  export interface ControllerAPI_Register_Response {
1954
2027
  /**
1955
- * @generated from protobuf field: uint64 controller_id = 1;
2028
+ * @generated from protobuf field: uint64 controller_id = 1
1956
2029
  */
1957
2030
  controllerId: bigint;
1958
2031
  /**
1959
- * @generated from protobuf field: uint64 subscription_id = 2;
2032
+ * @generated from protobuf field: uint64 subscription_id = 2
1960
2033
  */
1961
2034
  subscriptionId: bigint;
1962
2035
  }
@@ -1970,7 +2043,7 @@ export interface ControllerAPI_Exists {
1970
2043
  */
1971
2044
  export interface ControllerAPI_Exists_Request {
1972
2045
  /**
1973
- * @generated from protobuf field: string controller_type = 1;
2046
+ * @generated from protobuf field: string controller_type = 1
1974
2047
  */
1975
2048
  controllerType: string;
1976
2049
  }
@@ -1979,7 +2052,7 @@ export interface ControllerAPI_Exists_Request {
1979
2052
  */
1980
2053
  export interface ControllerAPI_Exists_Response {
1981
2054
  /**
1982
- * @generated from protobuf field: bool exists = 1;
2055
+ * @generated from protobuf field: bool exists = 1
1983
2056
  */
1984
2057
  exists: boolean;
1985
2058
  }
@@ -1993,17 +2066,17 @@ export interface ControllerAPI_Update {
1993
2066
  */
1994
2067
  export interface ControllerAPI_Update_Request {
1995
2068
  /**
1996
- * @generated from protobuf field: string controller_type = 1;
2069
+ * @generated from protobuf field: string controller_type = 1
1997
2070
  */
1998
2071
  controllerType: string;
1999
2072
  /**
2000
- * @generated from protobuf field: map<string, MiLaboratories.PL.RTypes.NotificationFilter> filters = 2;
2073
+ * @generated from protobuf field: map<string, MiLaboratories.PL.RTypes.NotificationFilter> filters = 2
2001
2074
  */
2002
2075
  filters: {
2003
2076
  [key: string]: NotificationFilter;
2004
2077
  };
2005
2078
  /**
2006
- * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceSchema resource_schemas = 3;
2079
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceSchema resource_schemas = 3
2007
2080
  */
2008
2081
  resourceSchemas: ResourceSchema[];
2009
2082
  }
@@ -2022,7 +2095,7 @@ export interface ControllerAPI_Deregister {
2022
2095
  */
2023
2096
  export interface ControllerAPI_Deregister_Request {
2024
2097
  /**
2025
- * @generated from protobuf field: string controller_type = 1;
2098
+ * @generated from protobuf field: string controller_type = 1
2026
2099
  */
2027
2100
  controllerType: string;
2028
2101
  }
@@ -2041,11 +2114,11 @@ export interface ControllerAPI_Create {
2041
2114
  */
2042
2115
  export interface ControllerAPI_Create_Request {
2043
2116
  /**
2044
- * @generated from protobuf field: uint64 id = 1;
2117
+ * @generated from protobuf field: uint64 id = 1
2045
2118
  */
2046
2119
  id: bigint;
2047
2120
  /**
2048
- * @generated from protobuf field: string controller_type = 2;
2121
+ * @generated from protobuf field: string controller_type = 2
2049
2122
  */
2050
2123
  controllerType: string;
2051
2124
  }
@@ -2054,7 +2127,7 @@ export interface ControllerAPI_Create_Request {
2054
2127
  */
2055
2128
  export interface ControllerAPI_Create_Response {
2056
2129
  /**
2057
- * @generated from protobuf field: uint64 controller_id = 1;
2130
+ * @generated from protobuf field: uint64 controller_id = 1
2058
2131
  */
2059
2132
  controllerId: bigint;
2060
2133
  }
@@ -2068,7 +2141,7 @@ export interface ControllerAPI_Get {
2068
2141
  */
2069
2142
  export interface ControllerAPI_Get_Request {
2070
2143
  /**
2071
- * @generated from protobuf field: string controller_type = 1;
2144
+ * @generated from protobuf field: string controller_type = 1
2072
2145
  */
2073
2146
  controllerType: string;
2074
2147
  }
@@ -2077,7 +2150,7 @@ export interface ControllerAPI_Get_Request {
2077
2150
  */
2078
2151
  export interface ControllerAPI_Get_Response {
2079
2152
  /**
2080
- * @generated from protobuf field: MiLaboratories.PL.API.Controller controller = 1;
2153
+ * @generated from protobuf field: MiLaboratories.PL.API.Controller controller = 1
2081
2154
  */
2082
2155
  controller?: Controller;
2083
2156
  }
@@ -2091,11 +2164,11 @@ export interface ControllerAPI_AttachSubscription {
2091
2164
  */
2092
2165
  export interface ControllerAPI_AttachSubscription_Request {
2093
2166
  /**
2094
- * @generated from protobuf field: uint64 controller_id = 1;
2167
+ * @generated from protobuf field: uint64 controller_id = 1
2095
2168
  */
2096
2169
  controllerId: bigint;
2097
2170
  /**
2098
- * @generated from protobuf field: uint64 subscription_id = 2;
2171
+ * @generated from protobuf field: uint64 subscription_id = 2
2099
2172
  */
2100
2173
  subscriptionId: bigint;
2101
2174
  }
@@ -2114,11 +2187,11 @@ export interface ControllerAPI_GetNotifications {
2114
2187
  */
2115
2188
  export interface ControllerAPI_GetNotifications_Request {
2116
2189
  /**
2117
- * @generated from protobuf field: string controller_type = 1;
2190
+ * @generated from protobuf field: string controller_type = 1
2118
2191
  */
2119
2192
  controllerType: string;
2120
2193
  /**
2121
- * @generated from protobuf field: uint32 max_notifications = 2;
2194
+ * @generated from protobuf field: uint32 max_notifications = 2
2122
2195
  */
2123
2196
  maxNotifications: number;
2124
2197
  }
@@ -2127,7 +2200,7 @@ export interface ControllerAPI_GetNotifications_Request {
2127
2200
  */
2128
2201
  export interface ControllerAPI_GetNotifications_Response {
2129
2202
  /**
2130
- * @generated from protobuf field: repeated MiLaboratories.PL.API.Notification notifications = 1;
2203
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.Notification notifications = 1
2131
2204
  */
2132
2205
  notifications: Notification[];
2133
2206
  }
@@ -2141,11 +2214,11 @@ export interface ControllerAPI_WriteAliasesAndUrls {
2141
2214
  */
2142
2215
  export interface ControllerAPI_WriteAliasesAndUrls_Request {
2143
2216
  /**
2144
- * @generated from protobuf field: string controller_type = 1;
2217
+ * @generated from protobuf field: string controller_type = 1
2145
2218
  */
2146
2219
  controllerType: string;
2147
2220
  /**
2148
- * @generated from protobuf field: map<string, string> aliases_to_urls = 2;
2221
+ * @generated from protobuf field: map<string, string> aliases_to_urls = 2
2149
2222
  */
2150
2223
  aliasesToUrls: {
2151
2224
  [key: string]: string;
@@ -2166,11 +2239,11 @@ export interface ControllerAPI_GetUrl {
2166
2239
  */
2167
2240
  export interface ControllerAPI_GetUrl_Request {
2168
2241
  /**
2169
- * @generated from protobuf field: string controller_alias = 1;
2242
+ * @generated from protobuf field: string controller_alias = 1
2170
2243
  */
2171
2244
  controllerAlias: string;
2172
2245
  /**
2173
- * @generated from protobuf field: uint64 resource_id = 2;
2246
+ * @generated from protobuf field: uint64 resource_id = 2
2174
2247
  */
2175
2248
  resourceId: bigint;
2176
2249
  }
@@ -2179,7 +2252,7 @@ export interface ControllerAPI_GetUrl_Request {
2179
2252
  */
2180
2253
  export interface ControllerAPI_GetUrl_Response {
2181
2254
  /**
2182
- * @generated from protobuf field: string controller_url = 2;
2255
+ * @generated from protobuf field: string controller_url = 2
2183
2256
  */
2184
2257
  controllerUrl: string;
2185
2258
  }
@@ -2193,7 +2266,7 @@ export interface ControllerAPI_RemoveAliasesAndUrls {
2193
2266
  */
2194
2267
  export interface ControllerAPI_RemoveAliasesAndUrls_Request {
2195
2268
  /**
2196
- * @generated from protobuf field: string controller_type = 1;
2269
+ * @generated from protobuf field: string controller_type = 1
2197
2270
  */
2198
2271
  controllerType: string;
2199
2272
  }
@@ -2212,7 +2285,7 @@ export interface ControllerAPI_SetFeatures {
2212
2285
  */
2213
2286
  export interface ControllerAPI_SetFeatures_Request {
2214
2287
  /**
2215
- * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceAPIFeature features = 2;
2288
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceAPIFeature features = 2
2216
2289
  */
2217
2290
  features: ResourceAPIFeature[];
2218
2291
  }
@@ -2231,7 +2304,7 @@ export interface ControllerAPI_ClearFeatures {
2231
2304
  */
2232
2305
  export interface ControllerAPI_ClearFeatures_Request {
2233
2306
  /**
2234
- * @generated from protobuf field: string controller_type = 1;
2307
+ * @generated from protobuf field: string controller_type = 1
2235
2308
  */
2236
2309
  controllerType: string;
2237
2310
  }
@@ -2255,14 +2328,14 @@ export interface ResourceKVAPI_List {
2255
2328
  */
2256
2329
  export interface ResourceKVAPI_List_Request {
2257
2330
  /**
2258
- * @generated from protobuf field: uint64 resource_id = 1;
2331
+ * @generated from protobuf field: uint64 resource_id = 1
2259
2332
  */
2260
2333
  resourceId: bigint;
2261
2334
  /**
2262
2335
  * Start the listing from given position, returning first item with
2263
2336
  * key >= start_from.
2264
2337
  *
2265
- * @generated from protobuf field: string start_from = 2;
2338
+ * @generated from protobuf field: string start_from = 2
2266
2339
  */
2267
2340
  startFrom: string;
2268
2341
  /**
@@ -2270,7 +2343,7 @@ export interface ResourceKVAPI_List_Request {
2270
2343
  * <limit> number of items.
2271
2344
  * Zero value makes API to return all available items.
2272
2345
  *
2273
- * @generated from protobuf field: uint32 limit = 3;
2346
+ * @generated from protobuf field: uint32 limit = 3
2274
2347
  */
2275
2348
  limit: number;
2276
2349
  }
@@ -2281,7 +2354,7 @@ export interface ResourceKVAPI_List_Request {
2281
2354
  */
2282
2355
  export interface ResourceKVAPI_List_Response {
2283
2356
  /**
2284
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Response.KV record = 1;
2357
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Response.KV record = 1
2285
2358
  */
2286
2359
  record?: ResourceKVAPI_List_Response_KV;
2287
2360
  /**
@@ -2292,7 +2365,7 @@ export interface ResourceKVAPI_List_Response {
2292
2365
  *
2293
2366
  * Use <next> value as <start_from> of the List.Request to continue listing.
2294
2367
  *
2295
- * @generated from protobuf field: string next = 4;
2368
+ * @generated from protobuf field: string next = 4
2296
2369
  */
2297
2370
  next: string;
2298
2371
  }
@@ -2301,11 +2374,11 @@ export interface ResourceKVAPI_List_Response {
2301
2374
  */
2302
2375
  export interface ResourceKVAPI_List_Response_KV {
2303
2376
  /**
2304
- * @generated from protobuf field: string key = 2;
2377
+ * @generated from protobuf field: string key = 2
2305
2378
  */
2306
2379
  key: string;
2307
2380
  /**
2308
- * @generated from protobuf field: bytes value = 3;
2381
+ * @generated from protobuf field: bytes value = 3
2309
2382
  */
2310
2383
  value: Uint8Array;
2311
2384
  }
@@ -2319,15 +2392,15 @@ export interface ResourceKVAPI_Set {
2319
2392
  */
2320
2393
  export interface ResourceKVAPI_Set_Request {
2321
2394
  /**
2322
- * @generated from protobuf field: uint64 resource_id = 1;
2395
+ * @generated from protobuf field: uint64 resource_id = 1
2323
2396
  */
2324
2397
  resourceId: bigint;
2325
2398
  /**
2326
- * @generated from protobuf field: string key = 2;
2399
+ * @generated from protobuf field: string key = 2
2327
2400
  */
2328
2401
  key: string;
2329
2402
  /**
2330
- * @generated from protobuf field: bytes value = 3;
2403
+ * @generated from protobuf field: bytes value = 3
2331
2404
  */
2332
2405
  value: Uint8Array;
2333
2406
  }
@@ -2346,11 +2419,11 @@ export interface ResourceKVAPI_Get {
2346
2419
  */
2347
2420
  export interface ResourceKVAPI_Get_Request {
2348
2421
  /**
2349
- * @generated from protobuf field: uint64 resource_id = 1;
2422
+ * @generated from protobuf field: uint64 resource_id = 1
2350
2423
  */
2351
2424
  resourceId: bigint;
2352
2425
  /**
2353
- * @generated from protobuf field: string key = 2;
2426
+ * @generated from protobuf field: string key = 2
2354
2427
  */
2355
2428
  key: string;
2356
2429
  }
@@ -2359,7 +2432,7 @@ export interface ResourceKVAPI_Get_Request {
2359
2432
  */
2360
2433
  export interface ResourceKVAPI_Get_Response {
2361
2434
  /**
2362
- * @generated from protobuf field: bytes value = 1;
2435
+ * @generated from protobuf field: bytes value = 1
2363
2436
  */
2364
2437
  value: Uint8Array;
2365
2438
  }
@@ -2373,11 +2446,11 @@ export interface ResourceKVAPI_GetIfExists {
2373
2446
  */
2374
2447
  export interface ResourceKVAPI_GetIfExists_Request {
2375
2448
  /**
2376
- * @generated from protobuf field: uint64 resource_id = 1;
2449
+ * @generated from protobuf field: uint64 resource_id = 1
2377
2450
  */
2378
2451
  resourceId: bigint;
2379
2452
  /**
2380
- * @generated from protobuf field: string key = 2;
2453
+ * @generated from protobuf field: string key = 2
2381
2454
  */
2382
2455
  key: string;
2383
2456
  }
@@ -2386,11 +2459,11 @@ export interface ResourceKVAPI_GetIfExists_Request {
2386
2459
  */
2387
2460
  export interface ResourceKVAPI_GetIfExists_Response {
2388
2461
  /**
2389
- * @generated from protobuf field: bytes value = 1;
2462
+ * @generated from protobuf field: bytes value = 1
2390
2463
  */
2391
2464
  value: Uint8Array;
2392
2465
  /**
2393
- * @generated from protobuf field: bool exists = 2;
2466
+ * @generated from protobuf field: bool exists = 2
2394
2467
  */
2395
2468
  exists: boolean;
2396
2469
  }
@@ -2404,11 +2477,11 @@ export interface ResourceKVAPI_Delete {
2404
2477
  */
2405
2478
  export interface ResourceKVAPI_Delete_Request {
2406
2479
  /**
2407
- * @generated from protobuf field: uint64 resource_id = 1;
2480
+ * @generated from protobuf field: uint64 resource_id = 1
2408
2481
  */
2409
2482
  resourceId: bigint;
2410
2483
  /**
2411
- * @generated from protobuf field: string key = 2;
2484
+ * @generated from protobuf field: string key = 2
2412
2485
  */
2413
2486
  key: string;
2414
2487
  }
@@ -2427,15 +2500,15 @@ export interface ResourceKVAPI_SetFlag {
2427
2500
  */
2428
2501
  export interface ResourceKVAPI_SetFlag_Request {
2429
2502
  /**
2430
- * @generated from protobuf field: uint64 resource_id = 1;
2503
+ * @generated from protobuf field: uint64 resource_id = 1
2431
2504
  */
2432
2505
  resourceId: bigint;
2433
2506
  /**
2434
- * @generated from protobuf field: string key = 2;
2507
+ * @generated from protobuf field: string key = 2
2435
2508
  */
2436
2509
  key: string;
2437
2510
  /**
2438
- * @generated from protobuf field: bool value = 3;
2511
+ * @generated from protobuf field: bool value = 3
2439
2512
  */
2440
2513
  value: boolean;
2441
2514
  }
@@ -2454,11 +2527,11 @@ export interface ResourceKVAPI_GetFlag {
2454
2527
  */
2455
2528
  export interface ResourceKVAPI_GetFlag_Request {
2456
2529
  /**
2457
- * @generated from protobuf field: uint64 resource_id = 1;
2530
+ * @generated from protobuf field: uint64 resource_id = 1
2458
2531
  */
2459
2532
  resourceId: bigint;
2460
2533
  /**
2461
- * @generated from protobuf field: string key = 2;
2534
+ * @generated from protobuf field: string key = 2
2462
2535
  */
2463
2536
  key: string;
2464
2537
  }
@@ -2467,7 +2540,7 @@ export interface ResourceKVAPI_GetFlag_Request {
2467
2540
  */
2468
2541
  export interface ResourceKVAPI_GetFlag_Response {
2469
2542
  /**
2470
- * @generated from protobuf field: bool value = 1;
2543
+ * @generated from protobuf field: bool value = 1
2471
2544
  */
2472
2545
  value: boolean;
2473
2546
  }
@@ -2486,15 +2559,15 @@ export interface ControllerKVAPI_Set {
2486
2559
  */
2487
2560
  export interface ControllerKVAPI_Set_Request {
2488
2561
  /**
2489
- * @generated from protobuf field: string controller_type = 1;
2562
+ * @generated from protobuf field: string controller_type = 1
2490
2563
  */
2491
2564
  controllerType: string;
2492
2565
  /**
2493
- * @generated from protobuf field: string key = 2;
2566
+ * @generated from protobuf field: string key = 2
2494
2567
  */
2495
2568
  key: string;
2496
2569
  /**
2497
- * @generated from protobuf field: bytes value = 3;
2570
+ * @generated from protobuf field: bytes value = 3
2498
2571
  */
2499
2572
  value: Uint8Array;
2500
2573
  }
@@ -2513,11 +2586,11 @@ export interface ControllerKVAPI_Get {
2513
2586
  */
2514
2587
  export interface ControllerKVAPI_Get_Request {
2515
2588
  /**
2516
- * @generated from protobuf field: string controller_type = 1;
2589
+ * @generated from protobuf field: string controller_type = 1
2517
2590
  */
2518
2591
  controllerType: string;
2519
2592
  /**
2520
- * @generated from protobuf field: string key = 2;
2593
+ * @generated from protobuf field: string key = 2
2521
2594
  */
2522
2595
  key: string;
2523
2596
  }
@@ -2526,7 +2599,7 @@ export interface ControllerKVAPI_Get_Request {
2526
2599
  */
2527
2600
  export interface ControllerKVAPI_Get_Response {
2528
2601
  /**
2529
- * @generated from protobuf field: bytes value = 1;
2602
+ * @generated from protobuf field: bytes value = 1
2530
2603
  */
2531
2604
  value: Uint8Array;
2532
2605
  }
@@ -2540,11 +2613,11 @@ export interface ControllerKVAPI_GetIfExists {
2540
2613
  */
2541
2614
  export interface ControllerKVAPI_GetIfExists_Request {
2542
2615
  /**
2543
- * @generated from protobuf field: string controller_type = 1;
2616
+ * @generated from protobuf field: string controller_type = 1
2544
2617
  */
2545
2618
  controllerType: string;
2546
2619
  /**
2547
- * @generated from protobuf field: string key = 2;
2620
+ * @generated from protobuf field: string key = 2
2548
2621
  */
2549
2622
  key: string;
2550
2623
  }
@@ -2553,11 +2626,11 @@ export interface ControllerKVAPI_GetIfExists_Request {
2553
2626
  */
2554
2627
  export interface ControllerKVAPI_GetIfExists_Response {
2555
2628
  /**
2556
- * @generated from protobuf field: bytes value = 1;
2629
+ * @generated from protobuf field: bytes value = 1
2557
2630
  */
2558
2631
  value: Uint8Array;
2559
2632
  /**
2560
- * @generated from protobuf field: bool exists = 2;
2633
+ * @generated from protobuf field: bool exists = 2
2561
2634
  */
2562
2635
  exists: boolean;
2563
2636
  }
@@ -2576,11 +2649,11 @@ export interface CacheAPI_SetToField {
2576
2649
  */
2577
2650
  export interface CacheAPI_SetToField_Request {
2578
2651
  /**
2579
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 1;
2652
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 1
2580
2653
  */
2581
2654
  id?: FieldRef;
2582
2655
  /**
2583
- * @generated from protobuf field: google.protobuf.Duration period = 2;
2656
+ * @generated from protobuf field: google.protobuf.Duration period = 2
2584
2657
  */
2585
2658
  period?: Duration;
2586
2659
  }
@@ -2624,15 +2697,15 @@ export interface LocksAPI_Lease_Create {
2624
2697
  */
2625
2698
  export interface LocksAPI_Lease_Create_Request {
2626
2699
  /**
2627
- * @generated from protobuf field: uint64 resource_id = 1;
2700
+ * @generated from protobuf field: uint64 resource_id = 1
2628
2701
  */
2629
2702
  resourceId: bigint;
2630
2703
  /**
2631
- * @generated from protobuf field: google.protobuf.Duration timeout = 3;
2704
+ * @generated from protobuf field: google.protobuf.Duration timeout = 3
2632
2705
  */
2633
2706
  timeout?: Duration;
2634
2707
  /**
2635
- * @generated from protobuf field: string name = 4;
2708
+ * @generated from protobuf field: string name = 4
2636
2709
  */
2637
2710
  name: string;
2638
2711
  }
@@ -2641,7 +2714,7 @@ export interface LocksAPI_Lease_Create_Request {
2641
2714
  */
2642
2715
  export interface LocksAPI_Lease_Create_Response {
2643
2716
  /**
2644
- * @generated from protobuf field: bytes lease_id = 1;
2717
+ * @generated from protobuf field: bytes lease_id = 1
2645
2718
  */
2646
2719
  leaseId: Uint8Array;
2647
2720
  }
@@ -2655,19 +2728,19 @@ export interface LocksAPI_Lease_Update {
2655
2728
  */
2656
2729
  export interface LocksAPI_Lease_Update_Request {
2657
2730
  /**
2658
- * @generated from protobuf field: uint64 resource_id = 1;
2731
+ * @generated from protobuf field: uint64 resource_id = 1
2659
2732
  */
2660
2733
  resourceId: bigint;
2661
2734
  /**
2662
- * @generated from protobuf field: bytes lease_id = 2;
2735
+ * @generated from protobuf field: bytes lease_id = 2
2663
2736
  */
2664
2737
  leaseId: Uint8Array;
2665
2738
  /**
2666
- * @generated from protobuf field: google.protobuf.Duration timeout = 3;
2739
+ * @generated from protobuf field: google.protobuf.Duration timeout = 3
2667
2740
  */
2668
2741
  timeout?: Duration;
2669
2742
  /**
2670
- * @generated from protobuf field: string name = 4;
2743
+ * @generated from protobuf field: string name = 4
2671
2744
  */
2672
2745
  name: string;
2673
2746
  }
@@ -2686,11 +2759,11 @@ export interface LocksAPI_Lease_Release {
2686
2759
  */
2687
2760
  export interface LocksAPI_Lease_Release_Request {
2688
2761
  /**
2689
- * @generated from protobuf field: uint64 resource_id = 1;
2762
+ * @generated from protobuf field: uint64 resource_id = 1
2690
2763
  */
2691
2764
  resourceId: bigint;
2692
2765
  /**
2693
- * @generated from protobuf field: bytes lease_id = 2;
2766
+ * @generated from protobuf field: bytes lease_id = 2
2694
2767
  */
2695
2768
  leaseId: Uint8Array;
2696
2769
  }
@@ -2719,7 +2792,7 @@ export interface AuthAPI_ListMethods_Request {
2719
2792
  */
2720
2793
  export interface AuthAPI_ListMethods_Response {
2721
2794
  /**
2722
- * @generated from protobuf field: repeated MiLaboratories.PL.API.AuthAPI.ListMethods.MethodInfo methods = 1;
2795
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.AuthAPI.ListMethods.MethodInfo methods = 1
2723
2796
  */
2724
2797
  methods: AuthAPI_ListMethods_MethodInfo[];
2725
2798
  }
@@ -2728,15 +2801,15 @@ export interface AuthAPI_ListMethods_Response {
2728
2801
  */
2729
2802
  export interface AuthAPI_ListMethods_MethodInfo {
2730
2803
  /**
2731
- * @generated from protobuf field: string type = 1;
2804
+ * @generated from protobuf field: string type = 1
2732
2805
  */
2733
2806
  type: string;
2734
2807
  /**
2735
- * @generated from protobuf field: string name = 2;
2808
+ * @generated from protobuf field: string name = 2
2736
2809
  */
2737
2810
  name: string;
2738
2811
  /**
2739
- * @generated from protobuf field: map<string, string> info = 3;
2812
+ * @generated from protobuf field: map<string, string> info = 3
2740
2813
  */
2741
2814
  info: {
2742
2815
  [key: string]: string;
@@ -2752,7 +2825,7 @@ export interface AuthAPI_GetJWTToken {
2752
2825
  */
2753
2826
  export interface AuthAPI_GetJWTToken_Request {
2754
2827
  /**
2755
- * @generated from protobuf field: google.protobuf.Duration expiration = 1;
2828
+ * @generated from protobuf field: google.protobuf.Duration expiration = 1
2756
2829
  */
2757
2830
  expiration?: Duration;
2758
2831
  }
@@ -2761,7 +2834,7 @@ export interface AuthAPI_GetJWTToken_Request {
2761
2834
  */
2762
2835
  export interface AuthAPI_GetJWTToken_Response {
2763
2836
  /**
2764
- * @generated from protobuf field: string token = 1;
2837
+ * @generated from protobuf field: string token = 1
2765
2838
  */
2766
2839
  token: string;
2767
2840
  }
@@ -2785,7 +2858,7 @@ export interface MiscAPI_ListResourceTypes_Request {
2785
2858
  */
2786
2859
  export interface MiscAPI_ListResourceTypes_Response {
2787
2860
  /**
2788
- * @generated from protobuf field: repeated MiLaboratories.PL.Base.ResourceType types = 1;
2861
+ * @generated from protobuf field: repeated MiLaboratories.PL.Base.ResourceType types = 1
2789
2862
  */
2790
2863
  types: ResourceType[];
2791
2864
  }
@@ -2811,21 +2884,30 @@ export interface MaintenanceAPI_Ping_Request {
2811
2884
  */
2812
2885
  export interface MaintenanceAPI_Ping_Response {
2813
2886
  /**
2814
- * @generated from protobuf field: string core_version = 1;
2887
+ * @generated from protobuf field: string core_version = 1
2815
2888
  */
2816
2889
  coreVersion: string;
2817
2890
  /**
2818
- * @generated from protobuf field: string core_full_version = 2;
2891
+ * @generated from protobuf field: string core_full_version = 2
2819
2892
  */
2820
2893
  coreFullVersion: string;
2821
2894
  /**
2822
- * @generated from protobuf field: string server_info = 3;
2895
+ * @generated from protobuf field: string server_info = 3
2823
2896
  */
2824
2897
  serverInfo: string;
2825
2898
  /**
2826
- * @generated from protobuf field: MiLaboratories.PL.API.MaintenanceAPI.Ping.Response.Compression compression = 4;
2899
+ * @generated from protobuf field: MiLaboratories.PL.API.MaintenanceAPI.Ping.Response.Compression compression = 4
2827
2900
  */
2828
2901
  compression: MaintenanceAPI_Ping_Response_Compression;
2902
+ /**
2903
+ * instanceID is a unique ID that changes when we reset DB state.
2904
+ * If we reset a state and a database, but the address of the backend is still the same,
2905
+ * without instanceID we are not sure if it's the same state or not,
2906
+ * and UI can't detect it and clear its state (e.g. caches of drivers).
2907
+ *
2908
+ * @generated from protobuf field: string instance_id = 5
2909
+ */
2910
+ instanceId: string;
2829
2911
  }
2830
2912
  /**
2831
2913
  * @generated from protobuf enum MiLaboratories.PL.API.MaintenanceAPI.Ping.Response.Compression
@@ -3404,7 +3486,6 @@ declare class ResourceAPI_List_ByType_Response$Type extends MessageType<Resource
3404
3486
  constructor();
3405
3487
  create(value?: PartialMessage<ResourceAPI_List_ByType_Response>): ResourceAPI_List_ByType_Response;
3406
3488
  internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResourceAPI_List_ByType_Response): ResourceAPI_List_ByType_Response;
3407
- private binaryReadMap1;
3408
3489
  internalBinaryWrite(message: ResourceAPI_List_ByType_Response, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
3409
3490
  }
3410
3491
  /**
@@ -3631,6 +3712,36 @@ declare class ResourceAPI_Tree_Response$Type extends MessageType<ResourceAPI_Tre
3631
3712
  * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.Response
3632
3713
  */
3633
3714
  export declare const ResourceAPI_Tree_Response: ResourceAPI_Tree_Response$Type;
3715
+ declare class ResourceAPI_TreeSize$Type extends MessageType<ResourceAPI_TreeSize> {
3716
+ constructor();
3717
+ create(value?: PartialMessage<ResourceAPI_TreeSize>): ResourceAPI_TreeSize;
3718
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResourceAPI_TreeSize): ResourceAPI_TreeSize;
3719
+ internalBinaryWrite(message: ResourceAPI_TreeSize, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
3720
+ }
3721
+ /**
3722
+ * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.TreeSize
3723
+ */
3724
+ export declare const ResourceAPI_TreeSize: ResourceAPI_TreeSize$Type;
3725
+ declare class ResourceAPI_TreeSize_Request$Type extends MessageType<ResourceAPI_TreeSize_Request> {
3726
+ constructor();
3727
+ create(value?: PartialMessage<ResourceAPI_TreeSize_Request>): ResourceAPI_TreeSize_Request;
3728
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResourceAPI_TreeSize_Request): ResourceAPI_TreeSize_Request;
3729
+ internalBinaryWrite(message: ResourceAPI_TreeSize_Request, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
3730
+ }
3731
+ /**
3732
+ * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.TreeSize.Request
3733
+ */
3734
+ export declare const ResourceAPI_TreeSize_Request: ResourceAPI_TreeSize_Request$Type;
3735
+ declare class ResourceAPI_TreeSize_Response$Type extends MessageType<ResourceAPI_TreeSize_Response> {
3736
+ constructor();
3737
+ create(value?: PartialMessage<ResourceAPI_TreeSize_Response>): ResourceAPI_TreeSize_Response;
3738
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResourceAPI_TreeSize_Response): ResourceAPI_TreeSize_Response;
3739
+ internalBinaryWrite(message: ResourceAPI_TreeSize_Response, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
3740
+ }
3741
+ /**
3742
+ * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.TreeSize.Response
3743
+ */
3744
+ export declare const ResourceAPI_TreeSize_Response: ResourceAPI_TreeSize_Response$Type;
3634
3745
  declare class FieldAPI$Type extends MessageType<FieldAPI> {
3635
3746
  constructor();
3636
3747
  create(value?: PartialMessage<FieldAPI>): FieldAPI;