@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
|
@@ -7,11 +7,11 @@ import { Timestamp } from '../../../../../google/protobuf/timestamp';
|
|
|
7
7
|
*/
|
|
8
8
|
export interface Tx {
|
|
9
9
|
/**
|
|
10
|
-
* @generated from protobuf field: bool is_valid = 1
|
|
10
|
+
* @generated from protobuf field: bool is_valid = 1
|
|
11
11
|
*/
|
|
12
12
|
isValid: boolean;
|
|
13
13
|
/**
|
|
14
|
-
* @generated from protobuf field: uint64 id = 2
|
|
14
|
+
* @generated from protobuf field: uint64 id = 2
|
|
15
15
|
*/
|
|
16
16
|
id: bigint;
|
|
17
17
|
}
|
|
@@ -20,65 +20,69 @@ export interface Tx {
|
|
|
20
20
|
*/
|
|
21
21
|
export interface Resource {
|
|
22
22
|
/**
|
|
23
|
-
* @generated from protobuf field: uint64 id = 2
|
|
23
|
+
* @generated from protobuf field: uint64 id = 2
|
|
24
24
|
*/
|
|
25
25
|
id: bigint;
|
|
26
26
|
/**
|
|
27
|
-
* @generated from protobuf field:
|
|
27
|
+
* @generated from protobuf field: bytes canonical_id = 17
|
|
28
|
+
*/
|
|
29
|
+
canonicalId: Uint8Array;
|
|
30
|
+
/**
|
|
31
|
+
* @generated from protobuf field: MiLaboratories.PL.API.Resource.Kind kind = 3
|
|
28
32
|
*/
|
|
29
33
|
kind: Resource_Kind;
|
|
30
34
|
/**
|
|
31
|
-
* @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 4
|
|
35
|
+
* @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 4
|
|
32
36
|
*/
|
|
33
37
|
type?: ResourceType;
|
|
34
38
|
/**
|
|
35
|
-
* @generated from protobuf field: bytes data = 5
|
|
39
|
+
* @generated from protobuf field: bytes data = 5
|
|
36
40
|
*/
|
|
37
41
|
data: Uint8Array;
|
|
38
42
|
/**
|
|
39
|
-
* @generated from protobuf field: MiLaboratories.PL.API.Resource.Features features = 16
|
|
43
|
+
* @generated from protobuf field: MiLaboratories.PL.API.Resource.Features features = 16
|
|
40
44
|
*/
|
|
41
45
|
features?: Resource_Features;
|
|
42
46
|
/**
|
|
43
|
-
* @generated from protobuf field: repeated MiLaboratories.PL.API.Field fields = 6
|
|
47
|
+
* @generated from protobuf field: repeated MiLaboratories.PL.API.Field fields = 6
|
|
44
48
|
*/
|
|
45
49
|
fields: Field[];
|
|
46
50
|
/**
|
|
47
51
|
* Resource has at least one field with error
|
|
48
52
|
*
|
|
49
|
-
* @generated from protobuf field: bool has_errors = 7
|
|
53
|
+
* @generated from protobuf field: bool has_errors = 7
|
|
50
54
|
*/
|
|
51
55
|
hasErrors: boolean;
|
|
52
56
|
/**
|
|
53
|
-
* @generated from protobuf field: bool inputs_locked = 8
|
|
57
|
+
* @generated from protobuf field: bool inputs_locked = 8
|
|
54
58
|
*/
|
|
55
59
|
inputsLocked: boolean;
|
|
56
60
|
/**
|
|
57
|
-
* @generated from protobuf field: bool outputs_locked = 9
|
|
61
|
+
* @generated from protobuf field: bool outputs_locked = 9
|
|
58
62
|
*/
|
|
59
63
|
outputsLocked: boolean;
|
|
60
64
|
/**
|
|
61
|
-
* @generated from protobuf field: bool resource_ready = 14
|
|
65
|
+
* @generated from protobuf field: bool resource_ready = 14
|
|
62
66
|
*/
|
|
63
67
|
resourceReady: boolean;
|
|
64
68
|
/**
|
|
65
|
-
* @generated from protobuf field: bool is_final = 15
|
|
69
|
+
* @generated from protobuf field: bool is_final = 15
|
|
66
70
|
*/
|
|
67
71
|
isFinal: boolean;
|
|
68
72
|
/**
|
|
69
|
-
* @generated from protobuf field: uint64 original_resource_id = 10
|
|
73
|
+
* @generated from protobuf field: uint64 original_resource_id = 10
|
|
70
74
|
*/
|
|
71
75
|
originalResourceId: bigint;
|
|
72
76
|
/**
|
|
73
|
-
* @generated from protobuf field: uint64 parent_resource_id = 11
|
|
77
|
+
* @generated from protobuf field: uint64 parent_resource_id = 11
|
|
74
78
|
*/
|
|
75
79
|
parentResourceId: bigint;
|
|
76
80
|
/**
|
|
77
|
-
* @generated from protobuf field: google.protobuf.Timestamp created_time = 12
|
|
81
|
+
* @generated from protobuf field: google.protobuf.Timestamp created_time = 12
|
|
78
82
|
*/
|
|
79
83
|
createdTime?: Timestamp;
|
|
80
84
|
/**
|
|
81
|
-
* @generated from protobuf field: google.protobuf.Timestamp deleted_time = 13
|
|
85
|
+
* @generated from protobuf field: google.protobuf.Timestamp deleted_time = 13
|
|
82
86
|
*/
|
|
83
87
|
deletedTime?: Timestamp;
|
|
84
88
|
}
|
|
@@ -87,7 +91,7 @@ export interface Resource {
|
|
|
87
91
|
*/
|
|
88
92
|
export interface Resource_Features {
|
|
89
93
|
/**
|
|
90
|
-
* @generated from protobuf field: bool ephemeral = 1
|
|
94
|
+
* @generated from protobuf field: bool ephemeral = 1
|
|
91
95
|
*/
|
|
92
96
|
ephemeral: boolean;
|
|
93
97
|
}
|
|
@@ -115,15 +119,15 @@ export interface Field {
|
|
|
115
119
|
/**
|
|
116
120
|
* field ID is always combination of parent resource ID and field name
|
|
117
121
|
*
|
|
118
|
-
* @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 1
|
|
122
|
+
* @generated from protobuf field: MiLaboratories.PL.Base.FieldRef id = 1
|
|
119
123
|
*/
|
|
120
124
|
id?: FieldRef;
|
|
121
125
|
/**
|
|
122
|
-
* @generated from protobuf field: MiLaboratories.PL.Base.FieldType type = 2
|
|
126
|
+
* @generated from protobuf field: MiLaboratories.PL.Base.FieldType type = 2
|
|
123
127
|
*/
|
|
124
128
|
type: FieldType;
|
|
125
129
|
/**
|
|
126
|
-
* @generated from protobuf field: MiLaboratories.PL.API.Resource.Features features = 3
|
|
130
|
+
* @generated from protobuf field: MiLaboratories.PL.API.Resource.Features features = 3
|
|
127
131
|
*/
|
|
128
132
|
features?: Resource_Features;
|
|
129
133
|
/**
|
|
@@ -133,26 +137,26 @@ export interface Field {
|
|
|
133
137
|
* reference. At that moment all fields in the chain will get their values
|
|
134
138
|
* resolved and will start to refer to the same resource directly.
|
|
135
139
|
*
|
|
136
|
-
* @generated from protobuf field: uint64 value = 5
|
|
140
|
+
* @generated from protobuf field: uint64 value = 5
|
|
137
141
|
*/
|
|
138
142
|
value: bigint;
|
|
139
143
|
/**
|
|
140
144
|
* If the value was empty, assigned or finally resolved.
|
|
141
145
|
*
|
|
142
|
-
* @generated from protobuf field: MiLaboratories.PL.API.Field.ValueStatus value_status = 7
|
|
146
|
+
* @generated from protobuf field: MiLaboratories.PL.API.Field.ValueStatus value_status = 7
|
|
143
147
|
*/
|
|
144
148
|
valueStatus: Field_ValueStatus;
|
|
145
149
|
/**
|
|
146
150
|
* If the value is in its final state (ready, duplicate or error)
|
|
147
151
|
*
|
|
148
|
-
* @generated from protobuf field: bool value_is_final = 8
|
|
152
|
+
* @generated from protobuf field: bool value_is_final = 8
|
|
149
153
|
*/
|
|
150
154
|
valueIsFinal: boolean;
|
|
151
155
|
/**
|
|
152
156
|
* Resource error resource id if any.
|
|
153
157
|
* Is intended to report problems _from_ platform to client.
|
|
154
158
|
*
|
|
155
|
-
* @generated from protobuf field: uint64 error = 6
|
|
159
|
+
* @generated from protobuf field: uint64 error = 6
|
|
156
160
|
*/
|
|
157
161
|
error: bigint;
|
|
158
162
|
}
|
|
@@ -182,41 +186,41 @@ export declare enum Field_ValueStatus {
|
|
|
182
186
|
*/
|
|
183
187
|
export interface Notification {
|
|
184
188
|
/**
|
|
185
|
-
* @generated from protobuf field: uint64 subscription_id = 1
|
|
189
|
+
* @generated from protobuf field: uint64 subscription_id = 1
|
|
186
190
|
*/
|
|
187
191
|
subscriptionId: bigint;
|
|
188
192
|
/**
|
|
189
|
-
* @generated from protobuf field: uint64 event_id = 2
|
|
193
|
+
* @generated from protobuf field: uint64 event_id = 2
|
|
190
194
|
*/
|
|
191
195
|
eventId: bigint;
|
|
192
196
|
/**
|
|
193
|
-
* @generated from protobuf field: uint64 resource_id = 3
|
|
197
|
+
* @generated from protobuf field: uint64 resource_id = 3
|
|
194
198
|
*/
|
|
195
199
|
resourceId: bigint;
|
|
196
200
|
/**
|
|
197
|
-
* @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 4
|
|
201
|
+
* @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 4
|
|
198
202
|
*/
|
|
199
203
|
resourceType?: ResourceType;
|
|
200
204
|
/**
|
|
201
|
-
* @generated from protobuf field: MiLaboratories.PL.API.Notification.Events events = 5
|
|
205
|
+
* @generated from protobuf field: MiLaboratories.PL.API.Notification.Events events = 5
|
|
202
206
|
*/
|
|
203
207
|
events?: Notification_Events;
|
|
204
208
|
/**
|
|
205
|
-
* @generated from protobuf field: map<string, MiLaboratories.PL.API.Notification.FieldChange> field_changes = 6
|
|
209
|
+
* @generated from protobuf field: map<string, MiLaboratories.PL.API.Notification.FieldChange> field_changes = 6
|
|
206
210
|
*/
|
|
207
211
|
fieldChanges: {
|
|
208
212
|
[key: string]: Notification_FieldChange;
|
|
209
213
|
};
|
|
210
214
|
/**
|
|
211
|
-
* @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter.Payload payload = 7
|
|
215
|
+
* @generated from protobuf field: MiLaboratories.PL.RTypes.NotificationFilter.Payload payload = 7
|
|
212
216
|
*/
|
|
213
217
|
payload?: NotificationFilter_Payload;
|
|
214
218
|
/**
|
|
215
|
-
* @generated from protobuf field: string filter_name = 8
|
|
219
|
+
* @generated from protobuf field: string filter_name = 8
|
|
216
220
|
*/
|
|
217
221
|
filterName: string;
|
|
218
222
|
/**
|
|
219
|
-
* @generated from protobuf field: MiLaboratories.PL.API.SpanInfo tx_span = 9
|
|
223
|
+
* @generated from protobuf field: MiLaboratories.PL.API.SpanInfo tx_span = 9
|
|
220
224
|
*/
|
|
221
225
|
txSpan?: SpanInfo;
|
|
222
226
|
}
|
|
@@ -225,63 +229,63 @@ export interface Notification {
|
|
|
225
229
|
*/
|
|
226
230
|
export interface Notification_Events {
|
|
227
231
|
/**
|
|
228
|
-
* @generated from protobuf field: bool resource_created = 1
|
|
232
|
+
* @generated from protobuf field: bool resource_created = 1
|
|
229
233
|
*/
|
|
230
234
|
resourceCreated: boolean;
|
|
231
235
|
/**
|
|
232
|
-
* @generated from protobuf field: bool resource_deleted = 2
|
|
236
|
+
* @generated from protobuf field: bool resource_deleted = 2
|
|
233
237
|
*/
|
|
234
238
|
resourceDeleted: boolean;
|
|
235
239
|
/**
|
|
236
|
-
* @generated from protobuf field: bool resource_ready = 4
|
|
240
|
+
* @generated from protobuf field: bool resource_ready = 4
|
|
237
241
|
*/
|
|
238
242
|
resourceReady: boolean;
|
|
239
243
|
/**
|
|
240
|
-
* @generated from protobuf field: bool resource_duplicate = 5
|
|
244
|
+
* @generated from protobuf field: bool resource_duplicate = 5
|
|
241
245
|
*/
|
|
242
246
|
resourceDuplicate: boolean;
|
|
243
247
|
/**
|
|
244
|
-
* @generated from protobuf field: bool resource_error = 15
|
|
248
|
+
* @generated from protobuf field: bool resource_error = 15
|
|
245
249
|
*/
|
|
246
250
|
resourceError: boolean;
|
|
247
251
|
/**
|
|
248
|
-
* @generated from protobuf field: bool inputs_locked = 12
|
|
252
|
+
* @generated from protobuf field: bool inputs_locked = 12
|
|
249
253
|
*/
|
|
250
254
|
inputsLocked: boolean;
|
|
251
255
|
/**
|
|
252
|
-
* @generated from protobuf field: bool outputs_locked = 13
|
|
256
|
+
* @generated from protobuf field: bool outputs_locked = 13
|
|
253
257
|
*/
|
|
254
258
|
outputsLocked: boolean;
|
|
255
259
|
/**
|
|
256
|
-
* @generated from protobuf field: bool field_created = 11
|
|
260
|
+
* @generated from protobuf field: bool field_created = 11
|
|
257
261
|
*/
|
|
258
262
|
fieldCreated: boolean;
|
|
259
263
|
/**
|
|
260
|
-
* @generated from protobuf field: bool field_got_error = 16
|
|
264
|
+
* @generated from protobuf field: bool field_got_error = 16
|
|
261
265
|
*/
|
|
262
266
|
fieldGotError: boolean;
|
|
263
267
|
/**
|
|
264
|
-
* @generated from protobuf field: bool input_set = 6
|
|
268
|
+
* @generated from protobuf field: bool input_set = 6
|
|
265
269
|
*/
|
|
266
270
|
inputSet: boolean;
|
|
267
271
|
/**
|
|
268
|
-
* @generated from protobuf field: bool all_inputs_set = 7
|
|
272
|
+
* @generated from protobuf field: bool all_inputs_set = 7
|
|
269
273
|
*/
|
|
270
274
|
allInputsSet: boolean;
|
|
271
275
|
/**
|
|
272
|
-
* @generated from protobuf field: bool output_set = 8
|
|
276
|
+
* @generated from protobuf field: bool output_set = 8
|
|
273
277
|
*/
|
|
274
278
|
outputSet: boolean;
|
|
275
279
|
/**
|
|
276
|
-
* @generated from protobuf field: bool all_outputs_set = 9
|
|
280
|
+
* @generated from protobuf field: bool all_outputs_set = 9
|
|
277
281
|
*/
|
|
278
282
|
allOutputsSet: boolean;
|
|
279
283
|
/**
|
|
280
|
-
* @generated from protobuf field: bool generic_otw_set = 14
|
|
284
|
+
* @generated from protobuf field: bool generic_otw_set = 14
|
|
281
285
|
*/
|
|
282
286
|
genericOtwSet: boolean;
|
|
283
287
|
/**
|
|
284
|
-
* @generated from protobuf field: bool dynamic_changed = 10
|
|
288
|
+
* @generated from protobuf field: bool dynamic_changed = 10
|
|
285
289
|
*/
|
|
286
290
|
dynamicChanged: boolean;
|
|
287
291
|
}
|
|
@@ -290,11 +294,11 @@ export interface Notification_Events {
|
|
|
290
294
|
*/
|
|
291
295
|
export interface Notification_FieldChange {
|
|
292
296
|
/**
|
|
293
|
-
* @generated from protobuf field: MiLaboratories.PL.API.Field old = 1
|
|
297
|
+
* @generated from protobuf field: MiLaboratories.PL.API.Field old = 1
|
|
294
298
|
*/
|
|
295
299
|
old?: Field;
|
|
296
300
|
/**
|
|
297
|
-
* @generated from protobuf field: MiLaboratories.PL.API.Field new = 2
|
|
301
|
+
* @generated from protobuf field: MiLaboratories.PL.API.Field new = 2
|
|
298
302
|
*/
|
|
299
303
|
new?: Field;
|
|
300
304
|
}
|
|
@@ -303,11 +307,11 @@ export interface Notification_FieldChange {
|
|
|
303
307
|
*/
|
|
304
308
|
export interface SpanInfo {
|
|
305
309
|
/**
|
|
306
|
-
* @generated from protobuf field: string path = 1
|
|
310
|
+
* @generated from protobuf field: string path = 1
|
|
307
311
|
*/
|
|
308
312
|
path: string;
|
|
309
313
|
/**
|
|
310
|
-
* @generated from protobuf field: map<string, string> carrier = 2
|
|
314
|
+
* @generated from protobuf field: map<string, string> carrier = 2
|
|
311
315
|
*/
|
|
312
316
|
carrier: {
|
|
313
317
|
[key: string]: string;
|
|
@@ -318,11 +322,11 @@ export interface SpanInfo {
|
|
|
318
322
|
*/
|
|
319
323
|
export interface Subscription {
|
|
320
324
|
/**
|
|
321
|
-
* @generated from protobuf field: uint64 id = 1
|
|
325
|
+
* @generated from protobuf field: uint64 id = 1
|
|
322
326
|
*/
|
|
323
327
|
id: bigint;
|
|
324
328
|
/**
|
|
325
|
-
* @generated from protobuf field: bool blocking = 3
|
|
329
|
+
* @generated from protobuf field: bool blocking = 3
|
|
326
330
|
*/
|
|
327
331
|
blocking: boolean;
|
|
328
332
|
}
|
|
@@ -331,15 +335,15 @@ export interface Subscription {
|
|
|
331
335
|
*/
|
|
332
336
|
export interface Controller {
|
|
333
337
|
/**
|
|
334
|
-
* @generated from protobuf field: string type = 1
|
|
338
|
+
* @generated from protobuf field: string type = 1
|
|
335
339
|
*/
|
|
336
340
|
type: string;
|
|
337
341
|
/**
|
|
338
|
-
* @generated from protobuf field: uint64 id = 2
|
|
342
|
+
* @generated from protobuf field: uint64 id = 2
|
|
339
343
|
*/
|
|
340
344
|
id: bigint;
|
|
341
345
|
/**
|
|
342
|
-
* @generated from protobuf field: uint64 subscriptionID = 3
|
|
346
|
+
* @generated from protobuf field: uint64 subscriptionID = 3
|
|
343
347
|
*/
|
|
344
348
|
subscriptionID: bigint;
|
|
345
349
|
}
|
|
@@ -348,11 +352,11 @@ export interface Controller {
|
|
|
348
352
|
*/
|
|
349
353
|
export interface ResourceSchema {
|
|
350
354
|
/**
|
|
351
|
-
* @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1
|
|
355
|
+
* @generated from protobuf field: MiLaboratories.PL.Base.ResourceType type = 1
|
|
352
356
|
*/
|
|
353
357
|
type?: ResourceType;
|
|
354
358
|
/**
|
|
355
|
-
* @generated from protobuf field: repeated MiLaboratories.PL.API.FieldSchema fields = 2
|
|
359
|
+
* @generated from protobuf field: repeated MiLaboratories.PL.API.FieldSchema fields = 2
|
|
356
360
|
*/
|
|
357
361
|
fields: FieldSchema[];
|
|
358
362
|
}
|
|
@@ -361,11 +365,11 @@ export interface ResourceSchema {
|
|
|
361
365
|
*/
|
|
362
366
|
export interface FieldSchema {
|
|
363
367
|
/**
|
|
364
|
-
* @generated from protobuf field: MiLaboratories.PL.Base.FieldType type = 1
|
|
368
|
+
* @generated from protobuf field: MiLaboratories.PL.Base.FieldType type = 1
|
|
365
369
|
*/
|
|
366
370
|
type: FieldType;
|
|
367
371
|
/**
|
|
368
|
-
* @generated from protobuf field: string name = 2
|
|
372
|
+
* @generated from protobuf field: string name = 2
|
|
369
373
|
*/
|
|
370
374
|
name: string;
|
|
371
375
|
}
|
|
@@ -374,19 +378,19 @@ export interface FieldSchema {
|
|
|
374
378
|
*/
|
|
375
379
|
export interface ResourceAPIFeature {
|
|
376
380
|
/**
|
|
377
|
-
* @generated from protobuf field: string controller_type = 1
|
|
381
|
+
* @generated from protobuf field: string controller_type = 1
|
|
378
382
|
*/
|
|
379
383
|
controllerType: string;
|
|
380
384
|
/**
|
|
381
|
-
* @generated from protobuf field: string feature_name = 2
|
|
385
|
+
* @generated from protobuf field: string feature_name = 2
|
|
382
386
|
*/
|
|
383
387
|
featureName: string;
|
|
384
388
|
/**
|
|
385
|
-
* @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 3
|
|
389
|
+
* @generated from protobuf field: MiLaboratories.PL.Base.ResourceType resource_type = 3
|
|
386
390
|
*/
|
|
387
391
|
resourceType?: ResourceType;
|
|
388
392
|
/**
|
|
389
|
-
* @generated from protobuf field: string endpoint = 4
|
|
393
|
+
* @generated from protobuf field: string endpoint = 4
|
|
390
394
|
*/
|
|
391
395
|
endpoint: string;
|
|
392
396
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api_types.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAE3D,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C;;GAEG;AACH,MAAM,WAAW,EAAE;IACf;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;CACd;AACD;;GAEG;AACH,MAAM,WAAW,QAAQ;IACrB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,IAAI,EAAE,aAAa,CAAC;IACpB;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB;;OAEG;IACH,IAAI,EAAE,UAAU,CAAC;IACjB;;OAEG;IACH,QAAQ,CAAC,EAAE,iBAAiB,CAAC;IAC7B;;OAEG;IACH,MAAM,EAAE,KAAK,EAAE,CAAC;IAChB;;;;OAIG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;CAC3B;AACD;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;CACtB;AACD;;GAEG;AACH,oBAAY,aAAa;IACrB;;OAEG;IACH,OAAO,IAAI;IACX;;OAEG;IACH,UAAU,IAAI;IACd;;OAEG;IACH,KAAK,IAAI;CACZ;AACD;;GAEG;AACH,MAAM,WAAW,KAAK;IAClB;;;;OAIG;IACH,EAAE,CAAC,EAAE,QAAQ,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,SAAS,CAAC;IAChB;;OAEG;IACH,QAAQ,CAAC,EAAE,iBAAiB,CAAC;IAC7B;;;;;;;;OAQG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,WAAW,EAAE,iBAAiB,CAAC;IAC/B;;;;OAIG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;;;;OAKG;IACH,KAAK,EAAE,MAAM,CAAC;CACjB;AACD;;GAEG;AACH,oBAAY,iBAAiB;IACzB;;OAEG;IACH,OAAO,IAAI;IACX;;OAEG;IACH,KAAK,IAAI;IACT;;OAEG;IACH,QAAQ,IAAI;IACZ;;OAEG;IACH,QAAQ,IAAI;CACf;AACD;;GAEG;AACH,MAAM,WAAW,YAAY;IACzB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B;;OAEG;IACH,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B;;OAEG;IACH,YAAY,EAAE;QACV,CAAC,GAAG,EAAE,MAAM,GAAG,wBAAwB,CAAC;KAC3C,CAAC;IACF;;OAEG;IACH,OAAO,CAAC,EAAE,0BAA0B,CAAC;IACrC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,QAAQ,CAAC;CACrB;AACD;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,eAAe,EAAE,OAAO,CAAC;IACzB;;OAEG;IACH,eAAe,EAAE,OAAO,CAAC;IACzB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,iBAAiB,EAAE,OAAO,CAAC;IAC3B;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,YAAY,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,cAAc,EAAE,OAAO,CAAC;CAC3B;AACD;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,GAAG,CAAC,EAAE,KAAK,CAAC;IACZ;;OAEG;IACH,GAAG,CAAC,EAAE,KAAK,CAAC;CACf;AACD;;GAEG;AACH,MAAM,WAAW,QAAQ;IACrB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,OAAO,EAAE;QACL,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;KACzB,CAAC;CACL;AACD;;GAEG;AACH,MAAM,WAAW,YAAY;IACzB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;CACrB;AACD;;GAEG;AACH,MAAM,WAAW,UAAU;IACvB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CAC1B;AACD;;GAEG;AACH,MAAM,WAAW,cAAc;IAC3B;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB;;OAEG;IACH,MAAM,EAAE,WAAW,EAAE,CAAC;CACzB;AACD;;GAEG;AACH,MAAM,WAAW,WAAW;IACxB;;OAEG;IACH,IAAI,EAAE,SAAS,CAAC;IAChB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CACpB;AAED,cAAM,OAAQ,SAAQ,WAAW,CAAC,EAAE,CAAC;;IAOjC,MAAM,CAAC,KAAK,CAAC,EAAE,cAAc,CAAC,EAAE,CAAC,GAAG,EAAE;IAQtC,kBAAkB,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,EAAE,MAAM,CAAC,EAAE,EAAE,GAAG,EAAE;IAsBtG,mBAAmB,CAAC,OAAO,EAAE,EAAE,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,kBAAkB,GAAG,aAAa;CAYtG;AACD;;GAEG;AACH,eAAO,MAAM,EAAE,SAAgB,CAAC;AAEhC,cAAM,aAAc,SAAQ,WAAW,CAAC,QAAQ,CAAC;;
|
|
1
|
+
{"version":3,"file":"api_types.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,11 +4,11 @@ import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, Pa
|
|
|
4
4
|
*/
|
|
5
5
|
export interface ResourceType {
|
|
6
6
|
/**
|
|
7
|
-
* @generated from protobuf field: string name = 1
|
|
7
|
+
* @generated from protobuf field: string name = 1
|
|
8
8
|
*/
|
|
9
9
|
name: string;
|
|
10
10
|
/**
|
|
11
|
-
* @generated from protobuf field: string version = 2
|
|
11
|
+
* @generated from protobuf field: string version = 2
|
|
12
12
|
*/
|
|
13
13
|
version: string;
|
|
14
14
|
}
|
|
@@ -17,11 +17,11 @@ export interface ResourceType {
|
|
|
17
17
|
*/
|
|
18
18
|
export interface FieldRef {
|
|
19
19
|
/**
|
|
20
|
-
* @generated from protobuf field: uint64 resource_id = 2
|
|
20
|
+
* @generated from protobuf field: uint64 resource_id = 2
|
|
21
21
|
*/
|
|
22
22
|
resourceId: bigint;
|
|
23
23
|
/**
|
|
24
|
-
* @generated from protobuf field: string field_name = 3
|
|
24
|
+
* @generated from protobuf field: string field_name = 3
|
|
25
25
|
*/
|
|
26
26
|
fieldName: string;
|
|
27
27
|
}
|
|
@@ -13,67 +13,67 @@ import { Empty } from '../../../../../google/protobuf/empty';
|
|
|
13
13
|
*/
|
|
14
14
|
export interface _ImportWellKnown {
|
|
15
15
|
/**
|
|
16
|
-
* @generated from protobuf field: google.protobuf.Empty empty = 1
|
|
16
|
+
* @generated from protobuf field: google.protobuf.Empty empty = 1
|
|
17
17
|
*/
|
|
18
18
|
empty?: Empty;
|
|
19
19
|
/**
|
|
20
|
-
* @generated from protobuf field: google.protobuf.Any any = 2
|
|
20
|
+
* @generated from protobuf field: google.protobuf.Any any = 2
|
|
21
21
|
*/
|
|
22
22
|
any?: Any;
|
|
23
23
|
/**
|
|
24
|
-
* @generated from protobuf field: google.protobuf.BytesValue bytes = 3
|
|
24
|
+
* @generated from protobuf field: google.protobuf.BytesValue bytes = 3
|
|
25
25
|
*/
|
|
26
26
|
bytes?: BytesValue;
|
|
27
27
|
/**
|
|
28
|
-
* @generated from protobuf field: google.protobuf.BoolValue bool = 4
|
|
28
|
+
* @generated from protobuf field: google.protobuf.BoolValue bool = 4
|
|
29
29
|
*/
|
|
30
30
|
bool?: BoolValue;
|
|
31
31
|
/**
|
|
32
|
-
* @generated from protobuf field: google.protobuf.StringValue string = 5
|
|
32
|
+
* @generated from protobuf field: google.protobuf.StringValue string = 5
|
|
33
33
|
*/
|
|
34
34
|
string?: StringValue;
|
|
35
35
|
/**
|
|
36
|
-
* @generated from protobuf field: google.protobuf.Int32Value int32 = 6
|
|
36
|
+
* @generated from protobuf field: google.protobuf.Int32Value int32 = 6
|
|
37
37
|
*/
|
|
38
38
|
int32?: Int32Value;
|
|
39
39
|
/**
|
|
40
|
-
* @generated from protobuf field: google.protobuf.UInt32Value uint32 = 7
|
|
40
|
+
* @generated from protobuf field: google.protobuf.UInt32Value uint32 = 7
|
|
41
41
|
*/
|
|
42
42
|
uint32?: UInt32Value;
|
|
43
43
|
/**
|
|
44
|
-
* @generated from protobuf field: google.protobuf.Int64Value int64 = 8
|
|
44
|
+
* @generated from protobuf field: google.protobuf.Int64Value int64 = 8
|
|
45
45
|
*/
|
|
46
46
|
int64?: Int64Value;
|
|
47
47
|
/**
|
|
48
|
-
* @generated from protobuf field: google.protobuf.UInt64Value uint64 = 9
|
|
48
|
+
* @generated from protobuf field: google.protobuf.UInt64Value uint64 = 9
|
|
49
49
|
*/
|
|
50
50
|
uint64?: UInt64Value;
|
|
51
51
|
/**
|
|
52
|
-
* @generated from protobuf field: google.protobuf.FloatValue float = 10
|
|
52
|
+
* @generated from protobuf field: google.protobuf.FloatValue float = 10
|
|
53
53
|
*/
|
|
54
54
|
float?: FloatValue;
|
|
55
55
|
/**
|
|
56
|
-
* @generated from protobuf field: google.protobuf.DoubleValue double = 11
|
|
56
|
+
* @generated from protobuf field: google.protobuf.DoubleValue double = 11
|
|
57
57
|
*/
|
|
58
58
|
double?: DoubleValue;
|
|
59
59
|
/**
|
|
60
|
-
* @generated from protobuf field: google.protobuf.Duration duration = 12
|
|
60
|
+
* @generated from protobuf field: google.protobuf.Duration duration = 12
|
|
61
61
|
*/
|
|
62
62
|
duration?: Duration;
|
|
63
63
|
/**
|
|
64
|
-
* @generated from protobuf field: google.protobuf.Timestamp timestamp = 13
|
|
64
|
+
* @generated from protobuf field: google.protobuf.Timestamp timestamp = 13
|
|
65
65
|
*/
|
|
66
66
|
timestamp?: Timestamp;
|
|
67
67
|
/**
|
|
68
|
-
* @generated from protobuf field: google.protobuf.Value value = 14
|
|
68
|
+
* @generated from protobuf field: google.protobuf.Value value = 14
|
|
69
69
|
*/
|
|
70
70
|
value?: Value;
|
|
71
71
|
/**
|
|
72
|
-
* @generated from protobuf field: google.protobuf.ListValue list = 15
|
|
72
|
+
* @generated from protobuf field: google.protobuf.ListValue list = 15
|
|
73
73
|
*/
|
|
74
74
|
list?: ListValue;
|
|
75
75
|
/**
|
|
76
|
-
* @generated from protobuf field: google.protobuf.Struct struct = 16
|
|
76
|
+
* @generated from protobuf field: google.protobuf.Struct struct = 16
|
|
77
77
|
*/
|
|
78
78
|
struct?: Struct;
|
|
79
79
|
}
|