@zakodium/nmr-types 0.3.0 → 0.3.1

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.
@@ -340,11 +340,33 @@ export declare interface Integrals {
340
340
  }
341
341
 
342
342
  export declare interface Jcoupling {
343
+ /**
344
+ * The value of the coupling in Hz
345
+ */
343
346
  coupling: number;
344
347
  atoms?: number[];
345
348
  assignment?: string | string[];
346
349
  diaIDs?: string[];
350
+ /**
351
+ * The spin of the nucleus involved in the coupling
352
+ * most of the time it is 1/2 (1H, 13C, 15N, etc.)
353
+ * but typically for [2H] it is 1
354
+ */
355
+ spin?: number;
356
+ /**
357
+ * With how many other nuclei this coupling is observed
358
+ */
359
+ nbCouplings?: number;
360
+ /**
361
+ * The multiplicity label associated with the coupling like "d", "t", "q", etc.
362
+ */
347
363
  multiplicity?: string;
364
+ /**
365
+ * The length of the coupling path (number of bonds)
366
+ * for example for a geminal coupling it is 2
367
+ * This is important when you have 2 couplings with the same diaIDs but different path lengths
368
+ * like in the case of 1,2-disubstituted benzene (same substitutant)
369
+ */
348
370
  pathLength?: number;
349
371
  }
350
372
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zakodium/nmr-types",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Types related to NMR data processing.",
5
5
  "author": "Zakodium Sàrl",
6
6
  "license": "CC-BY-NC-SA-4.0",
@@ -38,5 +38,5 @@
38
38
  "volta": {
39
39
  "extends": "../../../package.json"
40
40
  },
41
- "gitHead": "9e3ff9aee0df39502b56fe15fab3d8e12d939b32"
41
+ "gitHead": "b10db9c8821bb100501d3d2373ac16a4eac7b345"
42
42
  }