@ichicraft/widgets-widget-base 1.7.8 → 1.7.9

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
@@ -8,6 +8,9 @@ All notable changes to this project will be documented here.
8
8
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
9
9
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
10
10
 
11
+ ## 1.7.9 - 2022-01-20
12
+ * Added `userAccountCreated` date/time to the `WidgetContext` interface.
13
+
11
14
  ## 1.7.8 - 2022-01-18
12
15
  ### Changed
13
16
  * Added `initiateWidgetDeletion()` function to the `WidgetContext` interface.
@@ -157,14 +157,16 @@ export interface WidgetContext {
157
157
  * SharePoint groups in this site collection that user is member of
158
158
  */
159
159
  userSharePointGroups: number[];
160
+ /**
161
+ * Provides the date that the user's account was created
162
+ */
163
+ userAccountCreated: Date;
160
164
  /**
161
165
  * Language code of currently used UI rendering language in SharePoint
162
166
  */
163
167
  language: string;
164
168
  /**
165
169
  * List of supported languages as configured in Widget Board configuration
166
- /**
167
- *
168
170
  */
169
171
  contentLanguages: {
170
172
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ichicraft/widgets-widget-base",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
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",