@milaboratories/pl-client 2.11.3 → 2.11.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/dist/core/transaction.d.ts +2 -1
  2. package/dist/core/transaction.d.ts.map +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +1377 -1173
  6. package/dist/index.mjs.map +1 -1
  7. package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +3 -3
  8. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts +4 -4
  9. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts.map +1 -1
  10. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts +16 -16
  11. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts.map +1 -1
  12. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts +2 -2
  13. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts +11 -11
  14. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts +8 -8
  15. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts.map +1 -1
  16. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts +22 -22
  17. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts.map +1 -1
  18. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts +10 -10
  19. package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +25 -25
  20. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +50 -50
  21. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +415 -304
  22. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -1
  23. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts +70 -66
  24. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts.map +1 -1
  25. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts +4 -4
  26. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +16 -16
  27. package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +30 -30
  28. package/dist/proto/google/api/http.d.ts +93 -89
  29. package/dist/proto/google/api/http.d.ts.map +1 -1
  30. package/dist/proto/google/protobuf/any.d.ts +2 -2
  31. package/dist/proto/google/protobuf/descriptor.d.ts +1298 -1151
  32. package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
  33. package/dist/proto/google/protobuf/duration.d.ts +2 -2
  34. package/dist/proto/google/protobuf/struct.d.ts +10 -8
  35. package/dist/proto/google/protobuf/struct.d.ts.map +1 -1
  36. package/dist/proto/google/protobuf/timestamp.d.ts +2 -2
  37. package/dist/proto/google/protobuf/wrappers.d.ts +36 -9
  38. package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
  39. package/package.json +1 -1
  40. package/src/core/ll_client.test.ts +3 -3
  41. package/src/core/ll_transaction.test.ts +4 -4
  42. package/src/core/transaction.ts +2 -0
  43. package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +5 -5
  44. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +23 -24
  45. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +232 -247
  46. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +3 -3
  47. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +13 -13
  48. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +35 -37
  49. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +375 -399
  50. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +11 -11
  51. package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +26 -26
  52. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +51 -51
  53. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +687 -418
  54. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +113 -101
  55. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +5 -5
  56. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +17 -17
  57. package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +50 -50
  58. package/src/proto/google/api/http.ts +290 -295
  59. package/src/proto/google/protobuf/any.ts +3 -3
  60. package/src/proto/google/protobuf/descriptor.ts +3235 -3123
  61. package/src/proto/google/protobuf/duration.ts +3 -3
  62. package/src/proto/google/protobuf/empty.ts +1 -1
  63. package/src/proto/google/protobuf/struct.ts +13 -11
  64. package/src/proto/google/protobuf/timestamp.ts +3 -3
  65. package/src/proto/google/protobuf/wrappers.ts +48 -14
@@ -10,37 +10,37 @@ export interface Number$ {
10
10
  value: {
11
11
  oneofKind: "int32";
12
12
  /**
13
- * @generated from protobuf field: int32 int32 = 1;
13
+ * @generated from protobuf field: int32 int32 = 1
14
14
  */
15
15
  int32: number;
16
16
  } | {
17
17
  oneofKind: "uint32";
18
18
  /**
19
- * @generated from protobuf field: uint32 uint32 = 2;
19
+ * @generated from protobuf field: uint32 uint32 = 2
20
20
  */
21
21
  uint32: number;
22
22
  } | {
23
23
  oneofKind: "int64";
24
24
  /**
25
- * @generated from protobuf field: int64 int64 = 3;
25
+ * @generated from protobuf field: int64 int64 = 3
26
26
  */
27
27
  int64: bigint;
28
28
  } | {
29
29
  oneofKind: "uint64";
30
30
  /**
31
- * @generated from protobuf field: uint64 uint64 = 4;
31
+ * @generated from protobuf field: uint64 uint64 = 4
32
32
  */
33
33
  uint64: bigint;
34
34
  } | {
35
35
  oneofKind: "float";
36
36
  /**
37
- * @generated from protobuf field: float float = 5;
37
+ * @generated from protobuf field: float float = 5
38
38
  */
39
39
  float: number;
40
40
  } | {
41
41
  oneofKind: "double";
42
42
  /**
43
- * @generated from protobuf field: double double = 6;
43
+ * @generated from protobuf field: double double = 6
44
44
  */
45
45
  double: number;
46
46
  } | {
@@ -52,7 +52,7 @@ export interface Number$ {
52
52
  */
53
53
  export interface ControllerSettings {
54
54
  /**
55
- * @generated from protobuf field: string type = 1;
55
+ * @generated from protobuf field: string type = 1
56
56
  */
57
57
  type: string;
58
58
  }
@@ -61,13 +61,13 @@ export interface ControllerSettings {
61
61
  */
62
62
  export interface SubscriptionSettings {
63
63
  /**
64
- * @generated from protobuf field: bool blocking = 1;
64
+ * @generated from protobuf field: bool blocking = 1
65
65
  */
66
66
  blocking: boolean;
67
67
  /**
68
68
  * FIXME: drop this hack once we allow Data in Structural resources
69
69
  *
70
- * @generated from protobuf field: uint64 randomizer = 2;
70
+ * @generated from protobuf field: uint64 randomizer = 2
71
71
  */
72
72
  randomizer: bigint;
73
73
  }
@@ -81,24 +81,24 @@ export interface NotificationFilter {
81
81
  resourceFilter: {
82
82
  oneofKind: "resourceType";
83
83
  /**
84
- * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 1;
84
+ * @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 1
85
85
  */
86
86
  resourceType: ResourceType;
87
87
  } | {
88
88
  oneofKind: "resourceId";
89
89
  /**
90
- * @generated from protobuf field: uint64 resource_id = 7;
90
+ * @generated from protobuf field: uint64 resource_id = 7
91
91
  */
92
92
  resourceId: bigint;
93
93
  } | {
94
94
  oneofKind: undefined;
95
95
  };
96
96
  /**
97
- * @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter.EventFilter event_filter = 8;
97
+ * @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter.EventFilter event_filter = 8
98
98
  */
99
99
  eventFilter?: NotificationFilter_EventFilter;
100
100
  /**
101
- * @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter.Payload payload = 9;
101
+ * @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter.Payload payload = 9
102
102
  */
103
103
  payload?: NotificationFilter_Payload;
104
104
  }
@@ -107,27 +107,27 @@ export interface NotificationFilter {
107
107
  */
108
108
  export interface NotificationFilter_EventFilter {
109
109
  /**
110
- * @generated from protobuf field: optional bool all = 1;
110
+ * @generated from protobuf field: optional bool all = 1
111
111
  */
112
112
  all?: boolean;
113
113
  /**
114
- * @generated from protobuf field: optional bool resource_created = 2;
114
+ * @generated from protobuf field: optional bool resource_created = 2
115
115
  */
116
116
  resourceCreated?: boolean;
117
117
  /**
118
- * @generated from protobuf field: optional bool resource_deleted = 3;
118
+ * @generated from protobuf field: optional bool resource_deleted = 3
119
119
  */
120
120
  resourceDeleted?: boolean;
121
121
  /**
122
- * @generated from protobuf field: optional bool resource_ready = 5;
122
+ * @generated from protobuf field: optional bool resource_ready = 5
123
123
  */
124
124
  resourceReady?: boolean;
125
125
  /**
126
- * @generated from protobuf field: optional bool resource_duplicate = 6;
126
+ * @generated from protobuf field: optional bool resource_duplicate = 6
127
127
  */
128
128
  resourceDuplicate?: boolean;
129
129
  /**
130
- * @generated from protobuf field: optional bool resource_error = 16;
130
+ * @generated from protobuf field: optional bool resource_error = 16
131
131
  */
132
132
  resourceError?: boolean;
133
133
  /**
@@ -135,43 +135,43 @@ export interface NotificationFilter_EventFilter {
135
135
  * Field events
136
136
  *
137
137
  *
138
- * @generated from protobuf field: optional bool inputs_locked = 13;
138
+ * @generated from protobuf field: optional bool inputs_locked = 13
139
139
  */
140
140
  inputsLocked?: boolean;
141
141
  /**
142
- * @generated from protobuf field: optional bool outputs_locked = 14;
142
+ * @generated from protobuf field: optional bool outputs_locked = 14
143
143
  */
144
144
  outputsLocked?: boolean;
145
145
  /**
146
- * @generated from protobuf field: optional bool field_created = 12;
146
+ * @generated from protobuf field: optional bool field_created = 12
147
147
  */
148
148
  fieldCreated?: boolean;
149
149
  /**
150
- * @generated from protobuf field: optional bool field_got_error = 17;
150
+ * @generated from protobuf field: optional bool field_got_error = 17
151
151
  */
152
152
  fieldGotError?: boolean;
153
153
  /**
154
- * @generated from protobuf field: optional bool input_set = 7;
154
+ * @generated from protobuf field: optional bool input_set = 7
155
155
  */
156
156
  inputSet?: boolean;
157
157
  /**
158
- * @generated from protobuf field: optional bool all_inputs_set = 8;
158
+ * @generated from protobuf field: optional bool all_inputs_set = 8
159
159
  */
160
160
  allInputsSet?: boolean;
161
161
  /**
162
- * @generated from protobuf field: optional bool output_set = 9;
162
+ * @generated from protobuf field: optional bool output_set = 9
163
163
  */
164
164
  outputSet?: boolean;
165
165
  /**
166
- * @generated from protobuf field: optional bool all_outputs_set = 10;
166
+ * @generated from protobuf field: optional bool all_outputs_set = 10
167
167
  */
168
168
  allOutputsSet?: boolean;
169
169
  /**
170
- * @generated from protobuf field: optional bool generic_otw_set = 15;
170
+ * @generated from protobuf field: optional bool generic_otw_set = 15
171
171
  */
172
172
  genericOtwSet?: boolean;
173
173
  /**
174
- * @generated from protobuf field: optional bool dynamic_changed = 11;
174
+ * @generated from protobuf field: optional bool dynamic_changed = 11
175
175
  */
176
176
  dynamicChanged?: boolean;
177
177
  }
@@ -180,7 +180,7 @@ export interface NotificationFilter_EventFilter {
180
180
  */
181
181
  export interface NotificationFilter_Payload {
182
182
  /**
183
- * @generated from protobuf field: map<string, bytes> values = 1;
183
+ * @generated from protobuf field: map<string, bytes> values = 1
184
184
  */
185
185
  values: {
186
186
  [key: string]: Uint8Array;
@@ -8,23 +8,23 @@ import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, Pa
8
8
  */
9
9
  export interface Http {
10
10
  /**
11
- * A list of HTTP configuration rules that apply to individual API methods.
12
- *
13
- * **NOTE:** All service configuration rules follow "last one wins" order.
14
- *
15
- * @generated from protobuf field: repeated google.api.HttpRule rules = 1;
16
- */
11
+ * A list of HTTP configuration rules that apply to individual API methods.
12
+ *
13
+ * **NOTE:** All service configuration rules follow "last one wins" order.
14
+ *
15
+ * @generated from protobuf field: repeated google.api.HttpRule rules = 1
16
+ */
17
17
  rules: HttpRule[];
18
18
  /**
19
- * When set to true, URL path parameters will be fully URI-decoded except in
20
- * cases of single segment matches in reserved expansion, where "%2F" will be
21
- * left encoded.
22
- *
23
- * The default behavior is to not decode RFC 6570 reserved characters in multi
24
- * segment matches.
25
- *
26
- * @generated from protobuf field: bool fully_decode_reserved_expansion = 2;
27
- */
19
+ * When set to true, URL path parameters will be fully URI-decoded except in
20
+ * cases of single segment matches in reserved expansion, where "%2F" will be
21
+ * left encoded.
22
+ *
23
+ * The default behavior is to not decode RFC 6570 reserved characters in multi
24
+ * segment matches.
25
+ *
26
+ * @generated from protobuf field: bool fully_decode_reserved_expansion = 2
27
+ */
28
28
  fullyDecodeReservedExpansion: boolean;
29
29
  }
30
30
  /**
@@ -302,100 +302,104 @@ export interface Http {
302
302
  */
303
303
  export interface HttpRule {
304
304
  /**
305
- * Selects a method to which this rule applies.
306
- *
307
- * Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
308
- *
309
- * @generated from protobuf field: string selector = 1;
310
- */
305
+ * Selects a method to which this rule applies.
306
+ *
307
+ * Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
308
+ *
309
+ * @generated from protobuf field: string selector = 1
310
+ */
311
311
  selector: string;
312
312
  /**
313
- * @generated from protobuf oneof: pattern
314
- */
313
+ * Determines the URL pattern is matched by this rules. This pattern can be
314
+ * used with any of the {get|put|post|delete|patch} methods. A custom method
315
+ * can be defined using the 'custom' field.
316
+ *
317
+ * @generated from protobuf oneof: pattern
318
+ */
315
319
  pattern: {
316
- oneofKind: 'get';
320
+ oneofKind: "get";
317
321
  /**
318
- * Maps to HTTP GET. Used for listing and getting information about
319
- * resources.
320
- *
321
- * @generated from protobuf field: string get = 2;
322
- */
322
+ * Maps to HTTP GET. Used for listing and getting information about
323
+ * resources.
324
+ *
325
+ * @generated from protobuf field: string get = 2
326
+ */
323
327
  get: string;
324
328
  } | {
325
- oneofKind: 'put';
329
+ oneofKind: "put";
326
330
  /**
327
- * Maps to HTTP PUT. Used for replacing a resource.
328
- *
329
- * @generated from protobuf field: string put = 3;
330
- */
331
+ * Maps to HTTP PUT. Used for replacing a resource.
332
+ *
333
+ * @generated from protobuf field: string put = 3
334
+ */
331
335
  put: string;
332
336
  } | {
333
- oneofKind: 'post';
337
+ oneofKind: "post";
334
338
  /**
335
- * Maps to HTTP POST. Used for creating a resource or performing an action.
336
- *
337
- * @generated from protobuf field: string post = 4;
338
- */
339
+ * Maps to HTTP POST. Used for creating a resource or performing an action.
340
+ *
341
+ * @generated from protobuf field: string post = 4
342
+ */
339
343
  post: string;
340
344
  } | {
341
- oneofKind: 'delete';
345
+ oneofKind: "delete";
342
346
  /**
343
- * Maps to HTTP DELETE. Used for deleting a resource.
344
- *
345
- * @generated from protobuf field: string delete = 5;
346
- */
347
+ * Maps to HTTP DELETE. Used for deleting a resource.
348
+ *
349
+ * @generated from protobuf field: string delete = 5
350
+ */
347
351
  delete: string;
348
352
  } | {
349
- oneofKind: 'patch';
353
+ oneofKind: "patch";
350
354
  /**
351
- * Maps to HTTP PATCH. Used for updating a resource.
352
- *
353
- * @generated from protobuf field: string patch = 6;
354
- */
355
+ * Maps to HTTP PATCH. Used for updating a resource.
356
+ *
357
+ * @generated from protobuf field: string patch = 6
358
+ */
355
359
  patch: string;
356
360
  } | {
357
- oneofKind: 'custom';
361
+ oneofKind: "custom";
358
362
  /**
359
- * The custom pattern is used for specifying an HTTP method that is not
360
- * included in the `pattern` field, such as HEAD, or "*" to leave the
361
- * HTTP method unspecified for this rule. The wild-card rule is useful
362
- * for services that provide content to Web (HTML) clients.
363
- *
364
- * @generated from protobuf field: google.api.CustomHttpPattern custom = 8;
365
- */
363
+ * The custom pattern is used for specifying an HTTP method that is not
364
+ * included in the `pattern` field, such as HEAD, or "*" to leave the
365
+ * HTTP method unspecified for this rule. The wild-card rule is useful
366
+ * for services that provide content to Web (HTML) clients.
367
+ *
368
+ * @generated from protobuf field: google.api.CustomHttpPattern custom = 8
369
+ */
366
370
  custom: CustomHttpPattern;
367
371
  } | {
368
372
  oneofKind: undefined;
369
373
  };
370
374
  /**
371
- * The name of the request field whose value is mapped to the HTTP request
372
- * body, or `*` for mapping all request fields not captured by the path
373
- * pattern to the HTTP body, or omitted for not having any HTTP request body.
374
- *
375
- * NOTE: the referred field must be present at the top-level of the request
376
- * message type.
377
- *
378
- * @generated from protobuf field: string body = 7;
379
- */
375
+ * The name of the request field whose value is mapped to the HTTP request
376
+ * body, or `*` for mapping all request fields not captured by the path
377
+ * pattern to the HTTP body, or omitted for not having any HTTP request body.
378
+ *
379
+ * NOTE: the referred field must be present at the top-level of the request
380
+ * message type.
381
+ *
382
+ * @generated from protobuf field: string body = 7
383
+ */
380
384
  body: string;
381
385
  /**
382
- * Optional. The name of the response field whose value is mapped to the HTTP
383
- * response body. When omitted, the entire response message will be used
384
- * as the HTTP response body.
385
- *
386
- * NOTE: The referred field must be present at the top-level of the response
387
- * message type.
388
- *
389
- * @generated from protobuf field: string response_body = 12;
390
- */
386
+ * Optional. The name of the response field whose value is mapped to the HTTP
387
+ * response body. When omitted, the entire response message will be used
388
+ * as the HTTP response body.
389
+ *
390
+ * NOTE: The referred field must be present at the top-level of the response
391
+ * message type.
392
+ *
393
+ * @generated from protobuf field: string response_body = 12
394
+ */
391
395
  responseBody: string;
392
396
  /**
393
- * Additional HTTP bindings for the selector. Nested bindings must
394
- * not contain an `additional_bindings` field themselves (that is,
395
- * the nesting may only be one level deep).
396
- *
397
- * @generated from protobuf field: repeated google.api.HttpRule additional_bindings = 11;
398
- */
397
+ * Additional HTTP bindings for the selector. Nested bindings must
398
+ * not contain an `additional_bindings` field themselves (that is,
399
+ * the nesting may only be one level deep).
400
+ *
401
+ * @generated from protobuf field: repeated google.api.HttpRule additional_bindings = 11
402
+ */
399
403
  additionalBindings: HttpRule[];
400
404
  }
401
405
  /**
@@ -405,16 +409,16 @@ export interface HttpRule {
405
409
  */
406
410
  export interface CustomHttpPattern {
407
411
  /**
408
- * The name of this custom HTTP verb.
409
- *
410
- * @generated from protobuf field: string kind = 1;
411
- */
412
+ * The name of this custom HTTP verb.
413
+ *
414
+ * @generated from protobuf field: string kind = 1
415
+ */
412
416
  kind: string;
413
417
  /**
414
- * The path matched by this custom verb.
415
- *
416
- * @generated from protobuf field: string path = 2;
417
- */
418
+ * The path matched by this custom verb.
419
+ *
420
+ * @generated from protobuf field: string path = 2
421
+ */
418
422
  path: string;
419
423
  }
420
424
  declare class Http$Type extends MessageType<Http> {
@@ -1 +1 @@
1
- {"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../../../../src/proto/google/api/http.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../../../../src/proto/google/api/http.ts"],"names":[],"mappings":"AAkBA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD;;;;;;GAMG;AACH,MAAM,WAAW,IAAI;IACjB;;;;;;OAMG;IACH,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB;;;;;;;;;OASG;IACH,4BAA4B,EAAE,OAAO,CAAC;CACzC;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgRG;AACH,MAAM,WAAW,QAAQ;IACrB;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;OAMG;IACH,OAAO,EAAE;QACL,SAAS,EAAE,KAAK,CAAC;QACjB;;;;;WAKG;QACH,GAAG,EAAE,MAAM,CAAC;KACf,GAAG;QACA,SAAS,EAAE,KAAK,CAAC;QACjB;;;;WAIG;QACH,GAAG,EAAE,MAAM,CAAC;KACf,GAAG;QACA,SAAS,EAAE,MAAM,CAAC;QAClB;;;;WAIG;QACH,IAAI,EAAE,MAAM,CAAC;KAChB,GAAG;QACA,SAAS,EAAE,QAAQ,CAAC;QACpB;;;;WAIG;QACH,MAAM,EAAE,MAAM,CAAC;KAClB,GAAG;QACA,SAAS,EAAE,OAAO,CAAC;QACnB;;;;WAIG;QACH,KAAK,EAAE,MAAM,CAAC;KACjB,GAAG;QACA,SAAS,EAAE,QAAQ,CAAC;QACpB;;;;;;;WAOG;QACH,MAAM,EAAE,iBAAiB,CAAC;KAC7B,GAAG;QACA,SAAS,EAAE,SAAS,CAAC;KACxB,CAAC;IACF;;;;;;;;;OASG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;;;;;;OASG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;;;;;OAMG;IACH,kBAAkB,EAAE,QAAQ,EAAE,CAAC;CAClC;AACD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,cAAM,SAAU,SAAQ,WAAW,CAAC,IAAI,CAAC;;IAOrC,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI;IAQ1C,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI;IAsB1G,mBAAmB,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAYxG;AACD;;GAEG;AACH,eAAO,MAAM,IAAI,WAAkB,CAAC;AAEpC,cAAM,aAAc,SAAQ,WAAW,CAAC,QAAQ,CAAC;;IAe7C,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,QAAQ,CAAC,GAAG,QAAQ;IAWlD,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,QAAQ,GAAG,QAAQ;IAgElH,mBAAmB,CAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAoC5G;AACD;;GAEG;AACH,eAAO,MAAM,QAAQ,eAAsB,CAAC;AAE5C,cAAM,sBAAuB,SAAQ,WAAW,CAAC,iBAAiB,CAAC;;IAO/D,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,iBAAiB,CAAC,GAAG,iBAAiB;IAQpE,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,iBAAiB,GAAG,iBAAiB;IAsBpI,mBAAmB,CAAC,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAYrH;AACD;;GAEG;AACH,eAAO,MAAM,iBAAiB,wBAA+B,CAAC"}
@@ -121,13 +121,13 @@ export interface Any {
121
121
  * used with implementation specific semantics.
122
122
  *
123
123
  *
124
- * @generated from protobuf field: string type_url = 1;
124
+ * @generated from protobuf field: string type_url = 1
125
125
  */
126
126
  typeUrl: string;
127
127
  /**
128
128
  * Must be a valid serialized protocol buffer of the above specified type.
129
129
  *
130
- * @generated from protobuf field: bytes value = 2;
130
+ * @generated from protobuf field: bytes value = 2
131
131
  */
132
132
  value: Uint8Array;
133
133
  }