@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.
- package/dist/core/transaction.d.ts +2 -1
- package/dist/core/transaction.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1377 -1173
- package/dist/index.mjs.map +1 -1
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +3 -3
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts +4 -4
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts +16 -16
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts +2 -2
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts +11 -11
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts +8 -8
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts +22 -22
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts +10 -10
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +25 -25
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +50 -50
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +415 -304
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts +70 -66
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts +4 -4
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +16 -16
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +30 -30
- package/dist/proto/google/api/http.d.ts +93 -89
- package/dist/proto/google/api/http.d.ts.map +1 -1
- package/dist/proto/google/protobuf/any.d.ts +2 -2
- package/dist/proto/google/protobuf/descriptor.d.ts +1298 -1151
- package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.d.ts +2 -2
- package/dist/proto/google/protobuf/struct.d.ts +10 -8
- package/dist/proto/google/protobuf/struct.d.ts.map +1 -1
- package/dist/proto/google/protobuf/timestamp.d.ts +2 -2
- package/dist/proto/google/protobuf/wrappers.d.ts +36 -9
- package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/core/ll_client.test.ts +3 -3
- package/src/core/ll_transaction.test.ts +4 -4
- package/src/core/transaction.ts +2 -0
- package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +5 -5
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +23 -24
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +232 -247
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +3 -3
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +13 -13
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +35 -37
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +375 -399
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +11 -11
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +26 -26
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +51 -51
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +687 -418
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +113 -101
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +5 -5
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +17 -17
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +50 -50
- package/src/proto/google/api/http.ts +290 -295
- package/src/proto/google/protobuf/any.ts +3 -3
- package/src/proto/google/protobuf/descriptor.ts +3235 -3123
- package/src/proto/google/protobuf/duration.ts +3 -3
- package/src/proto/google/protobuf/empty.ts +1 -1
- package/src/proto/google/protobuf/struct.ts +13 -11
- package/src/proto/google/protobuf/timestamp.ts +3 -3
- package/src/proto/google/protobuf/wrappers.ts +48 -14
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.
|
|
1
|
+
// @generated by protobuf-ts 2.11.0 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
@@ -28,7 +28,7 @@ export interface IStreamingClient {
|
|
|
28
28
|
* one single chunk of binary data from data source. See StreamingAPI.Binary message
|
|
29
29
|
* for more info on available options.
|
|
30
30
|
*
|
|
31
|
-
* @generated from protobuf rpc: StreamBinary
|
|
31
|
+
* @generated from protobuf rpc: StreamBinary
|
|
32
32
|
*/
|
|
33
33
|
streamBinary(input: StreamingAPI_StreamBinary, options?: RpcOptions): ServerStreamingCall<StreamingAPI_StreamBinary, StreamingAPI_Response>;
|
|
34
34
|
/**
|
|
@@ -37,14 +37,14 @@ export interface IStreamingClient {
|
|
|
37
37
|
* call and has to send new calls to the server to get fresh data from remote item.
|
|
38
38
|
* Each response (each chunk from server) keeps not more than 3.9MiB of data.
|
|
39
39
|
*
|
|
40
|
-
* @generated from protobuf rpc: ReadBinary
|
|
40
|
+
* @generated from protobuf rpc: ReadBinary
|
|
41
41
|
*/
|
|
42
42
|
readBinary(input: StreamingAPI_ReadBinary, options?: RpcOptions): UnaryCall<StreamingAPI_ReadBinary, StreamingAPI_Response>;
|
|
43
43
|
/**
|
|
44
44
|
* StreamText provides stream of textual file, splitting the data by newline symbol.
|
|
45
45
|
* Each response message keeps one single line of text from data source.
|
|
46
46
|
*
|
|
47
|
-
* @generated from protobuf rpc: StreamText
|
|
47
|
+
* @generated from protobuf rpc: StreamText
|
|
48
48
|
*/
|
|
49
49
|
streamText(input: StreamingAPI_StreamText, options?: RpcOptions): ServerStreamingCall<StreamingAPI_StreamText, StreamingAPI_Response>;
|
|
50
50
|
/**
|
|
@@ -53,7 +53,7 @@ export interface IStreamingClient {
|
|
|
53
53
|
* call and has to send new calls to the server to get fresh data from remote item.
|
|
54
54
|
* Each response (each chunk from server) keeps not more than 3.9MiB of data.
|
|
55
55
|
*
|
|
56
|
-
* @generated from protobuf rpc: ReadText
|
|
56
|
+
* @generated from protobuf rpc: ReadText
|
|
57
57
|
*/
|
|
58
58
|
readText(input: StreamingAPI_ReadText, options?: RpcOptions): UnaryCall<StreamingAPI_ReadText, StreamingAPI_Response>;
|
|
59
59
|
/**
|
|
@@ -66,7 +66,7 @@ export interface IStreamingClient {
|
|
|
66
66
|
* This means, that use of this <new_offset> in ReadText() will return you the same line
|
|
67
67
|
* returned last in LastLines() data.
|
|
68
68
|
*
|
|
69
|
-
* @generated from protobuf rpc: LastLines
|
|
69
|
+
* @generated from protobuf rpc: LastLines
|
|
70
70
|
*/
|
|
71
71
|
lastLines(input: StreamingAPI_LastLines, options?: RpcOptions): UnaryCall<StreamingAPI_LastLines, StreamingAPI_Response>;
|
|
72
72
|
}
|
|
@@ -89,7 +89,7 @@ export class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
89
89
|
* one single chunk of binary data from data source. See StreamingAPI.Binary message
|
|
90
90
|
* for more info on available options.
|
|
91
91
|
*
|
|
92
|
-
* @generated from protobuf rpc: StreamBinary
|
|
92
|
+
* @generated from protobuf rpc: StreamBinary
|
|
93
93
|
*/
|
|
94
94
|
streamBinary(input: StreamingAPI_StreamBinary, options?: RpcOptions): ServerStreamingCall<StreamingAPI_StreamBinary, StreamingAPI_Response> {
|
|
95
95
|
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
@@ -101,7 +101,7 @@ export class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
101
101
|
* call and has to send new calls to the server to get fresh data from remote item.
|
|
102
102
|
* Each response (each chunk from server) keeps not more than 3.9MiB of data.
|
|
103
103
|
*
|
|
104
|
-
* @generated from protobuf rpc: ReadBinary
|
|
104
|
+
* @generated from protobuf rpc: ReadBinary
|
|
105
105
|
*/
|
|
106
106
|
readBinary(input: StreamingAPI_ReadBinary, options?: RpcOptions): UnaryCall<StreamingAPI_ReadBinary, StreamingAPI_Response> {
|
|
107
107
|
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
|
@@ -111,7 +111,7 @@ export class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
111
111
|
* StreamText provides stream of textual file, splitting the data by newline symbol.
|
|
112
112
|
* Each response message keeps one single line of text from data source.
|
|
113
113
|
*
|
|
114
|
-
* @generated from protobuf rpc: StreamText
|
|
114
|
+
* @generated from protobuf rpc: StreamText
|
|
115
115
|
*/
|
|
116
116
|
streamText(input: StreamingAPI_StreamText, options?: RpcOptions): ServerStreamingCall<StreamingAPI_StreamText, StreamingAPI_Response> {
|
|
117
117
|
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
|
@@ -123,7 +123,7 @@ export class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
123
123
|
* call and has to send new calls to the server to get fresh data from remote item.
|
|
124
124
|
* Each response (each chunk from server) keeps not more than 3.9MiB of data.
|
|
125
125
|
*
|
|
126
|
-
* @generated from protobuf rpc: ReadText
|
|
126
|
+
* @generated from protobuf rpc: ReadText
|
|
127
127
|
*/
|
|
128
128
|
readText(input: StreamingAPI_ReadText, options?: RpcOptions): UnaryCall<StreamingAPI_ReadText, StreamingAPI_Response> {
|
|
129
129
|
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
|
@@ -139,7 +139,7 @@ export class StreamingClient implements IStreamingClient, ServiceInfo {
|
|
|
139
139
|
* This means, that use of this <new_offset> in ReadText() will return you the same line
|
|
140
140
|
* returned last in LastLines() data.
|
|
141
141
|
*
|
|
142
|
-
* @generated from protobuf rpc: LastLines
|
|
142
|
+
* @generated from protobuf rpc: LastLines
|
|
143
143
|
*/
|
|
144
144
|
lastLines(input: StreamingAPI_LastLines, options?: RpcOptions): UnaryCall<StreamingAPI_LastLines, StreamingAPI_Response> {
|
|
145
145
|
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.
|
|
1
|
+
// @generated by protobuf-ts 2.11.0 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
2
|
// @generated from protobuf file "github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.proto" (package "MiLaboratories.Controller.Shared", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
@@ -23,13 +23,13 @@ export interface StreamingAPI_StreamBinary {
|
|
|
23
23
|
/**
|
|
24
24
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
25
25
|
*
|
|
26
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
26
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
27
27
|
*/
|
|
28
28
|
resourceId: bigint;
|
|
29
29
|
/**
|
|
30
30
|
* <offset> makes streamer to perform seek operation to given offset before sending the data.
|
|
31
31
|
*
|
|
32
|
-
* @generated from protobuf field: int64 offset = 2
|
|
32
|
+
* @generated from protobuf field: int64 offset = 2
|
|
33
33
|
*/
|
|
34
34
|
offset: bigint;
|
|
35
35
|
/**
|
|
@@ -38,7 +38,7 @@ export interface StreamingAPI_StreamBinary {
|
|
|
38
38
|
* Default value: 32 768 (32 KiB)
|
|
39
39
|
* Max value: 3900 * 1024 (3.9 MiB)
|
|
40
40
|
*
|
|
41
|
-
* @generated from protobuf field: optional uint32 chunk_size = 11
|
|
41
|
+
* @generated from protobuf field: optional uint32 chunk_size = 11
|
|
42
42
|
*/
|
|
43
43
|
chunkSize?: number;
|
|
44
44
|
/**
|
|
@@ -49,7 +49,7 @@ export interface StreamingAPI_StreamBinary {
|
|
|
49
49
|
* For storage item of appropriate size this settings will result in
|
|
50
50
|
* 16 messages from server: 15 of 130 bytes and one of 50 bytes.
|
|
51
51
|
*
|
|
52
|
-
* @generated from protobuf field: optional int64 read_limit = 20
|
|
52
|
+
* @generated from protobuf field: optional int64 read_limit = 20
|
|
53
53
|
*/
|
|
54
54
|
readLimit?: bigint;
|
|
55
55
|
}
|
|
@@ -60,13 +60,13 @@ export interface StreamingAPI_ReadBinary {
|
|
|
60
60
|
/**
|
|
61
61
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
62
62
|
*
|
|
63
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
63
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
64
64
|
*/
|
|
65
65
|
resourceId: bigint;
|
|
66
66
|
/**
|
|
67
67
|
* <offset> makes streamer to perform seek operation to given offset before sending the data.
|
|
68
68
|
*
|
|
69
|
-
* @generated from protobuf field: int64 offset = 2
|
|
69
|
+
* @generated from protobuf field: int64 offset = 2
|
|
70
70
|
*/
|
|
71
71
|
offset: bigint;
|
|
72
72
|
/**
|
|
@@ -75,7 +75,7 @@ export interface StreamingAPI_ReadBinary {
|
|
|
75
75
|
* Default value: 32 768 (32 KiB)
|
|
76
76
|
* Max value: 3900 * 1024 (3.9 MiB)
|
|
77
77
|
*
|
|
78
|
-
* @generated from protobuf field: optional uint32 chunk_size = 11
|
|
78
|
+
* @generated from protobuf field: optional uint32 chunk_size = 11
|
|
79
79
|
*/
|
|
80
80
|
chunkSize?: number;
|
|
81
81
|
}
|
|
@@ -86,7 +86,7 @@ export interface StreamingAPI_StreamText {
|
|
|
86
86
|
/**
|
|
87
87
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
88
88
|
*
|
|
89
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
89
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
90
90
|
*/
|
|
91
91
|
resourceId: bigint;
|
|
92
92
|
/**
|
|
@@ -94,7 +94,7 @@ export interface StreamingAPI_StreamText {
|
|
|
94
94
|
* This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
|
|
95
95
|
* Client can just use the <new_offset> value of the last response from server to continue streaming after reconnection.
|
|
96
96
|
*
|
|
97
|
-
* @generated from protobuf field: int64 offset = 2
|
|
97
|
+
* @generated from protobuf field: int64 offset = 2
|
|
98
98
|
*/
|
|
99
99
|
offset: bigint;
|
|
100
100
|
/**
|
|
@@ -105,7 +105,7 @@ export interface StreamingAPI_StreamText {
|
|
|
105
105
|
* When both <read_limit> and <search>/<search_re> are set, the <read_limit> is applied first.
|
|
106
106
|
* this is equivalent to 'head -n <read_limit> | grep <search>'.
|
|
107
107
|
*
|
|
108
|
-
* @generated from protobuf field: optional int64 read_limit = 20
|
|
108
|
+
* @generated from protobuf field: optional int64 read_limit = 20
|
|
109
109
|
*/
|
|
110
110
|
readLimit?: bigint;
|
|
111
111
|
/**
|
|
@@ -113,7 +113,7 @@ export interface StreamingAPI_StreamText {
|
|
|
113
113
|
* This option makes controller to send to the client only lines, that
|
|
114
114
|
* have given substring.
|
|
115
115
|
*
|
|
116
|
-
* @generated from protobuf field: optional string search = 21
|
|
116
|
+
* @generated from protobuf field: optional string search = 21
|
|
117
117
|
*/
|
|
118
118
|
search?: string;
|
|
119
119
|
/**
|
|
@@ -121,7 +121,7 @@ export interface StreamingAPI_StreamText {
|
|
|
121
121
|
* This option makes controller to send to the client only lines, that
|
|
122
122
|
* match given regular expression.
|
|
123
123
|
*
|
|
124
|
-
* @generated from protobuf field: optional string search_re = 22
|
|
124
|
+
* @generated from protobuf field: optional string search_re = 22
|
|
125
125
|
*/
|
|
126
126
|
searchRe?: string;
|
|
127
127
|
}
|
|
@@ -132,7 +132,7 @@ export interface StreamingAPI_ReadText {
|
|
|
132
132
|
/**
|
|
133
133
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
134
134
|
*
|
|
135
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
135
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
136
136
|
*/
|
|
137
137
|
resourceId: bigint;
|
|
138
138
|
/**
|
|
@@ -140,7 +140,7 @@ export interface StreamingAPI_ReadText {
|
|
|
140
140
|
* This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
|
|
141
141
|
* Client can just use the <new_offset> value of the last response from server to continue streaming after reconnection.
|
|
142
142
|
*
|
|
143
|
-
* @generated from protobuf field: int64 offset = 2
|
|
143
|
+
* @generated from protobuf field: int64 offset = 2
|
|
144
144
|
*/
|
|
145
145
|
offset: bigint;
|
|
146
146
|
/**
|
|
@@ -153,7 +153,7 @@ export interface StreamingAPI_ReadText {
|
|
|
153
153
|
* Only full lines of text are returned except for the last line from the completed source
|
|
154
154
|
* (the one that is not expected to have new data, like blob in storage)
|
|
155
155
|
*
|
|
156
|
-
* @generated from protobuf field: optional int64 read_limit = 20
|
|
156
|
+
* @generated from protobuf field: optional int64 read_limit = 20
|
|
157
157
|
*/
|
|
158
158
|
readLimit?: bigint;
|
|
159
159
|
/**
|
|
@@ -161,7 +161,7 @@ export interface StreamingAPI_ReadText {
|
|
|
161
161
|
* This option makes controller to send to the client only lines, that
|
|
162
162
|
* have given substring.
|
|
163
163
|
*
|
|
164
|
-
* @generated from protobuf field: optional string search = 21
|
|
164
|
+
* @generated from protobuf field: optional string search = 21
|
|
165
165
|
*/
|
|
166
166
|
search?: string;
|
|
167
167
|
/**
|
|
@@ -169,7 +169,7 @@ export interface StreamingAPI_ReadText {
|
|
|
169
169
|
* This option makes controller to send to the client only lines, that
|
|
170
170
|
* match given regular expression.
|
|
171
171
|
*
|
|
172
|
-
* @generated from protobuf field: optional string search_re = 22
|
|
172
|
+
* @generated from protobuf field: optional string search_re = 22
|
|
173
173
|
*/
|
|
174
174
|
searchRe?: string;
|
|
175
175
|
}
|
|
@@ -180,7 +180,7 @@ export interface StreamingAPI_LastLines {
|
|
|
180
180
|
/**
|
|
181
181
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
182
182
|
*
|
|
183
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
183
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
184
184
|
*/
|
|
185
185
|
resourceId: bigint;
|
|
186
186
|
/**
|
|
@@ -189,14 +189,14 @@ export interface StreamingAPI_LastLines {
|
|
|
189
189
|
* By default, LastLines starts to treat the data source from the very last byte available in data stream
|
|
190
190
|
* at the moment of call, but client can set the server to start from earlier position.
|
|
191
191
|
*
|
|
192
|
-
* @generated from protobuf field: optional int64 offset = 2
|
|
192
|
+
* @generated from protobuf field: optional int64 offset = 2
|
|
193
193
|
*/
|
|
194
194
|
offset?: bigint;
|
|
195
195
|
/**
|
|
196
196
|
* <line_count> makes streamer to return up to <line_count> lines to the client.
|
|
197
197
|
* Default value: 1
|
|
198
198
|
*
|
|
199
|
-
* @generated from protobuf field: optional int32 line_count = 3
|
|
199
|
+
* @generated from protobuf field: optional int32 line_count = 3
|
|
200
200
|
*/
|
|
201
201
|
lineCount?: number;
|
|
202
202
|
/**
|
|
@@ -204,7 +204,7 @@ export interface StreamingAPI_LastLines {
|
|
|
204
204
|
* This option makes controller to send to the client only lines, that
|
|
205
205
|
* have given substring.
|
|
206
206
|
*
|
|
207
|
-
* @generated from protobuf field: optional string search = 21
|
|
207
|
+
* @generated from protobuf field: optional string search = 21
|
|
208
208
|
*/
|
|
209
209
|
search?: string;
|
|
210
210
|
/**
|
|
@@ -212,7 +212,7 @@ export interface StreamingAPI_LastLines {
|
|
|
212
212
|
* This option makes controller to send to the client only lines, that
|
|
213
213
|
* match given regular expression.
|
|
214
214
|
*
|
|
215
|
-
* @generated from protobuf field: optional string search_re = 22
|
|
215
|
+
* @generated from protobuf field: optional string search_re = 22
|
|
216
216
|
*/
|
|
217
217
|
searchRe?: string;
|
|
218
218
|
}
|
|
@@ -223,7 +223,7 @@ export interface StreamingAPI_Response {
|
|
|
223
223
|
/**
|
|
224
224
|
* data chunk from item, starting from the <new_offset> of the previous message in the same stream.
|
|
225
225
|
*
|
|
226
|
-
* @generated from protobuf field: bytes data = 1
|
|
226
|
+
* @generated from protobuf field: bytes data = 1
|
|
227
227
|
*/
|
|
228
228
|
data: Uint8Array;
|
|
229
229
|
/**
|
|
@@ -233,7 +233,7 @@ export interface StreamingAPI_Response {
|
|
|
233
233
|
* This field in combination with <new_offset> shows, how far the client is from the end
|
|
234
234
|
* of the data right now.
|
|
235
235
|
*
|
|
236
|
-
* @generated from protobuf field: uint64 size = 2
|
|
236
|
+
* @generated from protobuf field: uint64 size = 2
|
|
237
237
|
*/
|
|
238
238
|
size: bigint;
|
|
239
239
|
/**
|
|
@@ -244,7 +244,7 @@ export interface StreamingAPI_Response {
|
|
|
244
244
|
* (e.g. <offset> = <new_offset> - 1 will repeat the last byte of
|
|
245
245
|
* previously received <data>)
|
|
246
246
|
*
|
|
247
|
-
* @generated from protobuf field: uint64 new_offset = 3
|
|
247
|
+
* @generated from protobuf field: uint64 new_offset = 3
|
|
248
248
|
*/
|
|
249
249
|
newOffset: bigint;
|
|
250
250
|
}
|