@milaboratories/pl-client 2.7.14 → 2.8.0

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
@@ -10,36 +10,36 @@ export interface StreamingAPI {
10
10
  */
11
11
  export interface StreamingAPI_StreamBinary {
12
12
  /**
13
- * <resource_id> of Stream resource, that keeps info on item to be streamed.
14
- *
15
- * @generated from protobuf field: uint64 resource_id = 1;
16
- */
13
+ * <resource_id> of Stream resource, that keeps info on item to be streamed.
14
+ *
15
+ * @generated from protobuf field: uint64 resource_id = 1;
16
+ */
17
17
  resourceId: bigint;
18
18
  /**
19
- * <offset> makes streamer to perform seek operation to given offset before sending the data.
20
- *
21
- * @generated from protobuf field: int64 offset = 2;
22
- */
19
+ * <offset> makes streamer to perform seek operation to given offset before sending the data.
20
+ *
21
+ * @generated from protobuf field: int64 offset = 2;
22
+ */
23
23
  offset: bigint;
24
24
  /**
25
- * <chunk_size> limits the maximum size of <data> for each response message in stream.
26
- *
27
- * Default value: 32 768 (32 KiB)
28
- * Max value: 3900 * 1024 (3.9 MiB)
29
- *
30
- * @generated from protobuf field: optional uint32 chunk_size = 11;
31
- */
25
+ * <chunk_size> limits the maximum size of <data> for each response message in stream.
26
+ *
27
+ * Default value: 32 768 (32 KiB)
28
+ * Max value: 3900 * 1024 (3.9 MiB)
29
+ *
30
+ * @generated from protobuf field: optional uint32 chunk_size = 11;
31
+ */
32
32
  chunkSize?: number;
33
33
  /**
34
- * <read_limit> allows client to limit total data sent from server.
35
- * This limit is aggregation of all data, sent in all chunks.
36
- * E.g. to read 2000 bytes of data in chunks of at most
37
- * 130 bytes, use <chunk_size> = 130; <read_limit> = 2000.
38
- * For storage item of appropriate size this settings will result in
39
- * 16 messages from server: 15 of 130 bytes and one of 50 bytes.
40
- *
41
- * @generated from protobuf field: optional int64 read_limit = 20;
42
- */
34
+ * <read_limit> allows client to limit total data sent from server.
35
+ * This limit is aggregation of all data, sent in all chunks.
36
+ * E.g. to read 2000 bytes of data in chunks of at most
37
+ * 130 bytes, use <chunk_size> = 130; <read_limit> = 2000.
38
+ * For storage item of appropriate size this settings will result in
39
+ * 16 messages from server: 15 of 130 bytes and one of 50 bytes.
40
+ *
41
+ * @generated from protobuf field: optional int64 read_limit = 20;
42
+ */
43
43
  readLimit?: bigint;
44
44
  }
45
45
  /**
@@ -47,25 +47,25 @@ export interface StreamingAPI_StreamBinary {
47
47
  */
48
48
  export interface StreamingAPI_ReadBinary {
49
49
  /**
50
- * <resource_id> of Stream resource, that keeps info on item to be streamed.
51
- *
52
- * @generated from protobuf field: uint64 resource_id = 1;
53
- */
50
+ * <resource_id> of Stream resource, that keeps info on item to be streamed.
51
+ *
52
+ * @generated from protobuf field: uint64 resource_id = 1;
53
+ */
54
54
  resourceId: bigint;
55
55
  /**
56
- * <offset> makes streamer to perform seek operation to given offset before sending the data.
57
- *
58
- * @generated from protobuf field: int64 offset = 2;
59
- */
56
+ * <offset> makes streamer to perform seek operation to given offset before sending the data.
57
+ *
58
+ * @generated from protobuf field: int64 offset = 2;
59
+ */
60
60
  offset: bigint;
61
61
  /**
62
- * <chunk_size> limits the maximum size of <data> for response message in stream.
63
- *
64
- * Default value: 32 768 (32 KiB)
65
- * Max value: 3900 * 1024 (3.9 MiB)
66
- *
67
- * @generated from protobuf field: optional uint32 chunk_size = 11;
68
- */
62
+ * <chunk_size> limits the maximum size of <data> for response message in stream.
63
+ *
64
+ * Default value: 32 768 (32 KiB)
65
+ * Max value: 3900 * 1024 (3.9 MiB)
66
+ *
67
+ * @generated from protobuf field: optional uint32 chunk_size = 11;
68
+ */
69
69
  chunkSize?: number;
70
70
  }
71
71
  /**
@@ -73,45 +73,45 @@ export interface StreamingAPI_ReadBinary {
73
73
  */
74
74
  export interface StreamingAPI_StreamText {
75
75
  /**
76
- * <resource_id> of Stream resource, that keeps info on item to be streamed.
77
- *
78
- * @generated from protobuf field: uint64 resource_id = 1;
79
- */
76
+ * <resource_id> of Stream resource, that keeps info on item to be streamed.
77
+ *
78
+ * @generated from protobuf field: uint64 resource_id = 1;
79
+ */
80
80
  resourceId: bigint;
81
81
  /**
82
- * <offset> makes streamer to perform seek operation to given offset before sending the contents.
83
- * This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
84
- * Client can just use the <new_offset> value of the last response from server to continue streaming after reconnection.
85
- *
86
- * @generated from protobuf field: int64 offset = 2;
87
- */
82
+ * <offset> makes streamer to perform seek operation to given offset before sending the contents.
83
+ * This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
84
+ * Client can just use the <new_offset> value of the last response from server to continue streaming after reconnection.
85
+ *
86
+ * @generated from protobuf field: int64 offset = 2;
87
+ */
88
88
  offset: bigint;
89
89
  /**
90
- * <read_limit> allows client to limit total data sent from server.
91
- * This limit is aggregation of all data, sent in all chunks, measured
92
- * in lines of text.
93
- * E.g. to read top 1000 lines from stream source, use <read_limit> = 1000.
94
- * When both <read_limit> and <search>/<search_re> are set, the <read_limit> is applied first.
95
- * this is equivalent to 'head -n <read_limit> | grep <search>'.
96
- *
97
- * @generated from protobuf field: optional int64 read_limit = 20;
98
- */
90
+ * <read_limit> allows client to limit total data sent from server.
91
+ * This limit is aggregation of all data, sent in all chunks, measured
92
+ * in lines of text.
93
+ * E.g. to read top 1000 lines from stream source, use <read_limit> = 1000.
94
+ * When both <read_limit> and <search>/<search_re> are set, the <read_limit> is applied first.
95
+ * this is equivalent to 'head -n <read_limit> | grep <search>'.
96
+ *
97
+ * @generated from protobuf field: optional int64 read_limit = 20;
98
+ */
99
99
  readLimit?: bigint;
100
100
  /**
101
- * <search> is substring for line search pattern.
102
- * This option makes controller to send to the client only lines, that
103
- * have given substring.
104
- *
105
- * @generated from protobuf field: optional string search = 21;
106
- */
101
+ * <search> is substring for line search pattern.
102
+ * This option makes controller to send to the client only lines, that
103
+ * have given substring.
104
+ *
105
+ * @generated from protobuf field: optional string search = 21;
106
+ */
107
107
  search?: string;
108
108
  /**
109
- * <search_re> is regular expression for line search pattern.
110
- * This option makes controller to send to the client only lines, that
111
- * match given regular expression.
112
- *
113
- * @generated from protobuf field: optional string search_re = 22;
114
- */
109
+ * <search_re> is regular expression for line search pattern.
110
+ * This option makes controller to send to the client only lines, that
111
+ * match given regular expression.
112
+ *
113
+ * @generated from protobuf field: optional string search_re = 22;
114
+ */
115
115
  searchRe?: string;
116
116
  }
117
117
  /**
@@ -119,47 +119,47 @@ export interface StreamingAPI_StreamText {
119
119
  */
120
120
  export interface StreamingAPI_ReadText {
121
121
  /**
122
- * <resource_id> of Stream resource, that keeps info on item to be streamed.
123
- *
124
- * @generated from protobuf field: uint64 resource_id = 1;
125
- */
122
+ * <resource_id> of Stream resource, that keeps info on item to be streamed.
123
+ *
124
+ * @generated from protobuf field: uint64 resource_id = 1;
125
+ */
126
126
  resourceId: bigint;
127
127
  /**
128
- * <offset> makes streamer to perform seek operation to given offset before sending the contents.
129
- * This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
130
- * Client can just use the <new_offset> value of the last response from server to continue streaming after reconnection.
131
- *
132
- * @generated from protobuf field: int64 offset = 2;
133
- */
128
+ * <offset> makes streamer to perform seek operation to given offset before sending the contents.
129
+ * This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
130
+ * Client can just use the <new_offset> value of the last response from server to continue streaming after reconnection.
131
+ *
132
+ * @generated from protobuf field: int64 offset = 2;
133
+ */
134
134
  offset: bigint;
135
135
  /**
136
- * <read_limit> allows client to limit total data sent from server.
137
- * Measured in lines of text.
138
- * E.g. to read top 1000 lines from stream source, use <read_limit> = 1000.
139
- * When both <read_limit> and <search>/<search_re> are set, the <read_limit> is applied first.
140
- * this is equivalent to 'head -n <read_limit> | grep <search>'.
141
- * At most 3.9 MiB (3900 * 1024 KiB) of data is returned in single read regardless of <read_limit> option
142
- * Only full lines of text are returned except for the last line from the completed source
143
- * (the one that is not expected to have new data, like blob in storage)
144
- *
145
- * @generated from protobuf field: optional int64 read_limit = 20;
146
- */
136
+ * <read_limit> allows client to limit total data sent from server.
137
+ * Measured in lines of text.
138
+ * E.g. to read top 1000 lines from stream source, use <read_limit> = 1000.
139
+ * When both <read_limit> and <search>/<search_re> are set, the <read_limit> is applied first.
140
+ * this is equivalent to 'head -n <read_limit> | grep <search>'.
141
+ * At most 3.9 MiB (3900 * 1024 KiB) of data is returned in single read regardless of <read_limit> option
142
+ * Only full lines of text are returned except for the last line from the completed source
143
+ * (the one that is not expected to have new data, like blob in storage)
144
+ *
145
+ * @generated from protobuf field: optional int64 read_limit = 20;
146
+ */
147
147
  readLimit?: bigint;
148
148
  /**
149
- * <search> is substring for line search pattern.
150
- * This option makes controller to send to the client only lines, that
151
- * have given substring.
152
- *
153
- * @generated from protobuf field: optional string search = 21;
154
- */
149
+ * <search> is substring for line search pattern.
150
+ * This option makes controller to send to the client only lines, that
151
+ * have given substring.
152
+ *
153
+ * @generated from protobuf field: optional string search = 21;
154
+ */
155
155
  search?: string;
156
156
  /**
157
- * <search_re> is regular expression for line search pattern.
158
- * This option makes controller to send to the client only lines, that
159
- * match given regular expression.
160
- *
161
- * @generated from protobuf field: optional string search_re = 22;
162
- */
157
+ * <search_re> is regular expression for line search pattern.
158
+ * This option makes controller to send to the client only lines, that
159
+ * match given regular expression.
160
+ *
161
+ * @generated from protobuf field: optional string search_re = 22;
162
+ */
163
163
  searchRe?: string;
164
164
  }
165
165
  /**
@@ -167,42 +167,42 @@ export interface StreamingAPI_ReadText {
167
167
  */
168
168
  export interface StreamingAPI_LastLines {
169
169
  /**
170
- * <resource_id> of Stream resource, that keeps info on item to be streamed.
171
- *
172
- * @generated from protobuf field: uint64 resource_id = 1;
173
- */
170
+ * <resource_id> of Stream resource, that keeps info on item to be streamed.
171
+ *
172
+ * @generated from protobuf field: uint64 resource_id = 1;
173
+ */
174
174
  resourceId: bigint;
175
175
  /**
176
- * <offset> makes streamer to perform seek operation to given offset before sending the contents.
177
- * This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
178
- * By default, LastLines starts to treat the data source from the very last byte available in data stream
179
- * at the moment of call, but client can set the server to start from earlier position.
180
- *
181
- * @generated from protobuf field: optional int64 offset = 2;
182
- */
176
+ * <offset> makes streamer to perform seek operation to given offset before sending the contents.
177
+ * This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
178
+ * By default, LastLines starts to treat the data source from the very last byte available in data stream
179
+ * at the moment of call, but client can set the server to start from earlier position.
180
+ *
181
+ * @generated from protobuf field: optional int64 offset = 2;
182
+ */
183
183
  offset?: bigint;
184
184
  /**
185
- * <line_count> makes streamer to return up to <line_count> lines to the client.
186
- * Default value: 1
187
- *
188
- * @generated from protobuf field: optional int32 line_count = 3;
189
- */
185
+ * <line_count> makes streamer to return up to <line_count> lines to the client.
186
+ * Default value: 1
187
+ *
188
+ * @generated from protobuf field: optional int32 line_count = 3;
189
+ */
190
190
  lineCount?: number;
191
191
  /**
192
- * <search> is substring for line search pattern.
193
- * This option makes controller to send to the client only lines, that
194
- * have given substring.
195
- *
196
- * @generated from protobuf field: optional string search = 21;
197
- */
192
+ * <search> is substring for line search pattern.
193
+ * This option makes controller to send to the client only lines, that
194
+ * have given substring.
195
+ *
196
+ * @generated from protobuf field: optional string search = 21;
197
+ */
198
198
  search?: string;
199
199
  /**
200
- * <search_re> is regular expression for line search pattern.
201
- * This option makes controller to send to the client only lines, that
202
- * match given regular expression.
203
- *
204
- * @generated from protobuf field: optional string search_re = 22;
205
- */
200
+ * <search_re> is regular expression for line search pattern.
201
+ * This option makes controller to send to the client only lines, that
202
+ * match given regular expression.
203
+ *
204
+ * @generated from protobuf field: optional string search_re = 22;
205
+ */
206
206
  searchRe?: string;
207
207
  }
208
208
  /**
@@ -210,31 +210,31 @@ export interface StreamingAPI_LastLines {
210
210
  */
211
211
  export interface StreamingAPI_Response {
212
212
  /**
213
- * data chunk from item, starting from the <new_offset> of the previous message in the same stream.
214
- *
215
- * @generated from protobuf field: bytes data = 1;
216
- */
213
+ * data chunk from item, starting from the <new_offset> of the previous message in the same stream.
214
+ *
215
+ * @generated from protobuf field: bytes data = 1;
216
+ */
217
217
  data: Uint8Array;
218
218
  /**
219
- * <size> is the actual size of the streamed item at the moment of this message.
220
- * This might be not a final amount of streamed data, as stream source can be updated
221
- * by other independent process (e.g., data is written to log file).
222
- * This field in combination with <new_offset> shows, how far the client is from the end
223
- * of the data right now.
224
- *
225
- * @generated from protobuf field: uint64 size = 2;
226
- */
219
+ * <size> is the actual size of the streamed item at the moment of this message.
220
+ * This might be not a final amount of streamed data, as stream source can be updated
221
+ * by other independent process (e.g., data is written to log file).
222
+ * This field in combination with <new_offset> shows, how far the client is from the end
223
+ * of the data right now.
224
+ *
225
+ * @generated from protobuf field: uint64 size = 2;
226
+ */
227
227
  size: bigint;
228
228
  /**
229
- * <new_offset> is the new offset in bytes from the start of the streamed item,
230
- * including size of <data> in current response.
231
- * Call to Stream rpc with <offset> = <new_offset> will continue
232
- * streaming from the place of last received message
233
- * (e.g. <offset> = <new_offset> - 1 will repeat the last byte of
234
- * previously received <data>)
235
- *
236
- * @generated from protobuf field: uint64 new_offset = 3;
237
- */
229
+ * <new_offset> is the new offset in bytes from the start of the streamed item,
230
+ * including size of <data> in current response.
231
+ * Call to Stream rpc with <offset> = <new_offset> will continue
232
+ * streaming from the place of last received message
233
+ * (e.g. <offset> = <new_offset> - 1 will repeat the last byte of
234
+ * previously received <data>)
235
+ *
236
+ * @generated from protobuf field: uint64 new_offset = 3;
237
+ */
238
238
  newOffset: bigint;
239
239
  }
240
240
  declare class StreamingAPI$Type extends MessageType<StreamingAPI> {
@@ -1 +1 @@
1
- {"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts"],"names":[],"mappings":"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"}