@rh-support/troubleshoot 2.2.50 → 2.2.51

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseEditView/CaseOverview/index.tsx"],"names":[],"mappings":"AA0BA,OAAO,KAA8D,MAAM,OAAO,CAAC;AA8BnF,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC;CACnD;AAED,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,KAAK,EAAE,MAAM,eA+ejD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseEditView/CaseOverview/index.tsx"],"names":[],"mappings":"AA0BA,OAAO,KAAkD,MAAM,OAAO,CAAC;AA6BvE,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC;CACnD;AAED,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,KAAK,EAAE,MAAM,eAifjD"}
@@ -13,13 +13,14 @@ import { CloseCaseModal, fetchCaseSeverities, fetchCaseTypes, GlobalMetadataDisp
13
13
  import { AbilityContext, CaseDetailsFields, resourceActions, resources } from '@rh-support/user-permissions';
14
14
  import { haventLoadedMetadata, isOpenShiftOnlineProduct, toNewCaseTypeMapper, toNewCaseTypeSwitcher, } from '@rh-support/utils';
15
15
  import isEqual from 'lodash/isEqual';
16
- import React, { useContext, useEffect, useReducer, useRef, useState } from 'react';
16
+ import React, { useContext, useEffect, useRef, useState } from 'react';
17
17
  import { Trans, useTranslation } from 'react-i18next';
18
18
  import { CaseStatusEnum } from '../../../constants/caseDetailsConstants';
19
19
  import { useCaseDispatch, useCaseSelector } from '../../../context/CaseContext';
20
+ import { CaseOverviewDispatchContext, CaseOverviewStateContext } from '../../../context/CaseOverviewContext';
20
21
  import { useCaseUpdateErrorMessage } from '../../../hooks/useCaseUpdateErrorMessage';
21
22
  import { SupportLevelDisplay } from '../../../reducers/CaseConstNTypes';
22
- import { caseOverviewReducer, fetchAllStatuses, fetchCaseHydra, initialCaseViewState, setSeverityUpdating, setStatusUpdating, setTypeUpdating, } from '../../../reducers/CaseOverviewReducer';
23
+ import { fetchAllStatuses, fetchCaseHydra, setSeverityUpdating, setStatusUpdating, setTypeUpdating, } from '../../../reducers/CaseOverviewReducer';
23
24
  import { updateCaseDetails } from '../../../reducers/CaseReducer';
24
25
  import Severity from '../../CaseInformation/Severity';
25
26
  import { usePostComment } from '../../shared/usePostComment';
@@ -40,7 +41,8 @@ export default function CaseOverview(props) {
40
41
  const canManageCase = ability.can(resourceActions.UPDATE, resources.CASE_DETAILS);
41
42
  const canSeeCaseOwnerInfo = ability.can(resourceActions.PATCH, resources.CASE_DETAILS, CaseDetailsFields.CASE_DETAILS_OWNER);
42
43
  const canSeeInactivityWarning = ability.can(resourceActions.PATCH, resources.CASE_DETAILS, CaseDetailsFields.CASE_DETAILS_ACTIVITY_WARNING);
43
- const [caseOverviewState, caseOverviewDispatch] = useReducer(caseOverviewReducer, initialCaseViewState);
44
+ const caseOverviewState = useContext(CaseOverviewStateContext);
45
+ const caseOverviewDispatch = useContext(CaseOverviewDispatchContext);
44
46
  const [isDetailsExpanded, setIsDetailsExpanded] = useState(true);
45
47
  const [showReOpenCaseModal, setShowReopenCaseModal] = useState(false);
46
48
  const [showCloseCaseModal, setShowCaseCloseModal] = useState(false);
@@ -96,6 +98,7 @@ export default function CaseOverview(props) {
96
98
  if (haventLoadedMetadata(caseOverviewState.allCaseStatuses)) {
97
99
  fetchAllStatuses(caseOverviewDispatch, loggedInUsersAccount.data.secureSupport);
98
100
  }
101
+ // eslint-disable-next-line react-hooks/exhaustive-deps
99
102
  }, [
100
103
  globalMetadataDispatchContext,
101
104
  allCaseSeverities,
@@ -1 +1 @@
1
- {"version":3,"file":"CaseSolutions.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseEditView/CaseSolutions/CaseSolutions.tsx"],"names":[],"mappings":"AAkBA,OAAO,KAAsD,MAAM,OAAO,CAAC;AAiE3E,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,sBAAsB,EAAE,OAAO,CAAC;CACnC;AAUD,eAAO,MAAM,aAAa,+EAgdxB,CAAC"}
1
+ {"version":3,"file":"CaseSolutions.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseEditView/CaseSolutions/CaseSolutions.tsx"],"names":[],"mappings":"AAkBA,OAAO,KAAsD,MAAM,OAAO,CAAC;AAoE3E,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,sBAAsB,EAAE,OAAO,CAAC;CACnC;AAUD,eAAO,MAAM,aAAa,+EAuexB,CAAC"}
@@ -30,10 +30,13 @@ import React, { forwardRef, useContext, useEffect, useState } from 'react';
30
30
  import { Trans, useTranslation } from 'react-i18next';
31
31
  import { CaseStatusEnum } from '../../../constants/caseDetailsConstants';
32
32
  import { useCaseDispatch, useCaseSelector } from '../../../context/CaseContext';
33
+ import { CaseOverviewDispatchContext } from '../../../context/CaseOverviewContext';
33
34
  import { useRecommendationDispatchContext, useRecommendationStateContext, } from '../../../context/RecommendationContext';
34
35
  import { useCaseUpdateErrorMessage } from '../../../hooks/useCaseUpdateErrorMessage';
36
+ import { setStatusUpdating } from '../../../reducers/CaseOverviewReducer';
35
37
  import { updateCaseDetails } from '../../../reducers/CaseReducer';
36
38
  import { fetchRecommendations } from '../../../reducers/RecommendationsReducer';
39
+ import { usePostComment } from '../../shared/usePostComment';
37
40
  import { CaseSolutionsItem } from './CaseSolutionsItem';
38
41
  import { HandpickedItem } from './HandpicketItem';
39
42
  // some of the pinned and hadpicked titles are set to 'Red Hat Knowledge Base'
@@ -93,13 +96,15 @@ export const CaseSolutions = forwardRef((props, ref) => {
93
96
  caseStatus: state.caseDetails.status,
94
97
  }), isEqual);
95
98
  const caseDispatch = useCaseDispatch();
99
+ const caseOverviewDispatch = useContext(CaseOverviewDispatchContext);
96
100
  const { recommendationState: { isLoadingRecommendations, allDocs }, } = useRecommendationStateContext();
97
101
  const recommendationsDispatch = useRecommendationDispatchContext();
102
+ const { postComment } = usePostComment({ caseNumber: props.caseNumber });
98
103
  const { caseNumber, isSecureSupportAccount } = props;
99
104
  const [isPinLoading, setIsPinLoading] = useState({});
100
105
  const [isCaseCloseLoading, setIsCaseCloseLoading] = useState(false);
101
- const [handPickedOpen, setHandPickedOpen] = useState(false);
102
- const [pinnedOpen, setPinnedOpen] = useState(false);
106
+ const [handPickedOpen, setHandPickedOpen] = useState(true);
107
+ const [pinnedOpen, setPinnedOpen] = useState(true);
103
108
  const [recommendations, setRecommendations] = useState([]);
104
109
  const [topRecommendations, setTopRecommendations] = useState([]);
105
110
  const [isCloseCaseModalOpen, setIsCloseCaseModalOpen] = useState(false);
@@ -107,10 +112,20 @@ export const CaseSolutions = forwardRef((props, ref) => {
107
112
  const { t } = useTranslation();
108
113
  const hasPin = some(recommendations, (p) => p.isPinned);
109
114
  const hasLink = some(recommendations, (p) => p.isLinked);
115
+ const getCommentBody = () => {
116
+ return `**Reason for closing case:** \nOther. Found a pinned article that perfectly resolved the issue. Closing this case now.`;
117
+ };
110
118
  const handleCaseClose = () => __awaiter(void 0, void 0, void 0, function* () {
119
+ setStatusUpdating(caseOverviewDispatch, true);
111
120
  try {
112
121
  setIsCaseCloseLoading(true);
113
122
  yield updateCaseDetails(caseDispatch, props.caseNumber, { status: CaseStatusEnum.CLOSED });
123
+ yield postComment({
124
+ commentBody: getCommentBody(),
125
+ contentType: 'markdown',
126
+ updateDiscussionState: true,
127
+ doNotChangeStatus: true,
128
+ });
114
129
  ToastNotification.addSuccessMessage(t('Status has been successfully updated'));
115
130
  setIsCloseCaseModalOpen(false);
116
131
  }
@@ -119,6 +134,7 @@ export const CaseSolutions = forwardRef((props, ref) => {
119
134
  }
120
135
  finally {
121
136
  setIsCaseCloseLoading(false);
137
+ setStatusUpdating(caseOverviewDispatch, false);
122
138
  }
123
139
  });
124
140
  const updateRecommendation = (recommendationToUpdate, linked) => __awaiter(void 0, void 0, void 0, function* () {
@@ -257,7 +273,7 @@ export const CaseSolutions = forwardRef((props, ref) => {
257
273
  React.createElement(AccordionToggle, { id: "sol-handpicked", isExpanded: handPickedOpen, onClick: () => setHandPickedOpen((pre) => !pre) },
258
274
  React.createElement("span", null, canLinkUnlink ? React.createElement(Trans, null, "Handpicked by you") : React.createElement(Trans, null, "Handpicked for this case")),
259
275
  React.createElement("span", { className: "badge-item pf-v5-u-font-size-sm pf-v5-u-mx-sm" }, linkedRecommendations.length)),
260
- React.createElement(AccordionContent, { isHidden: !handPickedOpen }, !hasLink ? (React.createElement(Trans, null, "If a Red Hat engineer finds an article or solution that can help with your case, they'll pin it here.")) : (React.createElement(PaginatedList, { id: "case-details-handpicked-recommendations", listItems: linkedRecommendations.map((rec, index) => canLinkUnlink
276
+ React.createElement(AccordionContent, { isHidden: !handPickedOpen }, !hasLink ? (!canLinkUnlink ? (React.createElement(Trans, null, "If a Red Hat engineer finds an article or solution that can help with your case, they'll pin it here.")) : (React.createElement(React.Fragment, null))) : (React.createElement(PaginatedList, { id: "case-details-handpicked-recommendations", listItems: linkedRecommendations.map((rec, index) => canLinkUnlink
261
277
  ? renderHandPickedByRedHatter(rec, index, 'handpicked-recommendations')
262
278
  : renderHandpickedCustomerView(rec, index, 'handpicked-recommendations')), perPage: 5, className: "list-icons list-icons-flush", isFetching: !!isLoadingRecommendations, perPageOptions: [
263
279
  { title: '5', value: 5 },
@@ -267,7 +283,7 @@ export const CaseSolutions = forwardRef((props, ref) => {
267
283
  React.createElement(AccordionToggle, { id: "sol-pinned", isExpanded: pinnedOpen, onClick: () => setPinnedOpen((pre) => !pre) },
268
284
  React.createElement("span", null, canLinkUnlink ? (React.createElement(Trans, null, "Pinned by customer")) : (React.createElement(Trans, null, "My pinned recommendations"))),
269
285
  React.createElement("span", { className: "badge-item pf-v5-u-font-size-sm pf-v5-u-mx-sm" }, pinnedRecommendations.length)),
270
- React.createElement(AccordionContent, { isHidden: !pinnedOpen }, !hasPin ? (React.createElement(Trans, null, "When you save a recommended article or solution, you'll see it here. Saved items display only in this case and are not saved for later.")) : (React.createElement(PaginatedList, { id: "case-details-pinned-recommendations", listItems: pinnedRecommendations.map((rec, index) => canLinkUnlink
286
+ React.createElement(AccordionContent, { isHidden: !pinnedOpen }, !hasPin ? (!canLinkUnlink ? (React.createElement(Trans, null, "When you save a recommended article or solution, you'll see it here. Saved items display only in this case and are not saved for later.")) : (React.createElement(React.Fragment, null))) : (React.createElement(PaginatedList, { id: "case-details-pinned-recommendations", listItems: pinnedRecommendations.map((rec, index) => canLinkUnlink
271
287
  ? renderPinnedByCustomerRedhatterView(rec, index, 'pinned-recommendations')
272
288
  : renderPinsByCustomer(rec, index, 'pinned-recommendations')), perPage: 5, className: "list-icons list-icons-flush", isFetching: !!isLoadingRecommendations, perPageOptions: [
273
289
  { title: '5', value: 5 },
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/index.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAC3B,OAAO,oBAAoB,CAAC;AAI5B,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAGlE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AASvD,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,SAAS,EAAE,GAAG,CAAC;QACf,oBAAoB,EAAE,GAAG,CAAC;QAC1B,iBAAiB,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,EAAE,QAAQ,EAAE,CAAC,GAAG,MAAM,OAAA,KAAK,GAAG,KAAK,GAAG,CAAC;QAC9E,MAAM,EAAE,GAAG,CAAC;QACZ,KAAK,EAAE,GAAG,CAAC;QACX,eAAe,EAAE,GAAG,CAAC;QACrB,aAAa,EAAE;YACX,cAAc,EAAE,MAAM,CAAC;YACvB,OAAO,EAAE,MAAM,CAAC;SACnB,CAAC;KACL;IAED,UAAU,GAAG,CAAC;QACV,UAAU,iBAAkB,SAAQ,YAAY;SAAG;KACtD;IAED,UAAU,QAAQ;QACd,YAAY,EAAE,GAAG,CAAC;KACrB;CACJ;AAED,UAAU,MAAM;CAAG;AASnB,wBAAgB,OAAO,CAAC,UAAU,EAAE,mBAAmB,CAAC,MAAM,CAAC,eAkB9D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/index.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAC3B,OAAO,oBAAoB,CAAC;AAI5B,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAGlE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAUvD,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,SAAS,EAAE,GAAG,CAAC;QACf,oBAAoB,EAAE,GAAG,CAAC;QAC1B,iBAAiB,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,EAAE,QAAQ,EAAE,CAAC,GAAG,MAAM,OAAA,KAAK,GAAG,KAAK,GAAG,CAAC;QAC9E,MAAM,EAAE,GAAG,CAAC;QACZ,KAAK,EAAE,GAAG,CAAC;QACX,eAAe,EAAE,GAAG,CAAC;QACrB,aAAa,EAAE;YACX,cAAc,EAAE,MAAM,CAAC;YACvB,OAAO,EAAE,MAAM,CAAC;SACnB,CAAC;KACL;IAED,UAAU,GAAG,CAAC;QACV,UAAU,iBAAkB,SAAQ,YAAY;SAAG;KACtD;IAED,UAAU,QAAQ;QACd,YAAY,EAAE,GAAG,CAAC;KACrB;CACJ;AAED,UAAU,MAAM;CAAG;AASnB,wBAAgB,OAAO,CAAC,UAAU,EAAE,mBAAmB,CAAC,MAAM,CAAC,eAoB9D"}
@@ -6,6 +6,7 @@ import React from 'react';
6
6
  import { CaseContextProvider } from '../../context/CaseContext';
7
7
  import { CaseDetailsPageContextProvider } from '../../context/CaseDetailsPageContext';
8
8
  import { CaseDiscussionTabContextProvider } from '../../context/CaseDiscussionTabContext';
9
+ import { CaseOverviewContextProvider } from '../../context/CaseOverviewContext';
9
10
  import { RecommendationContextProvider } from '../../context/RecommendationContext';
10
11
  import Case from './Case';
11
12
  import { PDFContainer } from './PDFContainer';
@@ -18,10 +19,11 @@ requireCustomElement([
18
19
  export function CaseApp(routeProps) {
19
20
  return (React.createElement(ErrorBoundary, { isPageLevelError: true },
20
21
  React.createElement(CaseContextProvider, null,
21
- React.createElement(RecommendationContextProvider, null,
22
- React.createElement(CaseDetailsPageContextProvider, null,
23
- React.createElement(CaseDiscussionTabContextProvider, null,
24
- React.createElement(ConfirmationServiceProvider, null,
25
- React.createElement(PDFContainer, null,
26
- React.createElement(Case, { routeProps: routeProps })))))))));
22
+ React.createElement(CaseOverviewContextProvider, null,
23
+ React.createElement(RecommendationContextProvider, null,
24
+ React.createElement(CaseDetailsPageContextProvider, null,
25
+ React.createElement(CaseDiscussionTabContextProvider, null,
26
+ React.createElement(ConfirmationServiceProvider, null,
27
+ React.createElement(PDFContainer, null,
28
+ React.createElement(Case, { routeProps: routeProps }))))))))));
27
29
  }
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { ICaseViewState } from '../reducers/CaseOverviewReducer';
3
+ export declare const CaseOverviewStateContext: React.Context<ICaseViewState>;
4
+ export declare const CaseOverviewDispatchContext: React.Context<(value: any) => void>;
5
+ export declare function CaseOverviewContextProvider({ children }: {
6
+ children: any;
7
+ }): JSX.Element;
8
+ //# sourceMappingURL=CaseOverviewContext.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CaseOverviewContext.d.ts","sourceRoot":"","sources":["../../../src/context/CaseOverviewContext.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAAuB,cAAc,EAAwB,MAAM,iCAAiC,CAAC;AAG5G,eAAO,MAAM,wBAAwB,+BAA4D,CAAC;AAClG,eAAO,MAAM,2BAA2B,gCAFA,IAAI,CAEyC,CAAC;AAEtF,wBAAgB,2BAA2B,CAAC,EAAE,QAAQ,EAAE;;CAAA,eASvD"}
@@ -0,0 +1,10 @@
1
+ import React, { useReducer } from 'react';
2
+ import { caseOverviewReducer, initialCaseViewState } from '../reducers/CaseOverviewReducer';
3
+ const initalDispatchContext = null;
4
+ export const CaseOverviewStateContext = React.createContext(initialCaseViewState);
5
+ export const CaseOverviewDispatchContext = React.createContext(initalDispatchContext);
6
+ export function CaseOverviewContextProvider({ children }) {
7
+ const [caseOverviewState, caseOverviewDispatch] = useReducer(caseOverviewReducer, initialCaseViewState);
8
+ return (React.createElement(CaseOverviewStateContext.Provider, { value: caseOverviewState },
9
+ React.createElement(CaseOverviewDispatchContext.Provider, { value: caseOverviewDispatch }, children)));
10
+ }
@@ -8,7 +8,7 @@ export declare enum CaseDetailsConstants {
8
8
  getCaseStatuses = "getCaseStatuses",
9
9
  getCaseDetailsHydra = "getCaseDetailsHydra"
10
10
  }
11
- interface ICaseViewState {
11
+ export interface ICaseViewState {
12
12
  caseTypeUpdating?: boolean;
13
13
  caseStatusUpdating?: boolean;
14
14
  caseSeverityUpdating?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"CaseOverviewReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseOverviewReducer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAC5D,OAAO,EAAE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAGxE,aAAK,WAAW,GAAG,OAAO,CAAC,oBAAoB,EAAE,cAAc,CAAC,CAAC;AACjE,oBAAY,8BAA8B,GAAG,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;AAE1E,oBAAY,oBAAoB;IAC5B,gBAAgB,qBAAqB;IACrC,WAAW,gBAAgB;IAC3B,eAAe,oBAAoB;IACnC,mBAAmB,wBAAwB;CAC9C;AAED,UAAU,cAAc;IACpB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,eAAe,CAAC,EAAE,mBAAmB,CAAC,MAAM,EAAE,CAAC,CAAC;IAChD,gBAAgB,CAAC,EAAE,mBAAmB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;CAC1D;AAED,eAAO,MAAM,oBAAoB,EAAE,cAYlC,CAAC;AAEF,eAAO,MAAM,mBAAmB,UAAW,cAAc,0BAAwB,cAkBhF,CAAC;AAEF,eAAO,MAAM,eAAe,aAAc,8BAA8B,gBAAgB,MAAM,SAE7F,CAAC;AAEF,eAAO,MAAM,mBAAmB,aAAc,8BAA8B,oBAAoB,MAAM,SAErG,CAAC;AAEF,eAAO,MAAM,iBAAiB,aAAc,8BAA8B,kBAAkB,MAAM,SAEjG,CAAC;AAEF,eAAO,MAAM,mBAAmB,aAAc,8BAA8B,wBAAwB,OAAO,SAE1G,CAAC;AAEF,eAAO,MAAM,iBAAiB,aAAc,8BAA8B,sBAAsB,OAAO,SAEtG,CAAC;AAEF,eAAO,MAAM,eAAe,aAAc,8BAA8B,oBAAoB,OAAO,SAElG,CAAC;AAEF,eAAO,MAAM,gBAAgB,aAAoB,8BAA8B,mBAAmB,OAAO,kBAiBxG,CAAC;AAEF,eAAO,MAAM,cAAc,aAAoB,8BAA8B,cAAc,MAAM,kBAiBhG,CAAC"}
1
+ {"version":3,"file":"CaseOverviewReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseOverviewReducer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAC5D,OAAO,EAAE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAGxE,aAAK,WAAW,GAAG,OAAO,CAAC,oBAAoB,EAAE,cAAc,CAAC,CAAC;AACjE,oBAAY,8BAA8B,GAAG,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;AAE1E,oBAAY,oBAAoB;IAC5B,gBAAgB,qBAAqB;IACrC,WAAW,gBAAgB;IAC3B,eAAe,oBAAoB;IACnC,mBAAmB,wBAAwB;CAC9C;AAED,MAAM,WAAW,cAAc;IAC3B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,eAAe,CAAC,EAAE,mBAAmB,CAAC,MAAM,EAAE,CAAC,CAAC;IAChD,gBAAgB,CAAC,EAAE,mBAAmB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;CAC1D;AAED,eAAO,MAAM,oBAAoB,EAAE,cAYlC,CAAC;AAEF,eAAO,MAAM,mBAAmB,UAAW,cAAc,0BAAwB,cAkBhF,CAAC;AAEF,eAAO,MAAM,eAAe,aAAc,8BAA8B,gBAAgB,MAAM,SAE7F,CAAC;AAEF,eAAO,MAAM,mBAAmB,aAAc,8BAA8B,oBAAoB,MAAM,SAErG,CAAC;AAEF,eAAO,MAAM,iBAAiB,aAAc,8BAA8B,kBAAkB,MAAM,SAEjG,CAAC;AAEF,eAAO,MAAM,mBAAmB,aAAc,8BAA8B,wBAAwB,OAAO,SAE1G,CAAC;AAEF,eAAO,MAAM,iBAAiB,aAAc,8BAA8B,sBAAsB,OAAO,SAEtG,CAAC;AAEF,eAAO,MAAM,eAAe,aAAc,8BAA8B,oBAAoB,OAAO,SAElG,CAAC;AAEF,eAAO,MAAM,gBAAgB,aAAoB,8BAA8B,mBAAmB,OAAO,kBAiBxG,CAAC;AAEF,eAAO,MAAM,cAAc,aAAoB,8BAA8B,cAAc,MAAM,kBAiBhG,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rh-support/troubleshoot",
3
- "version": "2.2.50",
3
+ "version": "2.2.51",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -132,5 +132,5 @@
132
132
  "defaults and supports es6-module",
133
133
  "maintained node versions"
134
134
  ],
135
- "gitHead": "3f01e59886b03b621a3681869c543b4fd5091f9f"
135
+ "gitHead": "6ef07a6eed08ccdb4a4d97df9bdaca774b3780e0"
136
136
  }