@ndla/types-taxonomy 1.0.24 → 1.0.25

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.
@@ -494,6 +494,10 @@ export interface TaxonomyContext {
494
494
  * Whether the parent connection is visible or not
495
495
  */
496
496
  isVisible: boolean;
497
+ /**
498
+ * List of all parent contextIds
499
+ */
500
+ parentContextIds: string[];
497
501
  /**
498
502
  * List of all parent ids
499
503
  */
package/package.json CHANGED
@@ -17,5 +17,5 @@
17
17
  "devDependencies": {
18
18
  "typescript": "^5.0.2"
19
19
  },
20
- "version": "1.0.24"
20
+ "version": "1.0.25"
21
21
  }
package/taxonomy-api.ts CHANGED
@@ -526,6 +526,10 @@ export interface TaxonomyContext {
526
526
  * Whether the parent connection is visible or not
527
527
  */
528
528
  isVisible: boolean;
529
+ /**
530
+ * List of all parent contextIds
531
+ */
532
+ parentContextIds: string[];
529
533
  /**
530
534
  * List of all parent ids
531
535
  */