ord-schema 0.3.75 → 0.3.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/proto/dataset_pb.js +1 -1
- package/proto/dataset_pb.test.js +1 -1
- package/proto/reaction_pb.js +9 -4
- package/proto/reaction_pb.test.js +1 -1
- package/proto/test_pb.js +1 -1
package/index.js
CHANGED
package/package.json
CHANGED
package/proto/dataset_pb.js
CHANGED
package/proto/dataset_pb.test.js
CHANGED
package/proto/reaction_pb.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright
|
|
2
|
+
* Copyright 2024 Open Reaction Database Project Authors
|
|
3
3
|
*
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
* you may not use this file except in compliance with the License.
|
|
@@ -2881,7 +2881,9 @@ proto.ord.ReactionInput.AdditionDevice.AdditionDeviceType = {
|
|
|
2881
2881
|
NONE: 2,
|
|
2882
2882
|
SYRINGE: 3,
|
|
2883
2883
|
CANNULA: 4,
|
|
2884
|
-
ADDITION_FUNNEL: 5
|
|
2884
|
+
ADDITION_FUNNEL: 5,
|
|
2885
|
+
PIPETTE: 6,
|
|
2886
|
+
POSITIVE_DISPLACEMENT_PIPETTE: 7
|
|
2885
2887
|
};
|
|
2886
2888
|
|
|
2887
2889
|
/**
|
|
@@ -5509,7 +5511,8 @@ proto.ord.CompoundIdentifier.CompoundIdentifierType = {
|
|
|
5509
5511
|
UNIPROT_ID: 13,
|
|
5510
5512
|
PDB_ID: 14,
|
|
5511
5513
|
AMINO_ACID_SEQUENCE: 15,
|
|
5512
|
-
HELM: 16
|
|
5514
|
+
HELM: 16,
|
|
5515
|
+
MDL: 17
|
|
5513
5516
|
};
|
|
5514
5517
|
|
|
5515
5518
|
/**
|
|
@@ -15126,7 +15129,9 @@ proto.ord.Analysis.AnalysisType = {
|
|
|
15126
15129
|
EPR: 20,
|
|
15127
15130
|
XRD: 21,
|
|
15128
15131
|
RAMAN: 22,
|
|
15129
|
-
ED: 23
|
|
15132
|
+
ED: 23,
|
|
15133
|
+
OPTICAL_ROTATION: 24,
|
|
15134
|
+
CAD: 25
|
|
15130
15135
|
};
|
|
15131
15136
|
|
|
15132
15137
|
/**
|
package/proto/test_pb.js
CHANGED