@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
|
@@ -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/plapi/plapiproto/api.proto" (package "MiLaboratories.PL.API", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
@@ -67,11 +67,11 @@ export interface IPlatformClient {
|
|
|
67
67
|
* Transactions
|
|
68
68
|
*
|
|
69
69
|
*
|
|
70
|
-
* @generated from protobuf rpc: Tx
|
|
70
|
+
* @generated from protobuf rpc: Tx
|
|
71
71
|
*/
|
|
72
72
|
tx(options?: RpcOptions): DuplexStreamingCall<TxAPI_ClientMessage, TxAPI_ServerMessage>;
|
|
73
73
|
/**
|
|
74
|
-
* @generated from protobuf rpc: TxSync
|
|
74
|
+
* @generated from protobuf rpc: TxSync
|
|
75
75
|
*/
|
|
76
76
|
txSync(input: TxAPI_Sync_Request, options?: RpcOptions): UnaryCall<TxAPI_Sync_Request, TxAPI_Sync_Response>;
|
|
77
77
|
/**
|
|
@@ -79,15 +79,15 @@ export interface IPlatformClient {
|
|
|
79
79
|
* Subscriptions
|
|
80
80
|
*
|
|
81
81
|
*
|
|
82
|
-
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
82
|
+
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
83
83
|
*/
|
|
84
84
|
subscriptionAttachFilter(input: SubscriptionAPI_AttachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response>;
|
|
85
85
|
/**
|
|
86
|
-
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
86
|
+
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
87
87
|
*/
|
|
88
88
|
subscriptionDetachFilter(input: SubscriptionAPI_DetachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response>;
|
|
89
89
|
/**
|
|
90
|
-
* @generated from protobuf rpc: NotificationsGet
|
|
90
|
+
* @generated from protobuf rpc: NotificationsGet
|
|
91
91
|
*/
|
|
92
92
|
notificationsGet(input: NotificationAPI_Get_Request, options?: RpcOptions): UnaryCall<NotificationAPI_Get_Request, NotificationAPI_Get_Response>;
|
|
93
93
|
/**
|
|
@@ -95,55 +95,55 @@ export interface IPlatformClient {
|
|
|
95
95
|
* Controllers
|
|
96
96
|
*
|
|
97
97
|
*
|
|
98
|
-
* @generated from protobuf rpc: ControllerRegister
|
|
98
|
+
* @generated from protobuf rpc: ControllerRegister
|
|
99
99
|
*/
|
|
100
100
|
controllerRegister(input: ControllerAPI_Register_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Register_Request, ControllerAPI_Register_Response>;
|
|
101
101
|
/**
|
|
102
|
-
* @generated from protobuf rpc: ControllerDeregister
|
|
102
|
+
* @generated from protobuf rpc: ControllerDeregister
|
|
103
103
|
*/
|
|
104
104
|
controllerDeregister(input: ControllerAPI_Deregister_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response>;
|
|
105
105
|
/**
|
|
106
|
-
* @generated from protobuf rpc: ControllerCreate
|
|
106
|
+
* @generated from protobuf rpc: ControllerCreate
|
|
107
107
|
*/
|
|
108
108
|
controllerCreate(input: ControllerAPI_Create_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Create_Request, ControllerAPI_Create_Response>;
|
|
109
109
|
/**
|
|
110
|
-
* @generated from protobuf rpc: ControllerExists
|
|
110
|
+
* @generated from protobuf rpc: ControllerExists
|
|
111
111
|
*/
|
|
112
112
|
controllerExists(input: ControllerAPI_Exists_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response>;
|
|
113
113
|
/**
|
|
114
|
-
* @generated from protobuf rpc: ControllerGet
|
|
114
|
+
* @generated from protobuf rpc: ControllerGet
|
|
115
115
|
*/
|
|
116
116
|
controllerGet(input: ControllerAPI_Get_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Get_Request, ControllerAPI_Get_Response>;
|
|
117
117
|
/**
|
|
118
|
-
* @generated from protobuf rpc: ControllerUpdate
|
|
118
|
+
* @generated from protobuf rpc: ControllerUpdate
|
|
119
119
|
*/
|
|
120
120
|
controllerUpdate(input: ControllerAPI_Update_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Update_Request, ControllerAPI_Update_Response>;
|
|
121
121
|
/**
|
|
122
|
-
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
122
|
+
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
123
123
|
*/
|
|
124
124
|
controllerAttachSubscription(input: ControllerAPI_AttachSubscription_Request, options?: RpcOptions): UnaryCall<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response>;
|
|
125
125
|
/**
|
|
126
|
-
* @generated from protobuf rpc: GetControllerNotifications
|
|
126
|
+
* @generated from protobuf rpc: GetControllerNotifications
|
|
127
127
|
*/
|
|
128
128
|
getControllerNotifications(input: ControllerAPI_GetNotifications_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response>;
|
|
129
129
|
/**
|
|
130
|
-
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
130
|
+
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
131
131
|
*/
|
|
132
132
|
writeControllerAliasesAndUrls(input: ControllerAPI_WriteAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response>;
|
|
133
133
|
/**
|
|
134
|
-
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
134
|
+
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
135
135
|
*/
|
|
136
136
|
removeControllerAliasesAndUrls(input: ControllerAPI_RemoveAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response>;
|
|
137
137
|
/**
|
|
138
|
-
* @generated from protobuf rpc: GetControllerUrl
|
|
138
|
+
* @generated from protobuf rpc: GetControllerUrl
|
|
139
139
|
*/
|
|
140
140
|
getControllerUrl(input: ControllerAPI_GetUrl_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response>;
|
|
141
141
|
/**
|
|
142
|
-
* @generated from protobuf rpc: ControllerSetFeatures
|
|
142
|
+
* @generated from protobuf rpc: ControllerSetFeatures
|
|
143
143
|
*/
|
|
144
144
|
controllerSetFeatures(input: ControllerAPI_SetFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response>;
|
|
145
145
|
/**
|
|
146
|
-
* @generated from protobuf rpc: ControllerClearFeatures
|
|
146
|
+
* @generated from protobuf rpc: ControllerClearFeatures
|
|
147
147
|
*/
|
|
148
148
|
controllerClearFeatures(input: ControllerAPI_ClearFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response>;
|
|
149
149
|
/**
|
|
@@ -151,15 +151,15 @@ export interface IPlatformClient {
|
|
|
151
151
|
* Locks
|
|
152
152
|
*
|
|
153
153
|
*
|
|
154
|
-
* @generated from protobuf rpc: LeaseResource
|
|
154
|
+
* @generated from protobuf rpc: LeaseResource
|
|
155
155
|
*/
|
|
156
156
|
leaseResource(input: LocksAPI_Lease_Create_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response>;
|
|
157
157
|
/**
|
|
158
|
-
* @generated from protobuf rpc: UpdateLease
|
|
158
|
+
* @generated from protobuf rpc: UpdateLease
|
|
159
159
|
*/
|
|
160
160
|
updateLease(input: LocksAPI_Lease_Update_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response>;
|
|
161
161
|
/**
|
|
162
|
-
* @generated from protobuf rpc: ReleaseLease
|
|
162
|
+
* @generated from protobuf rpc: ReleaseLease
|
|
163
163
|
*/
|
|
164
164
|
releaseLease(input: LocksAPI_Lease_Release_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response>;
|
|
165
165
|
/**
|
|
@@ -167,11 +167,11 @@ export interface IPlatformClient {
|
|
|
167
167
|
* Authentication
|
|
168
168
|
*
|
|
169
169
|
*
|
|
170
|
-
* @generated from protobuf rpc: AuthMethods
|
|
170
|
+
* @generated from protobuf rpc: AuthMethods
|
|
171
171
|
*/
|
|
172
172
|
authMethods(input: AuthAPI_ListMethods_Request, options?: RpcOptions): UnaryCall<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response>;
|
|
173
173
|
/**
|
|
174
|
-
* @generated from protobuf rpc: GetJWTToken
|
|
174
|
+
* @generated from protobuf rpc: GetJWTToken
|
|
175
175
|
*/
|
|
176
176
|
getJWTToken(input: AuthAPI_GetJWTToken_Request, options?: RpcOptions): UnaryCall<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response>;
|
|
177
177
|
/**
|
|
@@ -179,7 +179,7 @@ export interface IPlatformClient {
|
|
|
179
179
|
* Other stuff
|
|
180
180
|
*
|
|
181
181
|
*
|
|
182
|
-
* @generated from protobuf rpc: ListResourceTypes
|
|
182
|
+
* @generated from protobuf rpc: ListResourceTypes
|
|
183
183
|
*/
|
|
184
184
|
listResourceTypes(input: MiscAPI_ListResourceTypes_Request, options?: RpcOptions): UnaryCall<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response>;
|
|
185
185
|
/**
|
|
@@ -187,7 +187,7 @@ export interface IPlatformClient {
|
|
|
187
187
|
* Various service requests
|
|
188
188
|
*
|
|
189
189
|
*
|
|
190
|
-
* @generated from protobuf rpc: Ping
|
|
190
|
+
* @generated from protobuf rpc: Ping
|
|
191
191
|
*/
|
|
192
192
|
ping(input: MaintenanceAPI_Ping_Request, options?: RpcOptions): UnaryCall<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response>;
|
|
193
193
|
}
|
|
@@ -205,14 +205,14 @@ export class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
205
205
|
* Transactions
|
|
206
206
|
*
|
|
207
207
|
*
|
|
208
|
-
* @generated from protobuf rpc: Tx
|
|
208
|
+
* @generated from protobuf rpc: Tx
|
|
209
209
|
*/
|
|
210
210
|
tx(options?: RpcOptions): DuplexStreamingCall<TxAPI_ClientMessage, TxAPI_ServerMessage> {
|
|
211
211
|
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
212
212
|
return stackIntercept<TxAPI_ClientMessage, TxAPI_ServerMessage>("duplex", this._transport, method, opt);
|
|
213
213
|
}
|
|
214
214
|
/**
|
|
215
|
-
* @generated from protobuf rpc: TxSync
|
|
215
|
+
* @generated from protobuf rpc: TxSync
|
|
216
216
|
*/
|
|
217
217
|
txSync(input: TxAPI_Sync_Request, options?: RpcOptions): UnaryCall<TxAPI_Sync_Request, TxAPI_Sync_Response> {
|
|
218
218
|
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
|
@@ -223,21 +223,21 @@ export class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
223
223
|
* Subscriptions
|
|
224
224
|
*
|
|
225
225
|
*
|
|
226
|
-
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
226
|
+
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
227
227
|
*/
|
|
228
228
|
subscriptionAttachFilter(input: SubscriptionAPI_AttachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response> {
|
|
229
229
|
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
|
230
230
|
return stackIntercept<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response>("unary", this._transport, method, opt, input);
|
|
231
231
|
}
|
|
232
232
|
/**
|
|
233
|
-
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
233
|
+
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
234
234
|
*/
|
|
235
235
|
subscriptionDetachFilter(input: SubscriptionAPI_DetachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response> {
|
|
236
236
|
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
|
237
237
|
return stackIntercept<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response>("unary", this._transport, method, opt, input);
|
|
238
238
|
}
|
|
239
239
|
/**
|
|
240
|
-
* @generated from protobuf rpc: NotificationsGet
|
|
240
|
+
* @generated from protobuf rpc: NotificationsGet
|
|
241
241
|
*/
|
|
242
242
|
notificationsGet(input: NotificationAPI_Get_Request, options?: RpcOptions): UnaryCall<NotificationAPI_Get_Request, NotificationAPI_Get_Response> {
|
|
243
243
|
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
|
@@ -248,91 +248,91 @@ export class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
248
248
|
* Controllers
|
|
249
249
|
*
|
|
250
250
|
*
|
|
251
|
-
* @generated from protobuf rpc: ControllerRegister
|
|
251
|
+
* @generated from protobuf rpc: ControllerRegister
|
|
252
252
|
*/
|
|
253
253
|
controllerRegister(input: ControllerAPI_Register_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Register_Request, ControllerAPI_Register_Response> {
|
|
254
254
|
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
|
255
255
|
return stackIntercept<ControllerAPI_Register_Request, ControllerAPI_Register_Response>("unary", this._transport, method, opt, input);
|
|
256
256
|
}
|
|
257
257
|
/**
|
|
258
|
-
* @generated from protobuf rpc: ControllerDeregister
|
|
258
|
+
* @generated from protobuf rpc: ControllerDeregister
|
|
259
259
|
*/
|
|
260
260
|
controllerDeregister(input: ControllerAPI_Deregister_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response> {
|
|
261
261
|
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
|
262
262
|
return stackIntercept<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response>("unary", this._transport, method, opt, input);
|
|
263
263
|
}
|
|
264
264
|
/**
|
|
265
|
-
* @generated from protobuf rpc: ControllerCreate
|
|
265
|
+
* @generated from protobuf rpc: ControllerCreate
|
|
266
266
|
*/
|
|
267
267
|
controllerCreate(input: ControllerAPI_Create_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Create_Request, ControllerAPI_Create_Response> {
|
|
268
268
|
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
|
269
269
|
return stackIntercept<ControllerAPI_Create_Request, ControllerAPI_Create_Response>("unary", this._transport, method, opt, input);
|
|
270
270
|
}
|
|
271
271
|
/**
|
|
272
|
-
* @generated from protobuf rpc: ControllerExists
|
|
272
|
+
* @generated from protobuf rpc: ControllerExists
|
|
273
273
|
*/
|
|
274
274
|
controllerExists(input: ControllerAPI_Exists_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response> {
|
|
275
275
|
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
|
276
276
|
return stackIntercept<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response>("unary", this._transport, method, opt, input);
|
|
277
277
|
}
|
|
278
278
|
/**
|
|
279
|
-
* @generated from protobuf rpc: ControllerGet
|
|
279
|
+
* @generated from protobuf rpc: ControllerGet
|
|
280
280
|
*/
|
|
281
281
|
controllerGet(input: ControllerAPI_Get_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Get_Request, ControllerAPI_Get_Response> {
|
|
282
282
|
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
|
283
283
|
return stackIntercept<ControllerAPI_Get_Request, ControllerAPI_Get_Response>("unary", this._transport, method, opt, input);
|
|
284
284
|
}
|
|
285
285
|
/**
|
|
286
|
-
* @generated from protobuf rpc: ControllerUpdate
|
|
286
|
+
* @generated from protobuf rpc: ControllerUpdate
|
|
287
287
|
*/
|
|
288
288
|
controllerUpdate(input: ControllerAPI_Update_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Update_Request, ControllerAPI_Update_Response> {
|
|
289
289
|
const method = this.methods[10], opt = this._transport.mergeOptions(options);
|
|
290
290
|
return stackIntercept<ControllerAPI_Update_Request, ControllerAPI_Update_Response>("unary", this._transport, method, opt, input);
|
|
291
291
|
}
|
|
292
292
|
/**
|
|
293
|
-
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
293
|
+
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
294
294
|
*/
|
|
295
295
|
controllerAttachSubscription(input: ControllerAPI_AttachSubscription_Request, options?: RpcOptions): UnaryCall<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response> {
|
|
296
296
|
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
|
297
297
|
return stackIntercept<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response>("unary", this._transport, method, opt, input);
|
|
298
298
|
}
|
|
299
299
|
/**
|
|
300
|
-
* @generated from protobuf rpc: GetControllerNotifications
|
|
300
|
+
* @generated from protobuf rpc: GetControllerNotifications
|
|
301
301
|
*/
|
|
302
302
|
getControllerNotifications(input: ControllerAPI_GetNotifications_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response> {
|
|
303
303
|
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
|
304
304
|
return stackIntercept<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response>("unary", this._transport, method, opt, input);
|
|
305
305
|
}
|
|
306
306
|
/**
|
|
307
|
-
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
307
|
+
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
308
308
|
*/
|
|
309
309
|
writeControllerAliasesAndUrls(input: ControllerAPI_WriteAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response> {
|
|
310
310
|
const method = this.methods[13], opt = this._transport.mergeOptions(options);
|
|
311
311
|
return stackIntercept<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response>("unary", this._transport, method, opt, input);
|
|
312
312
|
}
|
|
313
313
|
/**
|
|
314
|
-
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
314
|
+
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
315
315
|
*/
|
|
316
316
|
removeControllerAliasesAndUrls(input: ControllerAPI_RemoveAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response> {
|
|
317
317
|
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
|
318
318
|
return stackIntercept<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response>("unary", this._transport, method, opt, input);
|
|
319
319
|
}
|
|
320
320
|
/**
|
|
321
|
-
* @generated from protobuf rpc: GetControllerUrl
|
|
321
|
+
* @generated from protobuf rpc: GetControllerUrl
|
|
322
322
|
*/
|
|
323
323
|
getControllerUrl(input: ControllerAPI_GetUrl_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response> {
|
|
324
324
|
const method = this.methods[15], opt = this._transport.mergeOptions(options);
|
|
325
325
|
return stackIntercept<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response>("unary", this._transport, method, opt, input);
|
|
326
326
|
}
|
|
327
327
|
/**
|
|
328
|
-
* @generated from protobuf rpc: ControllerSetFeatures
|
|
328
|
+
* @generated from protobuf rpc: ControllerSetFeatures
|
|
329
329
|
*/
|
|
330
330
|
controllerSetFeatures(input: ControllerAPI_SetFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response> {
|
|
331
331
|
const method = this.methods[16], opt = this._transport.mergeOptions(options);
|
|
332
332
|
return stackIntercept<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response>("unary", this._transport, method, opt, input);
|
|
333
333
|
}
|
|
334
334
|
/**
|
|
335
|
-
* @generated from protobuf rpc: ControllerClearFeatures
|
|
335
|
+
* @generated from protobuf rpc: ControllerClearFeatures
|
|
336
336
|
*/
|
|
337
337
|
controllerClearFeatures(input: ControllerAPI_ClearFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response> {
|
|
338
338
|
const method = this.methods[17], opt = this._transport.mergeOptions(options);
|
|
@@ -343,21 +343,21 @@ export class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
343
343
|
* Locks
|
|
344
344
|
*
|
|
345
345
|
*
|
|
346
|
-
* @generated from protobuf rpc: LeaseResource
|
|
346
|
+
* @generated from protobuf rpc: LeaseResource
|
|
347
347
|
*/
|
|
348
348
|
leaseResource(input: LocksAPI_Lease_Create_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response> {
|
|
349
349
|
const method = this.methods[18], opt = this._transport.mergeOptions(options);
|
|
350
350
|
return stackIntercept<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response>("unary", this._transport, method, opt, input);
|
|
351
351
|
}
|
|
352
352
|
/**
|
|
353
|
-
* @generated from protobuf rpc: UpdateLease
|
|
353
|
+
* @generated from protobuf rpc: UpdateLease
|
|
354
354
|
*/
|
|
355
355
|
updateLease(input: LocksAPI_Lease_Update_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response> {
|
|
356
356
|
const method = this.methods[19], opt = this._transport.mergeOptions(options);
|
|
357
357
|
return stackIntercept<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response>("unary", this._transport, method, opt, input);
|
|
358
358
|
}
|
|
359
359
|
/**
|
|
360
|
-
* @generated from protobuf rpc: ReleaseLease
|
|
360
|
+
* @generated from protobuf rpc: ReleaseLease
|
|
361
361
|
*/
|
|
362
362
|
releaseLease(input: LocksAPI_Lease_Release_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response> {
|
|
363
363
|
const method = this.methods[20], opt = this._transport.mergeOptions(options);
|
|
@@ -368,14 +368,14 @@ export class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
368
368
|
* Authentication
|
|
369
369
|
*
|
|
370
370
|
*
|
|
371
|
-
* @generated from protobuf rpc: AuthMethods
|
|
371
|
+
* @generated from protobuf rpc: AuthMethods
|
|
372
372
|
*/
|
|
373
373
|
authMethods(input: AuthAPI_ListMethods_Request, options?: RpcOptions): UnaryCall<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response> {
|
|
374
374
|
const method = this.methods[21], opt = this._transport.mergeOptions(options);
|
|
375
375
|
return stackIntercept<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response>("unary", this._transport, method, opt, input);
|
|
376
376
|
}
|
|
377
377
|
/**
|
|
378
|
-
* @generated from protobuf rpc: GetJWTToken
|
|
378
|
+
* @generated from protobuf rpc: GetJWTToken
|
|
379
379
|
*/
|
|
380
380
|
getJWTToken(input: AuthAPI_GetJWTToken_Request, options?: RpcOptions): UnaryCall<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response> {
|
|
381
381
|
const method = this.methods[22], opt = this._transport.mergeOptions(options);
|
|
@@ -386,7 +386,7 @@ export class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
386
386
|
* Other stuff
|
|
387
387
|
*
|
|
388
388
|
*
|
|
389
|
-
* @generated from protobuf rpc: ListResourceTypes
|
|
389
|
+
* @generated from protobuf rpc: ListResourceTypes
|
|
390
390
|
*/
|
|
391
391
|
listResourceTypes(input: MiscAPI_ListResourceTypes_Request, options?: RpcOptions): UnaryCall<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response> {
|
|
392
392
|
const method = this.methods[23], opt = this._transport.mergeOptions(options);
|
|
@@ -397,7 +397,7 @@ export class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
|
397
397
|
* Various service requests
|
|
398
398
|
*
|
|
399
399
|
*
|
|
400
|
-
* @generated from protobuf rpc: Ping
|
|
400
|
+
* @generated from protobuf rpc: Ping
|
|
401
401
|
*/
|
|
402
402
|
ping(input: MaintenanceAPI_Ping_Request, options?: RpcOptions): UnaryCall<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response> {
|
|
403
403
|
const method = this.methods[24], opt = this._transport.mergeOptions(options);
|