@milaboratories/pl-client 2.11.3 → 2.11.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +3 -3
- 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/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts
CHANGED
|
@@ -12,13 +12,13 @@ export interface StreamingAPI_StreamBinary {
|
|
|
12
12
|
/**
|
|
13
13
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
14
14
|
*
|
|
15
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
15
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
16
16
|
*/
|
|
17
17
|
resourceId: bigint;
|
|
18
18
|
/**
|
|
19
19
|
* <offset> makes streamer to perform seek operation to given offset before sending the data.
|
|
20
20
|
*
|
|
21
|
-
* @generated from protobuf field: int64 offset = 2
|
|
21
|
+
* @generated from protobuf field: int64 offset = 2
|
|
22
22
|
*/
|
|
23
23
|
offset: bigint;
|
|
24
24
|
/**
|
|
@@ -27,7 +27,7 @@ export interface StreamingAPI_StreamBinary {
|
|
|
27
27
|
* Default value: 32 768 (32 KiB)
|
|
28
28
|
* Max value: 3900 * 1024 (3.9 MiB)
|
|
29
29
|
*
|
|
30
|
-
* @generated from protobuf field: optional uint32 chunk_size = 11
|
|
30
|
+
* @generated from protobuf field: optional uint32 chunk_size = 11
|
|
31
31
|
*/
|
|
32
32
|
chunkSize?: number;
|
|
33
33
|
/**
|
|
@@ -38,7 +38,7 @@ export interface StreamingAPI_StreamBinary {
|
|
|
38
38
|
* For storage item of appropriate size this settings will result in
|
|
39
39
|
* 16 messages from server: 15 of 130 bytes and one of 50 bytes.
|
|
40
40
|
*
|
|
41
|
-
* @generated from protobuf field: optional int64 read_limit = 20
|
|
41
|
+
* @generated from protobuf field: optional int64 read_limit = 20
|
|
42
42
|
*/
|
|
43
43
|
readLimit?: bigint;
|
|
44
44
|
}
|
|
@@ -49,13 +49,13 @@ export interface StreamingAPI_ReadBinary {
|
|
|
49
49
|
/**
|
|
50
50
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
51
51
|
*
|
|
52
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
52
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
53
53
|
*/
|
|
54
54
|
resourceId: bigint;
|
|
55
55
|
/**
|
|
56
56
|
* <offset> makes streamer to perform seek operation to given offset before sending the data.
|
|
57
57
|
*
|
|
58
|
-
* @generated from protobuf field: int64 offset = 2
|
|
58
|
+
* @generated from protobuf field: int64 offset = 2
|
|
59
59
|
*/
|
|
60
60
|
offset: bigint;
|
|
61
61
|
/**
|
|
@@ -64,7 +64,7 @@ export interface StreamingAPI_ReadBinary {
|
|
|
64
64
|
* Default value: 32 768 (32 KiB)
|
|
65
65
|
* Max value: 3900 * 1024 (3.9 MiB)
|
|
66
66
|
*
|
|
67
|
-
* @generated from protobuf field: optional uint32 chunk_size = 11
|
|
67
|
+
* @generated from protobuf field: optional uint32 chunk_size = 11
|
|
68
68
|
*/
|
|
69
69
|
chunkSize?: number;
|
|
70
70
|
}
|
|
@@ -75,7 +75,7 @@ export interface StreamingAPI_StreamText {
|
|
|
75
75
|
/**
|
|
76
76
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
77
77
|
*
|
|
78
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
78
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
79
79
|
*/
|
|
80
80
|
resourceId: bigint;
|
|
81
81
|
/**
|
|
@@ -83,7 +83,7 @@ export interface StreamingAPI_StreamText {
|
|
|
83
83
|
* This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
|
|
84
84
|
* Client can just use the <new_offset> value of the last response from server to continue streaming after reconnection.
|
|
85
85
|
*
|
|
86
|
-
* @generated from protobuf field: int64 offset = 2
|
|
86
|
+
* @generated from protobuf field: int64 offset = 2
|
|
87
87
|
*/
|
|
88
88
|
offset: bigint;
|
|
89
89
|
/**
|
|
@@ -94,7 +94,7 @@ export interface StreamingAPI_StreamText {
|
|
|
94
94
|
* When both <read_limit> and <search>/<search_re> are set, the <read_limit> is applied first.
|
|
95
95
|
* this is equivalent to 'head -n <read_limit> | grep <search>'.
|
|
96
96
|
*
|
|
97
|
-
* @generated from protobuf field: optional int64 read_limit = 20
|
|
97
|
+
* @generated from protobuf field: optional int64 read_limit = 20
|
|
98
98
|
*/
|
|
99
99
|
readLimit?: bigint;
|
|
100
100
|
/**
|
|
@@ -102,7 +102,7 @@ export interface StreamingAPI_StreamText {
|
|
|
102
102
|
* This option makes controller to send to the client only lines, that
|
|
103
103
|
* have given substring.
|
|
104
104
|
*
|
|
105
|
-
* @generated from protobuf field: optional string search = 21
|
|
105
|
+
* @generated from protobuf field: optional string search = 21
|
|
106
106
|
*/
|
|
107
107
|
search?: string;
|
|
108
108
|
/**
|
|
@@ -110,7 +110,7 @@ export interface StreamingAPI_StreamText {
|
|
|
110
110
|
* This option makes controller to send to the client only lines, that
|
|
111
111
|
* match given regular expression.
|
|
112
112
|
*
|
|
113
|
-
* @generated from protobuf field: optional string search_re = 22
|
|
113
|
+
* @generated from protobuf field: optional string search_re = 22
|
|
114
114
|
*/
|
|
115
115
|
searchRe?: string;
|
|
116
116
|
}
|
|
@@ -121,7 +121,7 @@ export interface StreamingAPI_ReadText {
|
|
|
121
121
|
/**
|
|
122
122
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
123
123
|
*
|
|
124
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
124
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
125
125
|
*/
|
|
126
126
|
resourceId: bigint;
|
|
127
127
|
/**
|
|
@@ -129,7 +129,7 @@ export interface StreamingAPI_ReadText {
|
|
|
129
129
|
* This offset is taken in BYTES, as it eases streaming recovery after client reconnection or controller restart.
|
|
130
130
|
* Client can just use the <new_offset> value of the last response from server to continue streaming after reconnection.
|
|
131
131
|
*
|
|
132
|
-
* @generated from protobuf field: int64 offset = 2
|
|
132
|
+
* @generated from protobuf field: int64 offset = 2
|
|
133
133
|
*/
|
|
134
134
|
offset: bigint;
|
|
135
135
|
/**
|
|
@@ -142,7 +142,7 @@ export interface StreamingAPI_ReadText {
|
|
|
142
142
|
* Only full lines of text are returned except for the last line from the completed source
|
|
143
143
|
* (the one that is not expected to have new data, like blob in storage)
|
|
144
144
|
*
|
|
145
|
-
* @generated from protobuf field: optional int64 read_limit = 20
|
|
145
|
+
* @generated from protobuf field: optional int64 read_limit = 20
|
|
146
146
|
*/
|
|
147
147
|
readLimit?: bigint;
|
|
148
148
|
/**
|
|
@@ -150,7 +150,7 @@ export interface StreamingAPI_ReadText {
|
|
|
150
150
|
* This option makes controller to send to the client only lines, that
|
|
151
151
|
* have given substring.
|
|
152
152
|
*
|
|
153
|
-
* @generated from protobuf field: optional string search = 21
|
|
153
|
+
* @generated from protobuf field: optional string search = 21
|
|
154
154
|
*/
|
|
155
155
|
search?: string;
|
|
156
156
|
/**
|
|
@@ -158,7 +158,7 @@ export interface StreamingAPI_ReadText {
|
|
|
158
158
|
* This option makes controller to send to the client only lines, that
|
|
159
159
|
* match given regular expression.
|
|
160
160
|
*
|
|
161
|
-
* @generated from protobuf field: optional string search_re = 22
|
|
161
|
+
* @generated from protobuf field: optional string search_re = 22
|
|
162
162
|
*/
|
|
163
163
|
searchRe?: string;
|
|
164
164
|
}
|
|
@@ -169,7 +169,7 @@ export interface StreamingAPI_LastLines {
|
|
|
169
169
|
/**
|
|
170
170
|
* <resource_id> of Stream resource, that keeps info on item to be streamed.
|
|
171
171
|
*
|
|
172
|
-
* @generated from protobuf field: uint64 resource_id = 1
|
|
172
|
+
* @generated from protobuf field: uint64 resource_id = 1
|
|
173
173
|
*/
|
|
174
174
|
resourceId: bigint;
|
|
175
175
|
/**
|
|
@@ -178,14 +178,14 @@ export interface StreamingAPI_LastLines {
|
|
|
178
178
|
* By default, LastLines starts to treat the data source from the very last byte available in data stream
|
|
179
179
|
* at the moment of call, but client can set the server to start from earlier position.
|
|
180
180
|
*
|
|
181
|
-
* @generated from protobuf field: optional int64 offset = 2
|
|
181
|
+
* @generated from protobuf field: optional int64 offset = 2
|
|
182
182
|
*/
|
|
183
183
|
offset?: bigint;
|
|
184
184
|
/**
|
|
185
185
|
* <line_count> makes streamer to return up to <line_count> lines to the client.
|
|
186
186
|
* Default value: 1
|
|
187
187
|
*
|
|
188
|
-
* @generated from protobuf field: optional int32 line_count = 3
|
|
188
|
+
* @generated from protobuf field: optional int32 line_count = 3
|
|
189
189
|
*/
|
|
190
190
|
lineCount?: number;
|
|
191
191
|
/**
|
|
@@ -193,7 +193,7 @@ export interface StreamingAPI_LastLines {
|
|
|
193
193
|
* This option makes controller to send to the client only lines, that
|
|
194
194
|
* have given substring.
|
|
195
195
|
*
|
|
196
|
-
* @generated from protobuf field: optional string search = 21
|
|
196
|
+
* @generated from protobuf field: optional string search = 21
|
|
197
197
|
*/
|
|
198
198
|
search?: string;
|
|
199
199
|
/**
|
|
@@ -201,7 +201,7 @@ export interface StreamingAPI_LastLines {
|
|
|
201
201
|
* This option makes controller to send to the client only lines, that
|
|
202
202
|
* match given regular expression.
|
|
203
203
|
*
|
|
204
|
-
* @generated from protobuf field: optional string search_re = 22
|
|
204
|
+
* @generated from protobuf field: optional string search_re = 22
|
|
205
205
|
*/
|
|
206
206
|
searchRe?: string;
|
|
207
207
|
}
|
|
@@ -212,7 +212,7 @@ export interface StreamingAPI_Response {
|
|
|
212
212
|
/**
|
|
213
213
|
* data chunk from item, starting from the <new_offset> of the previous message in the same stream.
|
|
214
214
|
*
|
|
215
|
-
* @generated from protobuf field: bytes data = 1
|
|
215
|
+
* @generated from protobuf field: bytes data = 1
|
|
216
216
|
*/
|
|
217
217
|
data: Uint8Array;
|
|
218
218
|
/**
|
|
@@ -222,7 +222,7 @@ export interface StreamingAPI_Response {
|
|
|
222
222
|
* This field in combination with <new_offset> shows, how far the client is from the end
|
|
223
223
|
* of the data right now.
|
|
224
224
|
*
|
|
225
|
-
* @generated from protobuf field: uint64 size = 2
|
|
225
|
+
* @generated from protobuf field: uint64 size = 2
|
|
226
226
|
*/
|
|
227
227
|
size: bigint;
|
|
228
228
|
/**
|
|
@@ -233,7 +233,7 @@ export interface StreamingAPI_Response {
|
|
|
233
233
|
* (e.g. <offset> = <new_offset> - 1 will repeat the last byte of
|
|
234
234
|
* previously received <data>)
|
|
235
235
|
*
|
|
236
|
-
* @generated from protobuf field: uint64 new_offset = 3
|
|
236
|
+
* @generated from protobuf field: uint64 new_offset = 3
|
|
237
237
|
*/
|
|
238
238
|
newOffset: bigint;
|
|
239
239
|
}
|
|
@@ -10,11 +10,11 @@ export interface IPlatformClient {
|
|
|
10
10
|
* Transactions
|
|
11
11
|
*
|
|
12
12
|
*
|
|
13
|
-
* @generated from protobuf rpc: Tx
|
|
13
|
+
* @generated from protobuf rpc: Tx
|
|
14
14
|
*/
|
|
15
15
|
tx(options?: RpcOptions): DuplexStreamingCall<TxAPI_ClientMessage, TxAPI_ServerMessage>;
|
|
16
16
|
/**
|
|
17
|
-
* @generated from protobuf rpc: TxSync
|
|
17
|
+
* @generated from protobuf rpc: TxSync
|
|
18
18
|
*/
|
|
19
19
|
txSync(input: TxAPI_Sync_Request, options?: RpcOptions): UnaryCall<TxAPI_Sync_Request, TxAPI_Sync_Response>;
|
|
20
20
|
/**
|
|
@@ -22,15 +22,15 @@ export interface IPlatformClient {
|
|
|
22
22
|
* Subscriptions
|
|
23
23
|
*
|
|
24
24
|
*
|
|
25
|
-
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
25
|
+
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
26
26
|
*/
|
|
27
27
|
subscriptionAttachFilter(input: SubscriptionAPI_AttachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response>;
|
|
28
28
|
/**
|
|
29
|
-
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
29
|
+
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
30
30
|
*/
|
|
31
31
|
subscriptionDetachFilter(input: SubscriptionAPI_DetachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response>;
|
|
32
32
|
/**
|
|
33
|
-
* @generated from protobuf rpc: NotificationsGet
|
|
33
|
+
* @generated from protobuf rpc: NotificationsGet
|
|
34
34
|
*/
|
|
35
35
|
notificationsGet(input: NotificationAPI_Get_Request, options?: RpcOptions): UnaryCall<NotificationAPI_Get_Request, NotificationAPI_Get_Response>;
|
|
36
36
|
/**
|
|
@@ -38,55 +38,55 @@ export interface IPlatformClient {
|
|
|
38
38
|
* Controllers
|
|
39
39
|
*
|
|
40
40
|
*
|
|
41
|
-
* @generated from protobuf rpc: ControllerRegister
|
|
41
|
+
* @generated from protobuf rpc: ControllerRegister
|
|
42
42
|
*/
|
|
43
43
|
controllerRegister(input: ControllerAPI_Register_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Register_Request, ControllerAPI_Register_Response>;
|
|
44
44
|
/**
|
|
45
|
-
* @generated from protobuf rpc: ControllerDeregister
|
|
45
|
+
* @generated from protobuf rpc: ControllerDeregister
|
|
46
46
|
*/
|
|
47
47
|
controllerDeregister(input: ControllerAPI_Deregister_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response>;
|
|
48
48
|
/**
|
|
49
|
-
* @generated from protobuf rpc: ControllerCreate
|
|
49
|
+
* @generated from protobuf rpc: ControllerCreate
|
|
50
50
|
*/
|
|
51
51
|
controllerCreate(input: ControllerAPI_Create_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Create_Request, ControllerAPI_Create_Response>;
|
|
52
52
|
/**
|
|
53
|
-
* @generated from protobuf rpc: ControllerExists
|
|
53
|
+
* @generated from protobuf rpc: ControllerExists
|
|
54
54
|
*/
|
|
55
55
|
controllerExists(input: ControllerAPI_Exists_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response>;
|
|
56
56
|
/**
|
|
57
|
-
* @generated from protobuf rpc: ControllerGet
|
|
57
|
+
* @generated from protobuf rpc: ControllerGet
|
|
58
58
|
*/
|
|
59
59
|
controllerGet(input: ControllerAPI_Get_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Get_Request, ControllerAPI_Get_Response>;
|
|
60
60
|
/**
|
|
61
|
-
* @generated from protobuf rpc: ControllerUpdate
|
|
61
|
+
* @generated from protobuf rpc: ControllerUpdate
|
|
62
62
|
*/
|
|
63
63
|
controllerUpdate(input: ControllerAPI_Update_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Update_Request, ControllerAPI_Update_Response>;
|
|
64
64
|
/**
|
|
65
|
-
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
65
|
+
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
66
66
|
*/
|
|
67
67
|
controllerAttachSubscription(input: ControllerAPI_AttachSubscription_Request, options?: RpcOptions): UnaryCall<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response>;
|
|
68
68
|
/**
|
|
69
|
-
* @generated from protobuf rpc: GetControllerNotifications
|
|
69
|
+
* @generated from protobuf rpc: GetControllerNotifications
|
|
70
70
|
*/
|
|
71
71
|
getControllerNotifications(input: ControllerAPI_GetNotifications_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response>;
|
|
72
72
|
/**
|
|
73
|
-
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
73
|
+
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
74
74
|
*/
|
|
75
75
|
writeControllerAliasesAndUrls(input: ControllerAPI_WriteAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response>;
|
|
76
76
|
/**
|
|
77
|
-
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
77
|
+
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
78
78
|
*/
|
|
79
79
|
removeControllerAliasesAndUrls(input: ControllerAPI_RemoveAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response>;
|
|
80
80
|
/**
|
|
81
|
-
* @generated from protobuf rpc: GetControllerUrl
|
|
81
|
+
* @generated from protobuf rpc: GetControllerUrl
|
|
82
82
|
*/
|
|
83
83
|
getControllerUrl(input: ControllerAPI_GetUrl_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response>;
|
|
84
84
|
/**
|
|
85
|
-
* @generated from protobuf rpc: ControllerSetFeatures
|
|
85
|
+
* @generated from protobuf rpc: ControllerSetFeatures
|
|
86
86
|
*/
|
|
87
87
|
controllerSetFeatures(input: ControllerAPI_SetFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response>;
|
|
88
88
|
/**
|
|
89
|
-
* @generated from protobuf rpc: ControllerClearFeatures
|
|
89
|
+
* @generated from protobuf rpc: ControllerClearFeatures
|
|
90
90
|
*/
|
|
91
91
|
controllerClearFeatures(input: ControllerAPI_ClearFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response>;
|
|
92
92
|
/**
|
|
@@ -94,15 +94,15 @@ export interface IPlatformClient {
|
|
|
94
94
|
* Locks
|
|
95
95
|
*
|
|
96
96
|
*
|
|
97
|
-
* @generated from protobuf rpc: LeaseResource
|
|
97
|
+
* @generated from protobuf rpc: LeaseResource
|
|
98
98
|
*/
|
|
99
99
|
leaseResource(input: LocksAPI_Lease_Create_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response>;
|
|
100
100
|
/**
|
|
101
|
-
* @generated from protobuf rpc: UpdateLease
|
|
101
|
+
* @generated from protobuf rpc: UpdateLease
|
|
102
102
|
*/
|
|
103
103
|
updateLease(input: LocksAPI_Lease_Update_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response>;
|
|
104
104
|
/**
|
|
105
|
-
* @generated from protobuf rpc: ReleaseLease
|
|
105
|
+
* @generated from protobuf rpc: ReleaseLease
|
|
106
106
|
*/
|
|
107
107
|
releaseLease(input: LocksAPI_Lease_Release_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response>;
|
|
108
108
|
/**
|
|
@@ -110,11 +110,11 @@ export interface IPlatformClient {
|
|
|
110
110
|
* Authentication
|
|
111
111
|
*
|
|
112
112
|
*
|
|
113
|
-
* @generated from protobuf rpc: AuthMethods
|
|
113
|
+
* @generated from protobuf rpc: AuthMethods
|
|
114
114
|
*/
|
|
115
115
|
authMethods(input: AuthAPI_ListMethods_Request, options?: RpcOptions): UnaryCall<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response>;
|
|
116
116
|
/**
|
|
117
|
-
* @generated from protobuf rpc: GetJWTToken
|
|
117
|
+
* @generated from protobuf rpc: GetJWTToken
|
|
118
118
|
*/
|
|
119
119
|
getJWTToken(input: AuthAPI_GetJWTToken_Request, options?: RpcOptions): UnaryCall<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response>;
|
|
120
120
|
/**
|
|
@@ -122,7 +122,7 @@ export interface IPlatformClient {
|
|
|
122
122
|
* Other stuff
|
|
123
123
|
*
|
|
124
124
|
*
|
|
125
|
-
* @generated from protobuf rpc: ListResourceTypes
|
|
125
|
+
* @generated from protobuf rpc: ListResourceTypes
|
|
126
126
|
*/
|
|
127
127
|
listResourceTypes(input: MiscAPI_ListResourceTypes_Request, options?: RpcOptions): UnaryCall<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response>;
|
|
128
128
|
/**
|
|
@@ -130,7 +130,7 @@ export interface IPlatformClient {
|
|
|
130
130
|
* Various service requests
|
|
131
131
|
*
|
|
132
132
|
*
|
|
133
|
-
* @generated from protobuf rpc: Ping
|
|
133
|
+
* @generated from protobuf rpc: Ping
|
|
134
134
|
*/
|
|
135
135
|
ping(input: MaintenanceAPI_Ping_Request, options?: RpcOptions): UnaryCall<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response>;
|
|
136
136
|
}
|
|
@@ -150,11 +150,11 @@ export declare class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
150
150
|
* Transactions
|
|
151
151
|
*
|
|
152
152
|
*
|
|
153
|
-
* @generated from protobuf rpc: Tx
|
|
153
|
+
* @generated from protobuf rpc: Tx
|
|
154
154
|
*/
|
|
155
155
|
tx(options?: RpcOptions): DuplexStreamingCall<TxAPI_ClientMessage, TxAPI_ServerMessage>;
|
|
156
156
|
/**
|
|
157
|
-
* @generated from protobuf rpc: TxSync
|
|
157
|
+
* @generated from protobuf rpc: TxSync
|
|
158
158
|
*/
|
|
159
159
|
txSync(input: TxAPI_Sync_Request, options?: RpcOptions): UnaryCall<TxAPI_Sync_Request, TxAPI_Sync_Response>;
|
|
160
160
|
/**
|
|
@@ -162,15 +162,15 @@ export declare class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
162
162
|
* Subscriptions
|
|
163
163
|
*
|
|
164
164
|
*
|
|
165
|
-
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
165
|
+
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
166
166
|
*/
|
|
167
167
|
subscriptionAttachFilter(input: SubscriptionAPI_AttachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response>;
|
|
168
168
|
/**
|
|
169
|
-
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
169
|
+
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
170
170
|
*/
|
|
171
171
|
subscriptionDetachFilter(input: SubscriptionAPI_DetachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response>;
|
|
172
172
|
/**
|
|
173
|
-
* @generated from protobuf rpc: NotificationsGet
|
|
173
|
+
* @generated from protobuf rpc: NotificationsGet
|
|
174
174
|
*/
|
|
175
175
|
notificationsGet(input: NotificationAPI_Get_Request, options?: RpcOptions): UnaryCall<NotificationAPI_Get_Request, NotificationAPI_Get_Response>;
|
|
176
176
|
/**
|
|
@@ -178,55 +178,55 @@ export declare class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
178
178
|
* Controllers
|
|
179
179
|
*
|
|
180
180
|
*
|
|
181
|
-
* @generated from protobuf rpc: ControllerRegister
|
|
181
|
+
* @generated from protobuf rpc: ControllerRegister
|
|
182
182
|
*/
|
|
183
183
|
controllerRegister(input: ControllerAPI_Register_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Register_Request, ControllerAPI_Register_Response>;
|
|
184
184
|
/**
|
|
185
|
-
* @generated from protobuf rpc: ControllerDeregister
|
|
185
|
+
* @generated from protobuf rpc: ControllerDeregister
|
|
186
186
|
*/
|
|
187
187
|
controllerDeregister(input: ControllerAPI_Deregister_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response>;
|
|
188
188
|
/**
|
|
189
|
-
* @generated from protobuf rpc: ControllerCreate
|
|
189
|
+
* @generated from protobuf rpc: ControllerCreate
|
|
190
190
|
*/
|
|
191
191
|
controllerCreate(input: ControllerAPI_Create_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Create_Request, ControllerAPI_Create_Response>;
|
|
192
192
|
/**
|
|
193
|
-
* @generated from protobuf rpc: ControllerExists
|
|
193
|
+
* @generated from protobuf rpc: ControllerExists
|
|
194
194
|
*/
|
|
195
195
|
controllerExists(input: ControllerAPI_Exists_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response>;
|
|
196
196
|
/**
|
|
197
|
-
* @generated from protobuf rpc: ControllerGet
|
|
197
|
+
* @generated from protobuf rpc: ControllerGet
|
|
198
198
|
*/
|
|
199
199
|
controllerGet(input: ControllerAPI_Get_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Get_Request, ControllerAPI_Get_Response>;
|
|
200
200
|
/**
|
|
201
|
-
* @generated from protobuf rpc: ControllerUpdate
|
|
201
|
+
* @generated from protobuf rpc: ControllerUpdate
|
|
202
202
|
*/
|
|
203
203
|
controllerUpdate(input: ControllerAPI_Update_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Update_Request, ControllerAPI_Update_Response>;
|
|
204
204
|
/**
|
|
205
|
-
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
205
|
+
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
206
206
|
*/
|
|
207
207
|
controllerAttachSubscription(input: ControllerAPI_AttachSubscription_Request, options?: RpcOptions): UnaryCall<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response>;
|
|
208
208
|
/**
|
|
209
|
-
* @generated from protobuf rpc: GetControllerNotifications
|
|
209
|
+
* @generated from protobuf rpc: GetControllerNotifications
|
|
210
210
|
*/
|
|
211
211
|
getControllerNotifications(input: ControllerAPI_GetNotifications_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response>;
|
|
212
212
|
/**
|
|
213
|
-
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
213
|
+
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
214
214
|
*/
|
|
215
215
|
writeControllerAliasesAndUrls(input: ControllerAPI_WriteAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response>;
|
|
216
216
|
/**
|
|
217
|
-
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
217
|
+
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
218
218
|
*/
|
|
219
219
|
removeControllerAliasesAndUrls(input: ControllerAPI_RemoveAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response>;
|
|
220
220
|
/**
|
|
221
|
-
* @generated from protobuf rpc: GetControllerUrl
|
|
221
|
+
* @generated from protobuf rpc: GetControllerUrl
|
|
222
222
|
*/
|
|
223
223
|
getControllerUrl(input: ControllerAPI_GetUrl_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response>;
|
|
224
224
|
/**
|
|
225
|
-
* @generated from protobuf rpc: ControllerSetFeatures
|
|
225
|
+
* @generated from protobuf rpc: ControllerSetFeatures
|
|
226
226
|
*/
|
|
227
227
|
controllerSetFeatures(input: ControllerAPI_SetFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response>;
|
|
228
228
|
/**
|
|
229
|
-
* @generated from protobuf rpc: ControllerClearFeatures
|
|
229
|
+
* @generated from protobuf rpc: ControllerClearFeatures
|
|
230
230
|
*/
|
|
231
231
|
controllerClearFeatures(input: ControllerAPI_ClearFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response>;
|
|
232
232
|
/**
|
|
@@ -234,15 +234,15 @@ export declare class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
234
234
|
* Locks
|
|
235
235
|
*
|
|
236
236
|
*
|
|
237
|
-
* @generated from protobuf rpc: LeaseResource
|
|
237
|
+
* @generated from protobuf rpc: LeaseResource
|
|
238
238
|
*/
|
|
239
239
|
leaseResource(input: LocksAPI_Lease_Create_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response>;
|
|
240
240
|
/**
|
|
241
|
-
* @generated from protobuf rpc: UpdateLease
|
|
241
|
+
* @generated from protobuf rpc: UpdateLease
|
|
242
242
|
*/
|
|
243
243
|
updateLease(input: LocksAPI_Lease_Update_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response>;
|
|
244
244
|
/**
|
|
245
|
-
* @generated from protobuf rpc: ReleaseLease
|
|
245
|
+
* @generated from protobuf rpc: ReleaseLease
|
|
246
246
|
*/
|
|
247
247
|
releaseLease(input: LocksAPI_Lease_Release_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response>;
|
|
248
248
|
/**
|
|
@@ -250,11 +250,11 @@ export declare class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
250
250
|
* Authentication
|
|
251
251
|
*
|
|
252
252
|
*
|
|
253
|
-
* @generated from protobuf rpc: AuthMethods
|
|
253
|
+
* @generated from protobuf rpc: AuthMethods
|
|
254
254
|
*/
|
|
255
255
|
authMethods(input: AuthAPI_ListMethods_Request, options?: RpcOptions): UnaryCall<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response>;
|
|
256
256
|
/**
|
|
257
|
-
* @generated from protobuf rpc: GetJWTToken
|
|
257
|
+
* @generated from protobuf rpc: GetJWTToken
|
|
258
258
|
*/
|
|
259
259
|
getJWTToken(input: AuthAPI_GetJWTToken_Request, options?: RpcOptions): UnaryCall<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response>;
|
|
260
260
|
/**
|
|
@@ -262,7 +262,7 @@ export declare class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
262
262
|
* Other stuff
|
|
263
263
|
*
|
|
264
264
|
*
|
|
265
|
-
* @generated from protobuf rpc: ListResourceTypes
|
|
265
|
+
* @generated from protobuf rpc: ListResourceTypes
|
|
266
266
|
*/
|
|
267
267
|
listResourceTypes(input: MiscAPI_ListResourceTypes_Request, options?: RpcOptions): UnaryCall<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response>;
|
|
268
268
|
/**
|
|
@@ -270,7 +270,7 @@ export declare class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
270
270
|
* Various service requests
|
|
271
271
|
*
|
|
272
272
|
*
|
|
273
|
-
* @generated from protobuf rpc: Ping
|
|
273
|
+
* @generated from protobuf rpc: Ping
|
|
274
274
|
*/
|
|
275
275
|
ping(input: MaintenanceAPI_Ping_Request, options?: RpcOptions): UnaryCall<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response>;
|
|
276
276
|
}
|