@ichicraft/widgets-widget-base 1.15.1 → 1.15.2

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/README.md CHANGED
@@ -9,6 +9,10 @@ All notable changes to this project will be documented here.
9
9
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
10
10
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
11
11
 
12
+ ## 1.15.2 - 2025-11-21
13
+
14
+ - Added new interface `ICTerm`, used to represent a SharePoint Taxonomy Term object in code
15
+
12
16
  ## 1.15.1 - 2025-09-30
13
17
 
14
18
  - Added new interface `ICTeam`, used to represent a Microsoft Teams team object in code
@@ -693,6 +693,16 @@ export interface ICTeam {
693
693
  displayName?: string;
694
694
  url?: string;
695
695
  }
696
+ /**
697
+ * Represents a SharePoint Taxonomy Term.
698
+ */
699
+ export interface ICTerm {
700
+ id: string;
701
+ displayName?: string;
702
+ path?: string;
703
+ termSetId: string;
704
+ termSetDisplayName?: string;
705
+ }
696
706
  /**
697
707
  * Tells the severity of the command bar item, resulting in
698
708
  * distinguishable presentation of the item
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ichicraft/widgets-widget-base",
3
- "version": "1.15.1",
3
+ "version": "1.15.2",
4
4
  "description": "Part of the Widget Development Kit for building widgets for Ichicraft Boards",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",