quixotic-gol 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -41,8 +41,8 @@ declare interface DrawOp {
41
41
  * Content structure for graph edges
42
42
  */
43
43
  export declare interface EdgeContent {
44
- /** Unique identifier for the edge */
45
- id: string;
44
+ /** Index of the edge */
45
+ index: number;
46
46
  /** Color of the edge */
47
47
  color: string;
48
48
  /** Text label on the edge */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quixotic-gol",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",