@milaboratories/pl-drivers 1.6.3 → 1.6.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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2026 -2480
- package/dist/index.mjs.map +1 -1
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +48 -0
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts +2 -2
- 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 +13 -5
- 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.client.d.ts.map +1 -1
- 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/lsapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts +4 -4
- 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 +10 -10
- 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.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +25 -25
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.d.ts +8 -8
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.d.ts +24 -16
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +277 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +5344 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts +530 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts +82 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +91 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +251 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts.map +1 -0
- package/dist/proto/google/api/http.d.ts +46 -42
- package/dist/proto/google/api/http.d.ts.map +1 -1
- package/dist/proto/google/protobuf/any.d.ts +172 -0
- package/dist/proto/google/protobuf/any.d.ts.map +1 -0
- package/dist/proto/google/protobuf/descriptor.d.ts +1003 -170
- package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.d.ts +2 -3
- package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
- package/dist/proto/google/protobuf/empty.d.ts +27 -0
- package/dist/proto/google/protobuf/empty.d.ts.map +1 -0
- package/dist/proto/google/protobuf/struct.d.ts +179 -0
- package/dist/proto/google/protobuf/struct.d.ts.map +1 -0
- package/dist/proto/google/protobuf/timestamp.d.ts +3 -6
- package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/proto/google/protobuf/wrappers.d.ts +327 -0
- package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -0
- package/package.json +5 -5
- package/src/clients/download.ts +1 -1
- package/src/clients/upload.ts +1 -1
- package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +125 -0
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +25 -40
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +252 -396
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +25 -37
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +341 -453
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +39 -65
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +398 -630
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +126 -194
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +626 -964
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.ts +102 -153
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.ts +741 -1082
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +406 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +14986 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +1474 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +181 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +251 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +693 -0
- package/src/proto/google/api/http.ts +336 -492
- package/src/proto/google/protobuf/any.ts +326 -0
- package/src/proto/google/protobuf/descriptor.ts +4383 -4772
- package/src/proto/google/protobuf/duration.ts +122 -169
- package/src/proto/google/protobuf/empty.ts +94 -0
- package/src/proto/google/protobuf/struct.ts +484 -0
- package/src/proto/google/protobuf/timestamp.ts +150 -225
- package/src/proto/google/protobuf/wrappers.ts +785 -0
|
@@ -0,0 +1,406 @@
|
|
|
1
|
+
// @generated by protobuf-ts 2.11.0 with parameter client_generic,optimize_speed,generate_dependencies,force_server_none
|
|
2
|
+
// @generated from protobuf file "github.com/milaboratory/pl/plapi/plapiproto/api.proto" (package "MiLaboratories.PL.API", syntax proto3)
|
|
3
|
+
// tslint:disable
|
|
4
|
+
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
5
|
+
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
|
6
|
+
import { Platform } from "./api";
|
|
7
|
+
import type { MaintenanceAPI_Ping_Response } from "./api";
|
|
8
|
+
import type { MaintenanceAPI_Ping_Request } from "./api";
|
|
9
|
+
import type { MiscAPI_ListResourceTypes_Response } from "./api";
|
|
10
|
+
import type { MiscAPI_ListResourceTypes_Request } from "./api";
|
|
11
|
+
import type { AuthAPI_GetJWTToken_Response } from "./api";
|
|
12
|
+
import type { AuthAPI_GetJWTToken_Request } from "./api";
|
|
13
|
+
import type { AuthAPI_ListMethods_Response } from "./api";
|
|
14
|
+
import type { AuthAPI_ListMethods_Request } from "./api";
|
|
15
|
+
import type { LocksAPI_Lease_Release_Response } from "./api";
|
|
16
|
+
import type { LocksAPI_Lease_Release_Request } from "./api";
|
|
17
|
+
import type { LocksAPI_Lease_Update_Response } from "./api";
|
|
18
|
+
import type { LocksAPI_Lease_Update_Request } from "./api";
|
|
19
|
+
import type { LocksAPI_Lease_Create_Response } from "./api";
|
|
20
|
+
import type { LocksAPI_Lease_Create_Request } from "./api";
|
|
21
|
+
import type { ControllerAPI_ClearFeatures_Response } from "./api";
|
|
22
|
+
import type { ControllerAPI_ClearFeatures_Request } from "./api";
|
|
23
|
+
import type { ControllerAPI_SetFeatures_Response } from "./api";
|
|
24
|
+
import type { ControllerAPI_SetFeatures_Request } from "./api";
|
|
25
|
+
import type { ControllerAPI_GetUrl_Response } from "./api";
|
|
26
|
+
import type { ControllerAPI_GetUrl_Request } from "./api";
|
|
27
|
+
import type { ControllerAPI_RemoveAliasesAndUrls_Response } from "./api";
|
|
28
|
+
import type { ControllerAPI_RemoveAliasesAndUrls_Request } from "./api";
|
|
29
|
+
import type { ControllerAPI_WriteAliasesAndUrls_Response } from "./api";
|
|
30
|
+
import type { ControllerAPI_WriteAliasesAndUrls_Request } from "./api";
|
|
31
|
+
import type { ControllerAPI_GetNotifications_Response } from "./api";
|
|
32
|
+
import type { ControllerAPI_GetNotifications_Request } from "./api";
|
|
33
|
+
import type { ControllerAPI_AttachSubscription_Response } from "./api";
|
|
34
|
+
import type { ControllerAPI_AttachSubscription_Request } from "./api";
|
|
35
|
+
import type { ControllerAPI_Update_Response } from "./api";
|
|
36
|
+
import type { ControllerAPI_Update_Request } from "./api";
|
|
37
|
+
import type { ControllerAPI_Get_Response } from "./api";
|
|
38
|
+
import type { ControllerAPI_Get_Request } from "./api";
|
|
39
|
+
import type { ControllerAPI_Exists_Response } from "./api";
|
|
40
|
+
import type { ControllerAPI_Exists_Request } from "./api";
|
|
41
|
+
import type { ControllerAPI_Create_Response } from "./api";
|
|
42
|
+
import type { ControllerAPI_Create_Request } from "./api";
|
|
43
|
+
import type { ControllerAPI_Deregister_Response } from "./api";
|
|
44
|
+
import type { ControllerAPI_Deregister_Request } from "./api";
|
|
45
|
+
import type { ControllerAPI_Register_Response } from "./api";
|
|
46
|
+
import type { ControllerAPI_Register_Request } from "./api";
|
|
47
|
+
import type { NotificationAPI_Get_Response } from "./api";
|
|
48
|
+
import type { NotificationAPI_Get_Request } from "./api";
|
|
49
|
+
import type { SubscriptionAPI_DetachFilter_Response } from "./api";
|
|
50
|
+
import type { SubscriptionAPI_DetachFilter_Request } from "./api";
|
|
51
|
+
import type { SubscriptionAPI_AttachFilter_Response } from "./api";
|
|
52
|
+
import type { SubscriptionAPI_AttachFilter_Request } from "./api";
|
|
53
|
+
import type { TxAPI_Sync_Response } from "./api";
|
|
54
|
+
import type { TxAPI_Sync_Request } from "./api";
|
|
55
|
+
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
|
|
56
|
+
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
|
57
|
+
import type { TxAPI_ServerMessage } from "./api";
|
|
58
|
+
import type { TxAPI_ClientMessage } from "./api";
|
|
59
|
+
import type { DuplexStreamingCall } from "@protobuf-ts/runtime-rpc";
|
|
60
|
+
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
|
61
|
+
/**
|
|
62
|
+
* @generated from protobuf service MiLaboratories.PL.API.Platform
|
|
63
|
+
*/
|
|
64
|
+
export interface IPlatformClient {
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* Transactions
|
|
68
|
+
*
|
|
69
|
+
*
|
|
70
|
+
* @generated from protobuf rpc: Tx
|
|
71
|
+
*/
|
|
72
|
+
tx(options?: RpcOptions): DuplexStreamingCall<TxAPI_ClientMessage, TxAPI_ServerMessage>;
|
|
73
|
+
/**
|
|
74
|
+
* @generated from protobuf rpc: TxSync
|
|
75
|
+
*/
|
|
76
|
+
txSync(input: TxAPI_Sync_Request, options?: RpcOptions): UnaryCall<TxAPI_Sync_Request, TxAPI_Sync_Response>;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* Subscriptions
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
83
|
+
*/
|
|
84
|
+
subscriptionAttachFilter(input: SubscriptionAPI_AttachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response>;
|
|
85
|
+
/**
|
|
86
|
+
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
87
|
+
*/
|
|
88
|
+
subscriptionDetachFilter(input: SubscriptionAPI_DetachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response>;
|
|
89
|
+
/**
|
|
90
|
+
* @generated from protobuf rpc: NotificationsGet
|
|
91
|
+
*/
|
|
92
|
+
notificationsGet(input: NotificationAPI_Get_Request, options?: RpcOptions): UnaryCall<NotificationAPI_Get_Request, NotificationAPI_Get_Response>;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* Controllers
|
|
96
|
+
*
|
|
97
|
+
*
|
|
98
|
+
* @generated from protobuf rpc: ControllerRegister
|
|
99
|
+
*/
|
|
100
|
+
controllerRegister(input: ControllerAPI_Register_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Register_Request, ControllerAPI_Register_Response>;
|
|
101
|
+
/**
|
|
102
|
+
* @generated from protobuf rpc: ControllerDeregister
|
|
103
|
+
*/
|
|
104
|
+
controllerDeregister(input: ControllerAPI_Deregister_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response>;
|
|
105
|
+
/**
|
|
106
|
+
* @generated from protobuf rpc: ControllerCreate
|
|
107
|
+
*/
|
|
108
|
+
controllerCreate(input: ControllerAPI_Create_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Create_Request, ControllerAPI_Create_Response>;
|
|
109
|
+
/**
|
|
110
|
+
* @generated from protobuf rpc: ControllerExists
|
|
111
|
+
*/
|
|
112
|
+
controllerExists(input: ControllerAPI_Exists_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response>;
|
|
113
|
+
/**
|
|
114
|
+
* @generated from protobuf rpc: ControllerGet
|
|
115
|
+
*/
|
|
116
|
+
controllerGet(input: ControllerAPI_Get_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Get_Request, ControllerAPI_Get_Response>;
|
|
117
|
+
/**
|
|
118
|
+
* @generated from protobuf rpc: ControllerUpdate
|
|
119
|
+
*/
|
|
120
|
+
controllerUpdate(input: ControllerAPI_Update_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Update_Request, ControllerAPI_Update_Response>;
|
|
121
|
+
/**
|
|
122
|
+
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
123
|
+
*/
|
|
124
|
+
controllerAttachSubscription(input: ControllerAPI_AttachSubscription_Request, options?: RpcOptions): UnaryCall<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response>;
|
|
125
|
+
/**
|
|
126
|
+
* @generated from protobuf rpc: GetControllerNotifications
|
|
127
|
+
*/
|
|
128
|
+
getControllerNotifications(input: ControllerAPI_GetNotifications_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response>;
|
|
129
|
+
/**
|
|
130
|
+
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
131
|
+
*/
|
|
132
|
+
writeControllerAliasesAndUrls(input: ControllerAPI_WriteAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response>;
|
|
133
|
+
/**
|
|
134
|
+
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
135
|
+
*/
|
|
136
|
+
removeControllerAliasesAndUrls(input: ControllerAPI_RemoveAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response>;
|
|
137
|
+
/**
|
|
138
|
+
* @generated from protobuf rpc: GetControllerUrl
|
|
139
|
+
*/
|
|
140
|
+
getControllerUrl(input: ControllerAPI_GetUrl_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response>;
|
|
141
|
+
/**
|
|
142
|
+
* @generated from protobuf rpc: ControllerSetFeatures
|
|
143
|
+
*/
|
|
144
|
+
controllerSetFeatures(input: ControllerAPI_SetFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response>;
|
|
145
|
+
/**
|
|
146
|
+
* @generated from protobuf rpc: ControllerClearFeatures
|
|
147
|
+
*/
|
|
148
|
+
controllerClearFeatures(input: ControllerAPI_ClearFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response>;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* Locks
|
|
152
|
+
*
|
|
153
|
+
*
|
|
154
|
+
* @generated from protobuf rpc: LeaseResource
|
|
155
|
+
*/
|
|
156
|
+
leaseResource(input: LocksAPI_Lease_Create_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response>;
|
|
157
|
+
/**
|
|
158
|
+
* @generated from protobuf rpc: UpdateLease
|
|
159
|
+
*/
|
|
160
|
+
updateLease(input: LocksAPI_Lease_Update_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response>;
|
|
161
|
+
/**
|
|
162
|
+
* @generated from protobuf rpc: ReleaseLease
|
|
163
|
+
*/
|
|
164
|
+
releaseLease(input: LocksAPI_Lease_Release_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response>;
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* Authentication
|
|
168
|
+
*
|
|
169
|
+
*
|
|
170
|
+
* @generated from protobuf rpc: AuthMethods
|
|
171
|
+
*/
|
|
172
|
+
authMethods(input: AuthAPI_ListMethods_Request, options?: RpcOptions): UnaryCall<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response>;
|
|
173
|
+
/**
|
|
174
|
+
* @generated from protobuf rpc: GetJWTToken
|
|
175
|
+
*/
|
|
176
|
+
getJWTToken(input: AuthAPI_GetJWTToken_Request, options?: RpcOptions): UnaryCall<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response>;
|
|
177
|
+
/**
|
|
178
|
+
*
|
|
179
|
+
* Other stuff
|
|
180
|
+
*
|
|
181
|
+
*
|
|
182
|
+
* @generated from protobuf rpc: ListResourceTypes
|
|
183
|
+
*/
|
|
184
|
+
listResourceTypes(input: MiscAPI_ListResourceTypes_Request, options?: RpcOptions): UnaryCall<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response>;
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* Various service requests
|
|
188
|
+
*
|
|
189
|
+
*
|
|
190
|
+
* @generated from protobuf rpc: Ping
|
|
191
|
+
*/
|
|
192
|
+
ping(input: MaintenanceAPI_Ping_Request, options?: RpcOptions): UnaryCall<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response>;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* @generated from protobuf service MiLaboratories.PL.API.Platform
|
|
196
|
+
*/
|
|
197
|
+
export class PlatformClient implements IPlatformClient, ServiceInfo {
|
|
198
|
+
typeName = Platform.typeName;
|
|
199
|
+
methods = Platform.methods;
|
|
200
|
+
options = Platform.options;
|
|
201
|
+
constructor(private readonly _transport: RpcTransport) {
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* Transactions
|
|
206
|
+
*
|
|
207
|
+
*
|
|
208
|
+
* @generated from protobuf rpc: Tx
|
|
209
|
+
*/
|
|
210
|
+
tx(options?: RpcOptions): DuplexStreamingCall<TxAPI_ClientMessage, TxAPI_ServerMessage> {
|
|
211
|
+
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
212
|
+
return stackIntercept<TxAPI_ClientMessage, TxAPI_ServerMessage>("duplex", this._transport, method, opt);
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* @generated from protobuf rpc: TxSync
|
|
216
|
+
*/
|
|
217
|
+
txSync(input: TxAPI_Sync_Request, options?: RpcOptions): UnaryCall<TxAPI_Sync_Request, TxAPI_Sync_Response> {
|
|
218
|
+
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
|
219
|
+
return stackIntercept<TxAPI_Sync_Request, TxAPI_Sync_Response>("unary", this._transport, method, opt, input);
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* Subscriptions
|
|
224
|
+
*
|
|
225
|
+
*
|
|
226
|
+
* @generated from protobuf rpc: SubscriptionAttachFilter
|
|
227
|
+
*/
|
|
228
|
+
subscriptionAttachFilter(input: SubscriptionAPI_AttachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response> {
|
|
229
|
+
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
|
230
|
+
return stackIntercept<SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response>("unary", this._transport, method, opt, input);
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* @generated from protobuf rpc: SubscriptionDetachFilter
|
|
234
|
+
*/
|
|
235
|
+
subscriptionDetachFilter(input: SubscriptionAPI_DetachFilter_Request, options?: RpcOptions): UnaryCall<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response> {
|
|
236
|
+
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
|
237
|
+
return stackIntercept<SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response>("unary", this._transport, method, opt, input);
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* @generated from protobuf rpc: NotificationsGet
|
|
241
|
+
*/
|
|
242
|
+
notificationsGet(input: NotificationAPI_Get_Request, options?: RpcOptions): UnaryCall<NotificationAPI_Get_Request, NotificationAPI_Get_Response> {
|
|
243
|
+
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
|
244
|
+
return stackIntercept<NotificationAPI_Get_Request, NotificationAPI_Get_Response>("unary", this._transport, method, opt, input);
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* Controllers
|
|
249
|
+
*
|
|
250
|
+
*
|
|
251
|
+
* @generated from protobuf rpc: ControllerRegister
|
|
252
|
+
*/
|
|
253
|
+
controllerRegister(input: ControllerAPI_Register_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Register_Request, ControllerAPI_Register_Response> {
|
|
254
|
+
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
|
255
|
+
return stackIntercept<ControllerAPI_Register_Request, ControllerAPI_Register_Response>("unary", this._transport, method, opt, input);
|
|
256
|
+
}
|
|
257
|
+
/**
|
|
258
|
+
* @generated from protobuf rpc: ControllerDeregister
|
|
259
|
+
*/
|
|
260
|
+
controllerDeregister(input: ControllerAPI_Deregister_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response> {
|
|
261
|
+
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
|
262
|
+
return stackIntercept<ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response>("unary", this._transport, method, opt, input);
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* @generated from protobuf rpc: ControllerCreate
|
|
266
|
+
*/
|
|
267
|
+
controllerCreate(input: ControllerAPI_Create_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Create_Request, ControllerAPI_Create_Response> {
|
|
268
|
+
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
|
269
|
+
return stackIntercept<ControllerAPI_Create_Request, ControllerAPI_Create_Response>("unary", this._transport, method, opt, input);
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* @generated from protobuf rpc: ControllerExists
|
|
273
|
+
*/
|
|
274
|
+
controllerExists(input: ControllerAPI_Exists_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response> {
|
|
275
|
+
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
|
276
|
+
return stackIntercept<ControllerAPI_Exists_Request, ControllerAPI_Exists_Response>("unary", this._transport, method, opt, input);
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* @generated from protobuf rpc: ControllerGet
|
|
280
|
+
*/
|
|
281
|
+
controllerGet(input: ControllerAPI_Get_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Get_Request, ControllerAPI_Get_Response> {
|
|
282
|
+
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
|
283
|
+
return stackIntercept<ControllerAPI_Get_Request, ControllerAPI_Get_Response>("unary", this._transport, method, opt, input);
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* @generated from protobuf rpc: ControllerUpdate
|
|
287
|
+
*/
|
|
288
|
+
controllerUpdate(input: ControllerAPI_Update_Request, options?: RpcOptions): UnaryCall<ControllerAPI_Update_Request, ControllerAPI_Update_Response> {
|
|
289
|
+
const method = this.methods[10], opt = this._transport.mergeOptions(options);
|
|
290
|
+
return stackIntercept<ControllerAPI_Update_Request, ControllerAPI_Update_Response>("unary", this._transport, method, opt, input);
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* @generated from protobuf rpc: ControllerAttachSubscription
|
|
294
|
+
*/
|
|
295
|
+
controllerAttachSubscription(input: ControllerAPI_AttachSubscription_Request, options?: RpcOptions): UnaryCall<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response> {
|
|
296
|
+
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
|
297
|
+
return stackIntercept<ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response>("unary", this._transport, method, opt, input);
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* @generated from protobuf rpc: GetControllerNotifications
|
|
301
|
+
*/
|
|
302
|
+
getControllerNotifications(input: ControllerAPI_GetNotifications_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response> {
|
|
303
|
+
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
|
304
|
+
return stackIntercept<ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response>("unary", this._transport, method, opt, input);
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* @generated from protobuf rpc: WriteControllerAliasesAndUrls
|
|
308
|
+
*/
|
|
309
|
+
writeControllerAliasesAndUrls(input: ControllerAPI_WriteAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response> {
|
|
310
|
+
const method = this.methods[13], opt = this._transport.mergeOptions(options);
|
|
311
|
+
return stackIntercept<ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response>("unary", this._transport, method, opt, input);
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* @generated from protobuf rpc: RemoveControllerAliasesAndUrls
|
|
315
|
+
*/
|
|
316
|
+
removeControllerAliasesAndUrls(input: ControllerAPI_RemoveAliasesAndUrls_Request, options?: RpcOptions): UnaryCall<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response> {
|
|
317
|
+
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
|
318
|
+
return stackIntercept<ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response>("unary", this._transport, method, opt, input);
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* @generated from protobuf rpc: GetControllerUrl
|
|
322
|
+
*/
|
|
323
|
+
getControllerUrl(input: ControllerAPI_GetUrl_Request, options?: RpcOptions): UnaryCall<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response> {
|
|
324
|
+
const method = this.methods[15], opt = this._transport.mergeOptions(options);
|
|
325
|
+
return stackIntercept<ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response>("unary", this._transport, method, opt, input);
|
|
326
|
+
}
|
|
327
|
+
/**
|
|
328
|
+
* @generated from protobuf rpc: ControllerSetFeatures
|
|
329
|
+
*/
|
|
330
|
+
controllerSetFeatures(input: ControllerAPI_SetFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response> {
|
|
331
|
+
const method = this.methods[16], opt = this._transport.mergeOptions(options);
|
|
332
|
+
return stackIntercept<ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response>("unary", this._transport, method, opt, input);
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* @generated from protobuf rpc: ControllerClearFeatures
|
|
336
|
+
*/
|
|
337
|
+
controllerClearFeatures(input: ControllerAPI_ClearFeatures_Request, options?: RpcOptions): UnaryCall<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response> {
|
|
338
|
+
const method = this.methods[17], opt = this._transport.mergeOptions(options);
|
|
339
|
+
return stackIntercept<ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response>("unary", this._transport, method, opt, input);
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
*
|
|
343
|
+
* Locks
|
|
344
|
+
*
|
|
345
|
+
*
|
|
346
|
+
* @generated from protobuf rpc: LeaseResource
|
|
347
|
+
*/
|
|
348
|
+
leaseResource(input: LocksAPI_Lease_Create_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response> {
|
|
349
|
+
const method = this.methods[18], opt = this._transport.mergeOptions(options);
|
|
350
|
+
return stackIntercept<LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response>("unary", this._transport, method, opt, input);
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* @generated from protobuf rpc: UpdateLease
|
|
354
|
+
*/
|
|
355
|
+
updateLease(input: LocksAPI_Lease_Update_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response> {
|
|
356
|
+
const method = this.methods[19], opt = this._transport.mergeOptions(options);
|
|
357
|
+
return stackIntercept<LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response>("unary", this._transport, method, opt, input);
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* @generated from protobuf rpc: ReleaseLease
|
|
361
|
+
*/
|
|
362
|
+
releaseLease(input: LocksAPI_Lease_Release_Request, options?: RpcOptions): UnaryCall<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response> {
|
|
363
|
+
const method = this.methods[20], opt = this._transport.mergeOptions(options);
|
|
364
|
+
return stackIntercept<LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response>("unary", this._transport, method, opt, input);
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
*
|
|
368
|
+
* Authentication
|
|
369
|
+
*
|
|
370
|
+
*
|
|
371
|
+
* @generated from protobuf rpc: AuthMethods
|
|
372
|
+
*/
|
|
373
|
+
authMethods(input: AuthAPI_ListMethods_Request, options?: RpcOptions): UnaryCall<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response> {
|
|
374
|
+
const method = this.methods[21], opt = this._transport.mergeOptions(options);
|
|
375
|
+
return stackIntercept<AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response>("unary", this._transport, method, opt, input);
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* @generated from protobuf rpc: GetJWTToken
|
|
379
|
+
*/
|
|
380
|
+
getJWTToken(input: AuthAPI_GetJWTToken_Request, options?: RpcOptions): UnaryCall<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response> {
|
|
381
|
+
const method = this.methods[22], opt = this._transport.mergeOptions(options);
|
|
382
|
+
return stackIntercept<AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response>("unary", this._transport, method, opt, input);
|
|
383
|
+
}
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* Other stuff
|
|
387
|
+
*
|
|
388
|
+
*
|
|
389
|
+
* @generated from protobuf rpc: ListResourceTypes
|
|
390
|
+
*/
|
|
391
|
+
listResourceTypes(input: MiscAPI_ListResourceTypes_Request, options?: RpcOptions): UnaryCall<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response> {
|
|
392
|
+
const method = this.methods[23], opt = this._transport.mergeOptions(options);
|
|
393
|
+
return stackIntercept<MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response>("unary", this._transport, method, opt, input);
|
|
394
|
+
}
|
|
395
|
+
/**
|
|
396
|
+
*
|
|
397
|
+
* Various service requests
|
|
398
|
+
*
|
|
399
|
+
*
|
|
400
|
+
* @generated from protobuf rpc: Ping
|
|
401
|
+
*/
|
|
402
|
+
ping(input: MaintenanceAPI_Ping_Request, options?: RpcOptions): UnaryCall<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response> {
|
|
403
|
+
const method = this.methods[24], opt = this._transport.mergeOptions(options);
|
|
404
|
+
return stackIntercept<MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response>("unary", this._transport, method, opt, input);
|
|
405
|
+
}
|
|
406
|
+
}
|