ord-schema 0.3.94 → 0.3.96
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/index.d.ts +23 -0
- package/package.json +4 -1
- package/proto/dataset_pb.d.ts +96 -0
- package/proto/reaction_pb.d.ts +3020 -0
- package/proto/test_pb.d.ts +295 -0
|
@@ -0,0 +1,3020 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2024 Open Reaction Database Project Authors
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
// package: ord
|
|
18
|
+
// file: ord-schema/proto/reaction.proto
|
|
19
|
+
|
|
20
|
+
import * as jspb from "google-protobuf";
|
|
21
|
+
|
|
22
|
+
export class Reaction extends jspb.Message {
|
|
23
|
+
clearIdentifiersList(): void;
|
|
24
|
+
getIdentifiersList(): Array<ReactionIdentifier>;
|
|
25
|
+
setIdentifiersList(value: Array<ReactionIdentifier>): void;
|
|
26
|
+
addIdentifiers(value?: ReactionIdentifier, index?: number): ReactionIdentifier;
|
|
27
|
+
|
|
28
|
+
getInputsMap(): jspb.Map<string, ReactionInput>;
|
|
29
|
+
clearInputsMap(): void;
|
|
30
|
+
hasSetup(): boolean;
|
|
31
|
+
clearSetup(): void;
|
|
32
|
+
getSetup(): ReactionSetup | undefined;
|
|
33
|
+
setSetup(value?: ReactionSetup): void;
|
|
34
|
+
|
|
35
|
+
hasConditions(): boolean;
|
|
36
|
+
clearConditions(): void;
|
|
37
|
+
getConditions(): ReactionConditions | undefined;
|
|
38
|
+
setConditions(value?: ReactionConditions): void;
|
|
39
|
+
|
|
40
|
+
hasNotes(): boolean;
|
|
41
|
+
clearNotes(): void;
|
|
42
|
+
getNotes(): ReactionNotes | undefined;
|
|
43
|
+
setNotes(value?: ReactionNotes): void;
|
|
44
|
+
|
|
45
|
+
clearObservationsList(): void;
|
|
46
|
+
getObservationsList(): Array<ReactionObservation>;
|
|
47
|
+
setObservationsList(value: Array<ReactionObservation>): void;
|
|
48
|
+
addObservations(value?: ReactionObservation, index?: number): ReactionObservation;
|
|
49
|
+
|
|
50
|
+
clearWorkupsList(): void;
|
|
51
|
+
getWorkupsList(): Array<ReactionWorkup>;
|
|
52
|
+
setWorkupsList(value: Array<ReactionWorkup>): void;
|
|
53
|
+
addWorkups(value?: ReactionWorkup, index?: number): ReactionWorkup;
|
|
54
|
+
|
|
55
|
+
clearOutcomesList(): void;
|
|
56
|
+
getOutcomesList(): Array<ReactionOutcome>;
|
|
57
|
+
setOutcomesList(value: Array<ReactionOutcome>): void;
|
|
58
|
+
addOutcomes(value?: ReactionOutcome, index?: number): ReactionOutcome;
|
|
59
|
+
|
|
60
|
+
hasProvenance(): boolean;
|
|
61
|
+
clearProvenance(): void;
|
|
62
|
+
getProvenance(): ReactionProvenance | undefined;
|
|
63
|
+
setProvenance(value?: ReactionProvenance): void;
|
|
64
|
+
|
|
65
|
+
getReactionId(): string;
|
|
66
|
+
setReactionId(value: string): void;
|
|
67
|
+
|
|
68
|
+
serializeBinary(): Uint8Array;
|
|
69
|
+
toObject(includeInstance?: boolean): Reaction.AsObject;
|
|
70
|
+
static toObject(includeInstance: boolean, msg: Reaction): Reaction.AsObject;
|
|
71
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
72
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
73
|
+
static serializeBinaryToWriter(message: Reaction, writer: jspb.BinaryWriter): void;
|
|
74
|
+
static deserializeBinary(bytes: Uint8Array): Reaction;
|
|
75
|
+
static deserializeBinaryFromReader(message: Reaction, reader: jspb.BinaryReader): Reaction;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export namespace Reaction {
|
|
79
|
+
export type AsObject = {
|
|
80
|
+
identifiersList: Array<ReactionIdentifier.AsObject>,
|
|
81
|
+
inputsMap: Array<[string, ReactionInput.AsObject]>,
|
|
82
|
+
setup?: ReactionSetup.AsObject,
|
|
83
|
+
conditions?: ReactionConditions.AsObject,
|
|
84
|
+
notes?: ReactionNotes.AsObject,
|
|
85
|
+
observationsList: Array<ReactionObservation.AsObject>,
|
|
86
|
+
workupsList: Array<ReactionWorkup.AsObject>,
|
|
87
|
+
outcomesList: Array<ReactionOutcome.AsObject>,
|
|
88
|
+
provenance?: ReactionProvenance.AsObject,
|
|
89
|
+
reactionId: string,
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export class ReactionIdentifier extends jspb.Message {
|
|
94
|
+
getType(): ReactionIdentifier.ReactionIdentifierTypeMap[keyof ReactionIdentifier.ReactionIdentifierTypeMap];
|
|
95
|
+
setType(value: ReactionIdentifier.ReactionIdentifierTypeMap[keyof ReactionIdentifier.ReactionIdentifierTypeMap]): void;
|
|
96
|
+
|
|
97
|
+
getDetails(): string;
|
|
98
|
+
setDetails(value: string): void;
|
|
99
|
+
|
|
100
|
+
getValue(): string;
|
|
101
|
+
setValue(value: string): void;
|
|
102
|
+
|
|
103
|
+
hasIsMapped(): boolean;
|
|
104
|
+
clearIsMapped(): void;
|
|
105
|
+
getIsMapped(): boolean;
|
|
106
|
+
setIsMapped(value: boolean): void;
|
|
107
|
+
|
|
108
|
+
serializeBinary(): Uint8Array;
|
|
109
|
+
toObject(includeInstance?: boolean): ReactionIdentifier.AsObject;
|
|
110
|
+
static toObject(includeInstance: boolean, msg: ReactionIdentifier): ReactionIdentifier.AsObject;
|
|
111
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
112
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
113
|
+
static serializeBinaryToWriter(message: ReactionIdentifier, writer: jspb.BinaryWriter): void;
|
|
114
|
+
static deserializeBinary(bytes: Uint8Array): ReactionIdentifier;
|
|
115
|
+
static deserializeBinaryFromReader(message: ReactionIdentifier, reader: jspb.BinaryReader): ReactionIdentifier;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export namespace ReactionIdentifier {
|
|
119
|
+
export type AsObject = {
|
|
120
|
+
type: ReactionIdentifier.ReactionIdentifierTypeMap[keyof ReactionIdentifier.ReactionIdentifierTypeMap],
|
|
121
|
+
details: string,
|
|
122
|
+
value: string,
|
|
123
|
+
isMapped: boolean,
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface ReactionIdentifierTypeMap {
|
|
127
|
+
UNSPECIFIED: 0;
|
|
128
|
+
CUSTOM: 1;
|
|
129
|
+
REACTION_SMILES: 2;
|
|
130
|
+
REACTION_CXSMILES: 6;
|
|
131
|
+
RDFILE: 3;
|
|
132
|
+
RINCHI: 4;
|
|
133
|
+
REACTION_TYPE: 5;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export const ReactionIdentifierType: ReactionIdentifierTypeMap;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export class ReactionInput extends jspb.Message {
|
|
140
|
+
clearComponentsList(): void;
|
|
141
|
+
getComponentsList(): Array<Compound>;
|
|
142
|
+
setComponentsList(value: Array<Compound>): void;
|
|
143
|
+
addComponents(value?: Compound, index?: number): Compound;
|
|
144
|
+
|
|
145
|
+
clearCrudeComponentsList(): void;
|
|
146
|
+
getCrudeComponentsList(): Array<CrudeComponent>;
|
|
147
|
+
setCrudeComponentsList(value: Array<CrudeComponent>): void;
|
|
148
|
+
addCrudeComponents(value?: CrudeComponent, index?: number): CrudeComponent;
|
|
149
|
+
|
|
150
|
+
getAdditionOrder(): number;
|
|
151
|
+
setAdditionOrder(value: number): void;
|
|
152
|
+
|
|
153
|
+
hasAdditionTime(): boolean;
|
|
154
|
+
clearAdditionTime(): void;
|
|
155
|
+
getAdditionTime(): Time | undefined;
|
|
156
|
+
setAdditionTime(value?: Time): void;
|
|
157
|
+
|
|
158
|
+
hasAdditionSpeed(): boolean;
|
|
159
|
+
clearAdditionSpeed(): void;
|
|
160
|
+
getAdditionSpeed(): ReactionInput.AdditionSpeed | undefined;
|
|
161
|
+
setAdditionSpeed(value?: ReactionInput.AdditionSpeed): void;
|
|
162
|
+
|
|
163
|
+
hasAdditionDuration(): boolean;
|
|
164
|
+
clearAdditionDuration(): void;
|
|
165
|
+
getAdditionDuration(): Time | undefined;
|
|
166
|
+
setAdditionDuration(value?: Time): void;
|
|
167
|
+
|
|
168
|
+
hasFlowRate(): boolean;
|
|
169
|
+
clearFlowRate(): void;
|
|
170
|
+
getFlowRate(): FlowRate | undefined;
|
|
171
|
+
setFlowRate(value?: FlowRate): void;
|
|
172
|
+
|
|
173
|
+
hasAdditionDevice(): boolean;
|
|
174
|
+
clearAdditionDevice(): void;
|
|
175
|
+
getAdditionDevice(): ReactionInput.AdditionDevice | undefined;
|
|
176
|
+
setAdditionDevice(value?: ReactionInput.AdditionDevice): void;
|
|
177
|
+
|
|
178
|
+
hasAdditionTemperature(): boolean;
|
|
179
|
+
clearAdditionTemperature(): void;
|
|
180
|
+
getAdditionTemperature(): Temperature | undefined;
|
|
181
|
+
setAdditionTemperature(value?: Temperature): void;
|
|
182
|
+
|
|
183
|
+
hasTexture(): boolean;
|
|
184
|
+
clearTexture(): void;
|
|
185
|
+
getTexture(): Texture | undefined;
|
|
186
|
+
setTexture(value?: Texture): void;
|
|
187
|
+
|
|
188
|
+
serializeBinary(): Uint8Array;
|
|
189
|
+
toObject(includeInstance?: boolean): ReactionInput.AsObject;
|
|
190
|
+
static toObject(includeInstance: boolean, msg: ReactionInput): ReactionInput.AsObject;
|
|
191
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
192
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
193
|
+
static serializeBinaryToWriter(message: ReactionInput, writer: jspb.BinaryWriter): void;
|
|
194
|
+
static deserializeBinary(bytes: Uint8Array): ReactionInput;
|
|
195
|
+
static deserializeBinaryFromReader(message: ReactionInput, reader: jspb.BinaryReader): ReactionInput;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export namespace ReactionInput {
|
|
199
|
+
export type AsObject = {
|
|
200
|
+
componentsList: Array<Compound.AsObject>,
|
|
201
|
+
crudeComponentsList: Array<CrudeComponent.AsObject>,
|
|
202
|
+
additionOrder: number,
|
|
203
|
+
additionTime?: Time.AsObject,
|
|
204
|
+
additionSpeed?: ReactionInput.AdditionSpeed.AsObject,
|
|
205
|
+
additionDuration?: Time.AsObject,
|
|
206
|
+
flowRate?: FlowRate.AsObject,
|
|
207
|
+
additionDevice?: ReactionInput.AdditionDevice.AsObject,
|
|
208
|
+
additionTemperature?: Temperature.AsObject,
|
|
209
|
+
texture?: Texture.AsObject,
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
export class AdditionSpeed extends jspb.Message {
|
|
213
|
+
getType(): ReactionInput.AdditionSpeed.AdditionSpeedTypeMap[keyof ReactionInput.AdditionSpeed.AdditionSpeedTypeMap];
|
|
214
|
+
setType(value: ReactionInput.AdditionSpeed.AdditionSpeedTypeMap[keyof ReactionInput.AdditionSpeed.AdditionSpeedTypeMap]): void;
|
|
215
|
+
|
|
216
|
+
getDetails(): string;
|
|
217
|
+
setDetails(value: string): void;
|
|
218
|
+
|
|
219
|
+
serializeBinary(): Uint8Array;
|
|
220
|
+
toObject(includeInstance?: boolean): AdditionSpeed.AsObject;
|
|
221
|
+
static toObject(includeInstance: boolean, msg: AdditionSpeed): AdditionSpeed.AsObject;
|
|
222
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
223
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
224
|
+
static serializeBinaryToWriter(message: AdditionSpeed, writer: jspb.BinaryWriter): void;
|
|
225
|
+
static deserializeBinary(bytes: Uint8Array): AdditionSpeed;
|
|
226
|
+
static deserializeBinaryFromReader(message: AdditionSpeed, reader: jspb.BinaryReader): AdditionSpeed;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
export namespace AdditionSpeed {
|
|
230
|
+
export type AsObject = {
|
|
231
|
+
type: ReactionInput.AdditionSpeed.AdditionSpeedTypeMap[keyof ReactionInput.AdditionSpeed.AdditionSpeedTypeMap],
|
|
232
|
+
details: string,
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export interface AdditionSpeedTypeMap {
|
|
236
|
+
UNSPECIFIED: 0;
|
|
237
|
+
ALL_AT_ONCE: 1;
|
|
238
|
+
FAST: 2;
|
|
239
|
+
SLOW: 3;
|
|
240
|
+
DROPWISE: 4;
|
|
241
|
+
CONTINUOUS: 5;
|
|
242
|
+
PORTIONWISE: 6;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export const AdditionSpeedType: AdditionSpeedTypeMap;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
export class AdditionDevice extends jspb.Message {
|
|
249
|
+
getType(): ReactionInput.AdditionDevice.AdditionDeviceTypeMap[keyof ReactionInput.AdditionDevice.AdditionDeviceTypeMap];
|
|
250
|
+
setType(value: ReactionInput.AdditionDevice.AdditionDeviceTypeMap[keyof ReactionInput.AdditionDevice.AdditionDeviceTypeMap]): void;
|
|
251
|
+
|
|
252
|
+
getDetails(): string;
|
|
253
|
+
setDetails(value: string): void;
|
|
254
|
+
|
|
255
|
+
serializeBinary(): Uint8Array;
|
|
256
|
+
toObject(includeInstance?: boolean): AdditionDevice.AsObject;
|
|
257
|
+
static toObject(includeInstance: boolean, msg: AdditionDevice): AdditionDevice.AsObject;
|
|
258
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
259
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
260
|
+
static serializeBinaryToWriter(message: AdditionDevice, writer: jspb.BinaryWriter): void;
|
|
261
|
+
static deserializeBinary(bytes: Uint8Array): AdditionDevice;
|
|
262
|
+
static deserializeBinaryFromReader(message: AdditionDevice, reader: jspb.BinaryReader): AdditionDevice;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
export namespace AdditionDevice {
|
|
266
|
+
export type AsObject = {
|
|
267
|
+
type: ReactionInput.AdditionDevice.AdditionDeviceTypeMap[keyof ReactionInput.AdditionDevice.AdditionDeviceTypeMap],
|
|
268
|
+
details: string,
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
export interface AdditionDeviceTypeMap {
|
|
272
|
+
UNSPECIFIED: 0;
|
|
273
|
+
CUSTOM: 1;
|
|
274
|
+
NONE: 2;
|
|
275
|
+
SYRINGE: 3;
|
|
276
|
+
CANNULA: 4;
|
|
277
|
+
ADDITION_FUNNEL: 5;
|
|
278
|
+
PIPETTE: 6;
|
|
279
|
+
POSITIVE_DISPLACEMENT_PIPETTE: 7;
|
|
280
|
+
PISTON_PUMP: 8;
|
|
281
|
+
SYRINGE_PUMP: 9;
|
|
282
|
+
PERISTALTIC_PUMP: 10;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export const AdditionDeviceType: AdditionDeviceTypeMap;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export class Amount extends jspb.Message {
|
|
290
|
+
hasMass(): boolean;
|
|
291
|
+
clearMass(): void;
|
|
292
|
+
getMass(): Mass | undefined;
|
|
293
|
+
setMass(value?: Mass): void;
|
|
294
|
+
|
|
295
|
+
hasMoles(): boolean;
|
|
296
|
+
clearMoles(): void;
|
|
297
|
+
getMoles(): Moles | undefined;
|
|
298
|
+
setMoles(value?: Moles): void;
|
|
299
|
+
|
|
300
|
+
hasVolume(): boolean;
|
|
301
|
+
clearVolume(): void;
|
|
302
|
+
getVolume(): Volume | undefined;
|
|
303
|
+
setVolume(value?: Volume): void;
|
|
304
|
+
|
|
305
|
+
hasUnmeasured(): boolean;
|
|
306
|
+
clearUnmeasured(): void;
|
|
307
|
+
getUnmeasured(): UnmeasuredAmount | undefined;
|
|
308
|
+
setUnmeasured(value?: UnmeasuredAmount): void;
|
|
309
|
+
|
|
310
|
+
hasVolumeIncludesSolutes(): boolean;
|
|
311
|
+
clearVolumeIncludesSolutes(): void;
|
|
312
|
+
getVolumeIncludesSolutes(): boolean;
|
|
313
|
+
setVolumeIncludesSolutes(value: boolean): void;
|
|
314
|
+
|
|
315
|
+
getKindCase(): Amount.KindCase;
|
|
316
|
+
serializeBinary(): Uint8Array;
|
|
317
|
+
toObject(includeInstance?: boolean): Amount.AsObject;
|
|
318
|
+
static toObject(includeInstance: boolean, msg: Amount): Amount.AsObject;
|
|
319
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
320
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
321
|
+
static serializeBinaryToWriter(message: Amount, writer: jspb.BinaryWriter): void;
|
|
322
|
+
static deserializeBinary(bytes: Uint8Array): Amount;
|
|
323
|
+
static deserializeBinaryFromReader(message: Amount, reader: jspb.BinaryReader): Amount;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
export namespace Amount {
|
|
327
|
+
export type AsObject = {
|
|
328
|
+
mass?: Mass.AsObject,
|
|
329
|
+
moles?: Moles.AsObject,
|
|
330
|
+
volume?: Volume.AsObject,
|
|
331
|
+
unmeasured?: UnmeasuredAmount.AsObject,
|
|
332
|
+
volumeIncludesSolutes: boolean,
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export enum KindCase {
|
|
336
|
+
KIND_NOT_SET = 0,
|
|
337
|
+
MASS = 1,
|
|
338
|
+
MOLES = 2,
|
|
339
|
+
VOLUME = 3,
|
|
340
|
+
UNMEASURED = 5,
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
export class UnmeasuredAmount extends jspb.Message {
|
|
345
|
+
getType(): UnmeasuredAmount.UnmeasuredAmountTypeMap[keyof UnmeasuredAmount.UnmeasuredAmountTypeMap];
|
|
346
|
+
setType(value: UnmeasuredAmount.UnmeasuredAmountTypeMap[keyof UnmeasuredAmount.UnmeasuredAmountTypeMap]): void;
|
|
347
|
+
|
|
348
|
+
getDetails(): string;
|
|
349
|
+
setDetails(value: string): void;
|
|
350
|
+
|
|
351
|
+
serializeBinary(): Uint8Array;
|
|
352
|
+
toObject(includeInstance?: boolean): UnmeasuredAmount.AsObject;
|
|
353
|
+
static toObject(includeInstance: boolean, msg: UnmeasuredAmount): UnmeasuredAmount.AsObject;
|
|
354
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
355
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
356
|
+
static serializeBinaryToWriter(message: UnmeasuredAmount, writer: jspb.BinaryWriter): void;
|
|
357
|
+
static deserializeBinary(bytes: Uint8Array): UnmeasuredAmount;
|
|
358
|
+
static deserializeBinaryFromReader(message: UnmeasuredAmount, reader: jspb.BinaryReader): UnmeasuredAmount;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
export namespace UnmeasuredAmount {
|
|
362
|
+
export type AsObject = {
|
|
363
|
+
type: UnmeasuredAmount.UnmeasuredAmountTypeMap[keyof UnmeasuredAmount.UnmeasuredAmountTypeMap],
|
|
364
|
+
details: string,
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
export interface UnmeasuredAmountTypeMap {
|
|
368
|
+
UNSPECIFIED: 0;
|
|
369
|
+
CUSTOM: 1;
|
|
370
|
+
SATURATED: 2;
|
|
371
|
+
CATALYTIC: 3;
|
|
372
|
+
TITRATED: 4;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export const UnmeasuredAmountType: UnmeasuredAmountTypeMap;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
export class Texture extends jspb.Message {
|
|
379
|
+
getType(): Texture.TextureTypeMap[keyof Texture.TextureTypeMap];
|
|
380
|
+
setType(value: Texture.TextureTypeMap[keyof Texture.TextureTypeMap]): void;
|
|
381
|
+
|
|
382
|
+
getDetails(): string;
|
|
383
|
+
setDetails(value: string): void;
|
|
384
|
+
|
|
385
|
+
serializeBinary(): Uint8Array;
|
|
386
|
+
toObject(includeInstance?: boolean): Texture.AsObject;
|
|
387
|
+
static toObject(includeInstance: boolean, msg: Texture): Texture.AsObject;
|
|
388
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
389
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
390
|
+
static serializeBinaryToWriter(message: Texture, writer: jspb.BinaryWriter): void;
|
|
391
|
+
static deserializeBinary(bytes: Uint8Array): Texture;
|
|
392
|
+
static deserializeBinaryFromReader(message: Texture, reader: jspb.BinaryReader): Texture;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
export namespace Texture {
|
|
396
|
+
export type AsObject = {
|
|
397
|
+
type: Texture.TextureTypeMap[keyof Texture.TextureTypeMap],
|
|
398
|
+
details: string,
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
export interface TextureTypeMap {
|
|
402
|
+
UNSPECIFIED: 0;
|
|
403
|
+
CUSTOM: 1;
|
|
404
|
+
POWDER: 2;
|
|
405
|
+
CRYSTAL: 3;
|
|
406
|
+
OIL: 4;
|
|
407
|
+
AMORPHOUS_SOLID: 5;
|
|
408
|
+
FOAM: 6;
|
|
409
|
+
WAX: 7;
|
|
410
|
+
SEMI_SOLID: 8;
|
|
411
|
+
SOLID: 9;
|
|
412
|
+
LIQUID: 10;
|
|
413
|
+
GAS: 11;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export const TextureType: TextureTypeMap;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
export class CrudeComponent extends jspb.Message {
|
|
420
|
+
getReactionId(): string;
|
|
421
|
+
setReactionId(value: string): void;
|
|
422
|
+
|
|
423
|
+
hasIncludesWorkup(): boolean;
|
|
424
|
+
clearIncludesWorkup(): void;
|
|
425
|
+
getIncludesWorkup(): boolean;
|
|
426
|
+
setIncludesWorkup(value: boolean): void;
|
|
427
|
+
|
|
428
|
+
hasHasDerivedAmount(): boolean;
|
|
429
|
+
clearHasDerivedAmount(): void;
|
|
430
|
+
getHasDerivedAmount(): boolean;
|
|
431
|
+
setHasDerivedAmount(value: boolean): void;
|
|
432
|
+
|
|
433
|
+
hasAmount(): boolean;
|
|
434
|
+
clearAmount(): void;
|
|
435
|
+
getAmount(): Amount | undefined;
|
|
436
|
+
setAmount(value?: Amount): void;
|
|
437
|
+
|
|
438
|
+
hasTexture(): boolean;
|
|
439
|
+
clearTexture(): void;
|
|
440
|
+
getTexture(): Texture | undefined;
|
|
441
|
+
setTexture(value?: Texture): void;
|
|
442
|
+
|
|
443
|
+
serializeBinary(): Uint8Array;
|
|
444
|
+
toObject(includeInstance?: boolean): CrudeComponent.AsObject;
|
|
445
|
+
static toObject(includeInstance: boolean, msg: CrudeComponent): CrudeComponent.AsObject;
|
|
446
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
447
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
448
|
+
static serializeBinaryToWriter(message: CrudeComponent, writer: jspb.BinaryWriter): void;
|
|
449
|
+
static deserializeBinary(bytes: Uint8Array): CrudeComponent;
|
|
450
|
+
static deserializeBinaryFromReader(message: CrudeComponent, reader: jspb.BinaryReader): CrudeComponent;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
export namespace CrudeComponent {
|
|
454
|
+
export type AsObject = {
|
|
455
|
+
reactionId: string,
|
|
456
|
+
includesWorkup: boolean,
|
|
457
|
+
hasDerivedAmount: boolean,
|
|
458
|
+
amount?: Amount.AsObject,
|
|
459
|
+
texture?: Texture.AsObject,
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
export class Compound extends jspb.Message {
|
|
464
|
+
clearIdentifiersList(): void;
|
|
465
|
+
getIdentifiersList(): Array<CompoundIdentifier>;
|
|
466
|
+
setIdentifiersList(value: Array<CompoundIdentifier>): void;
|
|
467
|
+
addIdentifiers(value?: CompoundIdentifier, index?: number): CompoundIdentifier;
|
|
468
|
+
|
|
469
|
+
hasAmount(): boolean;
|
|
470
|
+
clearAmount(): void;
|
|
471
|
+
getAmount(): Amount | undefined;
|
|
472
|
+
setAmount(value?: Amount): void;
|
|
473
|
+
|
|
474
|
+
getReactionRole(): ReactionRole.ReactionRoleTypeMap[keyof ReactionRole.ReactionRoleTypeMap];
|
|
475
|
+
setReactionRole(value: ReactionRole.ReactionRoleTypeMap[keyof ReactionRole.ReactionRoleTypeMap]): void;
|
|
476
|
+
|
|
477
|
+
hasIsLimiting(): boolean;
|
|
478
|
+
clearIsLimiting(): void;
|
|
479
|
+
getIsLimiting(): boolean;
|
|
480
|
+
setIsLimiting(value: boolean): void;
|
|
481
|
+
|
|
482
|
+
clearPreparationsList(): void;
|
|
483
|
+
getPreparationsList(): Array<CompoundPreparation>;
|
|
484
|
+
setPreparationsList(value: Array<CompoundPreparation>): void;
|
|
485
|
+
addPreparations(value?: CompoundPreparation, index?: number): CompoundPreparation;
|
|
486
|
+
|
|
487
|
+
hasSource(): boolean;
|
|
488
|
+
clearSource(): void;
|
|
489
|
+
getSource(): Compound.Source | undefined;
|
|
490
|
+
setSource(value?: Compound.Source): void;
|
|
491
|
+
|
|
492
|
+
getFeaturesMap(): jspb.Map<string, Data>;
|
|
493
|
+
clearFeaturesMap(): void;
|
|
494
|
+
getAnalysesMap(): jspb.Map<string, Analysis>;
|
|
495
|
+
clearAnalysesMap(): void;
|
|
496
|
+
hasTexture(): boolean;
|
|
497
|
+
clearTexture(): void;
|
|
498
|
+
getTexture(): Texture | undefined;
|
|
499
|
+
setTexture(value?: Texture): void;
|
|
500
|
+
|
|
501
|
+
serializeBinary(): Uint8Array;
|
|
502
|
+
toObject(includeInstance?: boolean): Compound.AsObject;
|
|
503
|
+
static toObject(includeInstance: boolean, msg: Compound): Compound.AsObject;
|
|
504
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
505
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
506
|
+
static serializeBinaryToWriter(message: Compound, writer: jspb.BinaryWriter): void;
|
|
507
|
+
static deserializeBinary(bytes: Uint8Array): Compound;
|
|
508
|
+
static deserializeBinaryFromReader(message: Compound, reader: jspb.BinaryReader): Compound;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
export namespace Compound {
|
|
512
|
+
export type AsObject = {
|
|
513
|
+
identifiersList: Array<CompoundIdentifier.AsObject>,
|
|
514
|
+
amount?: Amount.AsObject,
|
|
515
|
+
reactionRole: ReactionRole.ReactionRoleTypeMap[keyof ReactionRole.ReactionRoleTypeMap],
|
|
516
|
+
isLimiting: boolean,
|
|
517
|
+
preparationsList: Array<CompoundPreparation.AsObject>,
|
|
518
|
+
source?: Compound.Source.AsObject,
|
|
519
|
+
featuresMap: Array<[string, Data.AsObject]>,
|
|
520
|
+
analysesMap: Array<[string, Analysis.AsObject]>,
|
|
521
|
+
texture?: Texture.AsObject,
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
export class Source extends jspb.Message {
|
|
525
|
+
getVendor(): string;
|
|
526
|
+
setVendor(value: string): void;
|
|
527
|
+
|
|
528
|
+
getCatalogId(): string;
|
|
529
|
+
setCatalogId(value: string): void;
|
|
530
|
+
|
|
531
|
+
getLot(): string;
|
|
532
|
+
setLot(value: string): void;
|
|
533
|
+
|
|
534
|
+
serializeBinary(): Uint8Array;
|
|
535
|
+
toObject(includeInstance?: boolean): Source.AsObject;
|
|
536
|
+
static toObject(includeInstance: boolean, msg: Source): Source.AsObject;
|
|
537
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
538
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
539
|
+
static serializeBinaryToWriter(message: Source, writer: jspb.BinaryWriter): void;
|
|
540
|
+
static deserializeBinary(bytes: Uint8Array): Source;
|
|
541
|
+
static deserializeBinaryFromReader(message: Source, reader: jspb.BinaryReader): Source;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
export namespace Source {
|
|
545
|
+
export type AsObject = {
|
|
546
|
+
vendor: string,
|
|
547
|
+
catalogId: string,
|
|
548
|
+
lot: string,
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
export class ReactionRole extends jspb.Message {
|
|
554
|
+
serializeBinary(): Uint8Array;
|
|
555
|
+
toObject(includeInstance?: boolean): ReactionRole.AsObject;
|
|
556
|
+
static toObject(includeInstance: boolean, msg: ReactionRole): ReactionRole.AsObject;
|
|
557
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
558
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
559
|
+
static serializeBinaryToWriter(message: ReactionRole, writer: jspb.BinaryWriter): void;
|
|
560
|
+
static deserializeBinary(bytes: Uint8Array): ReactionRole;
|
|
561
|
+
static deserializeBinaryFromReader(message: ReactionRole, reader: jspb.BinaryReader): ReactionRole;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
export namespace ReactionRole {
|
|
565
|
+
export type AsObject = {
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
export interface ReactionRoleTypeMap {
|
|
569
|
+
UNSPECIFIED: 0;
|
|
570
|
+
REACTANT: 1;
|
|
571
|
+
REAGENT: 2;
|
|
572
|
+
SOLVENT: 3;
|
|
573
|
+
CATALYST: 4;
|
|
574
|
+
WORKUP: 5;
|
|
575
|
+
INTERNAL_STANDARD: 6;
|
|
576
|
+
AUTHENTIC_STANDARD: 7;
|
|
577
|
+
PRODUCT: 8;
|
|
578
|
+
BYPRODUCT: 9;
|
|
579
|
+
SIDE_PRODUCT: 10;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
export const ReactionRoleType: ReactionRoleTypeMap;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
export class CompoundPreparation extends jspb.Message {
|
|
586
|
+
getType(): CompoundPreparation.CompoundPreparationTypeMap[keyof CompoundPreparation.CompoundPreparationTypeMap];
|
|
587
|
+
setType(value: CompoundPreparation.CompoundPreparationTypeMap[keyof CompoundPreparation.CompoundPreparationTypeMap]): void;
|
|
588
|
+
|
|
589
|
+
getDetails(): string;
|
|
590
|
+
setDetails(value: string): void;
|
|
591
|
+
|
|
592
|
+
getReactionId(): string;
|
|
593
|
+
setReactionId(value: string): void;
|
|
594
|
+
|
|
595
|
+
serializeBinary(): Uint8Array;
|
|
596
|
+
toObject(includeInstance?: boolean): CompoundPreparation.AsObject;
|
|
597
|
+
static toObject(includeInstance: boolean, msg: CompoundPreparation): CompoundPreparation.AsObject;
|
|
598
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
599
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
600
|
+
static serializeBinaryToWriter(message: CompoundPreparation, writer: jspb.BinaryWriter): void;
|
|
601
|
+
static deserializeBinary(bytes: Uint8Array): CompoundPreparation;
|
|
602
|
+
static deserializeBinaryFromReader(message: CompoundPreparation, reader: jspb.BinaryReader): CompoundPreparation;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
export namespace CompoundPreparation {
|
|
606
|
+
export type AsObject = {
|
|
607
|
+
type: CompoundPreparation.CompoundPreparationTypeMap[keyof CompoundPreparation.CompoundPreparationTypeMap],
|
|
608
|
+
details: string,
|
|
609
|
+
reactionId: string,
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
export interface CompoundPreparationTypeMap {
|
|
613
|
+
UNSPECIFIED: 0;
|
|
614
|
+
CUSTOM: 1;
|
|
615
|
+
NONE: 2;
|
|
616
|
+
REPURIFIED: 3;
|
|
617
|
+
SPARGED: 4;
|
|
618
|
+
DRIED: 5;
|
|
619
|
+
SYNTHESIZED: 6;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
export const CompoundPreparationType: CompoundPreparationTypeMap;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
export class CompoundIdentifier extends jspb.Message {
|
|
626
|
+
getType(): CompoundIdentifier.CompoundIdentifierTypeMap[keyof CompoundIdentifier.CompoundIdentifierTypeMap];
|
|
627
|
+
setType(value: CompoundIdentifier.CompoundIdentifierTypeMap[keyof CompoundIdentifier.CompoundIdentifierTypeMap]): void;
|
|
628
|
+
|
|
629
|
+
getDetails(): string;
|
|
630
|
+
setDetails(value: string): void;
|
|
631
|
+
|
|
632
|
+
getValue(): string;
|
|
633
|
+
setValue(value: string): void;
|
|
634
|
+
|
|
635
|
+
serializeBinary(): Uint8Array;
|
|
636
|
+
toObject(includeInstance?: boolean): CompoundIdentifier.AsObject;
|
|
637
|
+
static toObject(includeInstance: boolean, msg: CompoundIdentifier): CompoundIdentifier.AsObject;
|
|
638
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
639
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
640
|
+
static serializeBinaryToWriter(message: CompoundIdentifier, writer: jspb.BinaryWriter): void;
|
|
641
|
+
static deserializeBinary(bytes: Uint8Array): CompoundIdentifier;
|
|
642
|
+
static deserializeBinaryFromReader(message: CompoundIdentifier, reader: jspb.BinaryReader): CompoundIdentifier;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
export namespace CompoundIdentifier {
|
|
646
|
+
export type AsObject = {
|
|
647
|
+
type: CompoundIdentifier.CompoundIdentifierTypeMap[keyof CompoundIdentifier.CompoundIdentifierTypeMap],
|
|
648
|
+
details: string,
|
|
649
|
+
value: string,
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
export interface CompoundIdentifierTypeMap {
|
|
653
|
+
UNSPECIFIED: 0;
|
|
654
|
+
CUSTOM: 1;
|
|
655
|
+
SMILES: 2;
|
|
656
|
+
INCHI: 3;
|
|
657
|
+
MOLBLOCK: 4;
|
|
658
|
+
IUPAC_NAME: 5;
|
|
659
|
+
NAME: 6;
|
|
660
|
+
CAS_NUMBER: 7;
|
|
661
|
+
PUBCHEM_CID: 8;
|
|
662
|
+
CHEMSPIDER_ID: 9;
|
|
663
|
+
CXSMILES: 10;
|
|
664
|
+
INCHI_KEY: 11;
|
|
665
|
+
XYZ: 12;
|
|
666
|
+
UNIPROT_ID: 13;
|
|
667
|
+
PDB_ID: 14;
|
|
668
|
+
AMINO_ACID_SEQUENCE: 15;
|
|
669
|
+
HELM: 16;
|
|
670
|
+
MDL: 17;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
export const CompoundIdentifierType: CompoundIdentifierTypeMap;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
export class Vessel extends jspb.Message {
|
|
677
|
+
getType(): Vessel.VesselTypeMap[keyof Vessel.VesselTypeMap];
|
|
678
|
+
setType(value: Vessel.VesselTypeMap[keyof Vessel.VesselTypeMap]): void;
|
|
679
|
+
|
|
680
|
+
getDetails(): string;
|
|
681
|
+
setDetails(value: string): void;
|
|
682
|
+
|
|
683
|
+
hasMaterial(): boolean;
|
|
684
|
+
clearMaterial(): void;
|
|
685
|
+
getMaterial(): VesselMaterial | undefined;
|
|
686
|
+
setMaterial(value?: VesselMaterial): void;
|
|
687
|
+
|
|
688
|
+
clearPreparationsList(): void;
|
|
689
|
+
getPreparationsList(): Array<VesselPreparation>;
|
|
690
|
+
setPreparationsList(value: Array<VesselPreparation>): void;
|
|
691
|
+
addPreparations(value?: VesselPreparation, index?: number): VesselPreparation;
|
|
692
|
+
|
|
693
|
+
clearAttachmentsList(): void;
|
|
694
|
+
getAttachmentsList(): Array<VesselAttachment>;
|
|
695
|
+
setAttachmentsList(value: Array<VesselAttachment>): void;
|
|
696
|
+
addAttachments(value?: VesselAttachment, index?: number): VesselAttachment;
|
|
697
|
+
|
|
698
|
+
hasVolume(): boolean;
|
|
699
|
+
clearVolume(): void;
|
|
700
|
+
getVolume(): Volume | undefined;
|
|
701
|
+
setVolume(value?: Volume): void;
|
|
702
|
+
|
|
703
|
+
getVesselId(): string;
|
|
704
|
+
setVesselId(value: string): void;
|
|
705
|
+
|
|
706
|
+
getPosition(): string;
|
|
707
|
+
setPosition(value: string): void;
|
|
708
|
+
|
|
709
|
+
getRow(): string;
|
|
710
|
+
setRow(value: string): void;
|
|
711
|
+
|
|
712
|
+
getCol(): string;
|
|
713
|
+
setCol(value: string): void;
|
|
714
|
+
|
|
715
|
+
serializeBinary(): Uint8Array;
|
|
716
|
+
toObject(includeInstance?: boolean): Vessel.AsObject;
|
|
717
|
+
static toObject(includeInstance: boolean, msg: Vessel): Vessel.AsObject;
|
|
718
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
719
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
720
|
+
static serializeBinaryToWriter(message: Vessel, writer: jspb.BinaryWriter): void;
|
|
721
|
+
static deserializeBinary(bytes: Uint8Array): Vessel;
|
|
722
|
+
static deserializeBinaryFromReader(message: Vessel, reader: jspb.BinaryReader): Vessel;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
export namespace Vessel {
|
|
726
|
+
export type AsObject = {
|
|
727
|
+
type: Vessel.VesselTypeMap[keyof Vessel.VesselTypeMap],
|
|
728
|
+
details: string,
|
|
729
|
+
material?: VesselMaterial.AsObject,
|
|
730
|
+
preparationsList: Array<VesselPreparation.AsObject>,
|
|
731
|
+
attachmentsList: Array<VesselAttachment.AsObject>,
|
|
732
|
+
volume?: Volume.AsObject,
|
|
733
|
+
vesselId: string,
|
|
734
|
+
position: string,
|
|
735
|
+
row: string,
|
|
736
|
+
col: string,
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
export interface VesselTypeMap {
|
|
740
|
+
UNSPECIFIED: 0;
|
|
741
|
+
CUSTOM: 1;
|
|
742
|
+
ROUND_BOTTOM_FLASK: 2;
|
|
743
|
+
VIAL: 3;
|
|
744
|
+
WELL_PLATE: 4;
|
|
745
|
+
MICROWAVE_VIAL: 5;
|
|
746
|
+
TUBE: 6;
|
|
747
|
+
CONTINUOUS_STIRRED_TANK_REACTOR: 7;
|
|
748
|
+
PACKED_BED_REACTOR: 8;
|
|
749
|
+
NMR_TUBE: 9;
|
|
750
|
+
PRESSURE_FLASK: 10;
|
|
751
|
+
PRESSURE_REACTOR: 11;
|
|
752
|
+
ELECTROCHEMICAL_CELL: 12;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
export const VesselType: VesselTypeMap;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
export class VesselMaterial extends jspb.Message {
|
|
759
|
+
getType(): VesselMaterial.VesselMaterialTypeMap[keyof VesselMaterial.VesselMaterialTypeMap];
|
|
760
|
+
setType(value: VesselMaterial.VesselMaterialTypeMap[keyof VesselMaterial.VesselMaterialTypeMap]): void;
|
|
761
|
+
|
|
762
|
+
getDetails(): string;
|
|
763
|
+
setDetails(value: string): void;
|
|
764
|
+
|
|
765
|
+
serializeBinary(): Uint8Array;
|
|
766
|
+
toObject(includeInstance?: boolean): VesselMaterial.AsObject;
|
|
767
|
+
static toObject(includeInstance: boolean, msg: VesselMaterial): VesselMaterial.AsObject;
|
|
768
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
769
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
770
|
+
static serializeBinaryToWriter(message: VesselMaterial, writer: jspb.BinaryWriter): void;
|
|
771
|
+
static deserializeBinary(bytes: Uint8Array): VesselMaterial;
|
|
772
|
+
static deserializeBinaryFromReader(message: VesselMaterial, reader: jspb.BinaryReader): VesselMaterial;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
export namespace VesselMaterial {
|
|
776
|
+
export type AsObject = {
|
|
777
|
+
type: VesselMaterial.VesselMaterialTypeMap[keyof VesselMaterial.VesselMaterialTypeMap],
|
|
778
|
+
details: string,
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
export interface VesselMaterialTypeMap {
|
|
782
|
+
UNSPECIFIED: 0;
|
|
783
|
+
CUSTOM: 1;
|
|
784
|
+
GLASS: 2;
|
|
785
|
+
POLYPROPYLENE: 3;
|
|
786
|
+
PLASTIC: 4;
|
|
787
|
+
METAL: 5;
|
|
788
|
+
QUARTZ: 6;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
export const VesselMaterialType: VesselMaterialTypeMap;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
export class VesselAttachment extends jspb.Message {
|
|
795
|
+
getType(): VesselAttachment.VesselAttachmentTypeMap[keyof VesselAttachment.VesselAttachmentTypeMap];
|
|
796
|
+
setType(value: VesselAttachment.VesselAttachmentTypeMap[keyof VesselAttachment.VesselAttachmentTypeMap]): void;
|
|
797
|
+
|
|
798
|
+
getDetails(): string;
|
|
799
|
+
setDetails(value: string): void;
|
|
800
|
+
|
|
801
|
+
serializeBinary(): Uint8Array;
|
|
802
|
+
toObject(includeInstance?: boolean): VesselAttachment.AsObject;
|
|
803
|
+
static toObject(includeInstance: boolean, msg: VesselAttachment): VesselAttachment.AsObject;
|
|
804
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
805
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
806
|
+
static serializeBinaryToWriter(message: VesselAttachment, writer: jspb.BinaryWriter): void;
|
|
807
|
+
static deserializeBinary(bytes: Uint8Array): VesselAttachment;
|
|
808
|
+
static deserializeBinaryFromReader(message: VesselAttachment, reader: jspb.BinaryReader): VesselAttachment;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
export namespace VesselAttachment {
|
|
812
|
+
export type AsObject = {
|
|
813
|
+
type: VesselAttachment.VesselAttachmentTypeMap[keyof VesselAttachment.VesselAttachmentTypeMap],
|
|
814
|
+
details: string,
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
export interface VesselAttachmentTypeMap {
|
|
818
|
+
UNSPECIFIED: 0;
|
|
819
|
+
NONE: 1;
|
|
820
|
+
CUSTOM: 2;
|
|
821
|
+
SEPTUM: 3;
|
|
822
|
+
CAP: 4;
|
|
823
|
+
MAT: 5;
|
|
824
|
+
REFLUX_CONDENSER: 6;
|
|
825
|
+
VENT_NEEDLE: 7;
|
|
826
|
+
DEAN_STARK: 8;
|
|
827
|
+
VACUUM_TUBE: 9;
|
|
828
|
+
ADDITION_FUNNEL: 10;
|
|
829
|
+
DRYING_TUBE: 11;
|
|
830
|
+
ALUMINUM_FOIL: 12;
|
|
831
|
+
THERMOCOUPLE: 13;
|
|
832
|
+
BALLOON: 14;
|
|
833
|
+
GAS_ADAPTER: 15;
|
|
834
|
+
PRESSURE_REGULATOR: 16;
|
|
835
|
+
RELEASE_VALVE: 17;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
export const VesselAttachmentType: VesselAttachmentTypeMap;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
export class VesselPreparation extends jspb.Message {
|
|
842
|
+
getType(): VesselPreparation.VesselPreparationTypeMap[keyof VesselPreparation.VesselPreparationTypeMap];
|
|
843
|
+
setType(value: VesselPreparation.VesselPreparationTypeMap[keyof VesselPreparation.VesselPreparationTypeMap]): void;
|
|
844
|
+
|
|
845
|
+
getDetails(): string;
|
|
846
|
+
setDetails(value: string): void;
|
|
847
|
+
|
|
848
|
+
serializeBinary(): Uint8Array;
|
|
849
|
+
toObject(includeInstance?: boolean): VesselPreparation.AsObject;
|
|
850
|
+
static toObject(includeInstance: boolean, msg: VesselPreparation): VesselPreparation.AsObject;
|
|
851
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
852
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
853
|
+
static serializeBinaryToWriter(message: VesselPreparation, writer: jspb.BinaryWriter): void;
|
|
854
|
+
static deserializeBinary(bytes: Uint8Array): VesselPreparation;
|
|
855
|
+
static deserializeBinaryFromReader(message: VesselPreparation, reader: jspb.BinaryReader): VesselPreparation;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
export namespace VesselPreparation {
|
|
859
|
+
export type AsObject = {
|
|
860
|
+
type: VesselPreparation.VesselPreparationTypeMap[keyof VesselPreparation.VesselPreparationTypeMap],
|
|
861
|
+
details: string,
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
export interface VesselPreparationTypeMap {
|
|
865
|
+
UNSPECIFIED: 0;
|
|
866
|
+
CUSTOM: 1;
|
|
867
|
+
NONE: 2;
|
|
868
|
+
OVEN_DRIED: 3;
|
|
869
|
+
FLAME_DRIED: 4;
|
|
870
|
+
EVACUATED_BACKFILLED: 5;
|
|
871
|
+
PURGED: 6;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
export const VesselPreparationType: VesselPreparationTypeMap;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
export class ReactionSetup extends jspb.Message {
|
|
878
|
+
hasVessel(): boolean;
|
|
879
|
+
clearVessel(): void;
|
|
880
|
+
getVessel(): Vessel | undefined;
|
|
881
|
+
setVessel(value?: Vessel): void;
|
|
882
|
+
|
|
883
|
+
hasIsAutomated(): boolean;
|
|
884
|
+
clearIsAutomated(): void;
|
|
885
|
+
getIsAutomated(): boolean;
|
|
886
|
+
setIsAutomated(value: boolean): void;
|
|
887
|
+
|
|
888
|
+
getAutomationPlatform(): string;
|
|
889
|
+
setAutomationPlatform(value: string): void;
|
|
890
|
+
|
|
891
|
+
getAutomationCodeMap(): jspb.Map<string, Data>;
|
|
892
|
+
clearAutomationCodeMap(): void;
|
|
893
|
+
hasEnvironment(): boolean;
|
|
894
|
+
clearEnvironment(): void;
|
|
895
|
+
getEnvironment(): ReactionSetup.ReactionEnvironment | undefined;
|
|
896
|
+
setEnvironment(value?: ReactionSetup.ReactionEnvironment): void;
|
|
897
|
+
|
|
898
|
+
serializeBinary(): Uint8Array;
|
|
899
|
+
toObject(includeInstance?: boolean): ReactionSetup.AsObject;
|
|
900
|
+
static toObject(includeInstance: boolean, msg: ReactionSetup): ReactionSetup.AsObject;
|
|
901
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
902
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
903
|
+
static serializeBinaryToWriter(message: ReactionSetup, writer: jspb.BinaryWriter): void;
|
|
904
|
+
static deserializeBinary(bytes: Uint8Array): ReactionSetup;
|
|
905
|
+
static deserializeBinaryFromReader(message: ReactionSetup, reader: jspb.BinaryReader): ReactionSetup;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
export namespace ReactionSetup {
|
|
909
|
+
export type AsObject = {
|
|
910
|
+
vessel?: Vessel.AsObject,
|
|
911
|
+
isAutomated: boolean,
|
|
912
|
+
automationPlatform: string,
|
|
913
|
+
automationCodeMap: Array<[string, Data.AsObject]>,
|
|
914
|
+
environment?: ReactionSetup.ReactionEnvironment.AsObject,
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
export class ReactionEnvironment extends jspb.Message {
|
|
918
|
+
getType(): ReactionSetup.ReactionEnvironment.ReactionEnvironmentTypeMap[keyof ReactionSetup.ReactionEnvironment.ReactionEnvironmentTypeMap];
|
|
919
|
+
setType(value: ReactionSetup.ReactionEnvironment.ReactionEnvironmentTypeMap[keyof ReactionSetup.ReactionEnvironment.ReactionEnvironmentTypeMap]): void;
|
|
920
|
+
|
|
921
|
+
getDetails(): string;
|
|
922
|
+
setDetails(value: string): void;
|
|
923
|
+
|
|
924
|
+
serializeBinary(): Uint8Array;
|
|
925
|
+
toObject(includeInstance?: boolean): ReactionEnvironment.AsObject;
|
|
926
|
+
static toObject(includeInstance: boolean, msg: ReactionEnvironment): ReactionEnvironment.AsObject;
|
|
927
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
928
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
929
|
+
static serializeBinaryToWriter(message: ReactionEnvironment, writer: jspb.BinaryWriter): void;
|
|
930
|
+
static deserializeBinary(bytes: Uint8Array): ReactionEnvironment;
|
|
931
|
+
static deserializeBinaryFromReader(message: ReactionEnvironment, reader: jspb.BinaryReader): ReactionEnvironment;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
export namespace ReactionEnvironment {
|
|
935
|
+
export type AsObject = {
|
|
936
|
+
type: ReactionSetup.ReactionEnvironment.ReactionEnvironmentTypeMap[keyof ReactionSetup.ReactionEnvironment.ReactionEnvironmentTypeMap],
|
|
937
|
+
details: string,
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
export interface ReactionEnvironmentTypeMap {
|
|
941
|
+
UNSPECIFIED: 0;
|
|
942
|
+
CUSTOM: 1;
|
|
943
|
+
FUME_HOOD: 2;
|
|
944
|
+
BENCH_TOP: 3;
|
|
945
|
+
GLOVE_BOX: 4;
|
|
946
|
+
GLOVE_BAG: 5;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
export const ReactionEnvironmentType: ReactionEnvironmentTypeMap;
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
export class ReactionConditions extends jspb.Message {
|
|
954
|
+
hasTemperature(): boolean;
|
|
955
|
+
clearTemperature(): void;
|
|
956
|
+
getTemperature(): TemperatureConditions | undefined;
|
|
957
|
+
setTemperature(value?: TemperatureConditions): void;
|
|
958
|
+
|
|
959
|
+
hasPressure(): boolean;
|
|
960
|
+
clearPressure(): void;
|
|
961
|
+
getPressure(): PressureConditions | undefined;
|
|
962
|
+
setPressure(value?: PressureConditions): void;
|
|
963
|
+
|
|
964
|
+
hasStirring(): boolean;
|
|
965
|
+
clearStirring(): void;
|
|
966
|
+
getStirring(): StirringConditions | undefined;
|
|
967
|
+
setStirring(value?: StirringConditions): void;
|
|
968
|
+
|
|
969
|
+
hasIllumination(): boolean;
|
|
970
|
+
clearIllumination(): void;
|
|
971
|
+
getIllumination(): IlluminationConditions | undefined;
|
|
972
|
+
setIllumination(value?: IlluminationConditions): void;
|
|
973
|
+
|
|
974
|
+
hasElectrochemistry(): boolean;
|
|
975
|
+
clearElectrochemistry(): void;
|
|
976
|
+
getElectrochemistry(): ElectrochemistryConditions | undefined;
|
|
977
|
+
setElectrochemistry(value?: ElectrochemistryConditions): void;
|
|
978
|
+
|
|
979
|
+
hasFlow(): boolean;
|
|
980
|
+
clearFlow(): void;
|
|
981
|
+
getFlow(): FlowConditions | undefined;
|
|
982
|
+
setFlow(value?: FlowConditions): void;
|
|
983
|
+
|
|
984
|
+
hasReflux(): boolean;
|
|
985
|
+
clearReflux(): void;
|
|
986
|
+
getReflux(): boolean;
|
|
987
|
+
setReflux(value: boolean): void;
|
|
988
|
+
|
|
989
|
+
hasPh(): boolean;
|
|
990
|
+
clearPh(): void;
|
|
991
|
+
getPh(): number;
|
|
992
|
+
setPh(value: number): void;
|
|
993
|
+
|
|
994
|
+
hasConditionsAreDynamic(): boolean;
|
|
995
|
+
clearConditionsAreDynamic(): void;
|
|
996
|
+
getConditionsAreDynamic(): boolean;
|
|
997
|
+
setConditionsAreDynamic(value: boolean): void;
|
|
998
|
+
|
|
999
|
+
getDetails(): string;
|
|
1000
|
+
setDetails(value: string): void;
|
|
1001
|
+
|
|
1002
|
+
serializeBinary(): Uint8Array;
|
|
1003
|
+
toObject(includeInstance?: boolean): ReactionConditions.AsObject;
|
|
1004
|
+
static toObject(includeInstance: boolean, msg: ReactionConditions): ReactionConditions.AsObject;
|
|
1005
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1006
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1007
|
+
static serializeBinaryToWriter(message: ReactionConditions, writer: jspb.BinaryWriter): void;
|
|
1008
|
+
static deserializeBinary(bytes: Uint8Array): ReactionConditions;
|
|
1009
|
+
static deserializeBinaryFromReader(message: ReactionConditions, reader: jspb.BinaryReader): ReactionConditions;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
export namespace ReactionConditions {
|
|
1013
|
+
export type AsObject = {
|
|
1014
|
+
temperature?: TemperatureConditions.AsObject,
|
|
1015
|
+
pressure?: PressureConditions.AsObject,
|
|
1016
|
+
stirring?: StirringConditions.AsObject,
|
|
1017
|
+
illumination?: IlluminationConditions.AsObject,
|
|
1018
|
+
electrochemistry?: ElectrochemistryConditions.AsObject,
|
|
1019
|
+
flow?: FlowConditions.AsObject,
|
|
1020
|
+
reflux: boolean,
|
|
1021
|
+
ph: number,
|
|
1022
|
+
conditionsAreDynamic: boolean,
|
|
1023
|
+
details: string,
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
export class TemperatureConditions extends jspb.Message {
|
|
1028
|
+
hasControl(): boolean;
|
|
1029
|
+
clearControl(): void;
|
|
1030
|
+
getControl(): TemperatureConditions.TemperatureControl | undefined;
|
|
1031
|
+
setControl(value?: TemperatureConditions.TemperatureControl): void;
|
|
1032
|
+
|
|
1033
|
+
hasSetpoint(): boolean;
|
|
1034
|
+
clearSetpoint(): void;
|
|
1035
|
+
getSetpoint(): Temperature | undefined;
|
|
1036
|
+
setSetpoint(value?: Temperature): void;
|
|
1037
|
+
|
|
1038
|
+
clearMeasurementsList(): void;
|
|
1039
|
+
getMeasurementsList(): Array<TemperatureConditions.TemperatureMeasurement>;
|
|
1040
|
+
setMeasurementsList(value: Array<TemperatureConditions.TemperatureMeasurement>): void;
|
|
1041
|
+
addMeasurements(value?: TemperatureConditions.TemperatureMeasurement, index?: number): TemperatureConditions.TemperatureMeasurement;
|
|
1042
|
+
|
|
1043
|
+
serializeBinary(): Uint8Array;
|
|
1044
|
+
toObject(includeInstance?: boolean): TemperatureConditions.AsObject;
|
|
1045
|
+
static toObject(includeInstance: boolean, msg: TemperatureConditions): TemperatureConditions.AsObject;
|
|
1046
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1047
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1048
|
+
static serializeBinaryToWriter(message: TemperatureConditions, writer: jspb.BinaryWriter): void;
|
|
1049
|
+
static deserializeBinary(bytes: Uint8Array): TemperatureConditions;
|
|
1050
|
+
static deserializeBinaryFromReader(message: TemperatureConditions, reader: jspb.BinaryReader): TemperatureConditions;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
export namespace TemperatureConditions {
|
|
1054
|
+
export type AsObject = {
|
|
1055
|
+
control?: TemperatureConditions.TemperatureControl.AsObject,
|
|
1056
|
+
setpoint?: Temperature.AsObject,
|
|
1057
|
+
measurementsList: Array<TemperatureConditions.TemperatureMeasurement.AsObject>,
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
export class TemperatureControl extends jspb.Message {
|
|
1061
|
+
getType(): TemperatureConditions.TemperatureControl.TemperatureControlTypeMap[keyof TemperatureConditions.TemperatureControl.TemperatureControlTypeMap];
|
|
1062
|
+
setType(value: TemperatureConditions.TemperatureControl.TemperatureControlTypeMap[keyof TemperatureConditions.TemperatureControl.TemperatureControlTypeMap]): void;
|
|
1063
|
+
|
|
1064
|
+
getDetails(): string;
|
|
1065
|
+
setDetails(value: string): void;
|
|
1066
|
+
|
|
1067
|
+
serializeBinary(): Uint8Array;
|
|
1068
|
+
toObject(includeInstance?: boolean): TemperatureControl.AsObject;
|
|
1069
|
+
static toObject(includeInstance: boolean, msg: TemperatureControl): TemperatureControl.AsObject;
|
|
1070
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1071
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1072
|
+
static serializeBinaryToWriter(message: TemperatureControl, writer: jspb.BinaryWriter): void;
|
|
1073
|
+
static deserializeBinary(bytes: Uint8Array): TemperatureControl;
|
|
1074
|
+
static deserializeBinaryFromReader(message: TemperatureControl, reader: jspb.BinaryReader): TemperatureControl;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
export namespace TemperatureControl {
|
|
1078
|
+
export type AsObject = {
|
|
1079
|
+
type: TemperatureConditions.TemperatureControl.TemperatureControlTypeMap[keyof TemperatureConditions.TemperatureControl.TemperatureControlTypeMap],
|
|
1080
|
+
details: string,
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
export interface TemperatureControlTypeMap {
|
|
1084
|
+
UNSPECIFIED: 0;
|
|
1085
|
+
CUSTOM: 1;
|
|
1086
|
+
AMBIENT: 2;
|
|
1087
|
+
OIL_BATH: 3;
|
|
1088
|
+
WATER_BATH: 4;
|
|
1089
|
+
SAND_BATH: 5;
|
|
1090
|
+
ICE_BATH: 6;
|
|
1091
|
+
DRY_ALUMINUM_PLATE: 7;
|
|
1092
|
+
MICROWAVE: 8;
|
|
1093
|
+
DRY_ICE_BATH: 9;
|
|
1094
|
+
AIR_FAN: 10;
|
|
1095
|
+
LIQUID_NITROGEN: 11;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
export const TemperatureControlType: TemperatureControlTypeMap;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
export class TemperatureMeasurement extends jspb.Message {
|
|
1102
|
+
getType(): TemperatureConditions.TemperatureMeasurement.TemperatureMeasurementTypeMap[keyof TemperatureConditions.TemperatureMeasurement.TemperatureMeasurementTypeMap];
|
|
1103
|
+
setType(value: TemperatureConditions.TemperatureMeasurement.TemperatureMeasurementTypeMap[keyof TemperatureConditions.TemperatureMeasurement.TemperatureMeasurementTypeMap]): void;
|
|
1104
|
+
|
|
1105
|
+
getDetails(): string;
|
|
1106
|
+
setDetails(value: string): void;
|
|
1107
|
+
|
|
1108
|
+
hasTime(): boolean;
|
|
1109
|
+
clearTime(): void;
|
|
1110
|
+
getTime(): Time | undefined;
|
|
1111
|
+
setTime(value?: Time): void;
|
|
1112
|
+
|
|
1113
|
+
hasTemperature(): boolean;
|
|
1114
|
+
clearTemperature(): void;
|
|
1115
|
+
getTemperature(): Temperature | undefined;
|
|
1116
|
+
setTemperature(value?: Temperature): void;
|
|
1117
|
+
|
|
1118
|
+
serializeBinary(): Uint8Array;
|
|
1119
|
+
toObject(includeInstance?: boolean): TemperatureMeasurement.AsObject;
|
|
1120
|
+
static toObject(includeInstance: boolean, msg: TemperatureMeasurement): TemperatureMeasurement.AsObject;
|
|
1121
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1122
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1123
|
+
static serializeBinaryToWriter(message: TemperatureMeasurement, writer: jspb.BinaryWriter): void;
|
|
1124
|
+
static deserializeBinary(bytes: Uint8Array): TemperatureMeasurement;
|
|
1125
|
+
static deserializeBinaryFromReader(message: TemperatureMeasurement, reader: jspb.BinaryReader): TemperatureMeasurement;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
export namespace TemperatureMeasurement {
|
|
1129
|
+
export type AsObject = {
|
|
1130
|
+
type: TemperatureConditions.TemperatureMeasurement.TemperatureMeasurementTypeMap[keyof TemperatureConditions.TemperatureMeasurement.TemperatureMeasurementTypeMap],
|
|
1131
|
+
details: string,
|
|
1132
|
+
time?: Time.AsObject,
|
|
1133
|
+
temperature?: Temperature.AsObject,
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
export interface TemperatureMeasurementTypeMap {
|
|
1137
|
+
UNSPECIFIED: 0;
|
|
1138
|
+
CUSTOM: 1;
|
|
1139
|
+
THERMOCOUPLE_INTERNAL: 2;
|
|
1140
|
+
THERMOCOUPLE_EXTERNAL: 3;
|
|
1141
|
+
INFRARED: 4;
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
export const TemperatureMeasurementType: TemperatureMeasurementTypeMap;
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
export class PressureConditions extends jspb.Message {
|
|
1149
|
+
hasControl(): boolean;
|
|
1150
|
+
clearControl(): void;
|
|
1151
|
+
getControl(): PressureConditions.PressureControl | undefined;
|
|
1152
|
+
setControl(value?: PressureConditions.PressureControl): void;
|
|
1153
|
+
|
|
1154
|
+
hasSetpoint(): boolean;
|
|
1155
|
+
clearSetpoint(): void;
|
|
1156
|
+
getSetpoint(): Pressure | undefined;
|
|
1157
|
+
setSetpoint(value?: Pressure): void;
|
|
1158
|
+
|
|
1159
|
+
hasAtmosphere(): boolean;
|
|
1160
|
+
clearAtmosphere(): void;
|
|
1161
|
+
getAtmosphere(): PressureConditions.Atmosphere | undefined;
|
|
1162
|
+
setAtmosphere(value?: PressureConditions.Atmosphere): void;
|
|
1163
|
+
|
|
1164
|
+
clearMeasurementsList(): void;
|
|
1165
|
+
getMeasurementsList(): Array<PressureConditions.PressureMeasurement>;
|
|
1166
|
+
setMeasurementsList(value: Array<PressureConditions.PressureMeasurement>): void;
|
|
1167
|
+
addMeasurements(value?: PressureConditions.PressureMeasurement, index?: number): PressureConditions.PressureMeasurement;
|
|
1168
|
+
|
|
1169
|
+
serializeBinary(): Uint8Array;
|
|
1170
|
+
toObject(includeInstance?: boolean): PressureConditions.AsObject;
|
|
1171
|
+
static toObject(includeInstance: boolean, msg: PressureConditions): PressureConditions.AsObject;
|
|
1172
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1173
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1174
|
+
static serializeBinaryToWriter(message: PressureConditions, writer: jspb.BinaryWriter): void;
|
|
1175
|
+
static deserializeBinary(bytes: Uint8Array): PressureConditions;
|
|
1176
|
+
static deserializeBinaryFromReader(message: PressureConditions, reader: jspb.BinaryReader): PressureConditions;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
export namespace PressureConditions {
|
|
1180
|
+
export type AsObject = {
|
|
1181
|
+
control?: PressureConditions.PressureControl.AsObject,
|
|
1182
|
+
setpoint?: Pressure.AsObject,
|
|
1183
|
+
atmosphere?: PressureConditions.Atmosphere.AsObject,
|
|
1184
|
+
measurementsList: Array<PressureConditions.PressureMeasurement.AsObject>,
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
export class PressureControl extends jspb.Message {
|
|
1188
|
+
getType(): PressureConditions.PressureControl.PressureControlTypeMap[keyof PressureConditions.PressureControl.PressureControlTypeMap];
|
|
1189
|
+
setType(value: PressureConditions.PressureControl.PressureControlTypeMap[keyof PressureConditions.PressureControl.PressureControlTypeMap]): void;
|
|
1190
|
+
|
|
1191
|
+
getDetails(): string;
|
|
1192
|
+
setDetails(value: string): void;
|
|
1193
|
+
|
|
1194
|
+
serializeBinary(): Uint8Array;
|
|
1195
|
+
toObject(includeInstance?: boolean): PressureControl.AsObject;
|
|
1196
|
+
static toObject(includeInstance: boolean, msg: PressureControl): PressureControl.AsObject;
|
|
1197
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1198
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1199
|
+
static serializeBinaryToWriter(message: PressureControl, writer: jspb.BinaryWriter): void;
|
|
1200
|
+
static deserializeBinary(bytes: Uint8Array): PressureControl;
|
|
1201
|
+
static deserializeBinaryFromReader(message: PressureControl, reader: jspb.BinaryReader): PressureControl;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
export namespace PressureControl {
|
|
1205
|
+
export type AsObject = {
|
|
1206
|
+
type: PressureConditions.PressureControl.PressureControlTypeMap[keyof PressureConditions.PressureControl.PressureControlTypeMap],
|
|
1207
|
+
details: string,
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
export interface PressureControlTypeMap {
|
|
1211
|
+
UNSPECIFIED: 0;
|
|
1212
|
+
CUSTOM: 1;
|
|
1213
|
+
AMBIENT: 2;
|
|
1214
|
+
SLIGHT_POSITIVE: 3;
|
|
1215
|
+
SEALED: 4;
|
|
1216
|
+
PRESSURIZED: 5;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
export const PressureControlType: PressureControlTypeMap;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
export class Atmosphere extends jspb.Message {
|
|
1223
|
+
getType(): PressureConditions.Atmosphere.AtmosphereTypeMap[keyof PressureConditions.Atmosphere.AtmosphereTypeMap];
|
|
1224
|
+
setType(value: PressureConditions.Atmosphere.AtmosphereTypeMap[keyof PressureConditions.Atmosphere.AtmosphereTypeMap]): void;
|
|
1225
|
+
|
|
1226
|
+
getDetails(): string;
|
|
1227
|
+
setDetails(value: string): void;
|
|
1228
|
+
|
|
1229
|
+
serializeBinary(): Uint8Array;
|
|
1230
|
+
toObject(includeInstance?: boolean): Atmosphere.AsObject;
|
|
1231
|
+
static toObject(includeInstance: boolean, msg: Atmosphere): Atmosphere.AsObject;
|
|
1232
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1233
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1234
|
+
static serializeBinaryToWriter(message: Atmosphere, writer: jspb.BinaryWriter): void;
|
|
1235
|
+
static deserializeBinary(bytes: Uint8Array): Atmosphere;
|
|
1236
|
+
static deserializeBinaryFromReader(message: Atmosphere, reader: jspb.BinaryReader): Atmosphere;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
export namespace Atmosphere {
|
|
1240
|
+
export type AsObject = {
|
|
1241
|
+
type: PressureConditions.Atmosphere.AtmosphereTypeMap[keyof PressureConditions.Atmosphere.AtmosphereTypeMap],
|
|
1242
|
+
details: string,
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
export interface AtmosphereTypeMap {
|
|
1246
|
+
UNSPECIFIED: 0;
|
|
1247
|
+
CUSTOM: 1;
|
|
1248
|
+
AIR: 2;
|
|
1249
|
+
NITROGEN: 3;
|
|
1250
|
+
ARGON: 4;
|
|
1251
|
+
OXYGEN: 5;
|
|
1252
|
+
HYDROGEN: 6;
|
|
1253
|
+
CARBON_MONOXIDE: 7;
|
|
1254
|
+
CARBON_DIOXIDE: 8;
|
|
1255
|
+
METHANE: 9;
|
|
1256
|
+
AMMONIA: 10;
|
|
1257
|
+
OZONE: 11;
|
|
1258
|
+
ETHYLENE: 12;
|
|
1259
|
+
ACETYLENE: 13;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
export const AtmosphereType: AtmosphereTypeMap;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
export class PressureMeasurement extends jspb.Message {
|
|
1266
|
+
getType(): PressureConditions.PressureMeasurement.PressureMeasurementTypeMap[keyof PressureConditions.PressureMeasurement.PressureMeasurementTypeMap];
|
|
1267
|
+
setType(value: PressureConditions.PressureMeasurement.PressureMeasurementTypeMap[keyof PressureConditions.PressureMeasurement.PressureMeasurementTypeMap]): void;
|
|
1268
|
+
|
|
1269
|
+
getDetails(): string;
|
|
1270
|
+
setDetails(value: string): void;
|
|
1271
|
+
|
|
1272
|
+
hasTime(): boolean;
|
|
1273
|
+
clearTime(): void;
|
|
1274
|
+
getTime(): Time | undefined;
|
|
1275
|
+
setTime(value?: Time): void;
|
|
1276
|
+
|
|
1277
|
+
hasPressure(): boolean;
|
|
1278
|
+
clearPressure(): void;
|
|
1279
|
+
getPressure(): Pressure | undefined;
|
|
1280
|
+
setPressure(value?: Pressure): void;
|
|
1281
|
+
|
|
1282
|
+
serializeBinary(): Uint8Array;
|
|
1283
|
+
toObject(includeInstance?: boolean): PressureMeasurement.AsObject;
|
|
1284
|
+
static toObject(includeInstance: boolean, msg: PressureMeasurement): PressureMeasurement.AsObject;
|
|
1285
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1286
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1287
|
+
static serializeBinaryToWriter(message: PressureMeasurement, writer: jspb.BinaryWriter): void;
|
|
1288
|
+
static deserializeBinary(bytes: Uint8Array): PressureMeasurement;
|
|
1289
|
+
static deserializeBinaryFromReader(message: PressureMeasurement, reader: jspb.BinaryReader): PressureMeasurement;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
export namespace PressureMeasurement {
|
|
1293
|
+
export type AsObject = {
|
|
1294
|
+
type: PressureConditions.PressureMeasurement.PressureMeasurementTypeMap[keyof PressureConditions.PressureMeasurement.PressureMeasurementTypeMap],
|
|
1295
|
+
details: string,
|
|
1296
|
+
time?: Time.AsObject,
|
|
1297
|
+
pressure?: Pressure.AsObject,
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
export interface PressureMeasurementTypeMap {
|
|
1301
|
+
UNSPECIFIED: 0;
|
|
1302
|
+
CUSTOM: 1;
|
|
1303
|
+
PRESSURE_TRANSDUCER: 2;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
export const PressureMeasurementType: PressureMeasurementTypeMap;
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
export class StirringConditions extends jspb.Message {
|
|
1311
|
+
getType(): StirringConditions.StirringMethodTypeMap[keyof StirringConditions.StirringMethodTypeMap];
|
|
1312
|
+
setType(value: StirringConditions.StirringMethodTypeMap[keyof StirringConditions.StirringMethodTypeMap]): void;
|
|
1313
|
+
|
|
1314
|
+
getDetails(): string;
|
|
1315
|
+
setDetails(value: string): void;
|
|
1316
|
+
|
|
1317
|
+
hasRate(): boolean;
|
|
1318
|
+
clearRate(): void;
|
|
1319
|
+
getRate(): StirringConditions.StirringRate | undefined;
|
|
1320
|
+
setRate(value?: StirringConditions.StirringRate): void;
|
|
1321
|
+
|
|
1322
|
+
serializeBinary(): Uint8Array;
|
|
1323
|
+
toObject(includeInstance?: boolean): StirringConditions.AsObject;
|
|
1324
|
+
static toObject(includeInstance: boolean, msg: StirringConditions): StirringConditions.AsObject;
|
|
1325
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1326
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1327
|
+
static serializeBinaryToWriter(message: StirringConditions, writer: jspb.BinaryWriter): void;
|
|
1328
|
+
static deserializeBinary(bytes: Uint8Array): StirringConditions;
|
|
1329
|
+
static deserializeBinaryFromReader(message: StirringConditions, reader: jspb.BinaryReader): StirringConditions;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
export namespace StirringConditions {
|
|
1333
|
+
export type AsObject = {
|
|
1334
|
+
type: StirringConditions.StirringMethodTypeMap[keyof StirringConditions.StirringMethodTypeMap],
|
|
1335
|
+
details: string,
|
|
1336
|
+
rate?: StirringConditions.StirringRate.AsObject,
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
export class StirringRate extends jspb.Message {
|
|
1340
|
+
getType(): StirringConditions.StirringRate.StirringRateTypeMap[keyof StirringConditions.StirringRate.StirringRateTypeMap];
|
|
1341
|
+
setType(value: StirringConditions.StirringRate.StirringRateTypeMap[keyof StirringConditions.StirringRate.StirringRateTypeMap]): void;
|
|
1342
|
+
|
|
1343
|
+
getDetails(): string;
|
|
1344
|
+
setDetails(value: string): void;
|
|
1345
|
+
|
|
1346
|
+
getRpm(): number;
|
|
1347
|
+
setRpm(value: number): void;
|
|
1348
|
+
|
|
1349
|
+
serializeBinary(): Uint8Array;
|
|
1350
|
+
toObject(includeInstance?: boolean): StirringRate.AsObject;
|
|
1351
|
+
static toObject(includeInstance: boolean, msg: StirringRate): StirringRate.AsObject;
|
|
1352
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1353
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1354
|
+
static serializeBinaryToWriter(message: StirringRate, writer: jspb.BinaryWriter): void;
|
|
1355
|
+
static deserializeBinary(bytes: Uint8Array): StirringRate;
|
|
1356
|
+
static deserializeBinaryFromReader(message: StirringRate, reader: jspb.BinaryReader): StirringRate;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
export namespace StirringRate {
|
|
1360
|
+
export type AsObject = {
|
|
1361
|
+
type: StirringConditions.StirringRate.StirringRateTypeMap[keyof StirringConditions.StirringRate.StirringRateTypeMap],
|
|
1362
|
+
details: string,
|
|
1363
|
+
rpm: number,
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
export interface StirringRateTypeMap {
|
|
1367
|
+
UNSPECIFIED: 0;
|
|
1368
|
+
HIGH: 1;
|
|
1369
|
+
MEDIUM: 2;
|
|
1370
|
+
LOW: 3;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
export const StirringRateType: StirringRateTypeMap;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
export interface StirringMethodTypeMap {
|
|
1377
|
+
UNSPECIFIED: 0;
|
|
1378
|
+
CUSTOM: 1;
|
|
1379
|
+
NONE: 2;
|
|
1380
|
+
STIR_BAR: 3;
|
|
1381
|
+
OVERHEAD_MIXER: 4;
|
|
1382
|
+
AGITATION: 5;
|
|
1383
|
+
BALL_MILLING: 6;
|
|
1384
|
+
SONICATION: 7;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
export const StirringMethodType: StirringMethodTypeMap;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
export class IlluminationConditions extends jspb.Message {
|
|
1391
|
+
getType(): IlluminationConditions.IlluminationTypeMap[keyof IlluminationConditions.IlluminationTypeMap];
|
|
1392
|
+
setType(value: IlluminationConditions.IlluminationTypeMap[keyof IlluminationConditions.IlluminationTypeMap]): void;
|
|
1393
|
+
|
|
1394
|
+
getDetails(): string;
|
|
1395
|
+
setDetails(value: string): void;
|
|
1396
|
+
|
|
1397
|
+
hasPeakWavelength(): boolean;
|
|
1398
|
+
clearPeakWavelength(): void;
|
|
1399
|
+
getPeakWavelength(): Wavelength | undefined;
|
|
1400
|
+
setPeakWavelength(value?: Wavelength): void;
|
|
1401
|
+
|
|
1402
|
+
getColor(): string;
|
|
1403
|
+
setColor(value: string): void;
|
|
1404
|
+
|
|
1405
|
+
hasDistanceToVessel(): boolean;
|
|
1406
|
+
clearDistanceToVessel(): void;
|
|
1407
|
+
getDistanceToVessel(): Length | undefined;
|
|
1408
|
+
setDistanceToVessel(value?: Length): void;
|
|
1409
|
+
|
|
1410
|
+
serializeBinary(): Uint8Array;
|
|
1411
|
+
toObject(includeInstance?: boolean): IlluminationConditions.AsObject;
|
|
1412
|
+
static toObject(includeInstance: boolean, msg: IlluminationConditions): IlluminationConditions.AsObject;
|
|
1413
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1414
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1415
|
+
static serializeBinaryToWriter(message: IlluminationConditions, writer: jspb.BinaryWriter): void;
|
|
1416
|
+
static deserializeBinary(bytes: Uint8Array): IlluminationConditions;
|
|
1417
|
+
static deserializeBinaryFromReader(message: IlluminationConditions, reader: jspb.BinaryReader): IlluminationConditions;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
export namespace IlluminationConditions {
|
|
1421
|
+
export type AsObject = {
|
|
1422
|
+
type: IlluminationConditions.IlluminationTypeMap[keyof IlluminationConditions.IlluminationTypeMap],
|
|
1423
|
+
details: string,
|
|
1424
|
+
peakWavelength?: Wavelength.AsObject,
|
|
1425
|
+
color: string,
|
|
1426
|
+
distanceToVessel?: Length.AsObject,
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
export interface IlluminationTypeMap {
|
|
1430
|
+
UNSPECIFIED: 0;
|
|
1431
|
+
CUSTOM: 1;
|
|
1432
|
+
AMBIENT: 2;
|
|
1433
|
+
DARK: 3;
|
|
1434
|
+
LED: 4;
|
|
1435
|
+
HALOGEN_LAMP: 5;
|
|
1436
|
+
DEUTERIUM_LAMP: 6;
|
|
1437
|
+
SOLAR_SIMULATOR: 7;
|
|
1438
|
+
BROAD_SPECTRUM: 8;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
export const IlluminationType: IlluminationTypeMap;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
export class ElectrochemistryConditions extends jspb.Message {
|
|
1445
|
+
getType(): ElectrochemistryConditions.ElectrochemistryTypeMap[keyof ElectrochemistryConditions.ElectrochemistryTypeMap];
|
|
1446
|
+
setType(value: ElectrochemistryConditions.ElectrochemistryTypeMap[keyof ElectrochemistryConditions.ElectrochemistryTypeMap]): void;
|
|
1447
|
+
|
|
1448
|
+
getDetails(): string;
|
|
1449
|
+
setDetails(value: string): void;
|
|
1450
|
+
|
|
1451
|
+
hasCurrent(): boolean;
|
|
1452
|
+
clearCurrent(): void;
|
|
1453
|
+
getCurrent(): Current | undefined;
|
|
1454
|
+
setCurrent(value?: Current): void;
|
|
1455
|
+
|
|
1456
|
+
hasVoltage(): boolean;
|
|
1457
|
+
clearVoltage(): void;
|
|
1458
|
+
getVoltage(): Voltage | undefined;
|
|
1459
|
+
setVoltage(value?: Voltage): void;
|
|
1460
|
+
|
|
1461
|
+
getAnodeMaterial(): string;
|
|
1462
|
+
setAnodeMaterial(value: string): void;
|
|
1463
|
+
|
|
1464
|
+
getCathodeMaterial(): string;
|
|
1465
|
+
setCathodeMaterial(value: string): void;
|
|
1466
|
+
|
|
1467
|
+
hasElectrodeSeparation(): boolean;
|
|
1468
|
+
clearElectrodeSeparation(): void;
|
|
1469
|
+
getElectrodeSeparation(): Length | undefined;
|
|
1470
|
+
setElectrodeSeparation(value?: Length): void;
|
|
1471
|
+
|
|
1472
|
+
clearMeasurementsList(): void;
|
|
1473
|
+
getMeasurementsList(): Array<ElectrochemistryConditions.ElectrochemistryMeasurement>;
|
|
1474
|
+
setMeasurementsList(value: Array<ElectrochemistryConditions.ElectrochemistryMeasurement>): void;
|
|
1475
|
+
addMeasurements(value?: ElectrochemistryConditions.ElectrochemistryMeasurement, index?: number): ElectrochemistryConditions.ElectrochemistryMeasurement;
|
|
1476
|
+
|
|
1477
|
+
hasCell(): boolean;
|
|
1478
|
+
clearCell(): void;
|
|
1479
|
+
getCell(): ElectrochemistryConditions.ElectrochemistryCell | undefined;
|
|
1480
|
+
setCell(value?: ElectrochemistryConditions.ElectrochemistryCell): void;
|
|
1481
|
+
|
|
1482
|
+
serializeBinary(): Uint8Array;
|
|
1483
|
+
toObject(includeInstance?: boolean): ElectrochemistryConditions.AsObject;
|
|
1484
|
+
static toObject(includeInstance: boolean, msg: ElectrochemistryConditions): ElectrochemistryConditions.AsObject;
|
|
1485
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1486
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1487
|
+
static serializeBinaryToWriter(message: ElectrochemistryConditions, writer: jspb.BinaryWriter): void;
|
|
1488
|
+
static deserializeBinary(bytes: Uint8Array): ElectrochemistryConditions;
|
|
1489
|
+
static deserializeBinaryFromReader(message: ElectrochemistryConditions, reader: jspb.BinaryReader): ElectrochemistryConditions;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
export namespace ElectrochemistryConditions {
|
|
1493
|
+
export type AsObject = {
|
|
1494
|
+
type: ElectrochemistryConditions.ElectrochemistryTypeMap[keyof ElectrochemistryConditions.ElectrochemistryTypeMap],
|
|
1495
|
+
details: string,
|
|
1496
|
+
current?: Current.AsObject,
|
|
1497
|
+
voltage?: Voltage.AsObject,
|
|
1498
|
+
anodeMaterial: string,
|
|
1499
|
+
cathodeMaterial: string,
|
|
1500
|
+
electrodeSeparation?: Length.AsObject,
|
|
1501
|
+
measurementsList: Array<ElectrochemistryConditions.ElectrochemistryMeasurement.AsObject>,
|
|
1502
|
+
cell?: ElectrochemistryConditions.ElectrochemistryCell.AsObject,
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
export class ElectrochemistryMeasurement extends jspb.Message {
|
|
1506
|
+
hasTime(): boolean;
|
|
1507
|
+
clearTime(): void;
|
|
1508
|
+
getTime(): Time | undefined;
|
|
1509
|
+
setTime(value?: Time): void;
|
|
1510
|
+
|
|
1511
|
+
hasCurrent(): boolean;
|
|
1512
|
+
clearCurrent(): void;
|
|
1513
|
+
getCurrent(): Current | undefined;
|
|
1514
|
+
setCurrent(value?: Current): void;
|
|
1515
|
+
|
|
1516
|
+
hasVoltage(): boolean;
|
|
1517
|
+
clearVoltage(): void;
|
|
1518
|
+
getVoltage(): Voltage | undefined;
|
|
1519
|
+
setVoltage(value?: Voltage): void;
|
|
1520
|
+
|
|
1521
|
+
serializeBinary(): Uint8Array;
|
|
1522
|
+
toObject(includeInstance?: boolean): ElectrochemistryMeasurement.AsObject;
|
|
1523
|
+
static toObject(includeInstance: boolean, msg: ElectrochemistryMeasurement): ElectrochemistryMeasurement.AsObject;
|
|
1524
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1525
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1526
|
+
static serializeBinaryToWriter(message: ElectrochemistryMeasurement, writer: jspb.BinaryWriter): void;
|
|
1527
|
+
static deserializeBinary(bytes: Uint8Array): ElectrochemistryMeasurement;
|
|
1528
|
+
static deserializeBinaryFromReader(message: ElectrochemistryMeasurement, reader: jspb.BinaryReader): ElectrochemistryMeasurement;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
export namespace ElectrochemistryMeasurement {
|
|
1532
|
+
export type AsObject = {
|
|
1533
|
+
time?: Time.AsObject,
|
|
1534
|
+
current?: Current.AsObject,
|
|
1535
|
+
voltage?: Voltage.AsObject,
|
|
1536
|
+
}
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
export class ElectrochemistryCell extends jspb.Message {
|
|
1540
|
+
getType(): ElectrochemistryConditions.ElectrochemistryCell.ElectrochemistryCellTypeMap[keyof ElectrochemistryConditions.ElectrochemistryCell.ElectrochemistryCellTypeMap];
|
|
1541
|
+
setType(value: ElectrochemistryConditions.ElectrochemistryCell.ElectrochemistryCellTypeMap[keyof ElectrochemistryConditions.ElectrochemistryCell.ElectrochemistryCellTypeMap]): void;
|
|
1542
|
+
|
|
1543
|
+
getDetails(): string;
|
|
1544
|
+
setDetails(value: string): void;
|
|
1545
|
+
|
|
1546
|
+
serializeBinary(): Uint8Array;
|
|
1547
|
+
toObject(includeInstance?: boolean): ElectrochemistryCell.AsObject;
|
|
1548
|
+
static toObject(includeInstance: boolean, msg: ElectrochemistryCell): ElectrochemistryCell.AsObject;
|
|
1549
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1550
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1551
|
+
static serializeBinaryToWriter(message: ElectrochemistryCell, writer: jspb.BinaryWriter): void;
|
|
1552
|
+
static deserializeBinary(bytes: Uint8Array): ElectrochemistryCell;
|
|
1553
|
+
static deserializeBinaryFromReader(message: ElectrochemistryCell, reader: jspb.BinaryReader): ElectrochemistryCell;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
export namespace ElectrochemistryCell {
|
|
1557
|
+
export type AsObject = {
|
|
1558
|
+
type: ElectrochemistryConditions.ElectrochemistryCell.ElectrochemistryCellTypeMap[keyof ElectrochemistryConditions.ElectrochemistryCell.ElectrochemistryCellTypeMap],
|
|
1559
|
+
details: string,
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
export interface ElectrochemistryCellTypeMap {
|
|
1563
|
+
UNSPECIFIED: 0;
|
|
1564
|
+
CUSTOM: 1;
|
|
1565
|
+
DIVIDED_CELL: 2;
|
|
1566
|
+
UNDIVIDED_CELL: 3;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
export const ElectrochemistryCellType: ElectrochemistryCellTypeMap;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
export interface ElectrochemistryTypeMap {
|
|
1573
|
+
UNSPECIFIED: 0;
|
|
1574
|
+
CUSTOM: 1;
|
|
1575
|
+
CONSTANT_CURRENT: 2;
|
|
1576
|
+
CONSTANT_VOLTAGE: 3;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
export const ElectrochemistryType: ElectrochemistryTypeMap;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
export class FlowConditions extends jspb.Message {
|
|
1583
|
+
getType(): FlowConditions.FlowTypeMap[keyof FlowConditions.FlowTypeMap];
|
|
1584
|
+
setType(value: FlowConditions.FlowTypeMap[keyof FlowConditions.FlowTypeMap]): void;
|
|
1585
|
+
|
|
1586
|
+
getDetails(): string;
|
|
1587
|
+
setDetails(value: string): void;
|
|
1588
|
+
|
|
1589
|
+
getPumpType(): string;
|
|
1590
|
+
setPumpType(value: string): void;
|
|
1591
|
+
|
|
1592
|
+
hasTubing(): boolean;
|
|
1593
|
+
clearTubing(): void;
|
|
1594
|
+
getTubing(): FlowConditions.Tubing | undefined;
|
|
1595
|
+
setTubing(value?: FlowConditions.Tubing): void;
|
|
1596
|
+
|
|
1597
|
+
serializeBinary(): Uint8Array;
|
|
1598
|
+
toObject(includeInstance?: boolean): FlowConditions.AsObject;
|
|
1599
|
+
static toObject(includeInstance: boolean, msg: FlowConditions): FlowConditions.AsObject;
|
|
1600
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1601
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1602
|
+
static serializeBinaryToWriter(message: FlowConditions, writer: jspb.BinaryWriter): void;
|
|
1603
|
+
static deserializeBinary(bytes: Uint8Array): FlowConditions;
|
|
1604
|
+
static deserializeBinaryFromReader(message: FlowConditions, reader: jspb.BinaryReader): FlowConditions;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
export namespace FlowConditions {
|
|
1608
|
+
export type AsObject = {
|
|
1609
|
+
type: FlowConditions.FlowTypeMap[keyof FlowConditions.FlowTypeMap],
|
|
1610
|
+
details: string,
|
|
1611
|
+
pumpType: string,
|
|
1612
|
+
tubing?: FlowConditions.Tubing.AsObject,
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
export class Tubing extends jspb.Message {
|
|
1616
|
+
getType(): FlowConditions.Tubing.TubingTypeMap[keyof FlowConditions.Tubing.TubingTypeMap];
|
|
1617
|
+
setType(value: FlowConditions.Tubing.TubingTypeMap[keyof FlowConditions.Tubing.TubingTypeMap]): void;
|
|
1618
|
+
|
|
1619
|
+
getDetails(): string;
|
|
1620
|
+
setDetails(value: string): void;
|
|
1621
|
+
|
|
1622
|
+
hasDiameter(): boolean;
|
|
1623
|
+
clearDiameter(): void;
|
|
1624
|
+
getDiameter(): Length | undefined;
|
|
1625
|
+
setDiameter(value?: Length): void;
|
|
1626
|
+
|
|
1627
|
+
serializeBinary(): Uint8Array;
|
|
1628
|
+
toObject(includeInstance?: boolean): Tubing.AsObject;
|
|
1629
|
+
static toObject(includeInstance: boolean, msg: Tubing): Tubing.AsObject;
|
|
1630
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1631
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1632
|
+
static serializeBinaryToWriter(message: Tubing, writer: jspb.BinaryWriter): void;
|
|
1633
|
+
static deserializeBinary(bytes: Uint8Array): Tubing;
|
|
1634
|
+
static deserializeBinaryFromReader(message: Tubing, reader: jspb.BinaryReader): Tubing;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
export namespace Tubing {
|
|
1638
|
+
export type AsObject = {
|
|
1639
|
+
type: FlowConditions.Tubing.TubingTypeMap[keyof FlowConditions.Tubing.TubingTypeMap],
|
|
1640
|
+
details: string,
|
|
1641
|
+
diameter?: Length.AsObject,
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
export interface TubingTypeMap {
|
|
1645
|
+
UNSPECIFIED: 0;
|
|
1646
|
+
CUSTOM: 1;
|
|
1647
|
+
STEEL: 2;
|
|
1648
|
+
COPPER: 3;
|
|
1649
|
+
PFA: 4;
|
|
1650
|
+
FEP: 5;
|
|
1651
|
+
TEFLONAF: 6;
|
|
1652
|
+
PTFE: 7;
|
|
1653
|
+
GLASS: 8;
|
|
1654
|
+
QUARTZ: 9;
|
|
1655
|
+
SILICON: 10;
|
|
1656
|
+
PDMS: 11;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
export const TubingType: TubingTypeMap;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
export interface FlowTypeMap {
|
|
1663
|
+
UNSPECIFIED: 0;
|
|
1664
|
+
CUSTOM: 1;
|
|
1665
|
+
PLUG_FLOW_REACTOR: 2;
|
|
1666
|
+
CONTINUOUS_STIRRED_TANK_REACTOR: 3;
|
|
1667
|
+
PACKED_BED_REACTOR: 4;
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
export const FlowType: FlowTypeMap;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
export class ReactionNotes extends jspb.Message {
|
|
1674
|
+
hasIsHeterogeneous(): boolean;
|
|
1675
|
+
clearIsHeterogeneous(): void;
|
|
1676
|
+
getIsHeterogeneous(): boolean;
|
|
1677
|
+
setIsHeterogeneous(value: boolean): void;
|
|
1678
|
+
|
|
1679
|
+
hasFormsPrecipitate(): boolean;
|
|
1680
|
+
clearFormsPrecipitate(): void;
|
|
1681
|
+
getFormsPrecipitate(): boolean;
|
|
1682
|
+
setFormsPrecipitate(value: boolean): void;
|
|
1683
|
+
|
|
1684
|
+
hasIsExothermic(): boolean;
|
|
1685
|
+
clearIsExothermic(): void;
|
|
1686
|
+
getIsExothermic(): boolean;
|
|
1687
|
+
setIsExothermic(value: boolean): void;
|
|
1688
|
+
|
|
1689
|
+
hasOffgasses(): boolean;
|
|
1690
|
+
clearOffgasses(): void;
|
|
1691
|
+
getOffgasses(): boolean;
|
|
1692
|
+
setOffgasses(value: boolean): void;
|
|
1693
|
+
|
|
1694
|
+
hasIsSensitiveToMoisture(): boolean;
|
|
1695
|
+
clearIsSensitiveToMoisture(): void;
|
|
1696
|
+
getIsSensitiveToMoisture(): boolean;
|
|
1697
|
+
setIsSensitiveToMoisture(value: boolean): void;
|
|
1698
|
+
|
|
1699
|
+
hasIsSensitiveToOxygen(): boolean;
|
|
1700
|
+
clearIsSensitiveToOxygen(): void;
|
|
1701
|
+
getIsSensitiveToOxygen(): boolean;
|
|
1702
|
+
setIsSensitiveToOxygen(value: boolean): void;
|
|
1703
|
+
|
|
1704
|
+
hasIsSensitiveToLight(): boolean;
|
|
1705
|
+
clearIsSensitiveToLight(): void;
|
|
1706
|
+
getIsSensitiveToLight(): boolean;
|
|
1707
|
+
setIsSensitiveToLight(value: boolean): void;
|
|
1708
|
+
|
|
1709
|
+
getSafetyNotes(): string;
|
|
1710
|
+
setSafetyNotes(value: string): void;
|
|
1711
|
+
|
|
1712
|
+
getProcedureDetails(): string;
|
|
1713
|
+
setProcedureDetails(value: string): void;
|
|
1714
|
+
|
|
1715
|
+
serializeBinary(): Uint8Array;
|
|
1716
|
+
toObject(includeInstance?: boolean): ReactionNotes.AsObject;
|
|
1717
|
+
static toObject(includeInstance: boolean, msg: ReactionNotes): ReactionNotes.AsObject;
|
|
1718
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1719
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1720
|
+
static serializeBinaryToWriter(message: ReactionNotes, writer: jspb.BinaryWriter): void;
|
|
1721
|
+
static deserializeBinary(bytes: Uint8Array): ReactionNotes;
|
|
1722
|
+
static deserializeBinaryFromReader(message: ReactionNotes, reader: jspb.BinaryReader): ReactionNotes;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
export namespace ReactionNotes {
|
|
1726
|
+
export type AsObject = {
|
|
1727
|
+
isHeterogeneous: boolean,
|
|
1728
|
+
formsPrecipitate: boolean,
|
|
1729
|
+
isExothermic: boolean,
|
|
1730
|
+
offgasses: boolean,
|
|
1731
|
+
isSensitiveToMoisture: boolean,
|
|
1732
|
+
isSensitiveToOxygen: boolean,
|
|
1733
|
+
isSensitiveToLight: boolean,
|
|
1734
|
+
safetyNotes: string,
|
|
1735
|
+
procedureDetails: string,
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
export class ReactionObservation extends jspb.Message {
|
|
1740
|
+
hasTime(): boolean;
|
|
1741
|
+
clearTime(): void;
|
|
1742
|
+
getTime(): Time | undefined;
|
|
1743
|
+
setTime(value?: Time): void;
|
|
1744
|
+
|
|
1745
|
+
getComment(): string;
|
|
1746
|
+
setComment(value: string): void;
|
|
1747
|
+
|
|
1748
|
+
hasImage(): boolean;
|
|
1749
|
+
clearImage(): void;
|
|
1750
|
+
getImage(): Data | undefined;
|
|
1751
|
+
setImage(value?: Data): void;
|
|
1752
|
+
|
|
1753
|
+
serializeBinary(): Uint8Array;
|
|
1754
|
+
toObject(includeInstance?: boolean): ReactionObservation.AsObject;
|
|
1755
|
+
static toObject(includeInstance: boolean, msg: ReactionObservation): ReactionObservation.AsObject;
|
|
1756
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1757
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1758
|
+
static serializeBinaryToWriter(message: ReactionObservation, writer: jspb.BinaryWriter): void;
|
|
1759
|
+
static deserializeBinary(bytes: Uint8Array): ReactionObservation;
|
|
1760
|
+
static deserializeBinaryFromReader(message: ReactionObservation, reader: jspb.BinaryReader): ReactionObservation;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
export namespace ReactionObservation {
|
|
1764
|
+
export type AsObject = {
|
|
1765
|
+
time?: Time.AsObject,
|
|
1766
|
+
comment: string,
|
|
1767
|
+
image?: Data.AsObject,
|
|
1768
|
+
}
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
export class ReactionWorkup extends jspb.Message {
|
|
1772
|
+
getType(): ReactionWorkup.ReactionWorkupTypeMap[keyof ReactionWorkup.ReactionWorkupTypeMap];
|
|
1773
|
+
setType(value: ReactionWorkup.ReactionWorkupTypeMap[keyof ReactionWorkup.ReactionWorkupTypeMap]): void;
|
|
1774
|
+
|
|
1775
|
+
getDetails(): string;
|
|
1776
|
+
setDetails(value: string): void;
|
|
1777
|
+
|
|
1778
|
+
hasDuration(): boolean;
|
|
1779
|
+
clearDuration(): void;
|
|
1780
|
+
getDuration(): Time | undefined;
|
|
1781
|
+
setDuration(value?: Time): void;
|
|
1782
|
+
|
|
1783
|
+
hasInput(): boolean;
|
|
1784
|
+
clearInput(): void;
|
|
1785
|
+
getInput(): ReactionInput | undefined;
|
|
1786
|
+
setInput(value?: ReactionInput): void;
|
|
1787
|
+
|
|
1788
|
+
hasAmount(): boolean;
|
|
1789
|
+
clearAmount(): void;
|
|
1790
|
+
getAmount(): Amount | undefined;
|
|
1791
|
+
setAmount(value?: Amount): void;
|
|
1792
|
+
|
|
1793
|
+
hasTemperature(): boolean;
|
|
1794
|
+
clearTemperature(): void;
|
|
1795
|
+
getTemperature(): TemperatureConditions | undefined;
|
|
1796
|
+
setTemperature(value?: TemperatureConditions): void;
|
|
1797
|
+
|
|
1798
|
+
getKeepPhase(): string;
|
|
1799
|
+
setKeepPhase(value: string): void;
|
|
1800
|
+
|
|
1801
|
+
hasStirring(): boolean;
|
|
1802
|
+
clearStirring(): void;
|
|
1803
|
+
getStirring(): StirringConditions | undefined;
|
|
1804
|
+
setStirring(value?: StirringConditions): void;
|
|
1805
|
+
|
|
1806
|
+
hasTargetPh(): boolean;
|
|
1807
|
+
clearTargetPh(): void;
|
|
1808
|
+
getTargetPh(): number;
|
|
1809
|
+
setTargetPh(value: number): void;
|
|
1810
|
+
|
|
1811
|
+
hasIsAutomated(): boolean;
|
|
1812
|
+
clearIsAutomated(): void;
|
|
1813
|
+
getIsAutomated(): boolean;
|
|
1814
|
+
setIsAutomated(value: boolean): void;
|
|
1815
|
+
|
|
1816
|
+
serializeBinary(): Uint8Array;
|
|
1817
|
+
toObject(includeInstance?: boolean): ReactionWorkup.AsObject;
|
|
1818
|
+
static toObject(includeInstance: boolean, msg: ReactionWorkup): ReactionWorkup.AsObject;
|
|
1819
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1820
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1821
|
+
static serializeBinaryToWriter(message: ReactionWorkup, writer: jspb.BinaryWriter): void;
|
|
1822
|
+
static deserializeBinary(bytes: Uint8Array): ReactionWorkup;
|
|
1823
|
+
static deserializeBinaryFromReader(message: ReactionWorkup, reader: jspb.BinaryReader): ReactionWorkup;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
export namespace ReactionWorkup {
|
|
1827
|
+
export type AsObject = {
|
|
1828
|
+
type: ReactionWorkup.ReactionWorkupTypeMap[keyof ReactionWorkup.ReactionWorkupTypeMap],
|
|
1829
|
+
details: string,
|
|
1830
|
+
duration?: Time.AsObject,
|
|
1831
|
+
input?: ReactionInput.AsObject,
|
|
1832
|
+
amount?: Amount.AsObject,
|
|
1833
|
+
temperature?: TemperatureConditions.AsObject,
|
|
1834
|
+
keepPhase: string,
|
|
1835
|
+
stirring?: StirringConditions.AsObject,
|
|
1836
|
+
targetPh: number,
|
|
1837
|
+
isAutomated: boolean,
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
export interface ReactionWorkupTypeMap {
|
|
1841
|
+
UNSPECIFIED: 0;
|
|
1842
|
+
CUSTOM: 1;
|
|
1843
|
+
ADDITION: 2;
|
|
1844
|
+
ALIQUOT: 3;
|
|
1845
|
+
TEMPERATURE: 4;
|
|
1846
|
+
CONCENTRATION: 5;
|
|
1847
|
+
EXTRACTION: 6;
|
|
1848
|
+
FILTRATION: 7;
|
|
1849
|
+
WASH: 8;
|
|
1850
|
+
DRY_IN_VACUUM: 9;
|
|
1851
|
+
DRY_WITH_MATERIAL: 10;
|
|
1852
|
+
FLASH_CHROMATOGRAPHY: 11;
|
|
1853
|
+
OTHER_CHROMATOGRAPHY: 12;
|
|
1854
|
+
SCAVENGING: 13;
|
|
1855
|
+
WAIT: 14;
|
|
1856
|
+
STIRRING: 15;
|
|
1857
|
+
PH_ADJUST: 16;
|
|
1858
|
+
DISSOLUTION: 17;
|
|
1859
|
+
DISTILLATION: 18;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
export const ReactionWorkupType: ReactionWorkupTypeMap;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
export class ReactionOutcome extends jspb.Message {
|
|
1866
|
+
hasReactionTime(): boolean;
|
|
1867
|
+
clearReactionTime(): void;
|
|
1868
|
+
getReactionTime(): Time | undefined;
|
|
1869
|
+
setReactionTime(value?: Time): void;
|
|
1870
|
+
|
|
1871
|
+
hasConversion(): boolean;
|
|
1872
|
+
clearConversion(): void;
|
|
1873
|
+
getConversion(): Percentage | undefined;
|
|
1874
|
+
setConversion(value?: Percentage): void;
|
|
1875
|
+
|
|
1876
|
+
clearProductsList(): void;
|
|
1877
|
+
getProductsList(): Array<ProductCompound>;
|
|
1878
|
+
setProductsList(value: Array<ProductCompound>): void;
|
|
1879
|
+
addProducts(value?: ProductCompound, index?: number): ProductCompound;
|
|
1880
|
+
|
|
1881
|
+
getAnalysesMap(): jspb.Map<string, Analysis>;
|
|
1882
|
+
clearAnalysesMap(): void;
|
|
1883
|
+
serializeBinary(): Uint8Array;
|
|
1884
|
+
toObject(includeInstance?: boolean): ReactionOutcome.AsObject;
|
|
1885
|
+
static toObject(includeInstance: boolean, msg: ReactionOutcome): ReactionOutcome.AsObject;
|
|
1886
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1887
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1888
|
+
static serializeBinaryToWriter(message: ReactionOutcome, writer: jspb.BinaryWriter): void;
|
|
1889
|
+
static deserializeBinary(bytes: Uint8Array): ReactionOutcome;
|
|
1890
|
+
static deserializeBinaryFromReader(message: ReactionOutcome, reader: jspb.BinaryReader): ReactionOutcome;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
export namespace ReactionOutcome {
|
|
1894
|
+
export type AsObject = {
|
|
1895
|
+
reactionTime?: Time.AsObject,
|
|
1896
|
+
conversion?: Percentage.AsObject,
|
|
1897
|
+
productsList: Array<ProductCompound.AsObject>,
|
|
1898
|
+
analysesMap: Array<[string, Analysis.AsObject]>,
|
|
1899
|
+
}
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
export class ProductCompound extends jspb.Message {
|
|
1903
|
+
clearIdentifiersList(): void;
|
|
1904
|
+
getIdentifiersList(): Array<CompoundIdentifier>;
|
|
1905
|
+
setIdentifiersList(value: Array<CompoundIdentifier>): void;
|
|
1906
|
+
addIdentifiers(value?: CompoundIdentifier, index?: number): CompoundIdentifier;
|
|
1907
|
+
|
|
1908
|
+
hasIsDesiredProduct(): boolean;
|
|
1909
|
+
clearIsDesiredProduct(): void;
|
|
1910
|
+
getIsDesiredProduct(): boolean;
|
|
1911
|
+
setIsDesiredProduct(value: boolean): void;
|
|
1912
|
+
|
|
1913
|
+
clearMeasurementsList(): void;
|
|
1914
|
+
getMeasurementsList(): Array<ProductMeasurement>;
|
|
1915
|
+
setMeasurementsList(value: Array<ProductMeasurement>): void;
|
|
1916
|
+
addMeasurements(value?: ProductMeasurement, index?: number): ProductMeasurement;
|
|
1917
|
+
|
|
1918
|
+
getIsolatedColor(): string;
|
|
1919
|
+
setIsolatedColor(value: string): void;
|
|
1920
|
+
|
|
1921
|
+
hasTexture(): boolean;
|
|
1922
|
+
clearTexture(): void;
|
|
1923
|
+
getTexture(): Texture | undefined;
|
|
1924
|
+
setTexture(value?: Texture): void;
|
|
1925
|
+
|
|
1926
|
+
getFeaturesMap(): jspb.Map<string, Data>;
|
|
1927
|
+
clearFeaturesMap(): void;
|
|
1928
|
+
getReactionRole(): ReactionRole.ReactionRoleTypeMap[keyof ReactionRole.ReactionRoleTypeMap];
|
|
1929
|
+
setReactionRole(value: ReactionRole.ReactionRoleTypeMap[keyof ReactionRole.ReactionRoleTypeMap]): void;
|
|
1930
|
+
|
|
1931
|
+
serializeBinary(): Uint8Array;
|
|
1932
|
+
toObject(includeInstance?: boolean): ProductCompound.AsObject;
|
|
1933
|
+
static toObject(includeInstance: boolean, msg: ProductCompound): ProductCompound.AsObject;
|
|
1934
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1935
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1936
|
+
static serializeBinaryToWriter(message: ProductCompound, writer: jspb.BinaryWriter): void;
|
|
1937
|
+
static deserializeBinary(bytes: Uint8Array): ProductCompound;
|
|
1938
|
+
static deserializeBinaryFromReader(message: ProductCompound, reader: jspb.BinaryReader): ProductCompound;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
export namespace ProductCompound {
|
|
1942
|
+
export type AsObject = {
|
|
1943
|
+
identifiersList: Array<CompoundIdentifier.AsObject>,
|
|
1944
|
+
isDesiredProduct: boolean,
|
|
1945
|
+
measurementsList: Array<ProductMeasurement.AsObject>,
|
|
1946
|
+
isolatedColor: string,
|
|
1947
|
+
texture?: Texture.AsObject,
|
|
1948
|
+
featuresMap: Array<[string, Data.AsObject]>,
|
|
1949
|
+
reactionRole: ReactionRole.ReactionRoleTypeMap[keyof ReactionRole.ReactionRoleTypeMap],
|
|
1950
|
+
}
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
export class ProductMeasurement extends jspb.Message {
|
|
1954
|
+
getAnalysisKey(): string;
|
|
1955
|
+
setAnalysisKey(value: string): void;
|
|
1956
|
+
|
|
1957
|
+
getType(): ProductMeasurement.ProductMeasurementTypeMap[keyof ProductMeasurement.ProductMeasurementTypeMap];
|
|
1958
|
+
setType(value: ProductMeasurement.ProductMeasurementTypeMap[keyof ProductMeasurement.ProductMeasurementTypeMap]): void;
|
|
1959
|
+
|
|
1960
|
+
getDetails(): string;
|
|
1961
|
+
setDetails(value: string): void;
|
|
1962
|
+
|
|
1963
|
+
hasUsesInternalStandard(): boolean;
|
|
1964
|
+
clearUsesInternalStandard(): void;
|
|
1965
|
+
getUsesInternalStandard(): boolean;
|
|
1966
|
+
setUsesInternalStandard(value: boolean): void;
|
|
1967
|
+
|
|
1968
|
+
hasIsNormalized(): boolean;
|
|
1969
|
+
clearIsNormalized(): void;
|
|
1970
|
+
getIsNormalized(): boolean;
|
|
1971
|
+
setIsNormalized(value: boolean): void;
|
|
1972
|
+
|
|
1973
|
+
hasUsesAuthenticStandard(): boolean;
|
|
1974
|
+
clearUsesAuthenticStandard(): void;
|
|
1975
|
+
getUsesAuthenticStandard(): boolean;
|
|
1976
|
+
setUsesAuthenticStandard(value: boolean): void;
|
|
1977
|
+
|
|
1978
|
+
hasAuthenticStandard(): boolean;
|
|
1979
|
+
clearAuthenticStandard(): void;
|
|
1980
|
+
getAuthenticStandard(): Compound | undefined;
|
|
1981
|
+
setAuthenticStandard(value?: Compound): void;
|
|
1982
|
+
|
|
1983
|
+
hasPercentage(): boolean;
|
|
1984
|
+
clearPercentage(): void;
|
|
1985
|
+
getPercentage(): Percentage | undefined;
|
|
1986
|
+
setPercentage(value?: Percentage): void;
|
|
1987
|
+
|
|
1988
|
+
hasFloatValue(): boolean;
|
|
1989
|
+
clearFloatValue(): void;
|
|
1990
|
+
getFloatValue(): FloatValue | undefined;
|
|
1991
|
+
setFloatValue(value?: FloatValue): void;
|
|
1992
|
+
|
|
1993
|
+
hasStringValue(): boolean;
|
|
1994
|
+
clearStringValue(): void;
|
|
1995
|
+
getStringValue(): string;
|
|
1996
|
+
setStringValue(value: string): void;
|
|
1997
|
+
|
|
1998
|
+
hasAmount(): boolean;
|
|
1999
|
+
clearAmount(): void;
|
|
2000
|
+
getAmount(): Amount | undefined;
|
|
2001
|
+
setAmount(value?: Amount): void;
|
|
2002
|
+
|
|
2003
|
+
hasRetentionTime(): boolean;
|
|
2004
|
+
clearRetentionTime(): void;
|
|
2005
|
+
getRetentionTime(): Time | undefined;
|
|
2006
|
+
setRetentionTime(value?: Time): void;
|
|
2007
|
+
|
|
2008
|
+
hasMassSpecDetails(): boolean;
|
|
2009
|
+
clearMassSpecDetails(): void;
|
|
2010
|
+
getMassSpecDetails(): ProductMeasurement.MassSpecMeasurementDetails | undefined;
|
|
2011
|
+
setMassSpecDetails(value?: ProductMeasurement.MassSpecMeasurementDetails): void;
|
|
2012
|
+
|
|
2013
|
+
hasSelectivity(): boolean;
|
|
2014
|
+
clearSelectivity(): void;
|
|
2015
|
+
getSelectivity(): ProductMeasurement.Selectivity | undefined;
|
|
2016
|
+
setSelectivity(value?: ProductMeasurement.Selectivity): void;
|
|
2017
|
+
|
|
2018
|
+
hasWavelength(): boolean;
|
|
2019
|
+
clearWavelength(): void;
|
|
2020
|
+
getWavelength(): Wavelength | undefined;
|
|
2021
|
+
setWavelength(value?: Wavelength): void;
|
|
2022
|
+
|
|
2023
|
+
getValueCase(): ProductMeasurement.ValueCase;
|
|
2024
|
+
serializeBinary(): Uint8Array;
|
|
2025
|
+
toObject(includeInstance?: boolean): ProductMeasurement.AsObject;
|
|
2026
|
+
static toObject(includeInstance: boolean, msg: ProductMeasurement): ProductMeasurement.AsObject;
|
|
2027
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2028
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2029
|
+
static serializeBinaryToWriter(message: ProductMeasurement, writer: jspb.BinaryWriter): void;
|
|
2030
|
+
static deserializeBinary(bytes: Uint8Array): ProductMeasurement;
|
|
2031
|
+
static deserializeBinaryFromReader(message: ProductMeasurement, reader: jspb.BinaryReader): ProductMeasurement;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
export namespace ProductMeasurement {
|
|
2035
|
+
export type AsObject = {
|
|
2036
|
+
analysisKey: string,
|
|
2037
|
+
type: ProductMeasurement.ProductMeasurementTypeMap[keyof ProductMeasurement.ProductMeasurementTypeMap],
|
|
2038
|
+
details: string,
|
|
2039
|
+
usesInternalStandard: boolean,
|
|
2040
|
+
isNormalized: boolean,
|
|
2041
|
+
usesAuthenticStandard: boolean,
|
|
2042
|
+
authenticStandard?: Compound.AsObject,
|
|
2043
|
+
percentage?: Percentage.AsObject,
|
|
2044
|
+
floatValue?: FloatValue.AsObject,
|
|
2045
|
+
stringValue: string,
|
|
2046
|
+
amount?: Amount.AsObject,
|
|
2047
|
+
retentionTime?: Time.AsObject,
|
|
2048
|
+
massSpecDetails?: ProductMeasurement.MassSpecMeasurementDetails.AsObject,
|
|
2049
|
+
selectivity?: ProductMeasurement.Selectivity.AsObject,
|
|
2050
|
+
wavelength?: Wavelength.AsObject,
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
export class MassSpecMeasurementDetails extends jspb.Message {
|
|
2054
|
+
getType(): ProductMeasurement.MassSpecMeasurementDetails.MassSpecMeasurementTypeMap[keyof ProductMeasurement.MassSpecMeasurementDetails.MassSpecMeasurementTypeMap];
|
|
2055
|
+
setType(value: ProductMeasurement.MassSpecMeasurementDetails.MassSpecMeasurementTypeMap[keyof ProductMeasurement.MassSpecMeasurementDetails.MassSpecMeasurementTypeMap]): void;
|
|
2056
|
+
|
|
2057
|
+
getDetails(): string;
|
|
2058
|
+
setDetails(value: string): void;
|
|
2059
|
+
|
|
2060
|
+
hasTicMinimumMz(): boolean;
|
|
2061
|
+
clearTicMinimumMz(): void;
|
|
2062
|
+
getTicMinimumMz(): number;
|
|
2063
|
+
setTicMinimumMz(value: number): void;
|
|
2064
|
+
|
|
2065
|
+
hasTicMaximumMz(): boolean;
|
|
2066
|
+
clearTicMaximumMz(): void;
|
|
2067
|
+
getTicMaximumMz(): number;
|
|
2068
|
+
setTicMaximumMz(value: number): void;
|
|
2069
|
+
|
|
2070
|
+
clearEicMassesList(): void;
|
|
2071
|
+
getEicMassesList(): Array<number>;
|
|
2072
|
+
setEicMassesList(value: Array<number>): void;
|
|
2073
|
+
addEicMasses(value: number, index?: number): number;
|
|
2074
|
+
|
|
2075
|
+
serializeBinary(): Uint8Array;
|
|
2076
|
+
toObject(includeInstance?: boolean): MassSpecMeasurementDetails.AsObject;
|
|
2077
|
+
static toObject(includeInstance: boolean, msg: MassSpecMeasurementDetails): MassSpecMeasurementDetails.AsObject;
|
|
2078
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2079
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2080
|
+
static serializeBinaryToWriter(message: MassSpecMeasurementDetails, writer: jspb.BinaryWriter): void;
|
|
2081
|
+
static deserializeBinary(bytes: Uint8Array): MassSpecMeasurementDetails;
|
|
2082
|
+
static deserializeBinaryFromReader(message: MassSpecMeasurementDetails, reader: jspb.BinaryReader): MassSpecMeasurementDetails;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
export namespace MassSpecMeasurementDetails {
|
|
2086
|
+
export type AsObject = {
|
|
2087
|
+
type: ProductMeasurement.MassSpecMeasurementDetails.MassSpecMeasurementTypeMap[keyof ProductMeasurement.MassSpecMeasurementDetails.MassSpecMeasurementTypeMap],
|
|
2088
|
+
details: string,
|
|
2089
|
+
ticMinimumMz: number,
|
|
2090
|
+
ticMaximumMz: number,
|
|
2091
|
+
eicMassesList: Array<number>,
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
export interface MassSpecMeasurementTypeMap {
|
|
2095
|
+
UNSPECIFIED: 0;
|
|
2096
|
+
CUSTOM: 1;
|
|
2097
|
+
TIC: 2;
|
|
2098
|
+
TIC_POSITIVE: 3;
|
|
2099
|
+
TIC_NEGATIVE: 4;
|
|
2100
|
+
EIC: 5;
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
export const MassSpecMeasurementType: MassSpecMeasurementTypeMap;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
export class Selectivity extends jspb.Message {
|
|
2107
|
+
getType(): ProductMeasurement.Selectivity.SelectivityTypeMap[keyof ProductMeasurement.Selectivity.SelectivityTypeMap];
|
|
2108
|
+
setType(value: ProductMeasurement.Selectivity.SelectivityTypeMap[keyof ProductMeasurement.Selectivity.SelectivityTypeMap]): void;
|
|
2109
|
+
|
|
2110
|
+
getDetails(): string;
|
|
2111
|
+
setDetails(value: string): void;
|
|
2112
|
+
|
|
2113
|
+
serializeBinary(): Uint8Array;
|
|
2114
|
+
toObject(includeInstance?: boolean): Selectivity.AsObject;
|
|
2115
|
+
static toObject(includeInstance: boolean, msg: Selectivity): Selectivity.AsObject;
|
|
2116
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2117
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2118
|
+
static serializeBinaryToWriter(message: Selectivity, writer: jspb.BinaryWriter): void;
|
|
2119
|
+
static deserializeBinary(bytes: Uint8Array): Selectivity;
|
|
2120
|
+
static deserializeBinaryFromReader(message: Selectivity, reader: jspb.BinaryReader): Selectivity;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
export namespace Selectivity {
|
|
2124
|
+
export type AsObject = {
|
|
2125
|
+
type: ProductMeasurement.Selectivity.SelectivityTypeMap[keyof ProductMeasurement.Selectivity.SelectivityTypeMap],
|
|
2126
|
+
details: string,
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
export interface SelectivityTypeMap {
|
|
2130
|
+
UNSPECIFIED: 0;
|
|
2131
|
+
CUSTOM: 1;
|
|
2132
|
+
EE: 2;
|
|
2133
|
+
ER: 3;
|
|
2134
|
+
DR: 4;
|
|
2135
|
+
EZ: 5;
|
|
2136
|
+
ZE: 6;
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
export const SelectivityType: SelectivityTypeMap;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
export interface ProductMeasurementTypeMap {
|
|
2143
|
+
UNSPECIFIED: 0;
|
|
2144
|
+
CUSTOM: 1;
|
|
2145
|
+
IDENTITY: 2;
|
|
2146
|
+
YIELD: 3;
|
|
2147
|
+
SELECTIVITY: 4;
|
|
2148
|
+
PURITY: 5;
|
|
2149
|
+
AREA: 6;
|
|
2150
|
+
COUNTS: 7;
|
|
2151
|
+
INTENSITY: 8;
|
|
2152
|
+
AMOUNT: 9;
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
export const ProductMeasurementType: ProductMeasurementTypeMap;
|
|
2156
|
+
|
|
2157
|
+
export enum ValueCase {
|
|
2158
|
+
VALUE_NOT_SET = 0,
|
|
2159
|
+
PERCENTAGE = 8,
|
|
2160
|
+
FLOAT_VALUE = 9,
|
|
2161
|
+
STRING_VALUE = 10,
|
|
2162
|
+
AMOUNT = 11,
|
|
2163
|
+
}
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
export class DateTime extends jspb.Message {
|
|
2167
|
+
getValue(): string;
|
|
2168
|
+
setValue(value: string): void;
|
|
2169
|
+
|
|
2170
|
+
serializeBinary(): Uint8Array;
|
|
2171
|
+
toObject(includeInstance?: boolean): DateTime.AsObject;
|
|
2172
|
+
static toObject(includeInstance: boolean, msg: DateTime): DateTime.AsObject;
|
|
2173
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2174
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2175
|
+
static serializeBinaryToWriter(message: DateTime, writer: jspb.BinaryWriter): void;
|
|
2176
|
+
static deserializeBinary(bytes: Uint8Array): DateTime;
|
|
2177
|
+
static deserializeBinaryFromReader(message: DateTime, reader: jspb.BinaryReader): DateTime;
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
export namespace DateTime {
|
|
2181
|
+
export type AsObject = {
|
|
2182
|
+
value: string,
|
|
2183
|
+
}
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
export class Analysis extends jspb.Message {
|
|
2187
|
+
getType(): Analysis.AnalysisTypeMap[keyof Analysis.AnalysisTypeMap];
|
|
2188
|
+
setType(value: Analysis.AnalysisTypeMap[keyof Analysis.AnalysisTypeMap]): void;
|
|
2189
|
+
|
|
2190
|
+
getDetails(): string;
|
|
2191
|
+
setDetails(value: string): void;
|
|
2192
|
+
|
|
2193
|
+
getChmoId(): number;
|
|
2194
|
+
setChmoId(value: number): void;
|
|
2195
|
+
|
|
2196
|
+
hasIsOfIsolatedSpecies(): boolean;
|
|
2197
|
+
clearIsOfIsolatedSpecies(): void;
|
|
2198
|
+
getIsOfIsolatedSpecies(): boolean;
|
|
2199
|
+
setIsOfIsolatedSpecies(value: boolean): void;
|
|
2200
|
+
|
|
2201
|
+
getDataMap(): jspb.Map<string, Data>;
|
|
2202
|
+
clearDataMap(): void;
|
|
2203
|
+
getInstrumentManufacturer(): string;
|
|
2204
|
+
setInstrumentManufacturer(value: string): void;
|
|
2205
|
+
|
|
2206
|
+
hasInstrumentLastCalibrated(): boolean;
|
|
2207
|
+
clearInstrumentLastCalibrated(): void;
|
|
2208
|
+
getInstrumentLastCalibrated(): DateTime | undefined;
|
|
2209
|
+
setInstrumentLastCalibrated(value?: DateTime): void;
|
|
2210
|
+
|
|
2211
|
+
serializeBinary(): Uint8Array;
|
|
2212
|
+
toObject(includeInstance?: boolean): Analysis.AsObject;
|
|
2213
|
+
static toObject(includeInstance: boolean, msg: Analysis): Analysis.AsObject;
|
|
2214
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2215
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2216
|
+
static serializeBinaryToWriter(message: Analysis, writer: jspb.BinaryWriter): void;
|
|
2217
|
+
static deserializeBinary(bytes: Uint8Array): Analysis;
|
|
2218
|
+
static deserializeBinaryFromReader(message: Analysis, reader: jspb.BinaryReader): Analysis;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
export namespace Analysis {
|
|
2222
|
+
export type AsObject = {
|
|
2223
|
+
type: Analysis.AnalysisTypeMap[keyof Analysis.AnalysisTypeMap],
|
|
2224
|
+
details: string,
|
|
2225
|
+
chmoId: number,
|
|
2226
|
+
isOfIsolatedSpecies: boolean,
|
|
2227
|
+
dataMap: Array<[string, Data.AsObject]>,
|
|
2228
|
+
instrumentManufacturer: string,
|
|
2229
|
+
instrumentLastCalibrated?: DateTime.AsObject,
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
export interface AnalysisTypeMap {
|
|
2233
|
+
UNSPECIFIED: 0;
|
|
2234
|
+
CUSTOM: 1;
|
|
2235
|
+
LC: 2;
|
|
2236
|
+
GC: 3;
|
|
2237
|
+
IR: 4;
|
|
2238
|
+
NMR_1H: 5;
|
|
2239
|
+
NMR_13C: 6;
|
|
2240
|
+
NMR_OTHER: 7;
|
|
2241
|
+
MP: 8;
|
|
2242
|
+
UV: 9;
|
|
2243
|
+
TLC: 10;
|
|
2244
|
+
MS: 11;
|
|
2245
|
+
HRMS: 12;
|
|
2246
|
+
MSMS: 13;
|
|
2247
|
+
WEIGHT: 14;
|
|
2248
|
+
LCMS: 15;
|
|
2249
|
+
GCMS: 16;
|
|
2250
|
+
ELSD: 17;
|
|
2251
|
+
CD: 18;
|
|
2252
|
+
SFC: 19;
|
|
2253
|
+
EPR: 20;
|
|
2254
|
+
XRD: 21;
|
|
2255
|
+
RAMAN: 22;
|
|
2256
|
+
ED: 23;
|
|
2257
|
+
OPTICAL_ROTATION: 24;
|
|
2258
|
+
CAD: 25;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
export const AnalysisType: AnalysisTypeMap;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
export class ReactionProvenance extends jspb.Message {
|
|
2265
|
+
hasExperimenter(): boolean;
|
|
2266
|
+
clearExperimenter(): void;
|
|
2267
|
+
getExperimenter(): Person | undefined;
|
|
2268
|
+
setExperimenter(value?: Person): void;
|
|
2269
|
+
|
|
2270
|
+
getCity(): string;
|
|
2271
|
+
setCity(value: string): void;
|
|
2272
|
+
|
|
2273
|
+
hasExperimentStart(): boolean;
|
|
2274
|
+
clearExperimentStart(): void;
|
|
2275
|
+
getExperimentStart(): DateTime | undefined;
|
|
2276
|
+
setExperimentStart(value?: DateTime): void;
|
|
2277
|
+
|
|
2278
|
+
getDoi(): string;
|
|
2279
|
+
setDoi(value: string): void;
|
|
2280
|
+
|
|
2281
|
+
getPatent(): string;
|
|
2282
|
+
setPatent(value: string): void;
|
|
2283
|
+
|
|
2284
|
+
getPublicationUrl(): string;
|
|
2285
|
+
setPublicationUrl(value: string): void;
|
|
2286
|
+
|
|
2287
|
+
hasRecordCreated(): boolean;
|
|
2288
|
+
clearRecordCreated(): void;
|
|
2289
|
+
getRecordCreated(): RecordEvent | undefined;
|
|
2290
|
+
setRecordCreated(value?: RecordEvent): void;
|
|
2291
|
+
|
|
2292
|
+
clearRecordModifiedList(): void;
|
|
2293
|
+
getRecordModifiedList(): Array<RecordEvent>;
|
|
2294
|
+
setRecordModifiedList(value: Array<RecordEvent>): void;
|
|
2295
|
+
addRecordModified(value?: RecordEvent, index?: number): RecordEvent;
|
|
2296
|
+
|
|
2297
|
+
getReactionMetadataMap(): jspb.Map<string, Data>;
|
|
2298
|
+
clearReactionMetadataMap(): void;
|
|
2299
|
+
hasIsMined(): boolean;
|
|
2300
|
+
clearIsMined(): void;
|
|
2301
|
+
getIsMined(): boolean;
|
|
2302
|
+
setIsMined(value: boolean): void;
|
|
2303
|
+
|
|
2304
|
+
serializeBinary(): Uint8Array;
|
|
2305
|
+
toObject(includeInstance?: boolean): ReactionProvenance.AsObject;
|
|
2306
|
+
static toObject(includeInstance: boolean, msg: ReactionProvenance): ReactionProvenance.AsObject;
|
|
2307
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2308
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2309
|
+
static serializeBinaryToWriter(message: ReactionProvenance, writer: jspb.BinaryWriter): void;
|
|
2310
|
+
static deserializeBinary(bytes: Uint8Array): ReactionProvenance;
|
|
2311
|
+
static deserializeBinaryFromReader(message: ReactionProvenance, reader: jspb.BinaryReader): ReactionProvenance;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
export namespace ReactionProvenance {
|
|
2315
|
+
export type AsObject = {
|
|
2316
|
+
experimenter?: Person.AsObject,
|
|
2317
|
+
city: string,
|
|
2318
|
+
experimentStart?: DateTime.AsObject,
|
|
2319
|
+
doi: string,
|
|
2320
|
+
patent: string,
|
|
2321
|
+
publicationUrl: string,
|
|
2322
|
+
recordCreated?: RecordEvent.AsObject,
|
|
2323
|
+
recordModifiedList: Array<RecordEvent.AsObject>,
|
|
2324
|
+
reactionMetadataMap: Array<[string, Data.AsObject]>,
|
|
2325
|
+
isMined: boolean,
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
|
|
2329
|
+
export class Person extends jspb.Message {
|
|
2330
|
+
getUsername(): string;
|
|
2331
|
+
setUsername(value: string): void;
|
|
2332
|
+
|
|
2333
|
+
getName(): string;
|
|
2334
|
+
setName(value: string): void;
|
|
2335
|
+
|
|
2336
|
+
getOrcid(): string;
|
|
2337
|
+
setOrcid(value: string): void;
|
|
2338
|
+
|
|
2339
|
+
getOrganization(): string;
|
|
2340
|
+
setOrganization(value: string): void;
|
|
2341
|
+
|
|
2342
|
+
getEmail(): string;
|
|
2343
|
+
setEmail(value: string): void;
|
|
2344
|
+
|
|
2345
|
+
serializeBinary(): Uint8Array;
|
|
2346
|
+
toObject(includeInstance?: boolean): Person.AsObject;
|
|
2347
|
+
static toObject(includeInstance: boolean, msg: Person): Person.AsObject;
|
|
2348
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2349
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2350
|
+
static serializeBinaryToWriter(message: Person, writer: jspb.BinaryWriter): void;
|
|
2351
|
+
static deserializeBinary(bytes: Uint8Array): Person;
|
|
2352
|
+
static deserializeBinaryFromReader(message: Person, reader: jspb.BinaryReader): Person;
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
export namespace Person {
|
|
2356
|
+
export type AsObject = {
|
|
2357
|
+
username: string,
|
|
2358
|
+
name: string,
|
|
2359
|
+
orcid: string,
|
|
2360
|
+
organization: string,
|
|
2361
|
+
email: string,
|
|
2362
|
+
}
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
export class RecordEvent extends jspb.Message {
|
|
2366
|
+
hasTime(): boolean;
|
|
2367
|
+
clearTime(): void;
|
|
2368
|
+
getTime(): DateTime | undefined;
|
|
2369
|
+
setTime(value?: DateTime): void;
|
|
2370
|
+
|
|
2371
|
+
hasPerson(): boolean;
|
|
2372
|
+
clearPerson(): void;
|
|
2373
|
+
getPerson(): Person | undefined;
|
|
2374
|
+
setPerson(value?: Person): void;
|
|
2375
|
+
|
|
2376
|
+
getDetails(): string;
|
|
2377
|
+
setDetails(value: string): void;
|
|
2378
|
+
|
|
2379
|
+
serializeBinary(): Uint8Array;
|
|
2380
|
+
toObject(includeInstance?: boolean): RecordEvent.AsObject;
|
|
2381
|
+
static toObject(includeInstance: boolean, msg: RecordEvent): RecordEvent.AsObject;
|
|
2382
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2383
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2384
|
+
static serializeBinaryToWriter(message: RecordEvent, writer: jspb.BinaryWriter): void;
|
|
2385
|
+
static deserializeBinary(bytes: Uint8Array): RecordEvent;
|
|
2386
|
+
static deserializeBinaryFromReader(message: RecordEvent, reader: jspb.BinaryReader): RecordEvent;
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
export namespace RecordEvent {
|
|
2390
|
+
export type AsObject = {
|
|
2391
|
+
time?: DateTime.AsObject,
|
|
2392
|
+
person?: Person.AsObject,
|
|
2393
|
+
details: string,
|
|
2394
|
+
}
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2397
|
+
export class Time extends jspb.Message {
|
|
2398
|
+
hasValue(): boolean;
|
|
2399
|
+
clearValue(): void;
|
|
2400
|
+
getValue(): number;
|
|
2401
|
+
setValue(value: number): void;
|
|
2402
|
+
|
|
2403
|
+
hasPrecision(): boolean;
|
|
2404
|
+
clearPrecision(): void;
|
|
2405
|
+
getPrecision(): number;
|
|
2406
|
+
setPrecision(value: number): void;
|
|
2407
|
+
|
|
2408
|
+
getUnits(): Time.TimeUnitMap[keyof Time.TimeUnitMap];
|
|
2409
|
+
setUnits(value: Time.TimeUnitMap[keyof Time.TimeUnitMap]): void;
|
|
2410
|
+
|
|
2411
|
+
serializeBinary(): Uint8Array;
|
|
2412
|
+
toObject(includeInstance?: boolean): Time.AsObject;
|
|
2413
|
+
static toObject(includeInstance: boolean, msg: Time): Time.AsObject;
|
|
2414
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2415
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2416
|
+
static serializeBinaryToWriter(message: Time, writer: jspb.BinaryWriter): void;
|
|
2417
|
+
static deserializeBinary(bytes: Uint8Array): Time;
|
|
2418
|
+
static deserializeBinaryFromReader(message: Time, reader: jspb.BinaryReader): Time;
|
|
2419
|
+
}
|
|
2420
|
+
|
|
2421
|
+
export namespace Time {
|
|
2422
|
+
export type AsObject = {
|
|
2423
|
+
value: number,
|
|
2424
|
+
precision: number,
|
|
2425
|
+
units: Time.TimeUnitMap[keyof Time.TimeUnitMap],
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
export interface TimeUnitMap {
|
|
2429
|
+
UNSPECIFIED: 0;
|
|
2430
|
+
DAY: 4;
|
|
2431
|
+
HOUR: 1;
|
|
2432
|
+
MINUTE: 2;
|
|
2433
|
+
SECOND: 3;
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
export const TimeUnit: TimeUnitMap;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
export class Mass extends jspb.Message {
|
|
2440
|
+
hasValue(): boolean;
|
|
2441
|
+
clearValue(): void;
|
|
2442
|
+
getValue(): number;
|
|
2443
|
+
setValue(value: number): void;
|
|
2444
|
+
|
|
2445
|
+
hasPrecision(): boolean;
|
|
2446
|
+
clearPrecision(): void;
|
|
2447
|
+
getPrecision(): number;
|
|
2448
|
+
setPrecision(value: number): void;
|
|
2449
|
+
|
|
2450
|
+
getUnits(): Mass.MassUnitMap[keyof Mass.MassUnitMap];
|
|
2451
|
+
setUnits(value: Mass.MassUnitMap[keyof Mass.MassUnitMap]): void;
|
|
2452
|
+
|
|
2453
|
+
serializeBinary(): Uint8Array;
|
|
2454
|
+
toObject(includeInstance?: boolean): Mass.AsObject;
|
|
2455
|
+
static toObject(includeInstance: boolean, msg: Mass): Mass.AsObject;
|
|
2456
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2457
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2458
|
+
static serializeBinaryToWriter(message: Mass, writer: jspb.BinaryWriter): void;
|
|
2459
|
+
static deserializeBinary(bytes: Uint8Array): Mass;
|
|
2460
|
+
static deserializeBinaryFromReader(message: Mass, reader: jspb.BinaryReader): Mass;
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
export namespace Mass {
|
|
2464
|
+
export type AsObject = {
|
|
2465
|
+
value: number,
|
|
2466
|
+
precision: number,
|
|
2467
|
+
units: Mass.MassUnitMap[keyof Mass.MassUnitMap],
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
export interface MassUnitMap {
|
|
2471
|
+
UNSPECIFIED: 0;
|
|
2472
|
+
KILOGRAM: 1;
|
|
2473
|
+
GRAM: 2;
|
|
2474
|
+
MILLIGRAM: 3;
|
|
2475
|
+
MICROGRAM: 4;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
export const MassUnit: MassUnitMap;
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2481
|
+
export class Moles extends jspb.Message {
|
|
2482
|
+
hasValue(): boolean;
|
|
2483
|
+
clearValue(): void;
|
|
2484
|
+
getValue(): number;
|
|
2485
|
+
setValue(value: number): void;
|
|
2486
|
+
|
|
2487
|
+
hasPrecision(): boolean;
|
|
2488
|
+
clearPrecision(): void;
|
|
2489
|
+
getPrecision(): number;
|
|
2490
|
+
setPrecision(value: number): void;
|
|
2491
|
+
|
|
2492
|
+
getUnits(): Moles.MolesUnitMap[keyof Moles.MolesUnitMap];
|
|
2493
|
+
setUnits(value: Moles.MolesUnitMap[keyof Moles.MolesUnitMap]): void;
|
|
2494
|
+
|
|
2495
|
+
serializeBinary(): Uint8Array;
|
|
2496
|
+
toObject(includeInstance?: boolean): Moles.AsObject;
|
|
2497
|
+
static toObject(includeInstance: boolean, msg: Moles): Moles.AsObject;
|
|
2498
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2499
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2500
|
+
static serializeBinaryToWriter(message: Moles, writer: jspb.BinaryWriter): void;
|
|
2501
|
+
static deserializeBinary(bytes: Uint8Array): Moles;
|
|
2502
|
+
static deserializeBinaryFromReader(message: Moles, reader: jspb.BinaryReader): Moles;
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
export namespace Moles {
|
|
2506
|
+
export type AsObject = {
|
|
2507
|
+
value: number,
|
|
2508
|
+
precision: number,
|
|
2509
|
+
units: Moles.MolesUnitMap[keyof Moles.MolesUnitMap],
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
export interface MolesUnitMap {
|
|
2513
|
+
UNSPECIFIED: 0;
|
|
2514
|
+
MOLE: 1;
|
|
2515
|
+
MILLIMOLE: 2;
|
|
2516
|
+
MICROMOLE: 3;
|
|
2517
|
+
NANOMOLE: 4;
|
|
2518
|
+
}
|
|
2519
|
+
|
|
2520
|
+
export const MolesUnit: MolesUnitMap;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
export class Volume extends jspb.Message {
|
|
2524
|
+
hasValue(): boolean;
|
|
2525
|
+
clearValue(): void;
|
|
2526
|
+
getValue(): number;
|
|
2527
|
+
setValue(value: number): void;
|
|
2528
|
+
|
|
2529
|
+
hasPrecision(): boolean;
|
|
2530
|
+
clearPrecision(): void;
|
|
2531
|
+
getPrecision(): number;
|
|
2532
|
+
setPrecision(value: number): void;
|
|
2533
|
+
|
|
2534
|
+
getUnits(): Volume.VolumeUnitMap[keyof Volume.VolumeUnitMap];
|
|
2535
|
+
setUnits(value: Volume.VolumeUnitMap[keyof Volume.VolumeUnitMap]): void;
|
|
2536
|
+
|
|
2537
|
+
serializeBinary(): Uint8Array;
|
|
2538
|
+
toObject(includeInstance?: boolean): Volume.AsObject;
|
|
2539
|
+
static toObject(includeInstance: boolean, msg: Volume): Volume.AsObject;
|
|
2540
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2541
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2542
|
+
static serializeBinaryToWriter(message: Volume, writer: jspb.BinaryWriter): void;
|
|
2543
|
+
static deserializeBinary(bytes: Uint8Array): Volume;
|
|
2544
|
+
static deserializeBinaryFromReader(message: Volume, reader: jspb.BinaryReader): Volume;
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
export namespace Volume {
|
|
2548
|
+
export type AsObject = {
|
|
2549
|
+
value: number,
|
|
2550
|
+
precision: number,
|
|
2551
|
+
units: Volume.VolumeUnitMap[keyof Volume.VolumeUnitMap],
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2554
|
+
export interface VolumeUnitMap {
|
|
2555
|
+
UNSPECIFIED: 0;
|
|
2556
|
+
LITER: 1;
|
|
2557
|
+
MILLILITER: 2;
|
|
2558
|
+
MICROLITER: 3;
|
|
2559
|
+
NANOLITER: 4;
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
export const VolumeUnit: VolumeUnitMap;
|
|
2563
|
+
}
|
|
2564
|
+
|
|
2565
|
+
export class Concentration extends jspb.Message {
|
|
2566
|
+
hasValue(): boolean;
|
|
2567
|
+
clearValue(): void;
|
|
2568
|
+
getValue(): number;
|
|
2569
|
+
setValue(value: number): void;
|
|
2570
|
+
|
|
2571
|
+
hasPrecision(): boolean;
|
|
2572
|
+
clearPrecision(): void;
|
|
2573
|
+
getPrecision(): number;
|
|
2574
|
+
setPrecision(value: number): void;
|
|
2575
|
+
|
|
2576
|
+
getUnits(): Concentration.ConcentrationUnitMap[keyof Concentration.ConcentrationUnitMap];
|
|
2577
|
+
setUnits(value: Concentration.ConcentrationUnitMap[keyof Concentration.ConcentrationUnitMap]): void;
|
|
2578
|
+
|
|
2579
|
+
serializeBinary(): Uint8Array;
|
|
2580
|
+
toObject(includeInstance?: boolean): Concentration.AsObject;
|
|
2581
|
+
static toObject(includeInstance: boolean, msg: Concentration): Concentration.AsObject;
|
|
2582
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2583
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2584
|
+
static serializeBinaryToWriter(message: Concentration, writer: jspb.BinaryWriter): void;
|
|
2585
|
+
static deserializeBinary(bytes: Uint8Array): Concentration;
|
|
2586
|
+
static deserializeBinaryFromReader(message: Concentration, reader: jspb.BinaryReader): Concentration;
|
|
2587
|
+
}
|
|
2588
|
+
|
|
2589
|
+
export namespace Concentration {
|
|
2590
|
+
export type AsObject = {
|
|
2591
|
+
value: number,
|
|
2592
|
+
precision: number,
|
|
2593
|
+
units: Concentration.ConcentrationUnitMap[keyof Concentration.ConcentrationUnitMap],
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
export interface ConcentrationUnitMap {
|
|
2597
|
+
UNSPECIFIED: 0;
|
|
2598
|
+
MOLAR: 1;
|
|
2599
|
+
MILLIMOLAR: 2;
|
|
2600
|
+
MICROMOLAR: 3;
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
export const ConcentrationUnit: ConcentrationUnitMap;
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
export class Pressure extends jspb.Message {
|
|
2607
|
+
hasValue(): boolean;
|
|
2608
|
+
clearValue(): void;
|
|
2609
|
+
getValue(): number;
|
|
2610
|
+
setValue(value: number): void;
|
|
2611
|
+
|
|
2612
|
+
hasPrecision(): boolean;
|
|
2613
|
+
clearPrecision(): void;
|
|
2614
|
+
getPrecision(): number;
|
|
2615
|
+
setPrecision(value: number): void;
|
|
2616
|
+
|
|
2617
|
+
getUnits(): Pressure.PressureUnitMap[keyof Pressure.PressureUnitMap];
|
|
2618
|
+
setUnits(value: Pressure.PressureUnitMap[keyof Pressure.PressureUnitMap]): void;
|
|
2619
|
+
|
|
2620
|
+
serializeBinary(): Uint8Array;
|
|
2621
|
+
toObject(includeInstance?: boolean): Pressure.AsObject;
|
|
2622
|
+
static toObject(includeInstance: boolean, msg: Pressure): Pressure.AsObject;
|
|
2623
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2624
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2625
|
+
static serializeBinaryToWriter(message: Pressure, writer: jspb.BinaryWriter): void;
|
|
2626
|
+
static deserializeBinary(bytes: Uint8Array): Pressure;
|
|
2627
|
+
static deserializeBinaryFromReader(message: Pressure, reader: jspb.BinaryReader): Pressure;
|
|
2628
|
+
}
|
|
2629
|
+
|
|
2630
|
+
export namespace Pressure {
|
|
2631
|
+
export type AsObject = {
|
|
2632
|
+
value: number,
|
|
2633
|
+
precision: number,
|
|
2634
|
+
units: Pressure.PressureUnitMap[keyof Pressure.PressureUnitMap],
|
|
2635
|
+
}
|
|
2636
|
+
|
|
2637
|
+
export interface PressureUnitMap {
|
|
2638
|
+
UNSPECIFIED: 0;
|
|
2639
|
+
BAR: 1;
|
|
2640
|
+
ATMOSPHERE: 2;
|
|
2641
|
+
PSI: 3;
|
|
2642
|
+
KPSI: 4;
|
|
2643
|
+
PASCAL: 5;
|
|
2644
|
+
KILOPASCAL: 6;
|
|
2645
|
+
TORR: 7;
|
|
2646
|
+
MM_HG: 8;
|
|
2647
|
+
}
|
|
2648
|
+
|
|
2649
|
+
export const PressureUnit: PressureUnitMap;
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
export class Temperature extends jspb.Message {
|
|
2653
|
+
hasValue(): boolean;
|
|
2654
|
+
clearValue(): void;
|
|
2655
|
+
getValue(): number;
|
|
2656
|
+
setValue(value: number): void;
|
|
2657
|
+
|
|
2658
|
+
hasPrecision(): boolean;
|
|
2659
|
+
clearPrecision(): void;
|
|
2660
|
+
getPrecision(): number;
|
|
2661
|
+
setPrecision(value: number): void;
|
|
2662
|
+
|
|
2663
|
+
getUnits(): Temperature.TemperatureUnitMap[keyof Temperature.TemperatureUnitMap];
|
|
2664
|
+
setUnits(value: Temperature.TemperatureUnitMap[keyof Temperature.TemperatureUnitMap]): void;
|
|
2665
|
+
|
|
2666
|
+
serializeBinary(): Uint8Array;
|
|
2667
|
+
toObject(includeInstance?: boolean): Temperature.AsObject;
|
|
2668
|
+
static toObject(includeInstance: boolean, msg: Temperature): Temperature.AsObject;
|
|
2669
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2670
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2671
|
+
static serializeBinaryToWriter(message: Temperature, writer: jspb.BinaryWriter): void;
|
|
2672
|
+
static deserializeBinary(bytes: Uint8Array): Temperature;
|
|
2673
|
+
static deserializeBinaryFromReader(message: Temperature, reader: jspb.BinaryReader): Temperature;
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
export namespace Temperature {
|
|
2677
|
+
export type AsObject = {
|
|
2678
|
+
value: number,
|
|
2679
|
+
precision: number,
|
|
2680
|
+
units: Temperature.TemperatureUnitMap[keyof Temperature.TemperatureUnitMap],
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
export interface TemperatureUnitMap {
|
|
2684
|
+
UNSPECIFIED: 0;
|
|
2685
|
+
CELSIUS: 1;
|
|
2686
|
+
FAHRENHEIT: 2;
|
|
2687
|
+
KELVIN: 3;
|
|
2688
|
+
}
|
|
2689
|
+
|
|
2690
|
+
export const TemperatureUnit: TemperatureUnitMap;
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2693
|
+
export class Current extends jspb.Message {
|
|
2694
|
+
hasValue(): boolean;
|
|
2695
|
+
clearValue(): void;
|
|
2696
|
+
getValue(): number;
|
|
2697
|
+
setValue(value: number): void;
|
|
2698
|
+
|
|
2699
|
+
hasPrecision(): boolean;
|
|
2700
|
+
clearPrecision(): void;
|
|
2701
|
+
getPrecision(): number;
|
|
2702
|
+
setPrecision(value: number): void;
|
|
2703
|
+
|
|
2704
|
+
getUnits(): Current.CurrentUnitMap[keyof Current.CurrentUnitMap];
|
|
2705
|
+
setUnits(value: Current.CurrentUnitMap[keyof Current.CurrentUnitMap]): void;
|
|
2706
|
+
|
|
2707
|
+
serializeBinary(): Uint8Array;
|
|
2708
|
+
toObject(includeInstance?: boolean): Current.AsObject;
|
|
2709
|
+
static toObject(includeInstance: boolean, msg: Current): Current.AsObject;
|
|
2710
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2711
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2712
|
+
static serializeBinaryToWriter(message: Current, writer: jspb.BinaryWriter): void;
|
|
2713
|
+
static deserializeBinary(bytes: Uint8Array): Current;
|
|
2714
|
+
static deserializeBinaryFromReader(message: Current, reader: jspb.BinaryReader): Current;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
export namespace Current {
|
|
2718
|
+
export type AsObject = {
|
|
2719
|
+
value: number,
|
|
2720
|
+
precision: number,
|
|
2721
|
+
units: Current.CurrentUnitMap[keyof Current.CurrentUnitMap],
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
export interface CurrentUnitMap {
|
|
2725
|
+
UNSPECIFIED: 0;
|
|
2726
|
+
AMPERE: 1;
|
|
2727
|
+
MILLIAMPERE: 2;
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
export const CurrentUnit: CurrentUnitMap;
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2733
|
+
export class Voltage extends jspb.Message {
|
|
2734
|
+
hasValue(): boolean;
|
|
2735
|
+
clearValue(): void;
|
|
2736
|
+
getValue(): number;
|
|
2737
|
+
setValue(value: number): void;
|
|
2738
|
+
|
|
2739
|
+
hasPrecision(): boolean;
|
|
2740
|
+
clearPrecision(): void;
|
|
2741
|
+
getPrecision(): number;
|
|
2742
|
+
setPrecision(value: number): void;
|
|
2743
|
+
|
|
2744
|
+
getUnits(): Voltage.VoltageUnitMap[keyof Voltage.VoltageUnitMap];
|
|
2745
|
+
setUnits(value: Voltage.VoltageUnitMap[keyof Voltage.VoltageUnitMap]): void;
|
|
2746
|
+
|
|
2747
|
+
serializeBinary(): Uint8Array;
|
|
2748
|
+
toObject(includeInstance?: boolean): Voltage.AsObject;
|
|
2749
|
+
static toObject(includeInstance: boolean, msg: Voltage): Voltage.AsObject;
|
|
2750
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2751
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2752
|
+
static serializeBinaryToWriter(message: Voltage, writer: jspb.BinaryWriter): void;
|
|
2753
|
+
static deserializeBinary(bytes: Uint8Array): Voltage;
|
|
2754
|
+
static deserializeBinaryFromReader(message: Voltage, reader: jspb.BinaryReader): Voltage;
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2757
|
+
export namespace Voltage {
|
|
2758
|
+
export type AsObject = {
|
|
2759
|
+
value: number,
|
|
2760
|
+
precision: number,
|
|
2761
|
+
units: Voltage.VoltageUnitMap[keyof Voltage.VoltageUnitMap],
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
export interface VoltageUnitMap {
|
|
2765
|
+
UNSPECIFIED: 0;
|
|
2766
|
+
VOLT: 1;
|
|
2767
|
+
MILLIVOLT: 2;
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
export const VoltageUnit: VoltageUnitMap;
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2773
|
+
export class Length extends jspb.Message {
|
|
2774
|
+
hasValue(): boolean;
|
|
2775
|
+
clearValue(): void;
|
|
2776
|
+
getValue(): number;
|
|
2777
|
+
setValue(value: number): void;
|
|
2778
|
+
|
|
2779
|
+
hasPrecision(): boolean;
|
|
2780
|
+
clearPrecision(): void;
|
|
2781
|
+
getPrecision(): number;
|
|
2782
|
+
setPrecision(value: number): void;
|
|
2783
|
+
|
|
2784
|
+
getUnits(): Length.LengthUnitMap[keyof Length.LengthUnitMap];
|
|
2785
|
+
setUnits(value: Length.LengthUnitMap[keyof Length.LengthUnitMap]): void;
|
|
2786
|
+
|
|
2787
|
+
serializeBinary(): Uint8Array;
|
|
2788
|
+
toObject(includeInstance?: boolean): Length.AsObject;
|
|
2789
|
+
static toObject(includeInstance: boolean, msg: Length): Length.AsObject;
|
|
2790
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2791
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2792
|
+
static serializeBinaryToWriter(message: Length, writer: jspb.BinaryWriter): void;
|
|
2793
|
+
static deserializeBinary(bytes: Uint8Array): Length;
|
|
2794
|
+
static deserializeBinaryFromReader(message: Length, reader: jspb.BinaryReader): Length;
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
export namespace Length {
|
|
2798
|
+
export type AsObject = {
|
|
2799
|
+
value: number,
|
|
2800
|
+
precision: number,
|
|
2801
|
+
units: Length.LengthUnitMap[keyof Length.LengthUnitMap],
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
export interface LengthUnitMap {
|
|
2805
|
+
UNSPECIFIED: 0;
|
|
2806
|
+
CENTIMETER: 1;
|
|
2807
|
+
MILLIMETER: 2;
|
|
2808
|
+
METER: 3;
|
|
2809
|
+
INCH: 4;
|
|
2810
|
+
FOOT: 5;
|
|
2811
|
+
}
|
|
2812
|
+
|
|
2813
|
+
export const LengthUnit: LengthUnitMap;
|
|
2814
|
+
}
|
|
2815
|
+
|
|
2816
|
+
export class Wavelength extends jspb.Message {
|
|
2817
|
+
hasValue(): boolean;
|
|
2818
|
+
clearValue(): void;
|
|
2819
|
+
getValue(): number;
|
|
2820
|
+
setValue(value: number): void;
|
|
2821
|
+
|
|
2822
|
+
hasPrecision(): boolean;
|
|
2823
|
+
clearPrecision(): void;
|
|
2824
|
+
getPrecision(): number;
|
|
2825
|
+
setPrecision(value: number): void;
|
|
2826
|
+
|
|
2827
|
+
getUnits(): Wavelength.WavelengthUnitMap[keyof Wavelength.WavelengthUnitMap];
|
|
2828
|
+
setUnits(value: Wavelength.WavelengthUnitMap[keyof Wavelength.WavelengthUnitMap]): void;
|
|
2829
|
+
|
|
2830
|
+
serializeBinary(): Uint8Array;
|
|
2831
|
+
toObject(includeInstance?: boolean): Wavelength.AsObject;
|
|
2832
|
+
static toObject(includeInstance: boolean, msg: Wavelength): Wavelength.AsObject;
|
|
2833
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2834
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2835
|
+
static serializeBinaryToWriter(message: Wavelength, writer: jspb.BinaryWriter): void;
|
|
2836
|
+
static deserializeBinary(bytes: Uint8Array): Wavelength;
|
|
2837
|
+
static deserializeBinaryFromReader(message: Wavelength, reader: jspb.BinaryReader): Wavelength;
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
export namespace Wavelength {
|
|
2841
|
+
export type AsObject = {
|
|
2842
|
+
value: number,
|
|
2843
|
+
precision: number,
|
|
2844
|
+
units: Wavelength.WavelengthUnitMap[keyof Wavelength.WavelengthUnitMap],
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2847
|
+
export interface WavelengthUnitMap {
|
|
2848
|
+
UNSPECIFIED: 0;
|
|
2849
|
+
NANOMETER: 1;
|
|
2850
|
+
WAVENUMBER: 2;
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
export const WavelengthUnit: WavelengthUnitMap;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
export class FlowRate extends jspb.Message {
|
|
2857
|
+
hasValue(): boolean;
|
|
2858
|
+
clearValue(): void;
|
|
2859
|
+
getValue(): number;
|
|
2860
|
+
setValue(value: number): void;
|
|
2861
|
+
|
|
2862
|
+
hasPrecision(): boolean;
|
|
2863
|
+
clearPrecision(): void;
|
|
2864
|
+
getPrecision(): number;
|
|
2865
|
+
setPrecision(value: number): void;
|
|
2866
|
+
|
|
2867
|
+
getUnits(): FlowRate.FlowRateUnitMap[keyof FlowRate.FlowRateUnitMap];
|
|
2868
|
+
setUnits(value: FlowRate.FlowRateUnitMap[keyof FlowRate.FlowRateUnitMap]): void;
|
|
2869
|
+
|
|
2870
|
+
serializeBinary(): Uint8Array;
|
|
2871
|
+
toObject(includeInstance?: boolean): FlowRate.AsObject;
|
|
2872
|
+
static toObject(includeInstance: boolean, msg: FlowRate): FlowRate.AsObject;
|
|
2873
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2874
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2875
|
+
static serializeBinaryToWriter(message: FlowRate, writer: jspb.BinaryWriter): void;
|
|
2876
|
+
static deserializeBinary(bytes: Uint8Array): FlowRate;
|
|
2877
|
+
static deserializeBinaryFromReader(message: FlowRate, reader: jspb.BinaryReader): FlowRate;
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
export namespace FlowRate {
|
|
2881
|
+
export type AsObject = {
|
|
2882
|
+
value: number,
|
|
2883
|
+
precision: number,
|
|
2884
|
+
units: FlowRate.FlowRateUnitMap[keyof FlowRate.FlowRateUnitMap],
|
|
2885
|
+
}
|
|
2886
|
+
|
|
2887
|
+
export interface FlowRateUnitMap {
|
|
2888
|
+
UNSPECIFIED: 0;
|
|
2889
|
+
MICROLITER_PER_MINUTE: 1;
|
|
2890
|
+
MICROLITER_PER_SECOND: 2;
|
|
2891
|
+
MILLILITER_PER_MINUTE: 3;
|
|
2892
|
+
MILLILITER_PER_SECOND: 4;
|
|
2893
|
+
MICROLITER_PER_HOUR: 5;
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
export const FlowRateUnit: FlowRateUnitMap;
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
export class Percentage extends jspb.Message {
|
|
2900
|
+
hasValue(): boolean;
|
|
2901
|
+
clearValue(): void;
|
|
2902
|
+
getValue(): number;
|
|
2903
|
+
setValue(value: number): void;
|
|
2904
|
+
|
|
2905
|
+
hasPrecision(): boolean;
|
|
2906
|
+
clearPrecision(): void;
|
|
2907
|
+
getPrecision(): number;
|
|
2908
|
+
setPrecision(value: number): void;
|
|
2909
|
+
|
|
2910
|
+
serializeBinary(): Uint8Array;
|
|
2911
|
+
toObject(includeInstance?: boolean): Percentage.AsObject;
|
|
2912
|
+
static toObject(includeInstance: boolean, msg: Percentage): Percentage.AsObject;
|
|
2913
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2914
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2915
|
+
static serializeBinaryToWriter(message: Percentage, writer: jspb.BinaryWriter): void;
|
|
2916
|
+
static deserializeBinary(bytes: Uint8Array): Percentage;
|
|
2917
|
+
static deserializeBinaryFromReader(message: Percentage, reader: jspb.BinaryReader): Percentage;
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
export namespace Percentage {
|
|
2921
|
+
export type AsObject = {
|
|
2922
|
+
value: number,
|
|
2923
|
+
precision: number,
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
export class FloatValue extends jspb.Message {
|
|
2928
|
+
hasValue(): boolean;
|
|
2929
|
+
clearValue(): void;
|
|
2930
|
+
getValue(): number;
|
|
2931
|
+
setValue(value: number): void;
|
|
2932
|
+
|
|
2933
|
+
hasPrecision(): boolean;
|
|
2934
|
+
clearPrecision(): void;
|
|
2935
|
+
getPrecision(): number;
|
|
2936
|
+
setPrecision(value: number): void;
|
|
2937
|
+
|
|
2938
|
+
serializeBinary(): Uint8Array;
|
|
2939
|
+
toObject(includeInstance?: boolean): FloatValue.AsObject;
|
|
2940
|
+
static toObject(includeInstance: boolean, msg: FloatValue): FloatValue.AsObject;
|
|
2941
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2942
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2943
|
+
static serializeBinaryToWriter(message: FloatValue, writer: jspb.BinaryWriter): void;
|
|
2944
|
+
static deserializeBinary(bytes: Uint8Array): FloatValue;
|
|
2945
|
+
static deserializeBinaryFromReader(message: FloatValue, reader: jspb.BinaryReader): FloatValue;
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
export namespace FloatValue {
|
|
2949
|
+
export type AsObject = {
|
|
2950
|
+
value: number,
|
|
2951
|
+
precision: number,
|
|
2952
|
+
}
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
export class Data extends jspb.Message {
|
|
2956
|
+
hasFloatValue(): boolean;
|
|
2957
|
+
clearFloatValue(): void;
|
|
2958
|
+
getFloatValue(): number;
|
|
2959
|
+
setFloatValue(value: number): void;
|
|
2960
|
+
|
|
2961
|
+
hasIntegerValue(): boolean;
|
|
2962
|
+
clearIntegerValue(): void;
|
|
2963
|
+
getIntegerValue(): number;
|
|
2964
|
+
setIntegerValue(value: number): void;
|
|
2965
|
+
|
|
2966
|
+
hasBytesValue(): boolean;
|
|
2967
|
+
clearBytesValue(): void;
|
|
2968
|
+
getBytesValue(): Uint8Array | string;
|
|
2969
|
+
getBytesValue_asU8(): Uint8Array;
|
|
2970
|
+
getBytesValue_asB64(): string;
|
|
2971
|
+
setBytesValue(value: Uint8Array | string): void;
|
|
2972
|
+
|
|
2973
|
+
hasStringValue(): boolean;
|
|
2974
|
+
clearStringValue(): void;
|
|
2975
|
+
getStringValue(): string;
|
|
2976
|
+
setStringValue(value: string): void;
|
|
2977
|
+
|
|
2978
|
+
hasUrl(): boolean;
|
|
2979
|
+
clearUrl(): void;
|
|
2980
|
+
getUrl(): string;
|
|
2981
|
+
setUrl(value: string): void;
|
|
2982
|
+
|
|
2983
|
+
getDescription(): string;
|
|
2984
|
+
setDescription(value: string): void;
|
|
2985
|
+
|
|
2986
|
+
getFormat(): string;
|
|
2987
|
+
setFormat(value: string): void;
|
|
2988
|
+
|
|
2989
|
+
getKindCase(): Data.KindCase;
|
|
2990
|
+
serializeBinary(): Uint8Array;
|
|
2991
|
+
toObject(includeInstance?: boolean): Data.AsObject;
|
|
2992
|
+
static toObject(includeInstance: boolean, msg: Data): Data.AsObject;
|
|
2993
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2994
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2995
|
+
static serializeBinaryToWriter(message: Data, writer: jspb.BinaryWriter): void;
|
|
2996
|
+
static deserializeBinary(bytes: Uint8Array): Data;
|
|
2997
|
+
static deserializeBinaryFromReader(message: Data, reader: jspb.BinaryReader): Data;
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
export namespace Data {
|
|
3001
|
+
export type AsObject = {
|
|
3002
|
+
floatValue: number,
|
|
3003
|
+
integerValue: number,
|
|
3004
|
+
bytesValue: Uint8Array | string,
|
|
3005
|
+
stringValue: string,
|
|
3006
|
+
url: string,
|
|
3007
|
+
description: string,
|
|
3008
|
+
format: string,
|
|
3009
|
+
}
|
|
3010
|
+
|
|
3011
|
+
export enum KindCase {
|
|
3012
|
+
KIND_NOT_SET = 0,
|
|
3013
|
+
FLOAT_VALUE = 1,
|
|
3014
|
+
INTEGER_VALUE = 2,
|
|
3015
|
+
BYTES_VALUE = 3,
|
|
3016
|
+
STRING_VALUE = 4,
|
|
3017
|
+
URL = 5,
|
|
3018
|
+
}
|
|
3019
|
+
}
|
|
3020
|
+
|