openchemlib 8.4.0 → 8.6.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openchemlib",
3
- "version": "8.4.0",
3
+ "version": "8.6.0",
4
4
  "description": "Manipulate molecules",
5
5
  "keywords": [
6
6
  "chemistry",
package/types.d.ts CHANGED
@@ -463,8 +463,17 @@ export declare class Molecule {
463
463
  options?: IMoleculeToSVGOptions,
464
464
  ): string;
465
465
 
466
+ /**
467
+ * Get an ID code for the molecule
468
+ * @param flag
469
+ */
466
470
  getCanonizedIDCode(flag: number): string;
467
471
 
472
+ /**
473
+ * Returns the canonic numbering of the atoms.
474
+ */
475
+ getFinalRanks(flag: number): number[];
476
+
468
477
  /**
469
478
  * Returns an object with both the ID code and coordinates of the molecule.
470
479
  */