@zeniai/client-epic-state 5.1.72 → 5.1.73
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/lib/entity/monthEndCloseChecks/monthEndCloseChecksPayload.d.ts +1 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksPayload.js +1 -0
- package/lib/entity/monthEndCloseChecks/monthEndCloseChecksState.d.ts +1 -0
- package/lib/esm/entity/monthEndCloseChecks/monthEndCloseChecksPayload.js +1 -0
- package/package.json +1 -1
|
@@ -43,6 +43,7 @@ export interface MonthEndCloseChecksPayload {
|
|
|
43
43
|
history_month_and_year_flag: string[];
|
|
44
44
|
insights: MonthEndInsightsPayload;
|
|
45
45
|
month_close_checks: MonthCloseChecksPayload[];
|
|
46
|
+
is_ai_progress_card_data_available?: boolean;
|
|
46
47
|
report_email_sent_date?: string;
|
|
47
48
|
target_month_end_email_sent_date?: string;
|
|
48
49
|
}
|
|
@@ -69,6 +69,7 @@ const toMonthYearPeriods = (historicMonthYearPayload) => {
|
|
|
69
69
|
const toMonthEndCloseChecksInfo = (payload, period) => ({
|
|
70
70
|
id: (0, timePeriod_1.toMonthYearPeriodId)(period),
|
|
71
71
|
insights: toMonthEndInsights(payload.insights),
|
|
72
|
+
isAiProgressCardDataAvailable: payload.is_ai_progress_card_data_available ?? false,
|
|
72
73
|
monthEndCloseCheckList: payload.month_close_checks.map((monthCloseCheck) => toMonthEndCloseCheck(monthCloseCheck)),
|
|
73
74
|
auditSummary: {
|
|
74
75
|
auditScorePercentage: payload.audit_summary.audit_score_percentage,
|
|
@@ -48,6 +48,7 @@ export interface MonthEndCloseChecksInfo {
|
|
|
48
48
|
historicMonthYear: MonthYearPeriod[];
|
|
49
49
|
id: MonthYearPeriodId;
|
|
50
50
|
insights: MonthEndInsights;
|
|
51
|
+
isAiProgressCardDataAvailable: boolean;
|
|
51
52
|
monthEndCloseCheckList: MonthEndCloseCheck[];
|
|
52
53
|
reportEmailSentDate?: ZeniDate;
|
|
53
54
|
targetCloseDate?: ZeniDate;
|
|
@@ -66,6 +66,7 @@ const toMonthYearPeriods = (historicMonthYearPayload) => {
|
|
|
66
66
|
export const toMonthEndCloseChecksInfo = (payload, period) => ({
|
|
67
67
|
id: toMonthYearPeriodId(period),
|
|
68
68
|
insights: toMonthEndInsights(payload.insights),
|
|
69
|
+
isAiProgressCardDataAvailable: payload.is_ai_progress_card_data_available ?? false,
|
|
69
70
|
monthEndCloseCheckList: payload.month_close_checks.map((monthCloseCheck) => toMonthEndCloseCheck(monthCloseCheck)),
|
|
70
71
|
auditSummary: {
|
|
71
72
|
auditScorePercentage: payload.audit_summary.audit_score_percentage,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/client-epic-state",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.73",
|
|
4
4
|
"description": "Shared module between Web & Mobile containing required abstractions for state management, async network communication. ",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|