@demind-inc/core 1.0.3 → 1.0.4
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 +3 -1
- package/dist/models/Calendar.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
In this library, we define the models/types we gonna use in the app lifestack.
|
|
4
4
|
|
|
5
|
-
## How to
|
|
5
|
+
## How to release the new version
|
|
6
6
|
|
|
7
7
|
1. `npm install`
|
|
8
8
|
2. `npm run build`
|
|
9
|
+
3. Update the `version` in package.json
|
|
10
|
+
4. `npm publish`
|
|
9
11
|
|
|
10
12
|
Make sure to push new changes of `dist` folder generted by building to the github.
|
|
11
13
|
|
|
@@ -7,7 +7,6 @@ export interface Calendar {
|
|
|
7
7
|
calendarType?: CalendarType;
|
|
8
8
|
scope?: string;
|
|
9
9
|
events?: CalendarEvent[];
|
|
10
|
-
metrics?: CalendarEventMetrics;
|
|
11
10
|
}
|
|
12
11
|
export interface CalendarEvent {
|
|
13
12
|
eventId: string;
|
|
@@ -25,6 +24,7 @@ export interface CalendarEvent {
|
|
|
25
24
|
status?: CalendarEventStatus;
|
|
26
25
|
updatedDate: string;
|
|
27
26
|
createdDate: string;
|
|
27
|
+
metrics?: CalendarEventMetrics;
|
|
28
28
|
}
|
|
29
29
|
export interface CalendarEventMetrics {
|
|
30
30
|
stress?: number;
|