@milaboratories/pl-client 2.7.14 → 2.8.1

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 (61) hide show
  1. package/dist/core/client.d.ts +4 -1
  2. package/dist/core/client.d.ts.map +1 -1
  3. package/dist/core/ll_client.d.ts +12 -2
  4. package/dist/core/ll_client.d.ts.map +1 -1
  5. package/dist/index.js +1 -1
  6. package/dist/index.js.map +1 -1
  7. package/dist/index.mjs +4341 -4316
  8. package/dist/index.mjs.map +1 -1
  9. package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +15 -15
  10. package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts.map +1 -1
  11. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts +4 -4
  12. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts.map +1 -1
  13. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts +59 -59
  14. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts.map +1 -1
  15. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts +72 -72
  16. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts.map +1 -1
  17. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +152 -152
  18. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts.map +1 -1
  19. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +156 -156
  20. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts.map +1 -1
  21. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +790 -773
  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 +163 -163
  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 +22 -22
  26. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts.map +1 -1
  27. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +32 -32
  28. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts.map +1 -1
  29. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +78 -78
  30. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts.map +1 -1
  31. package/dist/proto/google/protobuf/any.d.ts +52 -52
  32. package/dist/proto/google/protobuf/any.d.ts.map +1 -1
  33. package/dist/proto/google/protobuf/duration.d.ts +19 -19
  34. package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
  35. package/dist/proto/google/protobuf/empty.d.ts.map +1 -1
  36. package/dist/proto/google/protobuf/struct.d.ts +56 -56
  37. package/dist/proto/google/protobuf/struct.d.ts.map +1 -1
  38. package/dist/proto/google/protobuf/timestamp.d.ts +25 -25
  39. package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
  40. package/dist/proto/google/protobuf/wrappers.d.ts +72 -72
  41. package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
  42. package/package.json +3 -3
  43. package/src/core/client.ts +31 -35
  44. package/src/core/ll_client.ts +48 -23
  45. package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +72 -75
  46. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +21 -22
  47. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +276 -291
  48. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +54 -59
  49. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +470 -491
  50. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +238 -263
  51. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +11058 -11752
  52. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +1115 -1156
  53. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +126 -132
  54. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +201 -204
  55. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +541 -560
  56. package/src/proto/google/protobuf/any.ts +140 -150
  57. package/src/proto/google/protobuf/duration.ts +103 -108
  58. package/src/proto/google/protobuf/empty.ts +39 -42
  59. package/src/proto/google/protobuf/struct.ts +323 -337
  60. package/src/proto/google/protobuf/timestamp.ts +124 -132
  61. package/src/proto/google/protobuf/wrappers.ts +492 -537
@@ -127,329 +127,329 @@ export interface TxAPI {
127
127
  */
128
128
  export interface TxAPI_ClientMessage {
129
129
  /**
130
- * @generated from protobuf field: uint32 request_id = 1;
131
- */
130
+ * @generated from protobuf field: uint32 request_id = 1;
131
+ */
132
132
  requestId: number;
133
133
  /**
134
- * @generated from protobuf oneof: request
135
- */
134
+ * @generated from protobuf oneof: request
135
+ */
136
136
  request: {
137
- oneofKind: 'txOpen';
137
+ oneofKind: "txOpen";
138
138
  /**
139
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Request tx_open = 11;
140
- */
139
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Request tx_open = 11;
140
+ */
141
141
  txOpen: TxAPI_Open_Request;
142
142
  } | {
143
- oneofKind: 'txCommit';
143
+ oneofKind: "txCommit";
144
144
  /**
145
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Commit.Request tx_commit = 12;
146
- */
145
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Commit.Request tx_commit = 12;
146
+ */
147
147
  txCommit: TxAPI_Commit_Request;
148
148
  } | {
149
- oneofKind: 'txDiscard';
149
+ oneofKind: "txDiscard";
150
150
  /**
151
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Discard.Request tx_discard = 13;
152
- */
151
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Discard.Request tx_discard = 13;
152
+ */
153
153
  txDiscard: TxAPI_Discard_Request;
154
154
  } | {
155
- oneofKind: 'resourceCreateRoot';
155
+ oneofKind: "resourceCreateRoot";
156
156
  /**
157
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateRoot.Request resource_create_root = 58;
158
- */
157
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateRoot.Request resource_create_root = 58;
158
+ */
159
159
  resourceCreateRoot: ResourceAPI_CreateRoot_Request;
160
160
  } | {
161
- oneofKind: 'resourceRemove';
161
+ oneofKind: "resourceRemove";
162
162
  /**
163
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Remove.Request resource_remove = 57;
164
- */
163
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Remove.Request resource_remove = 57;
164
+ */
165
165
  resourceRemove: ResourceAPI_Remove_Request;
166
166
  } | {
167
- oneofKind: 'resourceCreateStruct';
167
+ oneofKind: "resourceCreateStruct";
168
168
  /**
169
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateStruct.Request resource_create_struct = 51;
170
- */
169
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateStruct.Request resource_create_struct = 51;
170
+ */
171
171
  resourceCreateStruct: ResourceAPI_CreateStruct_Request;
172
172
  } | {
173
- oneofKind: 'resourceCreateEphemeral';
173
+ oneofKind: "resourceCreateEphemeral";
174
174
  /**
175
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateEphemeral.Request resource_create_ephemeral = 62;
176
- */
175
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateEphemeral.Request resource_create_ephemeral = 62;
176
+ */
177
177
  resourceCreateEphemeral: ResourceAPI_CreateEphemeral_Request;
178
178
  } | {
179
- oneofKind: 'resourceCreateValue';
179
+ oneofKind: "resourceCreateValue";
180
180
  /**
181
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateValue.Request resource_create_value = 52;
182
- */
181
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateValue.Request resource_create_value = 52;
182
+ */
183
183
  resourceCreateValue: ResourceAPI_CreateValue_Request;
184
184
  } | {
185
- oneofKind: 'resourceGetValueId';
185
+ oneofKind: "resourceGetValueId";
186
186
  /**
187
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetValueID.Request resource_get_value_id = 63;
188
- */
187
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetValueID.Request resource_get_value_id = 63;
188
+ */
189
189
  resourceGetValueId: ResourceAPI_GetValueID_Request;
190
190
  } | {
191
- oneofKind: 'resourceCreateSingleton';
191
+ oneofKind: "resourceCreateSingleton";
192
192
  /**
193
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateSingleton.Request resource_create_singleton = 64;
194
- */
193
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateSingleton.Request resource_create_singleton = 64;
194
+ */
195
195
  resourceCreateSingleton: ResourceAPI_CreateSingleton_Request;
196
196
  } | {
197
- oneofKind: 'resourceGetSingleton';
197
+ oneofKind: "resourceGetSingleton";
198
198
  /**
199
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetSingleton.Request resource_get_singleton = 65;
200
- */
199
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetSingleton.Request resource_get_singleton = 65;
200
+ */
201
201
  resourceGetSingleton: ResourceAPI_GetSingleton_Request;
202
202
  } | {
203
- oneofKind: 'resourceCreateChild';
203
+ oneofKind: "resourceCreateChild";
204
204
  /**
205
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateChild.Request resource_create_child = 59;
206
- */
205
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateChild.Request resource_create_child = 59;
206
+ */
207
207
  resourceCreateChild: ResourceAPI_CreateChild_Request;
208
208
  } | {
209
- oneofKind: 'resourceLockInputs';
209
+ oneofKind: "resourceLockInputs";
210
210
  /**
211
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockInputs.Request resource_lock_inputs = 53;
212
- */
211
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockInputs.Request resource_lock_inputs = 53;
212
+ */
213
213
  resourceLockInputs: ResourceAPI_LockInputs_Request;
214
214
  } | {
215
- oneofKind: 'resourceLockOutputs';
215
+ oneofKind: "resourceLockOutputs";
216
216
  /**
217
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockOutputs.Request resource_lock_outputs = 56;
218
- */
217
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockOutputs.Request resource_lock_outputs = 56;
218
+ */
219
219
  resourceLockOutputs: ResourceAPI_LockOutputs_Request;
220
220
  } | {
221
- oneofKind: 'resourceExists';
221
+ oneofKind: "resourceExists";
222
222
  /**
223
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Exists.Request resource_exists = 54;
224
- */
223
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Exists.Request resource_exists = 54;
224
+ */
225
225
  resourceExists: ResourceAPI_Exists_Request;
226
226
  } | {
227
- oneofKind: 'resourceGet';
227
+ oneofKind: "resourceGet";
228
228
  /**
229
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Get.Request resource_get = 55;
230
- */
229
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Get.Request resource_get = 55;
230
+ */
231
231
  resourceGet: ResourceAPI_Get_Request;
232
232
  } | {
233
- oneofKind: 'resourceSetError';
233
+ oneofKind: "resourceSetError";
234
234
  /**
235
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.SetError.Request resource_set_error = 61;
236
- */
235
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.SetError.Request resource_set_error = 61;
236
+ */
237
237
  resourceSetError: ResourceAPI_SetError_Request;
238
238
  } | {
239
- oneofKind: 'resourceListByType';
239
+ oneofKind: "resourceListByType";
240
240
  /**
241
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.List.ByType.Request resource_list_by_type = 60;
242
- */
241
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.List.ByType.Request resource_list_by_type = 60;
242
+ */
243
243
  resourceListByType: ResourceAPI_List_ByType_Request;
244
244
  } | {
245
- oneofKind: 'resourceNameSet';
245
+ oneofKind: "resourceNameSet";
246
246
  /**
247
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Set.Request resource_name_set = 66;
248
- */
247
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Set.Request resource_name_set = 66;
248
+ */
249
249
  resourceNameSet: ResourceAPI_Name_Set_Request;
250
250
  } | {
251
- oneofKind: 'resourceNameGet';
251
+ oneofKind: "resourceNameGet";
252
252
  /**
253
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Get.Request resource_name_get = 67;
254
- */
253
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Get.Request resource_name_get = 67;
254
+ */
255
255
  resourceNameGet: ResourceAPI_Name_Get_Request;
256
256
  } | {
257
- oneofKind: 'resourceNameExists';
257
+ oneofKind: "resourceNameExists";
258
258
  /**
259
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Exists.Request resource_name_exists = 68;
260
- */
259
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Exists.Request resource_name_exists = 68;
260
+ */
261
261
  resourceNameExists: ResourceAPI_Name_Exists_Request;
262
262
  } | {
263
- oneofKind: 'resourceNameDelete';
263
+ oneofKind: "resourceNameDelete";
264
264
  /**
265
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Delete.Request resource_name_delete = 69;
266
- */
265
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Delete.Request resource_name_delete = 69;
266
+ */
267
267
  resourceNameDelete: ResourceAPI_Name_Delete_Request;
268
268
  } | {
269
- oneofKind: 'resourceTree';
269
+ oneofKind: "resourceTree";
270
270
  /**
271
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Request resource_tree = 70;
272
- */
271
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Request resource_tree = 70;
272
+ */
273
273
  resourceTree: ResourceAPI_Tree_Request;
274
274
  } | {
275
- oneofKind: 'fieldCreate';
275
+ oneofKind: "fieldCreate";
276
276
  /**
277
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Create.Request field_create = 101;
278
- */
277
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Create.Request field_create = 101;
278
+ */
279
279
  fieldCreate: FieldAPI_Create_Request;
280
280
  } | {
281
- oneofKind: 'fieldExists';
281
+ oneofKind: "fieldExists";
282
282
  /**
283
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Exists.Request field_exists = 107;
284
- */
283
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Exists.Request field_exists = 107;
284
+ */
285
285
  fieldExists: FieldAPI_Exists_Request;
286
286
  } | {
287
- oneofKind: 'fieldSet';
287
+ oneofKind: "fieldSet";
288
288
  /**
289
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Set.Request field_set = 102;
290
- */
289
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Set.Request field_set = 102;
290
+ */
291
291
  fieldSet: FieldAPI_Set_Request;
292
292
  } | {
293
- oneofKind: 'fieldSetError';
293
+ oneofKind: "fieldSetError";
294
294
  /**
295
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.SetError.Request field_set_error = 105;
296
- */
295
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.SetError.Request field_set_error = 105;
296
+ */
297
297
  fieldSetError: FieldAPI_SetError_Request;
298
298
  } | {
299
- oneofKind: 'fieldGet';
299
+ oneofKind: "fieldGet";
300
300
  /**
301
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Get.Request field_get = 103;
302
- */
301
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Get.Request field_get = 103;
302
+ */
303
303
  fieldGet: FieldAPI_Get_Request;
304
304
  } | {
305
- oneofKind: 'fieldReset';
305
+ oneofKind: "fieldReset";
306
306
  /**
307
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Reset.Request field_reset = 104;
308
- */
307
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Reset.Request field_reset = 104;
308
+ */
309
309
  fieldReset: FieldAPI_Reset_Request;
310
310
  } | {
311
- oneofKind: 'fieldRemove';
311
+ oneofKind: "fieldRemove";
312
312
  /**
313
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Remove.Request field_remove = 106;
314
- */
313
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Remove.Request field_remove = 106;
314
+ */
315
315
  fieldRemove: FieldAPI_Remove_Request;
316
316
  } | {
317
- oneofKind: 'fieldList';
317
+ oneofKind: "fieldList";
318
318
  /**
319
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.List.Request field_list = 108;
320
- */
319
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.List.Request field_list = 108;
320
+ */
321
321
  fieldList: FieldAPI_List_Request;
322
322
  } | {
323
- oneofKind: 'subscriptionCreate';
323
+ oneofKind: "subscriptionCreate";
324
324
  /**
325
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateSubscription.Request subscription_create = 111;
326
- */
325
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateSubscription.Request subscription_create = 111;
326
+ */
327
327
  subscriptionCreate: SubscriptionAPI_CreateSubscription_Request;
328
328
  } | {
329
- oneofKind: 'subscriptionAttachFilter';
329
+ oneofKind: "subscriptionAttachFilter";
330
330
  /**
331
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.AttachFilter.Request subscription_attach_filter = 112;
332
- */
331
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.AttachFilter.Request subscription_attach_filter = 112;
332
+ */
333
333
  subscriptionAttachFilter: SubscriptionAPI_AttachFilter_Request;
334
334
  } | {
335
- oneofKind: 'subscriptionDetachFilter';
335
+ oneofKind: "subscriptionDetachFilter";
336
336
  /**
337
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.DetachFilter.Request subscription_detach_filter = 113;
338
- */
337
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.DetachFilter.Request subscription_detach_filter = 113;
338
+ */
339
339
  subscriptionDetachFilter: SubscriptionAPI_DetachFilter_Request;
340
340
  } | {
341
- oneofKind: 'subscriptionCreateFilter';
341
+ oneofKind: "subscriptionCreateFilter";
342
342
  /**
343
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateFilter.Request subscription_create_filter = 115;
344
- */
343
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateFilter.Request subscription_create_filter = 115;
344
+ */
345
345
  subscriptionCreateFilter: SubscriptionAPI_CreateFilter_Request;
346
346
  } | {
347
- oneofKind: 'notificationGet';
347
+ oneofKind: "notificationGet";
348
348
  /**
349
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Get.Request notification_get = 154;
350
- */
349
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Get.Request notification_get = 154;
350
+ */
351
351
  notificationGet: NotificationAPI_Get_Request;
352
352
  } | {
353
- oneofKind: 'notificationAck';
353
+ oneofKind: "notificationAck";
354
354
  /**
355
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Ack.Request notification_ack = 155;
356
- */
355
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Ack.Request notification_ack = 155;
356
+ */
357
357
  notificationAck: NotificationAPI_Ack_Request;
358
358
  } | {
359
- oneofKind: 'notificationDiscard';
359
+ oneofKind: "notificationDiscard";
360
360
  /**
361
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Discard.Request notification_discard = 156;
362
- */
361
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Discard.Request notification_discard = 156;
362
+ */
363
363
  notificationDiscard: NotificationAPI_Discard_Request;
364
364
  } | {
365
- oneofKind: 'resourceKeyValueSet';
365
+ oneofKind: "resourceKeyValueSet";
366
366
  /**
367
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Set.Request resource_key_value_set = 200;
368
- */
367
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Set.Request resource_key_value_set = 200;
368
+ */
369
369
  resourceKeyValueSet: ResourceKVAPI_Set_Request;
370
370
  } | {
371
- oneofKind: 'resourceKeyValueGet';
371
+ oneofKind: "resourceKeyValueGet";
372
372
  /**
373
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Get.Request resource_key_value_get = 201;
374
- */
373
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Get.Request resource_key_value_get = 201;
374
+ */
375
375
  resourceKeyValueGet: ResourceKVAPI_Get_Request;
376
376
  } | {
377
- oneofKind: 'resourceKeyValueGetIfExists';
377
+ oneofKind: "resourceKeyValueGetIfExists";
378
378
  /**
379
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetIfExists.Request resource_key_value_get_if_exists = 202;
380
- */
379
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetIfExists.Request resource_key_value_get_if_exists = 202;
380
+ */
381
381
  resourceKeyValueGetIfExists: ResourceKVAPI_GetIfExists_Request;
382
382
  } | {
383
- oneofKind: 'resourceKeyValueSetFlag';
383
+ oneofKind: "resourceKeyValueSetFlag";
384
384
  /**
385
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.SetFlag.Request resource_key_value_set_flag = 203;
386
- */
385
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.SetFlag.Request resource_key_value_set_flag = 203;
386
+ */
387
387
  resourceKeyValueSetFlag: ResourceKVAPI_SetFlag_Request;
388
388
  } | {
389
- oneofKind: 'resourceKeyValueGetFlag';
389
+ oneofKind: "resourceKeyValueGetFlag";
390
390
  /**
391
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Request resource_key_value_get_flag = 204;
392
- */
391
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Request resource_key_value_get_flag = 204;
392
+ */
393
393
  resourceKeyValueGetFlag: ResourceKVAPI_GetFlag_Request;
394
394
  } | {
395
- oneofKind: 'resourceKeyValueGetFlagIfExists';
395
+ oneofKind: "resourceKeyValueGetFlagIfExists";
396
396
  /**
397
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Request resource_key_value_get_flag_if_exists = 205;
398
- */
397
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Request resource_key_value_get_flag_if_exists = 205;
398
+ */
399
399
  resourceKeyValueGetFlagIfExists: ResourceKVAPI_GetFlag_Request;
400
400
  } | {
401
- oneofKind: 'resourceKeyValueDelete';
401
+ oneofKind: "resourceKeyValueDelete";
402
402
  /**
403
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Delete.Request resource_key_value_delete = 206;
404
- */
403
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Delete.Request resource_key_value_delete = 206;
404
+ */
405
405
  resourceKeyValueDelete: ResourceKVAPI_Delete_Request;
406
406
  } | {
407
- oneofKind: 'resourceKeyValueList';
407
+ oneofKind: "resourceKeyValueList";
408
408
  /**
409
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Request resource_key_value_list = 207;
410
- */
409
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Request resource_key_value_list = 207;
410
+ */
411
411
  resourceKeyValueList: ResourceKVAPI_List_Request;
412
412
  } | {
413
- oneofKind: 'controllerKeyValueSet';
413
+ oneofKind: "controllerKeyValueSet";
414
414
  /**
415
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Set.Request controller_key_value_set = 250;
416
- */
415
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Set.Request controller_key_value_set = 250;
416
+ */
417
417
  controllerKeyValueSet: ControllerKVAPI_Set_Request;
418
418
  } | {
419
- oneofKind: 'controllerKeyValueGet';
419
+ oneofKind: "controllerKeyValueGet";
420
420
  /**
421
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Get.Request controller_key_value_get = 251;
422
- */
421
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Get.Request controller_key_value_get = 251;
422
+ */
423
423
  controllerKeyValueGet: ControllerKVAPI_Get_Request;
424
424
  } | {
425
- oneofKind: 'controllerKeyValueGetIfExists';
425
+ oneofKind: "controllerKeyValueGetIfExists";
426
426
  /**
427
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.GetIfExists.Request controller_key_value_get_if_exists = 252;
428
- */
427
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.GetIfExists.Request controller_key_value_get_if_exists = 252;
428
+ */
429
429
  controllerKeyValueGetIfExists: ControllerKVAPI_GetIfExists_Request;
430
430
  } | {
431
- oneofKind: 'cacheSetToField';
431
+ oneofKind: "cacheSetToField";
432
432
  /**
433
- * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.SetToField.Request cache_set_to_field = 300;
434
- */
433
+ * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.SetToField.Request cache_set_to_field = 300;
434
+ */
435
435
  cacheSetToField: CacheAPI_SetToField_Request;
436
436
  } | {
437
- oneofKind: 'cacheDeleteExpiredRecords';
437
+ oneofKind: "cacheDeleteExpiredRecords";
438
438
  /**
439
- * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.DeleteExpiredRecords.Request cache_delete_expired_records = 301;
440
- */
439
+ * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.DeleteExpiredRecords.Request cache_delete_expired_records = 301;
440
+ */
441
441
  cacheDeleteExpiredRecords: CacheAPI_DeleteExpiredRecords_Request;
442
442
  } | {
443
- oneofKind: 'controllerFeaturesSet';
443
+ oneofKind: "controllerFeaturesSet";
444
444
  /**
445
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.SetFeatures.Request controller_features_set = 350;
446
- */
445
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.SetFeatures.Request controller_features_set = 350;
446
+ */
447
447
  controllerFeaturesSet: ControllerAPI_SetFeatures_Request;
448
448
  } | {
449
- oneofKind: 'controllerFeaturesClear';
449
+ oneofKind: "controllerFeaturesClear";
450
450
  /**
451
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.ClearFeatures.Request controller_features_clear = 351;
452
- */
451
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.ClearFeatures.Request controller_features_clear = 351;
452
+ */
453
453
  controllerFeaturesClear: ControllerAPI_ClearFeatures_Request;
454
454
  } | {
455
455
  oneofKind: undefined;
@@ -460,343 +460,343 @@ export interface TxAPI_ClientMessage {
460
460
  */
461
461
  export interface TxAPI_ServerMessage {
462
462
  /**
463
- * @generated from protobuf field: uint32 request_id = 1;
464
- */
463
+ * @generated from protobuf field: uint32 request_id = 1;
464
+ */
465
465
  requestId: number;
466
466
  /**
467
- * Additional response message info for multi-message responses.
468
- * Is always empty in single-message responses.
469
- *
470
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.ServerMessage.Multi multi_message = 2;
471
- */
467
+ * Additional response message info for multi-message responses.
468
+ * Is always empty in single-message responses.
469
+ *
470
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.ServerMessage.Multi multi_message = 2;
471
+ */
472
472
  multiMessage?: TxAPI_ServerMessage_Multi;
473
473
  /**
474
- * @generated from protobuf oneof: response
475
- */
474
+ * @generated from protobuf oneof: response
475
+ */
476
476
  response: {
477
- oneofKind: 'txOpen';
477
+ oneofKind: "txOpen";
478
478
  /**
479
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Response tx_open = 11;
480
- */
479
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Response tx_open = 11;
480
+ */
481
481
  txOpen: TxAPI_Open_Response;
482
482
  } | {
483
- oneofKind: 'txCommit';
483
+ oneofKind: "txCommit";
484
484
  /**
485
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Commit.Response tx_commit = 12;
486
- */
485
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Commit.Response tx_commit = 12;
486
+ */
487
487
  txCommit: TxAPI_Commit_Response;
488
488
  } | {
489
- oneofKind: 'txDiscard';
489
+ oneofKind: "txDiscard";
490
490
  /**
491
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Discard.Response tx_discard = 13;
492
- */
491
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Discard.Response tx_discard = 13;
492
+ */
493
493
  txDiscard: TxAPI_Discard_Response;
494
494
  } | {
495
- oneofKind: 'resourceCreateRoot';
495
+ oneofKind: "resourceCreateRoot";
496
496
  /**
497
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateRoot.Response resource_create_root = 58;
498
- */
497
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateRoot.Response resource_create_root = 58;
498
+ */
499
499
  resourceCreateRoot: ResourceAPI_CreateRoot_Response;
500
500
  } | {
501
- oneofKind: 'resourceRemove';
501
+ oneofKind: "resourceRemove";
502
502
  /**
503
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Remove.Response resource_remove = 57;
504
- */
503
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Remove.Response resource_remove = 57;
504
+ */
505
505
  resourceRemove: ResourceAPI_Remove_Response;
506
506
  } | {
507
- oneofKind: 'resourceCreateStruct';
507
+ oneofKind: "resourceCreateStruct";
508
508
  /**
509
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateStruct.Response resource_create_struct = 51;
510
- */
509
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateStruct.Response resource_create_struct = 51;
510
+ */
511
511
  resourceCreateStruct: ResourceAPI_CreateStruct_Response;
512
512
  } | {
513
- oneofKind: 'resourceCreateEphemeral';
513
+ oneofKind: "resourceCreateEphemeral";
514
514
  /**
515
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateEphemeral.Response resource_create_ephemeral = 62;
516
- */
515
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateEphemeral.Response resource_create_ephemeral = 62;
516
+ */
517
517
  resourceCreateEphemeral: ResourceAPI_CreateEphemeral_Response;
518
518
  } | {
519
- oneofKind: 'resourceCreateValue';
519
+ oneofKind: "resourceCreateValue";
520
520
  /**
521
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateValue.Response resource_create_value = 52;
522
- */
521
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateValue.Response resource_create_value = 52;
522
+ */
523
523
  resourceCreateValue: ResourceAPI_CreateValue_Response;
524
524
  } | {
525
- oneofKind: 'resourceGetValueId';
525
+ oneofKind: "resourceGetValueId";
526
526
  /**
527
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetValueID.Response resource_get_value_id = 63;
528
- */
527
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetValueID.Response resource_get_value_id = 63;
528
+ */
529
529
  resourceGetValueId: ResourceAPI_GetValueID_Response;
530
530
  } | {
531
- oneofKind: 'resourceCreateSingleton';
531
+ oneofKind: "resourceCreateSingleton";
532
532
  /**
533
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateSingleton.Response resource_create_singleton = 64;
534
- */
533
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateSingleton.Response resource_create_singleton = 64;
534
+ */
535
535
  resourceCreateSingleton: ResourceAPI_CreateSingleton_Response;
536
536
  } | {
537
- oneofKind: 'resourceGetSingleton';
537
+ oneofKind: "resourceGetSingleton";
538
538
  /**
539
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetSingleton.Response resource_get_singleton = 65;
540
- */
539
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.GetSingleton.Response resource_get_singleton = 65;
540
+ */
541
541
  resourceGetSingleton: ResourceAPI_GetSingleton_Response;
542
542
  } | {
543
- oneofKind: 'resourceCreateChild';
543
+ oneofKind: "resourceCreateChild";
544
544
  /**
545
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateChild.Response resource_create_child = 59;
546
- */
545
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.CreateChild.Response resource_create_child = 59;
546
+ */
547
547
  resourceCreateChild: ResourceAPI_CreateChild_Response;
548
548
  } | {
549
- oneofKind: 'resourceLockInputs';
549
+ oneofKind: "resourceLockInputs";
550
550
  /**
551
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockInputs.Response resource_lock_inputs = 53;
552
- */
551
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockInputs.Response resource_lock_inputs = 53;
552
+ */
553
553
  resourceLockInputs: ResourceAPI_LockInputs_Response;
554
554
  } | {
555
- oneofKind: 'resourceLockOutputs';
555
+ oneofKind: "resourceLockOutputs";
556
556
  /**
557
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockOutputs.Response resource_lock_outputs = 56;
558
- */
557
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.LockOutputs.Response resource_lock_outputs = 56;
558
+ */
559
559
  resourceLockOutputs: ResourceAPI_LockOutputs_Response;
560
560
  } | {
561
- oneofKind: 'resourceExists';
561
+ oneofKind: "resourceExists";
562
562
  /**
563
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Exists.Response resource_exists = 54;
564
- */
563
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Exists.Response resource_exists = 54;
564
+ */
565
565
  resourceExists: ResourceAPI_Exists_Response;
566
566
  } | {
567
- oneofKind: 'resourceGet';
567
+ oneofKind: "resourceGet";
568
568
  /**
569
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Get.Response resource_get = 55;
570
- */
569
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Get.Response resource_get = 55;
570
+ */
571
571
  resourceGet: ResourceAPI_Get_Response;
572
572
  } | {
573
- oneofKind: 'resourceSetError';
573
+ oneofKind: "resourceSetError";
574
574
  /**
575
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.SetError.Response resource_set_error = 61;
576
- */
575
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.SetError.Response resource_set_error = 61;
576
+ */
577
577
  resourceSetError: ResourceAPI_SetError_Response;
578
578
  } | {
579
- oneofKind: 'resourceListByType';
579
+ oneofKind: "resourceListByType";
580
580
  /**
581
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.List.ByType.Response resource_list_by_type = 60;
582
- */
581
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.List.ByType.Response resource_list_by_type = 60;
582
+ */
583
583
  resourceListByType: ResourceAPI_List_ByType_Response;
584
584
  } | {
585
- oneofKind: 'resourceNameSet';
585
+ oneofKind: "resourceNameSet";
586
586
  /**
587
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Set.Response resource_name_set = 66;
588
- */
587
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Set.Response resource_name_set = 66;
588
+ */
589
589
  resourceNameSet: ResourceAPI_Name_Set_Response;
590
590
  } | {
591
- oneofKind: 'resourceNameGet';
591
+ oneofKind: "resourceNameGet";
592
592
  /**
593
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Get.Response resource_name_get = 67;
594
- */
593
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Get.Response resource_name_get = 67;
594
+ */
595
595
  resourceNameGet: ResourceAPI_Name_Get_Response;
596
596
  } | {
597
- oneofKind: 'resourceNameExists';
597
+ oneofKind: "resourceNameExists";
598
598
  /**
599
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Exists.Response resource_name_exists = 68;
600
- */
599
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Exists.Response resource_name_exists = 68;
600
+ */
601
601
  resourceNameExists: ResourceAPI_Name_Exists_Response;
602
602
  } | {
603
- oneofKind: 'resourceNameDelete';
603
+ oneofKind: "resourceNameDelete";
604
604
  /**
605
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Delete.Response resource_name_delete = 69;
606
- */
605
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Name.Delete.Response resource_name_delete = 69;
606
+ */
607
607
  resourceNameDelete: ResourceAPI_Name_Delete_Response;
608
608
  } | {
609
- oneofKind: 'resourceTree';
609
+ oneofKind: "resourceTree";
610
610
  /**
611
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Response resource_tree = 70;
612
- */
611
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Response resource_tree = 70;
612
+ */
613
613
  resourceTree: ResourceAPI_Tree_Response;
614
614
  } | {
615
- oneofKind: 'fieldCreate';
615
+ oneofKind: "fieldCreate";
616
616
  /**
617
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Create.Response field_create = 101;
618
- */
617
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Create.Response field_create = 101;
618
+ */
619
619
  fieldCreate: FieldAPI_Create_Response;
620
620
  } | {
621
- oneofKind: 'fieldExists';
621
+ oneofKind: "fieldExists";
622
622
  /**
623
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Exists.Response field_exists = 107;
624
- */
623
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Exists.Response field_exists = 107;
624
+ */
625
625
  fieldExists: FieldAPI_Exists_Response;
626
626
  } | {
627
- oneofKind: 'fieldSet';
627
+ oneofKind: "fieldSet";
628
628
  /**
629
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Set.Response field_set = 102;
630
- */
629
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Set.Response field_set = 102;
630
+ */
631
631
  fieldSet: FieldAPI_Set_Response;
632
632
  } | {
633
- oneofKind: 'fieldSetError';
633
+ oneofKind: "fieldSetError";
634
634
  /**
635
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.SetError.Response field_set_error = 105;
636
- */
635
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.SetError.Response field_set_error = 105;
636
+ */
637
637
  fieldSetError: FieldAPI_SetError_Response;
638
638
  } | {
639
- oneofKind: 'fieldGet';
639
+ oneofKind: "fieldGet";
640
640
  /**
641
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Get.Response field_get = 103;
642
- */
641
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Get.Response field_get = 103;
642
+ */
643
643
  fieldGet: FieldAPI_Get_Response;
644
644
  } | {
645
- oneofKind: 'fieldReset';
645
+ oneofKind: "fieldReset";
646
646
  /**
647
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Reset.Response field_reset = 104;
648
- */
647
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Reset.Response field_reset = 104;
648
+ */
649
649
  fieldReset: FieldAPI_Reset_Response;
650
650
  } | {
651
- oneofKind: 'fieldRemove';
651
+ oneofKind: "fieldRemove";
652
652
  /**
653
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Remove.Response field_remove = 106;
654
- */
653
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.Remove.Response field_remove = 106;
654
+ */
655
655
  fieldRemove: FieldAPI_Remove_Response;
656
656
  } | {
657
- oneofKind: 'fieldList';
657
+ oneofKind: "fieldList";
658
658
  /**
659
- * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.List.Response field_list = 108;
660
- */
659
+ * @generated from protobuf field: MiLaboratories.PL.API.FieldAPI.List.Response field_list = 108;
660
+ */
661
661
  fieldList: FieldAPI_List_Response;
662
662
  } | {
663
- oneofKind: 'subscriptionCreate';
663
+ oneofKind: "subscriptionCreate";
664
664
  /**
665
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateSubscription.Response subscription_create = 111;
666
- */
665
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateSubscription.Response subscription_create = 111;
666
+ */
667
667
  subscriptionCreate: SubscriptionAPI_CreateSubscription_Response;
668
668
  } | {
669
- oneofKind: 'subscriptionCreateFilter';
669
+ oneofKind: "subscriptionCreateFilter";
670
670
  /**
671
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateFilter.Response subscription_create_filter = 115;
672
- */
671
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.CreateFilter.Response subscription_create_filter = 115;
672
+ */
673
673
  subscriptionCreateFilter: SubscriptionAPI_CreateFilter_Response;
674
674
  } | {
675
- oneofKind: 'subscriptionAttachFilter';
675
+ oneofKind: "subscriptionAttachFilter";
676
676
  /**
677
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.AttachFilter.Response subscription_attach_filter = 112;
678
- */
677
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.AttachFilter.Response subscription_attach_filter = 112;
678
+ */
679
679
  subscriptionAttachFilter: SubscriptionAPI_AttachFilter_Response;
680
680
  } | {
681
- oneofKind: 'subscriptionDetachFilter';
681
+ oneofKind: "subscriptionDetachFilter";
682
682
  /**
683
- * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.DetachFilter.Response subscription_detach_filter = 113;
684
- */
683
+ * @generated from protobuf field: MiLaboratories.PL.API.SubscriptionAPI.DetachFilter.Response subscription_detach_filter = 113;
684
+ */
685
685
  subscriptionDetachFilter: SubscriptionAPI_DetachFilter_Response;
686
686
  } | {
687
- oneofKind: 'notificationGet';
687
+ oneofKind: "notificationGet";
688
688
  /**
689
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Get.Response notification_get = 154;
690
- */
689
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Get.Response notification_get = 154;
690
+ */
691
691
  notificationGet: NotificationAPI_Get_Response;
692
692
  } | {
693
- oneofKind: 'notificationAck';
693
+ oneofKind: "notificationAck";
694
694
  /**
695
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Ack.Response notification_ack = 155;
696
- */
695
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Ack.Response notification_ack = 155;
696
+ */
697
697
  notificationAck: NotificationAPI_Ack_Response;
698
698
  } | {
699
- oneofKind: 'notificationDiscard';
699
+ oneofKind: "notificationDiscard";
700
700
  /**
701
- * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Discard.Response notification_discard = 156;
702
- */
701
+ * @generated from protobuf field: MiLaboratories.PL.API.NotificationAPI.Discard.Response notification_discard = 156;
702
+ */
703
703
  notificationDiscard: NotificationAPI_Discard_Response;
704
704
  } | {
705
- oneofKind: 'resourceKeyValueSet';
705
+ oneofKind: "resourceKeyValueSet";
706
706
  /**
707
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Set.Response resource_key_value_set = 200;
708
- */
707
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Set.Response resource_key_value_set = 200;
708
+ */
709
709
  resourceKeyValueSet: ResourceKVAPI_Set_Response;
710
710
  } | {
711
- oneofKind: 'resourceKeyValueGet';
711
+ oneofKind: "resourceKeyValueGet";
712
712
  /**
713
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Get.Response resource_key_value_get = 201;
714
- */
713
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Get.Response resource_key_value_get = 201;
714
+ */
715
715
  resourceKeyValueGet: ResourceKVAPI_Get_Response;
716
716
  } | {
717
- oneofKind: 'resourceKeyValueGetIfExists';
717
+ oneofKind: "resourceKeyValueGetIfExists";
718
718
  /**
719
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetIfExists.Response resource_key_value_get_if_exists = 202;
720
- */
719
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetIfExists.Response resource_key_value_get_if_exists = 202;
720
+ */
721
721
  resourceKeyValueGetIfExists: ResourceKVAPI_GetIfExists_Response;
722
722
  } | {
723
- oneofKind: 'resourceKeyValueSetFlag';
723
+ oneofKind: "resourceKeyValueSetFlag";
724
724
  /**
725
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.SetFlag.Response resource_key_value_set_flag = 203;
726
- */
725
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.SetFlag.Response resource_key_value_set_flag = 203;
726
+ */
727
727
  resourceKeyValueSetFlag: ResourceKVAPI_SetFlag_Response;
728
728
  } | {
729
- oneofKind: 'resourceKeyValueGetFlag';
729
+ oneofKind: "resourceKeyValueGetFlag";
730
730
  /**
731
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Response resource_key_value_get_flag = 204;
732
- */
731
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Response resource_key_value_get_flag = 204;
732
+ */
733
733
  resourceKeyValueGetFlag: ResourceKVAPI_GetFlag_Response;
734
734
  } | {
735
- oneofKind: 'resourceKeyValueGetFlagIfExists';
735
+ oneofKind: "resourceKeyValueGetFlagIfExists";
736
736
  /**
737
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Response resource_key_value_get_flag_if_exists = 205;
738
- */
737
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.GetFlag.Response resource_key_value_get_flag_if_exists = 205;
738
+ */
739
739
  resourceKeyValueGetFlagIfExists: ResourceKVAPI_GetFlag_Response;
740
740
  } | {
741
- oneofKind: 'resourceKeyValueDelete';
741
+ oneofKind: "resourceKeyValueDelete";
742
742
  /**
743
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Delete.Response resource_key_value_delete = 206;
744
- */
743
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.Delete.Response resource_key_value_delete = 206;
744
+ */
745
745
  resourceKeyValueDelete: ResourceKVAPI_Delete_Response;
746
746
  } | {
747
- oneofKind: 'resourceKeyValueList';
747
+ oneofKind: "resourceKeyValueList";
748
748
  /**
749
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Response resource_key_value_list = 207;
750
- */
749
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Response resource_key_value_list = 207;
750
+ */
751
751
  resourceKeyValueList: ResourceKVAPI_List_Response;
752
752
  } | {
753
- oneofKind: 'controllerKeyValueSet';
753
+ oneofKind: "controllerKeyValueSet";
754
754
  /**
755
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Set.Response controller_key_value_set = 250;
756
- */
755
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Set.Response controller_key_value_set = 250;
756
+ */
757
757
  controllerKeyValueSet: ControllerKVAPI_Set_Response;
758
758
  } | {
759
- oneofKind: 'controllerKeyValueGet';
759
+ oneofKind: "controllerKeyValueGet";
760
760
  /**
761
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Get.Response controller_key_value_get = 251;
762
- */
761
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.Get.Response controller_key_value_get = 251;
762
+ */
763
763
  controllerKeyValueGet: ControllerKVAPI_Get_Response;
764
764
  } | {
765
- oneofKind: 'controllerKeyValueGetIfExists';
765
+ oneofKind: "controllerKeyValueGetIfExists";
766
766
  /**
767
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.GetIfExists.Response controller_key_value_get_if_exists = 252;
768
- */
767
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerKVAPI.GetIfExists.Response controller_key_value_get_if_exists = 252;
768
+ */
769
769
  controllerKeyValueGetIfExists: ControllerKVAPI_GetIfExists_Response;
770
770
  } | {
771
- oneofKind: 'cacheSetToField';
771
+ oneofKind: "cacheSetToField";
772
772
  /**
773
- * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.SetToField.Response cache_set_to_field = 300;
774
- */
773
+ * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.SetToField.Response cache_set_to_field = 300;
774
+ */
775
775
  cacheSetToField: CacheAPI_SetToField_Response;
776
776
  } | {
777
- oneofKind: 'cacheDeleteExpiredRecords';
777
+ oneofKind: "cacheDeleteExpiredRecords";
778
778
  /**
779
- * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.DeleteExpiredRecords.Response cache_delete_expired_records = 301;
780
- */
779
+ * @generated from protobuf field: MiLaboratories.PL.API.CacheAPI.DeleteExpiredRecords.Response cache_delete_expired_records = 301;
780
+ */
781
781
  cacheDeleteExpiredRecords: CacheAPI_DeleteExpiredRecords_Response;
782
782
  } | {
783
- oneofKind: 'controllerFeaturesSet';
783
+ oneofKind: "controllerFeaturesSet";
784
784
  /**
785
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.SetFeatures.Response controller_features_set = 350;
786
- */
785
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.SetFeatures.Response controller_features_set = 350;
786
+ */
787
787
  controllerFeaturesSet: ControllerAPI_SetFeatures_Response;
788
788
  } | {
789
- oneofKind: 'controllerFeaturesClear';
789
+ oneofKind: "controllerFeaturesClear";
790
790
  /**
791
- * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.ClearFeatures.Response controller_features_clear = 351;
792
- */
791
+ * @generated from protobuf field: MiLaboratories.PL.API.ControllerAPI.ClearFeatures.Response controller_features_clear = 351;
792
+ */
793
793
  controllerFeaturesClear: ControllerAPI_ClearFeatures_Response;
794
794
  } | {
795
795
  oneofKind: undefined;
796
796
  };
797
797
  /**
798
- * @generated from protobuf field: google.rpc.Status error = 3;
799
- */
798
+ * @generated from protobuf field: google.rpc.Status error = 3;
799
+ */
800
800
  error?: Status;
801
801
  }
802
802
  /**
@@ -804,29 +804,29 @@ export interface TxAPI_ServerMessage {
804
804
  */
805
805
  export interface TxAPI_ServerMessage_Multi {
806
806
  /**
807
- * Sequential message ID for multi-message response, starting from 1.
808
- * Caller can use 'id > 0' check as a sign of multi-message response.
809
- * Some API requests produce several messages in response by design (say, listings)
810
- * In that case, the server responses to the client with many messages, each having
811
- * the same <request_id> value and different <message_id> values.
812
- *
813
- * @generated from protobuf field: uint32 id = 1;
814
- */
807
+ * Sequential message ID for multi-message response, starting from 1.
808
+ * Caller can use 'id > 0' check as a sign of multi-message response.
809
+ * Some API requests produce several messages in response by design (say, listings)
810
+ * In that case, the server responses to the client with many messages, each having
811
+ * the same <request_id> value and different <message_id> values.
812
+ *
813
+ * @generated from protobuf field: uint32 id = 1;
814
+ */
815
815
  id: number;
816
816
  /**
817
- * Sign of the last message in multi-message response.
818
- * Helps to wrap multi-message responses into iterators on client side.
819
- *
820
- * @generated from protobuf field: bool is_last = 2;
821
- */
817
+ * Sign of the last message in multi-message response.
818
+ * Helps to wrap multi-message responses into iterators on client side.
819
+ *
820
+ * @generated from protobuf field: bool is_last = 2;
821
+ */
822
822
  isLast: boolean;
823
823
  /**
824
- * Sign of empty multi-message response. Some multi-message responses can produce nothing
825
- * (like listing of empty directory). In that case client still has to know that the request was
826
- * handled and the empty result is OK.
827
- *
828
- * @generated from protobuf field: bool is_empty = 3;
829
- */
824
+ * Sign of empty multi-message response. Some multi-message responses can produce nothing
825
+ * (like listing of empty directory). In that case client still has to know that the request was
826
+ * handled and the empty result is OK.
827
+ *
828
+ * @generated from protobuf field: bool is_empty = 3;
829
+ */
830
830
  isEmpty: boolean;
831
831
  }
832
832
  /**
@@ -839,12 +839,12 @@ export interface TxAPI_Open {
839
839
  */
840
840
  export interface TxAPI_Open_Request {
841
841
  /**
842
- * @generated from protobuf field: string name = 1;
843
- */
842
+ * @generated from protobuf field: string name = 1;
843
+ */
844
844
  name: string;
845
845
  /**
846
- * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Request.WritableTx writable = 2;
847
- */
846
+ * @generated from protobuf field: MiLaboratories.PL.API.TxAPI.Open.Request.WritableTx writable = 2;
847
+ */
848
848
  writable: TxAPI_Open_Request_WritableTx;
849
849
  }
850
850
  /**
@@ -852,16 +852,16 @@ export interface TxAPI_Open_Request {
852
852
  */
853
853
  export declare enum TxAPI_Open_Request_WritableTx {
854
854
  /**
855
- * @generated from protobuf enum value: INVALID = 0;
856
- */
855
+ * @generated from protobuf enum value: INVALID = 0;
856
+ */
857
857
  INVALID = 0,
858
858
  /**
859
- * @generated from protobuf enum value: WRITABLE = 1;
860
- */
859
+ * @generated from protobuf enum value: WRITABLE = 1;
860
+ */
861
861
  WRITABLE = 1,
862
862
  /**
863
- * @generated from protobuf enum value: NOT_WRITABLE = 2;
864
- */
863
+ * @generated from protobuf enum value: NOT_WRITABLE = 2;
864
+ */
865
865
  NOT_WRITABLE = 2
866
866
  }
867
867
  /**
@@ -869,8 +869,8 @@ export declare enum TxAPI_Open_Request_WritableTx {
869
869
  */
870
870
  export interface TxAPI_Open_Response {
871
871
  /**
872
- * @generated from protobuf field: MiLaboratories.PL.API.Tx tx = 1;
873
- */
872
+ * @generated from protobuf field: MiLaboratories.PL.API.Tx tx = 1;
873
+ */
874
874
  tx?: Tx;
875
875
  }
876
876
  /**
@@ -888,8 +888,8 @@ export interface TxAPI_Commit_Request {
888
888
  */
889
889
  export interface TxAPI_Commit_Response {
890
890
  /**
891
- * @generated from protobuf field: bool success = 1;
892
- */
891
+ * @generated from protobuf field: bool success = 1;
892
+ */
893
893
  success: boolean;
894
894
  }
895
895
  /**
@@ -917,8 +917,8 @@ export interface TxAPI_Sync {
917
917
  */
918
918
  export interface TxAPI_Sync_Request {
919
919
  /**
920
- * @generated from protobuf field: uint64 tx_id = 1;
921
- */
920
+ * @generated from protobuf field: uint64 tx_id = 1;
921
+ */
922
922
  txId: bigint;
923
923
  }
924
924
  /**
@@ -941,16 +941,16 @@ export interface ResourceAPI_CreateStruct {
941
941
  */
942
942
  export interface ResourceAPI_CreateStruct_Request {
943
943
  /**
944
- * @generated from protobuf field: uint64 id = 2;
945
- */
944
+ * @generated from protobuf field: uint64 id = 2;
945
+ */
946
946
  id: bigint;
947
947
  /**
948
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
949
- */
948
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
949
+ */
950
950
  type?: ResourceType;
951
951
  /**
952
- * @generated from protobuf field: optional bytes data = 4;
953
- */
952
+ * @generated from protobuf field: optional bytes data = 4;
953
+ */
954
954
  data?: Uint8Array;
955
955
  }
956
956
  /**
@@ -958,8 +958,8 @@ export interface ResourceAPI_CreateStruct_Request {
958
958
  */
959
959
  export interface ResourceAPI_CreateStruct_Response {
960
960
  /**
961
- * @generated from protobuf field: uint64 resource_id = 1;
962
- */
961
+ * @generated from protobuf field: uint64 resource_id = 1;
962
+ */
963
963
  resourceId: bigint;
964
964
  }
965
965
  /**
@@ -972,16 +972,16 @@ export interface ResourceAPI_CreateEphemeral {
972
972
  */
973
973
  export interface ResourceAPI_CreateEphemeral_Request {
974
974
  /**
975
- * @generated from protobuf field: uint64 id = 2;
976
- */
975
+ * @generated from protobuf field: uint64 id = 2;
976
+ */
977
977
  id: bigint;
978
978
  /**
979
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
980
- */
979
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
980
+ */
981
981
  type?: ResourceType;
982
982
  /**
983
- * @generated from protobuf field: optional bytes data = 4;
984
- */
983
+ * @generated from protobuf field: optional bytes data = 4;
984
+ */
985
985
  data?: Uint8Array;
986
986
  }
987
987
  /**
@@ -989,8 +989,8 @@ export interface ResourceAPI_CreateEphemeral_Request {
989
989
  */
990
990
  export interface ResourceAPI_CreateEphemeral_Response {
991
991
  /**
992
- * @generated from protobuf field: uint64 resource_id = 1;
993
- */
992
+ * @generated from protobuf field: uint64 resource_id = 1;
993
+ */
994
994
  resourceId: bigint;
995
995
  }
996
996
  /**
@@ -1003,16 +1003,16 @@ export interface ResourceAPI_CreateChild {
1003
1003
  */
1004
1004
  export interface ResourceAPI_CreateChild_Request {
1005
1005
  /**
1006
- * @generated from protobuf field: uint64 id = 1;
1007
- */
1006
+ * @generated from protobuf field: uint64 id = 1;
1007
+ */
1008
1008
  id: bigint;
1009
1009
  /**
1010
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 2;
1011
- */
1010
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 2;
1011
+ */
1012
1012
  type?: ResourceType;
1013
1013
  /**
1014
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef parent_field = 3;
1015
- */
1014
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef parent_field = 3;
1015
+ */
1016
1016
  parentField?: FieldRef;
1017
1017
  }
1018
1018
  /**
@@ -1020,8 +1020,8 @@ export interface ResourceAPI_CreateChild_Request {
1020
1020
  */
1021
1021
  export interface ResourceAPI_CreateChild_Response {
1022
1022
  /**
1023
- * @generated from protobuf field: uint64 resource_id = 1;
1024
- */
1023
+ * @generated from protobuf field: uint64 resource_id = 1;
1024
+ */
1025
1025
  resourceId: bigint;
1026
1026
  }
1027
1027
  /**
@@ -1034,20 +1034,20 @@ export interface ResourceAPI_CreateValue {
1034
1034
  */
1035
1035
  export interface ResourceAPI_CreateValue_Request {
1036
1036
  /**
1037
- * @generated from protobuf field: uint64 id = 2;
1038
- */
1037
+ * @generated from protobuf field: uint64 id = 2;
1038
+ */
1039
1039
  id: bigint;
1040
1040
  /**
1041
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1042
- */
1041
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1042
+ */
1043
1043
  type?: ResourceType;
1044
1044
  /**
1045
- * @generated from protobuf field: bytes data = 6;
1046
- */
1045
+ * @generated from protobuf field: bytes data = 6;
1046
+ */
1047
1047
  data: Uint8Array;
1048
1048
  /**
1049
- * @generated from protobuf field: bool error_if_exists = 7;
1050
- */
1049
+ * @generated from protobuf field: bool error_if_exists = 7;
1050
+ */
1051
1051
  errorIfExists: boolean;
1052
1052
  }
1053
1053
  /**
@@ -1055,8 +1055,8 @@ export interface ResourceAPI_CreateValue_Request {
1055
1055
  */
1056
1056
  export interface ResourceAPI_CreateValue_Response {
1057
1057
  /**
1058
- * @generated from protobuf field: uint64 resource_id = 1;
1059
- */
1058
+ * @generated from protobuf field: uint64 resource_id = 1;
1059
+ */
1060
1060
  resourceId: bigint;
1061
1061
  }
1062
1062
  /**
@@ -1069,12 +1069,12 @@ export interface ResourceAPI_GetValueID {
1069
1069
  */
1070
1070
  export interface ResourceAPI_GetValueID_Request {
1071
1071
  /**
1072
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1;
1073
- */
1072
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1;
1073
+ */
1074
1074
  type?: ResourceType;
1075
1075
  /**
1076
- * @generated from protobuf field: bytes data = 2;
1077
- */
1076
+ * @generated from protobuf field: bytes data = 2;
1077
+ */
1078
1078
  data: Uint8Array;
1079
1079
  }
1080
1080
  /**
@@ -1082,8 +1082,8 @@ export interface ResourceAPI_GetValueID_Request {
1082
1082
  */
1083
1083
  export interface ResourceAPI_GetValueID_Response {
1084
1084
  /**
1085
- * @generated from protobuf field: uint64 resource_id = 1;
1086
- */
1085
+ * @generated from protobuf field: uint64 resource_id = 1;
1086
+ */
1087
1087
  resourceId: bigint;
1088
1088
  }
1089
1089
  /**
@@ -1096,20 +1096,20 @@ export interface ResourceAPI_CreateSingleton {
1096
1096
  */
1097
1097
  export interface ResourceAPI_CreateSingleton_Request {
1098
1098
  /**
1099
- * @generated from protobuf field: uint64 id = 2;
1100
- */
1099
+ * @generated from protobuf field: uint64 id = 2;
1100
+ */
1101
1101
  id: bigint;
1102
1102
  /**
1103
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1104
- */
1103
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1104
+ */
1105
1105
  type?: ResourceType;
1106
1106
  /**
1107
- * @generated from protobuf field: bytes data = 6;
1108
- */
1107
+ * @generated from protobuf field: bytes data = 6;
1108
+ */
1109
1109
  data: Uint8Array;
1110
1110
  /**
1111
- * @generated from protobuf field: bool error_if_exists = 7;
1112
- */
1111
+ * @generated from protobuf field: bool error_if_exists = 7;
1112
+ */
1113
1113
  errorIfExists: boolean;
1114
1114
  }
1115
1115
  /**
@@ -1117,8 +1117,8 @@ export interface ResourceAPI_CreateSingleton_Request {
1117
1117
  */
1118
1118
  export interface ResourceAPI_CreateSingleton_Response {
1119
1119
  /**
1120
- * @generated from protobuf field: uint64 resource_id = 1;
1121
- */
1120
+ * @generated from protobuf field: uint64 resource_id = 1;
1121
+ */
1122
1122
  resourceId: bigint;
1123
1123
  }
1124
1124
  /**
@@ -1131,16 +1131,16 @@ export interface ResourceAPI_GetSingleton {
1131
1131
  */
1132
1132
  export interface ResourceAPI_GetSingleton_Request {
1133
1133
  /**
1134
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1;
1135
- */
1134
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1;
1135
+ */
1136
1136
  type?: ResourceType;
1137
1137
  /**
1138
- * @generated from protobuf field: bytes data = 2;
1139
- */
1138
+ * @generated from protobuf field: bytes data = 2;
1139
+ */
1140
1140
  data: Uint8Array;
1141
1141
  /**
1142
- * @generated from protobuf field: bool load_fields = 3;
1143
- */
1142
+ * @generated from protobuf field: bool load_fields = 3;
1143
+ */
1144
1144
  loadFields: boolean;
1145
1145
  }
1146
1146
  /**
@@ -1148,8 +1148,8 @@ export interface ResourceAPI_GetSingleton_Request {
1148
1148
  */
1149
1149
  export interface ResourceAPI_GetSingleton_Response {
1150
1150
  /**
1151
- * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1152
- */
1151
+ * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1152
+ */
1153
1153
  resource?: Resource;
1154
1154
  }
1155
1155
  /**
@@ -1162,8 +1162,8 @@ export interface ResourceAPI_LockInputs {
1162
1162
  */
1163
1163
  export interface ResourceAPI_LockInputs_Request {
1164
1164
  /**
1165
- * @generated from protobuf field: uint64 resource_id = 1;
1166
- */
1165
+ * @generated from protobuf field: uint64 resource_id = 1;
1166
+ */
1167
1167
  resourceId: bigint;
1168
1168
  }
1169
1169
  /**
@@ -1181,8 +1181,8 @@ export interface ResourceAPI_LockOutputs {
1181
1181
  */
1182
1182
  export interface ResourceAPI_LockOutputs_Request {
1183
1183
  /**
1184
- * @generated from protobuf field: uint64 resource_id = 1;
1185
- */
1184
+ * @generated from protobuf field: uint64 resource_id = 1;
1185
+ */
1186
1186
  resourceId: bigint;
1187
1187
  }
1188
1188
  /**
@@ -1200,8 +1200,8 @@ export interface ResourceAPI_Exists {
1200
1200
  */
1201
1201
  export interface ResourceAPI_Exists_Request {
1202
1202
  /**
1203
- * @generated from protobuf field: uint64 resource_id = 1;
1204
- */
1203
+ * @generated from protobuf field: uint64 resource_id = 1;
1204
+ */
1205
1205
  resourceId: bigint;
1206
1206
  }
1207
1207
  /**
@@ -1209,8 +1209,8 @@ export interface ResourceAPI_Exists_Request {
1209
1209
  */
1210
1210
  export interface ResourceAPI_Exists_Response {
1211
1211
  /**
1212
- * @generated from protobuf field: bool exists = 1;
1213
- */
1212
+ * @generated from protobuf field: bool exists = 1;
1213
+ */
1214
1214
  exists: boolean;
1215
1215
  }
1216
1216
  /**
@@ -1223,12 +1223,12 @@ export interface ResourceAPI_SetError {
1223
1223
  */
1224
1224
  export interface ResourceAPI_SetError_Request {
1225
1225
  /**
1226
- * @generated from protobuf field: uint64 resource_id = 1;
1227
- */
1226
+ * @generated from protobuf field: uint64 resource_id = 1;
1227
+ */
1228
1228
  resourceId: bigint;
1229
1229
  /**
1230
- * @generated from protobuf field: uint64 error_resource_id = 2;
1231
- */
1230
+ * @generated from protobuf field: uint64 error_resource_id = 2;
1231
+ */
1232
1232
  errorResourceId: bigint;
1233
1233
  }
1234
1234
  /**
@@ -1246,12 +1246,12 @@ export interface ResourceAPI_Get {
1246
1246
  */
1247
1247
  export interface ResourceAPI_Get_Request {
1248
1248
  /**
1249
- * @generated from protobuf field: uint64 resource_id = 1;
1250
- */
1249
+ * @generated from protobuf field: uint64 resource_id = 1;
1250
+ */
1251
1251
  resourceId: bigint;
1252
1252
  /**
1253
- * @generated from protobuf field: bool load_fields = 2;
1254
- */
1253
+ * @generated from protobuf field: bool load_fields = 2;
1254
+ */
1255
1255
  loadFields: boolean;
1256
1256
  }
1257
1257
  /**
@@ -1259,8 +1259,8 @@ export interface ResourceAPI_Get_Request {
1259
1259
  */
1260
1260
  export interface ResourceAPI_Get_Response {
1261
1261
  /**
1262
- * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1263
- */
1262
+ * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1263
+ */
1264
1264
  resource?: Resource;
1265
1265
  }
1266
1266
  /**
@@ -1278,8 +1278,8 @@ export interface ResourceAPI_List_ByType {
1278
1278
  */
1279
1279
  export interface ResourceAPI_List_ByType_Request {
1280
1280
  /**
1281
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 1;
1282
- */
1281
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 1;
1282
+ */
1283
1283
  resourceType?: ResourceType;
1284
1284
  }
1285
1285
  /**
@@ -1287,8 +1287,8 @@ export interface ResourceAPI_List_ByType_Request {
1287
1287
  */
1288
1288
  export interface ResourceAPI_List_ByType_Response {
1289
1289
  /**
1290
- * @generated from protobuf field: map<uint64, MiLaboratories.PL.API.Resource> resources = 1;
1291
- */
1290
+ * @generated from protobuf field: map<uint64, MiLaboratories.PL.API.Resource> resources = 1;
1291
+ */
1292
1292
  resources: {
1293
1293
  [key: string]: Resource;
1294
1294
  };
@@ -1303,12 +1303,12 @@ export interface ResourceAPI_CreateRoot {
1303
1303
  */
1304
1304
  export interface ResourceAPI_CreateRoot_Request {
1305
1305
  /**
1306
- * @generated from protobuf field: uint64 id = 2;
1307
- */
1306
+ * @generated from protobuf field: uint64 id = 2;
1307
+ */
1308
1308
  id: bigint;
1309
1309
  /**
1310
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1311
- */
1310
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 3;
1311
+ */
1312
1312
  type?: ResourceType;
1313
1313
  }
1314
1314
  /**
@@ -1316,8 +1316,8 @@ export interface ResourceAPI_CreateRoot_Request {
1316
1316
  */
1317
1317
  export interface ResourceAPI_CreateRoot_Response {
1318
1318
  /**
1319
- * @generated from protobuf field: uint64 resource_id = 1;
1320
- */
1319
+ * @generated from protobuf field: uint64 resource_id = 1;
1320
+ */
1321
1321
  resourceId: bigint;
1322
1322
  }
1323
1323
  /**
@@ -1332,8 +1332,8 @@ export interface ResourceAPI_Remove {
1332
1332
  */
1333
1333
  export interface ResourceAPI_Remove_Request {
1334
1334
  /**
1335
- * @generated from protobuf field: uint64 id = 1;
1336
- */
1335
+ * @generated from protobuf field: uint64 id = 1;
1336
+ */
1337
1337
  id: bigint;
1338
1338
  }
1339
1339
  /**
@@ -1356,12 +1356,12 @@ export interface ResourceAPI_Name_Set {
1356
1356
  */
1357
1357
  export interface ResourceAPI_Name_Set_Request {
1358
1358
  /**
1359
- * @generated from protobuf field: uint64 resource_id = 1;
1360
- */
1359
+ * @generated from protobuf field: uint64 resource_id = 1;
1360
+ */
1361
1361
  resourceId: bigint;
1362
1362
  /**
1363
- * @generated from protobuf field: string name = 2;
1364
- */
1363
+ * @generated from protobuf field: string name = 2;
1364
+ */
1365
1365
  name: string;
1366
1366
  }
1367
1367
  /**
@@ -1379,8 +1379,8 @@ export interface ResourceAPI_Name_Get {
1379
1379
  */
1380
1380
  export interface ResourceAPI_Name_Get_Request {
1381
1381
  /**
1382
- * @generated from protobuf field: string name = 1;
1383
- */
1382
+ * @generated from protobuf field: string name = 1;
1383
+ */
1384
1384
  name: string;
1385
1385
  }
1386
1386
  /**
@@ -1388,8 +1388,8 @@ export interface ResourceAPI_Name_Get_Request {
1388
1388
  */
1389
1389
  export interface ResourceAPI_Name_Get_Response {
1390
1390
  /**
1391
- * @generated from protobuf field: uint64 resource_id = 1;
1392
- */
1391
+ * @generated from protobuf field: uint64 resource_id = 1;
1392
+ */
1393
1393
  resourceId: bigint;
1394
1394
  }
1395
1395
  /**
@@ -1402,8 +1402,8 @@ export interface ResourceAPI_Name_Exists {
1402
1402
  */
1403
1403
  export interface ResourceAPI_Name_Exists_Request {
1404
1404
  /**
1405
- * @generated from protobuf field: string name = 1;
1406
- */
1405
+ * @generated from protobuf field: string name = 1;
1406
+ */
1407
1407
  name: string;
1408
1408
  }
1409
1409
  /**
@@ -1411,8 +1411,8 @@ export interface ResourceAPI_Name_Exists_Request {
1411
1411
  */
1412
1412
  export interface ResourceAPI_Name_Exists_Response {
1413
1413
  /**
1414
- * @generated from protobuf field: bool exists = 1;
1415
- */
1414
+ * @generated from protobuf field: bool exists = 1;
1415
+ */
1416
1416
  exists: boolean;
1417
1417
  }
1418
1418
  /**
@@ -1425,8 +1425,8 @@ export interface ResourceAPI_Name_Delete {
1425
1425
  */
1426
1426
  export interface ResourceAPI_Name_Delete_Request {
1427
1427
  /**
1428
- * @generated from protobuf field: string name = 1;
1429
- */
1428
+ * @generated from protobuf field: string name = 1;
1429
+ */
1430
1430
  name: string;
1431
1431
  }
1432
1432
  /**
@@ -1444,19 +1444,19 @@ export interface ResourceAPI_Tree {
1444
1444
  */
1445
1445
  export interface ResourceAPI_Tree_Request {
1446
1446
  /**
1447
- * @generated from protobuf field: uint64 resource_id = 1;
1448
- */
1447
+ * @generated from protobuf field: uint64 resource_id = 1;
1448
+ */
1449
1449
  resourceId: bigint;
1450
1450
  /**
1451
- * Limit maximum depth the tree is traversed.
1452
- * The resource <resource_id> is considered on depth = 0, the values of its fiels
1453
- * are on depth = 1 and so on.
1454
- * The maximum uint32 value disables the limit at all.
1455
- * 0 value makes API to return only single resource <resource_id> and is actually
1456
- * equal to Get.Request
1457
- *
1458
- * @generated from protobuf field: optional uint32 max_depth = 2;
1459
- */
1451
+ * Limit maximum depth the tree is traversed.
1452
+ * The resource <resource_id> is considered on depth = 0, the values of its fiels
1453
+ * are on depth = 1 and so on.
1454
+ * The maximum uint32 value disables the limit at all.
1455
+ * 0 value makes API to return only single resource <resource_id> and is actually
1456
+ * equal to Get.Request
1457
+ *
1458
+ * @generated from protobuf field: optional uint32 max_depth = 2;
1459
+ */
1460
1460
  maxDepth?: number;
1461
1461
  }
1462
1462
  /**
@@ -1466,8 +1466,8 @@ export interface ResourceAPI_Tree_Request {
1466
1466
  */
1467
1467
  export interface ResourceAPI_Tree_Response {
1468
1468
  /**
1469
- * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1470
- */
1469
+ * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1;
1470
+ */
1471
1471
  resource?: Resource;
1472
1472
  }
1473
1473
  /**
@@ -1485,14 +1485,14 @@ export interface FieldAPI_Create {
1485
1485
  */
1486
1486
  export interface FieldAPI_Create_Request {
1487
1487
  /**
1488
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldType type = 1;
1489
- */
1488
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldType type = 1;
1489
+ */
1490
1490
  type: FieldType;
1491
1491
  /**
1492
- * field ID is always combination of parent resource ID and field name
1493
- *
1494
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 2;
1495
- */
1492
+ * field ID is always combination of parent resource ID and field name
1493
+ *
1494
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 2;
1495
+ */
1496
1496
  id?: FieldRef;
1497
1497
  }
1498
1498
  /**
@@ -1500,8 +1500,8 @@ export interface FieldAPI_Create_Request {
1500
1500
  */
1501
1501
  export interface FieldAPI_Create_Response {
1502
1502
  /**
1503
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef global_id = 1;
1504
- */
1503
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef global_id = 1;
1504
+ */
1505
1505
  globalId?: FieldRef;
1506
1506
  }
1507
1507
  /**
@@ -1514,8 +1514,8 @@ export interface FieldAPI_Exists {
1514
1514
  */
1515
1515
  export interface FieldAPI_Exists_Request {
1516
1516
  /**
1517
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1518
- */
1517
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1518
+ */
1519
1519
  field?: FieldRef;
1520
1520
  }
1521
1521
  /**
@@ -1523,8 +1523,8 @@ export interface FieldAPI_Exists_Request {
1523
1523
  */
1524
1524
  export interface FieldAPI_Exists_Response {
1525
1525
  /**
1526
- * @generated from protobuf field: bool exists = 1;
1527
- */
1526
+ * @generated from protobuf field: bool exists = 1;
1527
+ */
1528
1528
  exists: boolean;
1529
1529
  }
1530
1530
  /**
@@ -1537,12 +1537,12 @@ export interface FieldAPI_Set {
1537
1537
  */
1538
1538
  export interface FieldAPI_Set_Request {
1539
1539
  /**
1540
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1541
- */
1540
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1541
+ */
1542
1542
  field?: FieldRef;
1543
1543
  /**
1544
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef value = 2;
1545
- */
1544
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef value = 2;
1545
+ */
1546
1546
  value?: FieldRef;
1547
1547
  }
1548
1548
  /**
@@ -1560,12 +1560,12 @@ export interface FieldAPI_SetError {
1560
1560
  */
1561
1561
  export interface FieldAPI_SetError_Request {
1562
1562
  /**
1563
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1564
- */
1563
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1564
+ */
1565
1565
  field?: FieldRef;
1566
1566
  /**
1567
- * @generated from protobuf field: uint64 err_resource_id = 2;
1568
- */
1567
+ * @generated from protobuf field: uint64 err_resource_id = 2;
1568
+ */
1569
1569
  errResourceId: bigint;
1570
1570
  }
1571
1571
  /**
@@ -1583,8 +1583,8 @@ export interface FieldAPI_Get {
1583
1583
  */
1584
1584
  export interface FieldAPI_Get_Request {
1585
1585
  /**
1586
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1587
- */
1586
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1587
+ */
1588
1588
  field?: FieldRef;
1589
1589
  }
1590
1590
  /**
@@ -1592,8 +1592,8 @@ export interface FieldAPI_Get_Request {
1592
1592
  */
1593
1593
  export interface FieldAPI_Get_Response {
1594
1594
  /**
1595
- * @generated from protobuf field: MiLaboratories.PL.API.Field field = 1;
1596
- */
1595
+ * @generated from protobuf field: MiLaboratories.PL.API.Field field = 1;
1596
+ */
1597
1597
  field?: Field;
1598
1598
  }
1599
1599
  /**
@@ -1606,8 +1606,8 @@ export interface FieldAPI_Reset {
1606
1606
  */
1607
1607
  export interface FieldAPI_Reset_Request {
1608
1608
  /**
1609
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1610
- */
1609
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1610
+ */
1611
1611
  field?: FieldRef;
1612
1612
  }
1613
1613
  /**
@@ -1625,8 +1625,8 @@ export interface FieldAPI_Remove {
1625
1625
  */
1626
1626
  export interface FieldAPI_Remove_Request {
1627
1627
  /**
1628
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1629
- */
1628
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef field = 1;
1629
+ */
1630
1630
  field?: FieldRef;
1631
1631
  }
1632
1632
  /**
@@ -1644,23 +1644,23 @@ export interface FieldAPI_List {
1644
1644
  */
1645
1645
  export interface FieldAPI_List_Request {
1646
1646
  /**
1647
- * @generated from protobuf field: uint64 resource_id = 1;
1648
- */
1647
+ * @generated from protobuf field: uint64 resource_id = 1;
1648
+ */
1649
1649
  resourceId: bigint;
1650
1650
  /**
1651
- * Start the listing from given position, returning first field with
1652
- * name >= start_from.
1653
- *
1654
- * @generated from protobuf field: string start_from = 2;
1655
- */
1651
+ * Start the listing from given position, returning first field with
1652
+ * name >= start_from.
1653
+ *
1654
+ * @generated from protobuf field: string start_from = 2;
1655
+ */
1656
1656
  startFrom: string;
1657
1657
  /**
1658
- * Non-zero value makes API to limit number of returned fields to at
1659
- * most <limit>.
1660
- * Zero value makes API to return all available fields of the resource.
1661
- *
1662
- * @generated from protobuf field: uint32 limit = 3;
1663
- */
1658
+ * Non-zero value makes API to limit number of returned fields to at
1659
+ * most <limit>.
1660
+ * Zero value makes API to return all available fields of the resource.
1661
+ *
1662
+ * @generated from protobuf field: uint32 limit = 3;
1663
+ */
1664
1664
  limit: number;
1665
1665
  }
1666
1666
  /**
@@ -1670,19 +1670,19 @@ export interface FieldAPI_List_Request {
1670
1670
  */
1671
1671
  export interface FieldAPI_List_Response {
1672
1672
  /**
1673
- * @generated from protobuf field: MiLaboratories.PL.API.Field field = 1;
1674
- */
1673
+ * @generated from protobuf field: MiLaboratories.PL.API.Field field = 1;
1674
+ */
1675
1675
  field?: Field;
1676
1676
  /**
1677
- * The name of field next to the current one.
1678
- *
1679
- * Is not empty only for the last message in the current listing, when <limit> was > 0 in List.Request AND
1680
- * there is more items to read (the listing was stopped because of that limit)
1681
- *
1682
- * Use <next> value as <start_from> in the List.Request to continue listing.
1683
- *
1684
- * @generated from protobuf field: string next = 4;
1685
- */
1677
+ * The name of field next to the current one.
1678
+ *
1679
+ * Is not empty only for the last message in the current listing, when <limit> was > 0 in List.Request AND
1680
+ * there is more items to read (the listing was stopped because of that limit)
1681
+ *
1682
+ * Use <next> value as <start_from> in the List.Request to continue listing.
1683
+ *
1684
+ * @generated from protobuf field: string next = 4;
1685
+ */
1686
1686
  next: string;
1687
1687
  }
1688
1688
  /**
@@ -1700,12 +1700,12 @@ export interface NotificationAPI_Get {
1700
1700
  */
1701
1701
  export interface NotificationAPI_Get_Request {
1702
1702
  /**
1703
- * @generated from protobuf field: uint64 subscription = 1;
1704
- */
1703
+ * @generated from protobuf field: uint64 subscription = 1;
1704
+ */
1705
1705
  subscription: bigint;
1706
1706
  /**
1707
- * @generated from protobuf field: uint32 max_notifications = 2;
1708
- */
1707
+ * @generated from protobuf field: uint32 max_notifications = 2;
1708
+ */
1709
1709
  maxNotifications: number;
1710
1710
  }
1711
1711
  /**
@@ -1713,8 +1713,8 @@ export interface NotificationAPI_Get_Request {
1713
1713
  */
1714
1714
  export interface NotificationAPI_Get_Response {
1715
1715
  /**
1716
- * @generated from protobuf field: repeated MiLaboratories.PL.API.Notification notifications = 1;
1717
- */
1716
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.Notification notifications = 1;
1717
+ */
1718
1718
  notifications: Notification[];
1719
1719
  }
1720
1720
  /**
@@ -1727,12 +1727,12 @@ export interface NotificationAPI_Ack {
1727
1727
  */
1728
1728
  export interface NotificationAPI_Ack_Request {
1729
1729
  /**
1730
- * @generated from protobuf field: uint64 subscription_id = 1;
1731
- */
1730
+ * @generated from protobuf field: uint64 subscription_id = 1;
1731
+ */
1732
1732
  subscriptionId: bigint;
1733
1733
  /**
1734
- * @generated from protobuf field: uint64 event_id = 2;
1735
- */
1734
+ * @generated from protobuf field: uint64 event_id = 2;
1735
+ */
1736
1736
  eventId: bigint;
1737
1737
  }
1738
1738
  /**
@@ -1750,12 +1750,12 @@ export interface NotificationAPI_Discard {
1750
1750
  */
1751
1751
  export interface NotificationAPI_Discard_Request {
1752
1752
  /**
1753
- * @generated from protobuf field: uint64 subscription_id = 1;
1754
- */
1753
+ * @generated from protobuf field: uint64 subscription_id = 1;
1754
+ */
1755
1755
  subscriptionId: bigint;
1756
1756
  /**
1757
- * @generated from protobuf field: uint64 event_id = 2;
1758
- */
1757
+ * @generated from protobuf field: uint64 event_id = 2;
1758
+ */
1759
1759
  eventId: bigint;
1760
1760
  }
1761
1761
  /**
@@ -1778,16 +1778,16 @@ export interface SubscriptionAPI_CreateSubscription {
1778
1778
  */
1779
1779
  export interface SubscriptionAPI_CreateSubscription_Request {
1780
1780
  /**
1781
- * @generated from protobuf field: uint64 id = 1;
1782
- */
1781
+ * @generated from protobuf field: uint64 id = 1;
1782
+ */
1783
1783
  id: bigint;
1784
1784
  /**
1785
- * @generated from protobuf field: bool blocking = 2;
1786
- */
1785
+ * @generated from protobuf field: bool blocking = 2;
1786
+ */
1787
1787
  blocking: boolean;
1788
1788
  /**
1789
- * @generated from protobuf field: bool gc = 3;
1790
- */
1789
+ * @generated from protobuf field: bool gc = 3;
1790
+ */
1791
1791
  gc: boolean;
1792
1792
  }
1793
1793
  /**
@@ -1795,8 +1795,8 @@ export interface SubscriptionAPI_CreateSubscription_Request {
1795
1795
  */
1796
1796
  export interface SubscriptionAPI_CreateSubscription_Response {
1797
1797
  /**
1798
- * @generated from protobuf field: uint64 subscription_id = 1;
1799
- */
1798
+ * @generated from protobuf field: uint64 subscription_id = 1;
1799
+ */
1800
1800
  subscriptionId: bigint;
1801
1801
  }
1802
1802
  /**
@@ -1809,12 +1809,12 @@ export interface SubscriptionAPI_CreateFilter {
1809
1809
  */
1810
1810
  export interface SubscriptionAPI_CreateFilter_Request {
1811
1811
  /**
1812
- * @generated from protobuf field: uint64 id = 1;
1813
- */
1812
+ * @generated from protobuf field: uint64 id = 1;
1813
+ */
1814
1814
  id: bigint;
1815
1815
  /**
1816
- * @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter filter = 2;
1817
- */
1816
+ * @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter filter = 2;
1817
+ */
1818
1818
  filter?: NotificationFilter;
1819
1819
  }
1820
1820
  /**
@@ -1822,8 +1822,8 @@ export interface SubscriptionAPI_CreateFilter_Request {
1822
1822
  */
1823
1823
  export interface SubscriptionAPI_CreateFilter_Response {
1824
1824
  /**
1825
- * @generated from protobuf field: uint64 filter_id = 1;
1826
- */
1825
+ * @generated from protobuf field: uint64 filter_id = 1;
1826
+ */
1827
1827
  filterId: bigint;
1828
1828
  }
1829
1829
  /**
@@ -1836,22 +1836,22 @@ export interface SubscriptionAPI_ListSubscriptions {
1836
1836
  */
1837
1837
  export interface SubscriptionAPI_ListSubscriptions_SubscriptionInfo {
1838
1838
  /**
1839
- * @generated from protobuf field: MiLaboratories.PL.API.Subscription subscription = 1;
1840
- */
1839
+ * @generated from protobuf field: MiLaboratories.PL.API.Subscription subscription = 1;
1840
+ */
1841
1841
  subscription?: Subscription;
1842
1842
  /**
1843
- * TS of the moment someone last read notifications from subscription.
1844
- * old time = stale (lost) subscription
1845
- *
1846
- * @generated from protobuf field: uint64 last_read_time = 2;
1847
- */
1843
+ * TS of the moment someone last read notifications from subscription.
1844
+ * old time = stale (lost) subscription
1845
+ *
1846
+ * @generated from protobuf field: uint64 last_read_time = 2;
1847
+ */
1848
1848
  lastReadTime: bigint;
1849
1849
  /**
1850
- * number of not-yet-read notifications in subscription queue
1851
- * (notifications subscriber is expected to get on next reads)
1852
- *
1853
- * @generated from protobuf field: uint64 notification_queue_size = 3;
1854
- */
1850
+ * number of not-yet-read notifications in subscription queue
1851
+ * (notifications subscriber is expected to get on next reads)
1852
+ *
1853
+ * @generated from protobuf field: uint64 notification_queue_size = 3;
1854
+ */
1855
1855
  notificationQueueSize: bigint;
1856
1856
  }
1857
1857
  /**
@@ -1864,8 +1864,8 @@ export interface SubscriptionAPI_ListSubscriptions_Request {
1864
1864
  */
1865
1865
  export interface SubscriptionAPI_ListSubscriptions_Response {
1866
1866
  /**
1867
- * @generated from protobuf field: repeated MiLaboratories.PL.API.SubscriptionAPI.ListSubscriptions.SubscriptionInfo subscriptions = 1;
1868
- */
1867
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.SubscriptionAPI.ListSubscriptions.SubscriptionInfo subscriptions = 1;
1868
+ */
1869
1869
  subscriptions: SubscriptionAPI_ListSubscriptions_SubscriptionInfo[];
1870
1870
  }
1871
1871
  /**
@@ -1878,16 +1878,16 @@ export interface SubscriptionAPI_AttachFilter {
1878
1878
  */
1879
1879
  export interface SubscriptionAPI_AttachFilter_Request {
1880
1880
  /**
1881
- * @generated from protobuf field: uint64 subscription_id = 1;
1882
- */
1881
+ * @generated from protobuf field: uint64 subscription_id = 1;
1882
+ */
1883
1883
  subscriptionId: bigint;
1884
1884
  /**
1885
- * @generated from protobuf field: string filter_name = 2;
1886
- */
1885
+ * @generated from protobuf field: string filter_name = 2;
1886
+ */
1887
1887
  filterName: string;
1888
1888
  /**
1889
- * @generated from protobuf field: uint64 filter_id = 3;
1890
- */
1889
+ * @generated from protobuf field: uint64 filter_id = 3;
1890
+ */
1891
1891
  filterId: bigint;
1892
1892
  }
1893
1893
  /**
@@ -1905,12 +1905,12 @@ export interface SubscriptionAPI_DetachFilter {
1905
1905
  */
1906
1906
  export interface SubscriptionAPI_DetachFilter_Request {
1907
1907
  /**
1908
- * @generated from protobuf field: uint64 subscription_id = 1;
1909
- */
1908
+ * @generated from protobuf field: uint64 subscription_id = 1;
1909
+ */
1910
1910
  subscriptionId: bigint;
1911
1911
  /**
1912
- * @generated from protobuf field: string filter_name = 2;
1913
- */
1912
+ * @generated from protobuf field: string filter_name = 2;
1913
+ */
1914
1914
  filterName: string;
1915
1915
  }
1916
1916
  /**
@@ -1933,18 +1933,18 @@ export interface ControllerAPI_Register {
1933
1933
  */
1934
1934
  export interface ControllerAPI_Register_Request {
1935
1935
  /**
1936
- * @generated from protobuf field: string controller_type = 1;
1937
- */
1936
+ * @generated from protobuf field: string controller_type = 1;
1937
+ */
1938
1938
  controllerType: string;
1939
1939
  /**
1940
- * @generated from protobuf field: map<string, MiLaboratories.PL.RTypes.NotificationFilter> filters = 2;
1941
- */
1940
+ * @generated from protobuf field: map<string, MiLaboratories.PL.RTypes.NotificationFilter> filters = 2;
1941
+ */
1942
1942
  filters: {
1943
1943
  [key: string]: NotificationFilter;
1944
1944
  };
1945
1945
  /**
1946
- * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceSchema resource_schemas = 3;
1947
- */
1946
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceSchema resource_schemas = 3;
1947
+ */
1948
1948
  resourceSchemas: ResourceSchema[];
1949
1949
  }
1950
1950
  /**
@@ -1952,12 +1952,12 @@ export interface ControllerAPI_Register_Request {
1952
1952
  */
1953
1953
  export interface ControllerAPI_Register_Response {
1954
1954
  /**
1955
- * @generated from protobuf field: uint64 controller_id = 1;
1956
- */
1955
+ * @generated from protobuf field: uint64 controller_id = 1;
1956
+ */
1957
1957
  controllerId: bigint;
1958
1958
  /**
1959
- * @generated from protobuf field: uint64 subscription_id = 2;
1960
- */
1959
+ * @generated from protobuf field: uint64 subscription_id = 2;
1960
+ */
1961
1961
  subscriptionId: bigint;
1962
1962
  }
1963
1963
  /**
@@ -1970,8 +1970,8 @@ export interface ControllerAPI_Exists {
1970
1970
  */
1971
1971
  export interface ControllerAPI_Exists_Request {
1972
1972
  /**
1973
- * @generated from protobuf field: string controller_type = 1;
1974
- */
1973
+ * @generated from protobuf field: string controller_type = 1;
1974
+ */
1975
1975
  controllerType: string;
1976
1976
  }
1977
1977
  /**
@@ -1979,8 +1979,8 @@ export interface ControllerAPI_Exists_Request {
1979
1979
  */
1980
1980
  export interface ControllerAPI_Exists_Response {
1981
1981
  /**
1982
- * @generated from protobuf field: bool exists = 1;
1983
- */
1982
+ * @generated from protobuf field: bool exists = 1;
1983
+ */
1984
1984
  exists: boolean;
1985
1985
  }
1986
1986
  /**
@@ -1993,18 +1993,18 @@ export interface ControllerAPI_Update {
1993
1993
  */
1994
1994
  export interface ControllerAPI_Update_Request {
1995
1995
  /**
1996
- * @generated from protobuf field: string controller_type = 1;
1997
- */
1996
+ * @generated from protobuf field: string controller_type = 1;
1997
+ */
1998
1998
  controllerType: string;
1999
1999
  /**
2000
- * @generated from protobuf field: map<string, MiLaboratories.PL.RTypes.NotificationFilter> filters = 2;
2001
- */
2000
+ * @generated from protobuf field: map<string, MiLaboratories.PL.RTypes.NotificationFilter> filters = 2;
2001
+ */
2002
2002
  filters: {
2003
2003
  [key: string]: NotificationFilter;
2004
2004
  };
2005
2005
  /**
2006
- * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceSchema resource_schemas = 3;
2007
- */
2006
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceSchema resource_schemas = 3;
2007
+ */
2008
2008
  resourceSchemas: ResourceSchema[];
2009
2009
  }
2010
2010
  /**
@@ -2022,8 +2022,8 @@ export interface ControllerAPI_Deregister {
2022
2022
  */
2023
2023
  export interface ControllerAPI_Deregister_Request {
2024
2024
  /**
2025
- * @generated from protobuf field: string controller_type = 1;
2026
- */
2025
+ * @generated from protobuf field: string controller_type = 1;
2026
+ */
2027
2027
  controllerType: string;
2028
2028
  }
2029
2029
  /**
@@ -2041,12 +2041,12 @@ export interface ControllerAPI_Create {
2041
2041
  */
2042
2042
  export interface ControllerAPI_Create_Request {
2043
2043
  /**
2044
- * @generated from protobuf field: uint64 id = 1;
2045
- */
2044
+ * @generated from protobuf field: uint64 id = 1;
2045
+ */
2046
2046
  id: bigint;
2047
2047
  /**
2048
- * @generated from protobuf field: string controller_type = 2;
2049
- */
2048
+ * @generated from protobuf field: string controller_type = 2;
2049
+ */
2050
2050
  controllerType: string;
2051
2051
  }
2052
2052
  /**
@@ -2054,8 +2054,8 @@ export interface ControllerAPI_Create_Request {
2054
2054
  */
2055
2055
  export interface ControllerAPI_Create_Response {
2056
2056
  /**
2057
- * @generated from protobuf field: uint64 controller_id = 1;
2058
- */
2057
+ * @generated from protobuf field: uint64 controller_id = 1;
2058
+ */
2059
2059
  controllerId: bigint;
2060
2060
  }
2061
2061
  /**
@@ -2068,8 +2068,8 @@ export interface ControllerAPI_Get {
2068
2068
  */
2069
2069
  export interface ControllerAPI_Get_Request {
2070
2070
  /**
2071
- * @generated from protobuf field: string controller_type = 1;
2072
- */
2071
+ * @generated from protobuf field: string controller_type = 1;
2072
+ */
2073
2073
  controllerType: string;
2074
2074
  }
2075
2075
  /**
@@ -2077,8 +2077,8 @@ export interface ControllerAPI_Get_Request {
2077
2077
  */
2078
2078
  export interface ControllerAPI_Get_Response {
2079
2079
  /**
2080
- * @generated from protobuf field: MiLaboratories.PL.API.Controller controller = 1;
2081
- */
2080
+ * @generated from protobuf field: MiLaboratories.PL.API.Controller controller = 1;
2081
+ */
2082
2082
  controller?: Controller;
2083
2083
  }
2084
2084
  /**
@@ -2091,12 +2091,12 @@ export interface ControllerAPI_AttachSubscription {
2091
2091
  */
2092
2092
  export interface ControllerAPI_AttachSubscription_Request {
2093
2093
  /**
2094
- * @generated from protobuf field: uint64 controller_id = 1;
2095
- */
2094
+ * @generated from protobuf field: uint64 controller_id = 1;
2095
+ */
2096
2096
  controllerId: bigint;
2097
2097
  /**
2098
- * @generated from protobuf field: uint64 subscription_id = 2;
2099
- */
2098
+ * @generated from protobuf field: uint64 subscription_id = 2;
2099
+ */
2100
2100
  subscriptionId: bigint;
2101
2101
  }
2102
2102
  /**
@@ -2114,12 +2114,12 @@ export interface ControllerAPI_GetNotifications {
2114
2114
  */
2115
2115
  export interface ControllerAPI_GetNotifications_Request {
2116
2116
  /**
2117
- * @generated from protobuf field: string controller_type = 1;
2118
- */
2117
+ * @generated from protobuf field: string controller_type = 1;
2118
+ */
2119
2119
  controllerType: string;
2120
2120
  /**
2121
- * @generated from protobuf field: uint32 max_notifications = 2;
2122
- */
2121
+ * @generated from protobuf field: uint32 max_notifications = 2;
2122
+ */
2123
2123
  maxNotifications: number;
2124
2124
  }
2125
2125
  /**
@@ -2127,8 +2127,8 @@ export interface ControllerAPI_GetNotifications_Request {
2127
2127
  */
2128
2128
  export interface ControllerAPI_GetNotifications_Response {
2129
2129
  /**
2130
- * @generated from protobuf field: repeated MiLaboratories.PL.API.Notification notifications = 1;
2131
- */
2130
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.Notification notifications = 1;
2131
+ */
2132
2132
  notifications: Notification[];
2133
2133
  }
2134
2134
  /**
@@ -2141,12 +2141,12 @@ export interface ControllerAPI_WriteAliasesAndUrls {
2141
2141
  */
2142
2142
  export interface ControllerAPI_WriteAliasesAndUrls_Request {
2143
2143
  /**
2144
- * @generated from protobuf field: string controller_type = 1;
2145
- */
2144
+ * @generated from protobuf field: string controller_type = 1;
2145
+ */
2146
2146
  controllerType: string;
2147
2147
  /**
2148
- * @generated from protobuf field: map<string, string> aliases_to_urls = 2;
2149
- */
2148
+ * @generated from protobuf field: map<string, string> aliases_to_urls = 2;
2149
+ */
2150
2150
  aliasesToUrls: {
2151
2151
  [key: string]: string;
2152
2152
  };
@@ -2166,12 +2166,12 @@ export interface ControllerAPI_GetUrl {
2166
2166
  */
2167
2167
  export interface ControllerAPI_GetUrl_Request {
2168
2168
  /**
2169
- * @generated from protobuf field: string controller_alias = 1;
2170
- */
2169
+ * @generated from protobuf field: string controller_alias = 1;
2170
+ */
2171
2171
  controllerAlias: string;
2172
2172
  /**
2173
- * @generated from protobuf field: uint64 resource_id = 2;
2174
- */
2173
+ * @generated from protobuf field: uint64 resource_id = 2;
2174
+ */
2175
2175
  resourceId: bigint;
2176
2176
  }
2177
2177
  /**
@@ -2179,8 +2179,8 @@ export interface ControllerAPI_GetUrl_Request {
2179
2179
  */
2180
2180
  export interface ControllerAPI_GetUrl_Response {
2181
2181
  /**
2182
- * @generated from protobuf field: string controller_url = 2;
2183
- */
2182
+ * @generated from protobuf field: string controller_url = 2;
2183
+ */
2184
2184
  controllerUrl: string;
2185
2185
  }
2186
2186
  /**
@@ -2193,8 +2193,8 @@ export interface ControllerAPI_RemoveAliasesAndUrls {
2193
2193
  */
2194
2194
  export interface ControllerAPI_RemoveAliasesAndUrls_Request {
2195
2195
  /**
2196
- * @generated from protobuf field: string controller_type = 1;
2197
- */
2196
+ * @generated from protobuf field: string controller_type = 1;
2197
+ */
2198
2198
  controllerType: string;
2199
2199
  }
2200
2200
  /**
@@ -2212,8 +2212,8 @@ export interface ControllerAPI_SetFeatures {
2212
2212
  */
2213
2213
  export interface ControllerAPI_SetFeatures_Request {
2214
2214
  /**
2215
- * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceAPIFeature features = 2;
2216
- */
2215
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceAPIFeature features = 2;
2216
+ */
2217
2217
  features: ResourceAPIFeature[];
2218
2218
  }
2219
2219
  /**
@@ -2231,8 +2231,8 @@ export interface ControllerAPI_ClearFeatures {
2231
2231
  */
2232
2232
  export interface ControllerAPI_ClearFeatures_Request {
2233
2233
  /**
2234
- * @generated from protobuf field: string controller_type = 1;
2235
- */
2234
+ * @generated from protobuf field: string controller_type = 1;
2235
+ */
2236
2236
  controllerType: string;
2237
2237
  }
2238
2238
  /**
@@ -2255,23 +2255,23 @@ export interface ResourceKVAPI_List {
2255
2255
  */
2256
2256
  export interface ResourceKVAPI_List_Request {
2257
2257
  /**
2258
- * @generated from protobuf field: uint64 resource_id = 1;
2259
- */
2258
+ * @generated from protobuf field: uint64 resource_id = 1;
2259
+ */
2260
2260
  resourceId: bigint;
2261
2261
  /**
2262
- * Start the listing from given position, returning first item with
2263
- * key >= start_from.
2264
- *
2265
- * @generated from protobuf field: string start_from = 2;
2266
- */
2262
+ * Start the listing from given position, returning first item with
2263
+ * key >= start_from.
2264
+ *
2265
+ * @generated from protobuf field: string start_from = 2;
2266
+ */
2267
2267
  startFrom: string;
2268
2268
  /**
2269
- * Non-zero value makes API to limit its responses count to at most
2270
- * <limit> number of items.
2271
- * Zero value makes API to return all available items.
2272
- *
2273
- * @generated from protobuf field: uint32 limit = 3;
2274
- */
2269
+ * Non-zero value makes API to limit its responses count to at most
2270
+ * <limit> number of items.
2271
+ * Zero value makes API to return all available items.
2272
+ *
2273
+ * @generated from protobuf field: uint32 limit = 3;
2274
+ */
2275
2275
  limit: number;
2276
2276
  }
2277
2277
  /**
@@ -2281,19 +2281,19 @@ export interface ResourceKVAPI_List_Request {
2281
2281
  */
2282
2282
  export interface ResourceKVAPI_List_Response {
2283
2283
  /**
2284
- * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Response.KV record = 1;
2285
- */
2284
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceKVAPI.List.Response.KV record = 1;
2285
+ */
2286
2286
  record?: ResourceKVAPI_List_Response_KV;
2287
2287
  /**
2288
- * The key of the KV item next to the last returned item.
2289
- *
2290
- * Is not empty only for the last message in the current listing, when <limit> was > 0 in List.Request AND
2291
- * there is more items to read (the listing was stopped because of that limit)
2292
- *
2293
- * Use <next> value as <start_from> of the List.Request to continue listing.
2294
- *
2295
- * @generated from protobuf field: string next = 4;
2296
- */
2288
+ * The key of the KV item next to the last returned item.
2289
+ *
2290
+ * Is not empty only for the last message in the current listing, when <limit> was > 0 in List.Request AND
2291
+ * there is more items to read (the listing was stopped because of that limit)
2292
+ *
2293
+ * Use <next> value as <start_from> of the List.Request to continue listing.
2294
+ *
2295
+ * @generated from protobuf field: string next = 4;
2296
+ */
2297
2297
  next: string;
2298
2298
  }
2299
2299
  /**
@@ -2301,12 +2301,12 @@ export interface ResourceKVAPI_List_Response {
2301
2301
  */
2302
2302
  export interface ResourceKVAPI_List_Response_KV {
2303
2303
  /**
2304
- * @generated from protobuf field: string key = 2;
2305
- */
2304
+ * @generated from protobuf field: string key = 2;
2305
+ */
2306
2306
  key: string;
2307
2307
  /**
2308
- * @generated from protobuf field: bytes value = 3;
2309
- */
2308
+ * @generated from protobuf field: bytes value = 3;
2309
+ */
2310
2310
  value: Uint8Array;
2311
2311
  }
2312
2312
  /**
@@ -2319,16 +2319,16 @@ export interface ResourceKVAPI_Set {
2319
2319
  */
2320
2320
  export interface ResourceKVAPI_Set_Request {
2321
2321
  /**
2322
- * @generated from protobuf field: uint64 resource_id = 1;
2323
- */
2322
+ * @generated from protobuf field: uint64 resource_id = 1;
2323
+ */
2324
2324
  resourceId: bigint;
2325
2325
  /**
2326
- * @generated from protobuf field: string key = 2;
2327
- */
2326
+ * @generated from protobuf field: string key = 2;
2327
+ */
2328
2328
  key: string;
2329
2329
  /**
2330
- * @generated from protobuf field: bytes value = 3;
2331
- */
2330
+ * @generated from protobuf field: bytes value = 3;
2331
+ */
2332
2332
  value: Uint8Array;
2333
2333
  }
2334
2334
  /**
@@ -2346,12 +2346,12 @@ export interface ResourceKVAPI_Get {
2346
2346
  */
2347
2347
  export interface ResourceKVAPI_Get_Request {
2348
2348
  /**
2349
- * @generated from protobuf field: uint64 resource_id = 1;
2350
- */
2349
+ * @generated from protobuf field: uint64 resource_id = 1;
2350
+ */
2351
2351
  resourceId: bigint;
2352
2352
  /**
2353
- * @generated from protobuf field: string key = 2;
2354
- */
2353
+ * @generated from protobuf field: string key = 2;
2354
+ */
2355
2355
  key: string;
2356
2356
  }
2357
2357
  /**
@@ -2359,8 +2359,8 @@ export interface ResourceKVAPI_Get_Request {
2359
2359
  */
2360
2360
  export interface ResourceKVAPI_Get_Response {
2361
2361
  /**
2362
- * @generated from protobuf field: bytes value = 1;
2363
- */
2362
+ * @generated from protobuf field: bytes value = 1;
2363
+ */
2364
2364
  value: Uint8Array;
2365
2365
  }
2366
2366
  /**
@@ -2373,12 +2373,12 @@ export interface ResourceKVAPI_GetIfExists {
2373
2373
  */
2374
2374
  export interface ResourceKVAPI_GetIfExists_Request {
2375
2375
  /**
2376
- * @generated from protobuf field: uint64 resource_id = 1;
2377
- */
2376
+ * @generated from protobuf field: uint64 resource_id = 1;
2377
+ */
2378
2378
  resourceId: bigint;
2379
2379
  /**
2380
- * @generated from protobuf field: string key = 2;
2381
- */
2380
+ * @generated from protobuf field: string key = 2;
2381
+ */
2382
2382
  key: string;
2383
2383
  }
2384
2384
  /**
@@ -2386,12 +2386,12 @@ export interface ResourceKVAPI_GetIfExists_Request {
2386
2386
  */
2387
2387
  export interface ResourceKVAPI_GetIfExists_Response {
2388
2388
  /**
2389
- * @generated from protobuf field: bytes value = 1;
2390
- */
2389
+ * @generated from protobuf field: bytes value = 1;
2390
+ */
2391
2391
  value: Uint8Array;
2392
2392
  /**
2393
- * @generated from protobuf field: bool exists = 2;
2394
- */
2393
+ * @generated from protobuf field: bool exists = 2;
2394
+ */
2395
2395
  exists: boolean;
2396
2396
  }
2397
2397
  /**
@@ -2404,12 +2404,12 @@ export interface ResourceKVAPI_Delete {
2404
2404
  */
2405
2405
  export interface ResourceKVAPI_Delete_Request {
2406
2406
  /**
2407
- * @generated from protobuf field: uint64 resource_id = 1;
2408
- */
2407
+ * @generated from protobuf field: uint64 resource_id = 1;
2408
+ */
2409
2409
  resourceId: bigint;
2410
2410
  /**
2411
- * @generated from protobuf field: string key = 2;
2412
- */
2411
+ * @generated from protobuf field: string key = 2;
2412
+ */
2413
2413
  key: string;
2414
2414
  }
2415
2415
  /**
@@ -2427,16 +2427,16 @@ export interface ResourceKVAPI_SetFlag {
2427
2427
  */
2428
2428
  export interface ResourceKVAPI_SetFlag_Request {
2429
2429
  /**
2430
- * @generated from protobuf field: uint64 resource_id = 1;
2431
- */
2430
+ * @generated from protobuf field: uint64 resource_id = 1;
2431
+ */
2432
2432
  resourceId: bigint;
2433
2433
  /**
2434
- * @generated from protobuf field: string key = 2;
2435
- */
2434
+ * @generated from protobuf field: string key = 2;
2435
+ */
2436
2436
  key: string;
2437
2437
  /**
2438
- * @generated from protobuf field: bool value = 3;
2439
- */
2438
+ * @generated from protobuf field: bool value = 3;
2439
+ */
2440
2440
  value: boolean;
2441
2441
  }
2442
2442
  /**
@@ -2454,12 +2454,12 @@ export interface ResourceKVAPI_GetFlag {
2454
2454
  */
2455
2455
  export interface ResourceKVAPI_GetFlag_Request {
2456
2456
  /**
2457
- * @generated from protobuf field: uint64 resource_id = 1;
2458
- */
2457
+ * @generated from protobuf field: uint64 resource_id = 1;
2458
+ */
2459
2459
  resourceId: bigint;
2460
2460
  /**
2461
- * @generated from protobuf field: string key = 2;
2462
- */
2461
+ * @generated from protobuf field: string key = 2;
2462
+ */
2463
2463
  key: string;
2464
2464
  }
2465
2465
  /**
@@ -2467,8 +2467,8 @@ export interface ResourceKVAPI_GetFlag_Request {
2467
2467
  */
2468
2468
  export interface ResourceKVAPI_GetFlag_Response {
2469
2469
  /**
2470
- * @generated from protobuf field: bool value = 1;
2471
- */
2470
+ * @generated from protobuf field: bool value = 1;
2471
+ */
2472
2472
  value: boolean;
2473
2473
  }
2474
2474
  /**
@@ -2486,16 +2486,16 @@ export interface ControllerKVAPI_Set {
2486
2486
  */
2487
2487
  export interface ControllerKVAPI_Set_Request {
2488
2488
  /**
2489
- * @generated from protobuf field: string controller_type = 1;
2490
- */
2489
+ * @generated from protobuf field: string controller_type = 1;
2490
+ */
2491
2491
  controllerType: string;
2492
2492
  /**
2493
- * @generated from protobuf field: string key = 2;
2494
- */
2493
+ * @generated from protobuf field: string key = 2;
2494
+ */
2495
2495
  key: string;
2496
2496
  /**
2497
- * @generated from protobuf field: bytes value = 3;
2498
- */
2497
+ * @generated from protobuf field: bytes value = 3;
2498
+ */
2499
2499
  value: Uint8Array;
2500
2500
  }
2501
2501
  /**
@@ -2513,12 +2513,12 @@ export interface ControllerKVAPI_Get {
2513
2513
  */
2514
2514
  export interface ControllerKVAPI_Get_Request {
2515
2515
  /**
2516
- * @generated from protobuf field: string controller_type = 1;
2517
- */
2516
+ * @generated from protobuf field: string controller_type = 1;
2517
+ */
2518
2518
  controllerType: string;
2519
2519
  /**
2520
- * @generated from protobuf field: string key = 2;
2521
- */
2520
+ * @generated from protobuf field: string key = 2;
2521
+ */
2522
2522
  key: string;
2523
2523
  }
2524
2524
  /**
@@ -2526,8 +2526,8 @@ export interface ControllerKVAPI_Get_Request {
2526
2526
  */
2527
2527
  export interface ControllerKVAPI_Get_Response {
2528
2528
  /**
2529
- * @generated from protobuf field: bytes value = 1;
2530
- */
2529
+ * @generated from protobuf field: bytes value = 1;
2530
+ */
2531
2531
  value: Uint8Array;
2532
2532
  }
2533
2533
  /**
@@ -2540,12 +2540,12 @@ export interface ControllerKVAPI_GetIfExists {
2540
2540
  */
2541
2541
  export interface ControllerKVAPI_GetIfExists_Request {
2542
2542
  /**
2543
- * @generated from protobuf field: string controller_type = 1;
2544
- */
2543
+ * @generated from protobuf field: string controller_type = 1;
2544
+ */
2545
2545
  controllerType: string;
2546
2546
  /**
2547
- * @generated from protobuf field: string key = 2;
2548
- */
2547
+ * @generated from protobuf field: string key = 2;
2548
+ */
2549
2549
  key: string;
2550
2550
  }
2551
2551
  /**
@@ -2553,12 +2553,12 @@ export interface ControllerKVAPI_GetIfExists_Request {
2553
2553
  */
2554
2554
  export interface ControllerKVAPI_GetIfExists_Response {
2555
2555
  /**
2556
- * @generated from protobuf field: bytes value = 1;
2557
- */
2556
+ * @generated from protobuf field: bytes value = 1;
2557
+ */
2558
2558
  value: Uint8Array;
2559
2559
  /**
2560
- * @generated from protobuf field: bool exists = 2;
2561
- */
2560
+ * @generated from protobuf field: bool exists = 2;
2561
+ */
2562
2562
  exists: boolean;
2563
2563
  }
2564
2564
  /**
@@ -2576,12 +2576,12 @@ export interface CacheAPI_SetToField {
2576
2576
  */
2577
2577
  export interface CacheAPI_SetToField_Request {
2578
2578
  /**
2579
- * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 1;
2580
- */
2579
+ * @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 1;
2580
+ */
2581
2581
  id?: FieldRef;
2582
2582
  /**
2583
- * @generated from protobuf field: google.protobuf.Duration period = 2;
2584
- */
2583
+ * @generated from protobuf field: google.protobuf.Duration period = 2;
2584
+ */
2585
2585
  period?: Duration;
2586
2586
  }
2587
2587
  /**
@@ -2624,16 +2624,16 @@ export interface LocksAPI_Lease_Create {
2624
2624
  */
2625
2625
  export interface LocksAPI_Lease_Create_Request {
2626
2626
  /**
2627
- * @generated from protobuf field: uint64 resource_id = 1;
2628
- */
2627
+ * @generated from protobuf field: uint64 resource_id = 1;
2628
+ */
2629
2629
  resourceId: bigint;
2630
2630
  /**
2631
- * @generated from protobuf field: google.protobuf.Duration timeout = 3;
2632
- */
2631
+ * @generated from protobuf field: google.protobuf.Duration timeout = 3;
2632
+ */
2633
2633
  timeout?: Duration;
2634
2634
  /**
2635
- * @generated from protobuf field: string name = 4;
2636
- */
2635
+ * @generated from protobuf field: string name = 4;
2636
+ */
2637
2637
  name: string;
2638
2638
  }
2639
2639
  /**
@@ -2641,8 +2641,8 @@ export interface LocksAPI_Lease_Create_Request {
2641
2641
  */
2642
2642
  export interface LocksAPI_Lease_Create_Response {
2643
2643
  /**
2644
- * @generated from protobuf field: bytes lease_id = 1;
2645
- */
2644
+ * @generated from protobuf field: bytes lease_id = 1;
2645
+ */
2646
2646
  leaseId: Uint8Array;
2647
2647
  }
2648
2648
  /**
@@ -2655,20 +2655,20 @@ export interface LocksAPI_Lease_Update {
2655
2655
  */
2656
2656
  export interface LocksAPI_Lease_Update_Request {
2657
2657
  /**
2658
- * @generated from protobuf field: uint64 resource_id = 1;
2659
- */
2658
+ * @generated from protobuf field: uint64 resource_id = 1;
2659
+ */
2660
2660
  resourceId: bigint;
2661
2661
  /**
2662
- * @generated from protobuf field: bytes lease_id = 2;
2663
- */
2662
+ * @generated from protobuf field: bytes lease_id = 2;
2663
+ */
2664
2664
  leaseId: Uint8Array;
2665
2665
  /**
2666
- * @generated from protobuf field: google.protobuf.Duration timeout = 3;
2667
- */
2666
+ * @generated from protobuf field: google.protobuf.Duration timeout = 3;
2667
+ */
2668
2668
  timeout?: Duration;
2669
2669
  /**
2670
- * @generated from protobuf field: string name = 4;
2671
- */
2670
+ * @generated from protobuf field: string name = 4;
2671
+ */
2672
2672
  name: string;
2673
2673
  }
2674
2674
  /**
@@ -2686,12 +2686,12 @@ export interface LocksAPI_Lease_Release {
2686
2686
  */
2687
2687
  export interface LocksAPI_Lease_Release_Request {
2688
2688
  /**
2689
- * @generated from protobuf field: uint64 resource_id = 1;
2690
- */
2689
+ * @generated from protobuf field: uint64 resource_id = 1;
2690
+ */
2691
2691
  resourceId: bigint;
2692
2692
  /**
2693
- * @generated from protobuf field: bytes lease_id = 2;
2694
- */
2693
+ * @generated from protobuf field: bytes lease_id = 2;
2694
+ */
2695
2695
  leaseId: Uint8Array;
2696
2696
  }
2697
2697
  /**
@@ -2719,8 +2719,8 @@ export interface AuthAPI_ListMethods_Request {
2719
2719
  */
2720
2720
  export interface AuthAPI_ListMethods_Response {
2721
2721
  /**
2722
- * @generated from protobuf field: repeated MiLaboratories.PL.API.AuthAPI.ListMethods.MethodInfo methods = 1;
2723
- */
2722
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.AuthAPI.ListMethods.MethodInfo methods = 1;
2723
+ */
2724
2724
  methods: AuthAPI_ListMethods_MethodInfo[];
2725
2725
  }
2726
2726
  /**
@@ -2728,16 +2728,16 @@ export interface AuthAPI_ListMethods_Response {
2728
2728
  */
2729
2729
  export interface AuthAPI_ListMethods_MethodInfo {
2730
2730
  /**
2731
- * @generated from protobuf field: string type = 1;
2732
- */
2731
+ * @generated from protobuf field: string type = 1;
2732
+ */
2733
2733
  type: string;
2734
2734
  /**
2735
- * @generated from protobuf field: string name = 2;
2736
- */
2735
+ * @generated from protobuf field: string name = 2;
2736
+ */
2737
2737
  name: string;
2738
2738
  /**
2739
- * @generated from protobuf field: map<string, string> info = 3;
2740
- */
2739
+ * @generated from protobuf field: map<string, string> info = 3;
2740
+ */
2741
2741
  info: {
2742
2742
  [key: string]: string;
2743
2743
  };
@@ -2752,8 +2752,8 @@ export interface AuthAPI_GetJWTToken {
2752
2752
  */
2753
2753
  export interface AuthAPI_GetJWTToken_Request {
2754
2754
  /**
2755
- * @generated from protobuf field: google.protobuf.Duration expiration = 1;
2756
- */
2755
+ * @generated from protobuf field: google.protobuf.Duration expiration = 1;
2756
+ */
2757
2757
  expiration?: Duration;
2758
2758
  }
2759
2759
  /**
@@ -2761,8 +2761,8 @@ export interface AuthAPI_GetJWTToken_Request {
2761
2761
  */
2762
2762
  export interface AuthAPI_GetJWTToken_Response {
2763
2763
  /**
2764
- * @generated from protobuf field: string token = 1;
2765
- */
2764
+ * @generated from protobuf field: string token = 1;
2765
+ */
2766
2766
  token: string;
2767
2767
  }
2768
2768
  /**
@@ -2785,8 +2785,8 @@ export interface MiscAPI_ListResourceTypes_Request {
2785
2785
  */
2786
2786
  export interface MiscAPI_ListResourceTypes_Response {
2787
2787
  /**
2788
- * @generated from protobuf field: repeated MiLaboratories.PL.Base.ResourceType types = 1;
2789
- */
2788
+ * @generated from protobuf field: repeated MiLaboratories.PL.Base.ResourceType types = 1;
2789
+ */
2790
2790
  types: ResourceType[];
2791
2791
  }
2792
2792
  /**
@@ -2811,17 +2811,34 @@ export interface MaintenanceAPI_Ping_Request {
2811
2811
  */
2812
2812
  export interface MaintenanceAPI_Ping_Response {
2813
2813
  /**
2814
- * @generated from protobuf field: string core_version = 1;
2815
- */
2814
+ * @generated from protobuf field: string core_version = 1;
2815
+ */
2816
2816
  coreVersion: string;
2817
2817
  /**
2818
- * @generated from protobuf field: string core_full_version = 2;
2819
- */
2818
+ * @generated from protobuf field: string core_full_version = 2;
2819
+ */
2820
2820
  coreFullVersion: string;
2821
2821
  /**
2822
- * @generated from protobuf field: string server_info = 3;
2823
- */
2822
+ * @generated from protobuf field: string server_info = 3;
2823
+ */
2824
2824
  serverInfo: string;
2825
+ /**
2826
+ * @generated from protobuf field: MiLaboratories.PL.API.MaintenanceAPI.Ping.Response.Compression compression = 4;
2827
+ */
2828
+ compression: MaintenanceAPI_Ping_Response_Compression;
2829
+ }
2830
+ /**
2831
+ * @generated from protobuf enum MiLaboratories.PL.API.MaintenanceAPI.Ping.Response.Compression
2832
+ */
2833
+ export declare enum MaintenanceAPI_Ping_Response_Compression {
2834
+ /**
2835
+ * @generated from protobuf enum value: NONE = 0;
2836
+ */
2837
+ NONE = 0,
2838
+ /**
2839
+ * @generated from protobuf enum value: GZIP = 1;
2840
+ */
2841
+ GZIP = 1
2825
2842
  }
2826
2843
  declare class TxAPI$Type extends MessageType<TxAPI> {
2827
2844
  constructor();