@zakodium/nmr-types 0.5.9 → 0.5.11
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/nmr-types.d.ts +3 -0
- package/package.json +5 -5
package/dist/nmr-types.d.ts
CHANGED
|
@@ -371,6 +371,7 @@ export declare interface Info {
|
|
|
371
371
|
solvent?: string;
|
|
372
372
|
pulseSequence?: string;
|
|
373
373
|
name: string;
|
|
374
|
+
spectrumSource?: SpectrumSource;
|
|
374
375
|
}
|
|
375
376
|
|
|
376
377
|
export declare interface Info1D extends Info {
|
|
@@ -724,6 +725,8 @@ export declare interface SineBellOptions {
|
|
|
724
725
|
|
|
725
726
|
export declare type SineSquareOptions = Omit<SineBellOptions, 'exponent'>;
|
|
726
727
|
|
|
728
|
+
export declare type SpectrumSource = 'prediction' | 'database' | 'unknown';
|
|
729
|
+
|
|
727
730
|
declare interface StringField extends Field<string> {
|
|
728
731
|
type: 'string';
|
|
729
732
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zakodium/nmr-types",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.11",
|
|
4
4
|
"description": "Types related to NMR data processing.",
|
|
5
5
|
"author": "Zakodium Sàrl",
|
|
6
6
|
"license": "CC-BY-NC-SA-4.0",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"cheminfo-types": "^1.15.0",
|
|
28
28
|
"esbuild": "^0.28.0",
|
|
29
29
|
"rimraf": "^6.1.3",
|
|
30
|
-
"typescript": "~6.0.
|
|
31
|
-
"vitest": "^4.1.
|
|
30
|
+
"typescript": "~6.0.3",
|
|
31
|
+
"vitest": "^4.1.5"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"ml-peak-shape-generator": "^4.2.0",
|
|
35
|
-
"ml-signal-processing": "^2.2.
|
|
35
|
+
"ml-signal-processing": "^2.2.1",
|
|
36
36
|
"ml-spectra-processing": "^14.28.1"
|
|
37
37
|
},
|
|
38
38
|
"volta": {
|
|
39
39
|
"extends": "../../../package.json"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "4e4bb7a57419b7047a16419bca33f1a9a12eade5"
|
|
42
42
|
}
|