@rh-support/troubleshoot 2.6.309 → 2.6.310
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/esm/components/CaseEditView/CaseDetailsAside.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/CaseDetailsAside.js +11 -3
- package/lib/esm/components/CaseEditView/CaseDetailsErrorMessage.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/CaseDetailsErrorMessage.js +14 -3
- package/lib/esm/components/CaseEditView/Tabs/CaseDiscussion/PostComment.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/Tabs/CaseDiscussion/PostComment.js +1 -2
- package/lib/esm/components/UpdateSeverityModal/UpdateSeverityModal.d.ts.map +1 -1
- package/lib/esm/components/UpdateSeverityModal/UpdateSeverityModal.js +123 -45
- package/lib/esm/graphql/schemas/escalation.d.ts +4 -0
- package/lib/esm/graphql/schemas/escalation.d.ts.map +1 -1
- package/lib/esm/i18n/template-de.d.ts +2 -2
- package/lib/esm/i18n/template-de.js +2 -2
- package/lib/esm/i18n/template-es.d.ts +2 -2
- package/lib/esm/i18n/template-es.js +2 -2
- package/lib/esm/i18n/template-fr.d.ts +2 -2
- package/lib/esm/i18n/template-fr.js +2 -2
- package/lib/esm/i18n/template-it.d.ts +2 -2
- package/lib/esm/i18n/template-it.js +2 -2
- package/lib/esm/i18n/template-jp.d.ts +2 -2
- package/lib/esm/i18n/template-jp.js +2 -2
- package/lib/esm/i18n/template-ko.d.ts +2 -2
- package/lib/esm/i18n/template-ko.js +2 -2
- package/lib/esm/i18n/template-pt.d.ts +2 -2
- package/lib/esm/i18n/template-pt.js +2 -2
- package/lib/esm/i18n/template-ru.d.ts +2 -2
- package/lib/esm/i18n/template-ru.js +2 -2
- package/lib/esm/i18n/template-zh.d.ts +2 -2
- package/lib/esm/i18n/template-zh.js +2 -2
- package/lib/esm/reducers/CaseConstNTypes.d.ts +7 -6
- package/lib/esm/reducers/CaseConstNTypes.d.ts.map +1 -1
- package/lib/esm/reducers/CaseConstNTypes.js +5 -5
- package/lib/esm/reducers/CaseDetailsPageReducer.d.ts.map +1 -1
- package/lib/esm/reducers/CaseDetailsPageReducer.js +6 -2
- package/package.json +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseDetailsAside.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/CaseDetailsAside.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CaseDetailsAside.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/CaseDetailsAside.tsx"],"names":[],"mappings":"AAsBA,OAAO,KAA2D,MAAM,OAAO,CAAC;AAahF,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;CACtB;AAMD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,qBAma7C"}
|
|
@@ -17,7 +17,7 @@ import TrendUpIcon from '@patternfly/react-icons/dist/js/icons/trend-up-icon';
|
|
|
17
17
|
import { ErrorBoundary, ToastNotification, useBreakpoint, useForceUpdate } from '@rh-support/components';
|
|
18
18
|
import { GlobalMetadataDispatchContext, toggleViewAsCustomerFlag, useGlobalStateContext, useUserPreferences, } from '@rh-support/react-context';
|
|
19
19
|
import { ability, CaseDetailsFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
20
|
-
import { isSpecialSupportOfferingEnabled, scrollIntoView } from '@rh-support/utils';
|
|
20
|
+
import { buildAccessRestrictionExclusionFilter, isSpecialSupportOfferingEnabled, scrollIntoView, } from '@rh-support/utils';
|
|
21
21
|
import isEmpty from 'lodash/isEmpty';
|
|
22
22
|
import isEqual from 'lodash/isEqual';
|
|
23
23
|
import React, { useContext, useEffect, useMemo, useRef, useState } from 'react';
|
|
@@ -51,11 +51,19 @@ export function CaseDetailsAside(props) {
|
|
|
51
51
|
const { recommendationState: { isLoadingRecommendations, allDocs }, } = useRecommendationStateContext();
|
|
52
52
|
const { caseNumber } = props;
|
|
53
53
|
const { data: parentData, loading: isLoadingParentId } = useQuery(GET_PARENT_ID, {
|
|
54
|
-
variables: {
|
|
54
|
+
variables: {
|
|
55
|
+
where: {
|
|
56
|
+
and: [{ CaseNumber: { eq: caseNumber } }, buildAccessRestrictionExclusionFilter()],
|
|
57
|
+
},
|
|
58
|
+
},
|
|
55
59
|
});
|
|
56
60
|
const parentId = (_f = (_e = (_d = (_c = (_b = (_a = parentData === null || parentData === void 0 ? void 0 : parentData.redhat_support_uiapi) === null || _a === void 0 ? void 0 : _a.query) === null || _b === void 0 ? void 0 : _b.RedHatSupportCase) === null || _c === void 0 ? void 0 : _c.edges) === null || _d === void 0 ? void 0 : _d[0]) === null || _e === void 0 ? void 0 : _e.node) === null || _f === void 0 ? void 0 : _f.Id;
|
|
57
61
|
const { loading: isLoadingEscalations } = useQuery(GET_ESCALATION_DETAILS, {
|
|
58
|
-
variables: {
|
|
62
|
+
variables: {
|
|
63
|
+
where: {
|
|
64
|
+
and: [{ ParentId: { eq: parentId } }, buildAccessRestrictionExclusionFilter()],
|
|
65
|
+
},
|
|
66
|
+
},
|
|
59
67
|
skip: !parentId,
|
|
60
68
|
});
|
|
61
69
|
const isEscalationsFetching = isLoadingParentId || isLoadingEscalations;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseDetailsErrorMessage.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/CaseDetailsErrorMessage.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAErD,OAAO,KAAqB,MAAM,OAAO,CAAC;AAG1C,UAAU,MAAM;IACZ,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,EAAE,SAAS,CAAC;IACxB,WAAW,EAAE,OAAO,CAAC;IACrB,aAAa,EAAE,OAAO,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,CAAC;CAC3B;AAID,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"CaseDetailsErrorMessage.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/CaseDetailsErrorMessage.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AAErD,OAAO,KAAqB,MAAM,OAAO,CAAC;AAG1C,UAAU,MAAM;IACZ,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,EAAE,SAAS,CAAC;IACxB,WAAW,EAAE,OAAO,CAAC;IACrB,aAAa,EAAE,OAAO,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,CAAC;CAC3B;AAID,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,MAAM,qBA4FpD"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AlertMessage, AlertType, errorMessageTitle, formattedApiErrorMessage } from '@rh-support/components';
|
|
2
2
|
import { GlobalMetadataStateContext } from '@rh-support/react-context';
|
|
3
|
-
import { getSFDCSecureSupportCaseLink } from '@rh-support/utils';
|
|
3
|
+
import { CSS_ACCESS_RESTRICTION_ERROR_DETAIL, CSS_PORTAL_URL, getSFDCSecureSupportCaseLink } from '@rh-support/utils';
|
|
4
4
|
import React, { useContext } from 'react';
|
|
5
5
|
import { Trans, useTranslation } from 'react-i18next';
|
|
6
6
|
// Here we need to use 'detailMessage' from case API if user is not authorized to see case details
|
|
@@ -11,11 +11,13 @@ export function CaseDetailsErrorMessage(props) {
|
|
|
11
11
|
// Initialize Default Props Below
|
|
12
12
|
const { isInlineError = false, canReadCase, canManageCase, caseNumber, errorDetails } = props;
|
|
13
13
|
const invalidCaseGroupErrorTitle = t('This case can only be viewed by a specific group');
|
|
14
|
+
const cssAccessRestrictionErrorTitle = t('This case is only available in Confirmed Sovereign Support');
|
|
14
15
|
/* There can be two condition for HTTP 403 error
|
|
15
16
|
1. Account mismatch.
|
|
16
17
|
2. Invalid case group
|
|
17
18
|
*/
|
|
18
19
|
const isCaseGroupError = (errorDetails === null || errorDetails === void 0 ? void 0 : errorDetails['detailMessage']) === INVALID_CASE_GROUP_API_ERROR_DEFAULT_MESSAGE;
|
|
20
|
+
const isCssAccessRestrictionError = (errorDetails === null || errorDetails === void 0 ? void 0 : errorDetails['detailMessage']) === CSS_ACCESS_RESTRICTION_ERROR_DETAIL;
|
|
19
21
|
const getErrorMessage = () => {
|
|
20
22
|
const { status, message = '' } = errorDetails || {};
|
|
21
23
|
const customDefaultErrorMessage403 = isCaseGroupError
|
|
@@ -23,7 +25,14 @@ export function CaseDetailsErrorMessage(props) {
|
|
|
23
25
|
: t('You are not authorized to see this case.');
|
|
24
26
|
const errorMessage404 = t("Case number doesn't exist");
|
|
25
27
|
let errorMessage403;
|
|
26
|
-
if (
|
|
28
|
+
if (isCssAccessRestrictionError) {
|
|
29
|
+
errorMessage403 = (React.createElement(React.Fragment, null,
|
|
30
|
+
"Open this case in the",
|
|
31
|
+
' ',
|
|
32
|
+
React.createElement("a", { href: CSS_PORTAL_URL, "data-tracking-id": "css-access-restriction-portal-redirect" }, "Confirmed Sovereign Support portal"),
|
|
33
|
+
"."));
|
|
34
|
+
}
|
|
35
|
+
else if (!canReadCase) {
|
|
27
36
|
errorMessage403 = customDefaultErrorMessage403;
|
|
28
37
|
}
|
|
29
38
|
else if (loggedInUserRights.data.isInternal() &&
|
|
@@ -48,8 +57,10 @@ export function CaseDetailsErrorMessage(props) {
|
|
|
48
57
|
};
|
|
49
58
|
return (React.createElement(AlertMessage, { variant: AlertType.DANGER, className: "pf-v6-u-mb-lg", show: true,
|
|
50
59
|
// Here customizing title of alert based on case group error.
|
|
51
|
-
title: errorMessageTitle(errorDetails, Object.assign({}, (isCaseGroupError && {
|
|
60
|
+
title: errorMessageTitle(errorDetails, Object.assign(Object.assign({}, (isCaseGroupError && {
|
|
52
61
|
'403': { title: invalidCaseGroupErrorTitle },
|
|
62
|
+
})), (isCssAccessRestrictionError && {
|
|
63
|
+
'403': { title: cssAccessRestrictionErrorTitle },
|
|
53
64
|
})), canManageCase), isInline: isInlineError },
|
|
54
65
|
React.createElement(Trans, null, getErrorMessage())));
|
|
55
66
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PostComment.d.ts","sourceRoot":"","sources":["../../../../../../src/components/CaseEditView/Tabs/CaseDiscussion/PostComment.tsx"],"names":[],"mappings":"AAaA,OAAO,KAA+D,MAAM,OAAO,CAAC;AAMpF,OAAO,EAAE,WAAW,EAAE,MAAM,+CAA+C,CAAC;AAmB5E,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IACrC,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5C,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B;;;;;OAKG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,cAAc,EAAE,WAAW,EAAE,CAAC;CACjC;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"PostComment.d.ts","sourceRoot":"","sources":["../../../../../../src/components/CaseEditView/Tabs/CaseDiscussion/PostComment.tsx"],"names":[],"mappings":"AAaA,OAAO,KAA+D,MAAM,OAAO,CAAC;AAMpF,OAAO,EAAE,WAAW,EAAE,MAAM,+CAA+C,CAAC;AAmB5E,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IACrC,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5C,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B;;;;;OAKG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,cAAc,EAAE,WAAW,EAAE,CAAC;CACjC;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,qBAscxC"}
|
|
@@ -288,11 +288,10 @@ export function PostComment(props) {
|
|
|
288
288
|
let parsedPassedReply = getReplyText(passedReply !== null && passedReply !== void 0 ? passedReply : '', (_a = props.commentCreator) !== null && _a !== void 0 ? _a : '');
|
|
289
289
|
return (parsedPassedReply === null || parsedPassedReply === void 0 ? void 0 : parsedPassedReply.trim()) === (commentText === null || commentText === void 0 ? void 0 : commentText.trim());
|
|
290
290
|
};
|
|
291
|
+
// Submit stays independent of attachment upload so comments can be posted mid-upload (PCM-15915).
|
|
291
292
|
const isSubmitDisabled = isReplyDisabled() ||
|
|
292
293
|
isCommentEmpty ||
|
|
293
294
|
isPostCommentDisabled ||
|
|
294
|
-
isUploadingAttachments ||
|
|
295
|
-
hasQueuedUploads ||
|
|
296
295
|
(isConfirmedStateSideSupport && !cssCommentAgreed);
|
|
297
296
|
return (React.createElement("div", { className: `pf-v6-u-mb-md ${isExportingPDF ? 'hide-in-pdf' : ''}`, ref: componentRef },
|
|
298
297
|
React.createElement(Alert, { className: "pf-v6-u-mb-md pf-v6-u-font-size-sm", isInline: true, isPlain: true, variant: AlertVariant.info, title: React.createElement(Trans, { i18nKey: "markdownNotSupportedCommentWarning" },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateSeverityModal.d.ts","sourceRoot":"","sources":["../../../../src/components/UpdateSeverityModal/UpdateSeverityModal.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"UpdateSeverityModal.d.ts","sourceRoot":"","sources":["../../../../src/components/UpdateSeverityModal/UpdateSeverityModal.tsx"],"names":[],"mappings":"AAoCA,OAAO,KAAmE,MAAM,OAAO,CAAC;AAgBxF,UAAU,MAAM;IACZ,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,mBAAmB,CAAC,KAAK,EAAE,MAAM,qBAwpBxD"}
|
|
@@ -7,12 +7,22 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
7
7
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
11
|
+
var t = {};
|
|
12
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
13
|
+
t[p] = s[p];
|
|
14
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
15
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
16
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
17
|
+
t[p[i]] = s[p[i]];
|
|
18
|
+
}
|
|
19
|
+
return t;
|
|
20
|
+
};
|
|
10
21
|
import { useApolloClient } from '@apollo/client/react';
|
|
11
|
-
import { publicApi } from '@cee-eng/hydrajs';
|
|
12
22
|
import { Button, Dropdown, DropdownItem, DropdownList, Flex, FlexItem, MenuToggle, Modal, ModalBody, ModalFooter, ModalHeader, Spinner, TextArea, } from '@patternfly/react-core';
|
|
13
|
-
import { ToastNotification
|
|
23
|
+
import { ToastNotification } from '@rh-support/components';
|
|
14
24
|
import { GlobalMetadataStateContext, useCanEditCase } from '@rh-support/react-context';
|
|
15
|
-
import { autoEnableFtsOnCaseViewEditPage,
|
|
25
|
+
import { autoEnableFtsOnCaseViewEditPage, isPremiumEntitlement, isSev1, isSev2, PreviousCaseTypes, severitySort, showFtsOnCaseViewEditPage, showFtsOnCreateCasePage, } from '@rh-support/utils';
|
|
16
26
|
import { isUndefined } from 'lodash';
|
|
17
27
|
import find from 'lodash/find';
|
|
18
28
|
import includes from 'lodash/includes';
|
|
@@ -22,11 +32,11 @@ import map from 'lodash/map';
|
|
|
22
32
|
import React, { useContext, useEffect, useReducer, useRef, useState } from 'react';
|
|
23
33
|
import { Trans, useTranslation } from 'react-i18next';
|
|
24
34
|
import { useCaseDispatch, useCaseSelector } from '../../context/CaseContext';
|
|
25
|
-
import { GET_CASE_COMMENTS } from '../../hooks/useCaseComments';
|
|
26
35
|
import { useCaseUpdateErrorMessage } from '../../hooks/useCaseUpdateErrorMessage';
|
|
27
36
|
import { getNewSeverityStringDef, getSeverityDescription } from '../../reducers/CaseHelpers';
|
|
28
37
|
import { caseOverviewReducer, initialCaseViewState, setSeverityUpdating } from '../../reducers/CaseOverviewReducer';
|
|
29
|
-
import { checkForCaseStatusToggleOnAttachOrComment, setCaseState, updateCaseDetails } from '../../reducers/CaseReducer';
|
|
38
|
+
import { checkForCaseStatusToggleOnAttachOrComment, setCaseState, updateCaseDetails, updateCaseDetailsGraphQL, } from '../../reducers/CaseReducer';
|
|
39
|
+
import { usePostComment } from '../shared/usePostComment';
|
|
30
40
|
export default function UpdateSeverityModal(props) {
|
|
31
41
|
const { show, onClose, isDisabled, isFetching } = props;
|
|
32
42
|
const { t } = useTranslation();
|
|
@@ -40,9 +50,6 @@ export default function UpdateSeverityModal(props) {
|
|
|
40
50
|
const [isSeverityInValid, setIsSeverityInValid] = useState(false);
|
|
41
51
|
const [seviritiesOptions, setSeveritiesOptions] = useState([]);
|
|
42
52
|
const client = useApolloClient();
|
|
43
|
-
const { request: postCommentRequest, isFetching: isPostingComment } = useFetch(publicApi.kase.postComment, {
|
|
44
|
-
propgateErrors: true,
|
|
45
|
-
});
|
|
46
53
|
const { globalMetadataState: { allCaseSeverities, allProducts, loggedInUserRights }, } = useContext(GlobalMetadataStateContext);
|
|
47
54
|
const caseState = useCaseSelector((state) => ({
|
|
48
55
|
caseDetails: {
|
|
@@ -58,19 +65,51 @@ export default function UpdateSeverityModal(props) {
|
|
|
58
65
|
phoneCountryCode: state.caseDetails.phoneCountryCode,
|
|
59
66
|
phoneAreaCodePrefixLineNumber: state.caseDetails.phoneAreaCodePrefixLineNumber || '',
|
|
60
67
|
},
|
|
68
|
+
existingCaseDetails: state.caseDetails,
|
|
61
69
|
isCaseUpdating: state.isCaseUpdating,
|
|
62
70
|
versionsDetails: state.versionsDetails,
|
|
63
71
|
ownersEntitlements: state.ownersEntitlements,
|
|
64
72
|
ftsContactSameAsOwner: state.ftsContactSameAsOwner,
|
|
65
73
|
}), isEqual);
|
|
66
|
-
const {
|
|
74
|
+
const { postComment, isPostingComment } = usePostComment({
|
|
75
|
+
caseNumber: caseState.caseDetails.caseNumber,
|
|
76
|
+
});
|
|
77
|
+
const { caseDetails, existingCaseDetails, isCaseUpdating, ownersEntitlements, versionsDetails, ftsContactSameAsOwner, } = caseState;
|
|
67
78
|
const { entitlementSla, fts, contactInfo24x7, caseType, phoneAreaCodePrefixLineNumber, phoneCountryCode } = caseDetails;
|
|
68
79
|
const isIdea = caseType === PreviousCaseTypes.FEATURE_ENHANCEMENT;
|
|
80
|
+
/** GraphQL-only severity/status update. FTS stays on Hydra and must not share this path — a Hydra failure used to roll severity back. */
|
|
81
|
+
const updateSeverityViaGraphQL = (severityPayload) => __awaiter(this, void 0, void 0, function* () {
|
|
82
|
+
const { severity, status } = severityPayload;
|
|
83
|
+
const graphqlUpdate = {};
|
|
84
|
+
if (severity !== undefined) {
|
|
85
|
+
graphqlUpdate.severity = severity;
|
|
86
|
+
}
|
|
87
|
+
if (status !== undefined) {
|
|
88
|
+
graphqlUpdate.status = status;
|
|
89
|
+
}
|
|
90
|
+
if (Object.keys(graphqlUpdate).length === 0) {
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
yield updateCaseDetailsGraphQL(caseDispatch, client, caseDetails.caseNumber, graphqlUpdate, false, {
|
|
94
|
+
existingCaseDetails,
|
|
95
|
+
});
|
|
96
|
+
});
|
|
97
|
+
/** FTS / 24x7 via Hydra. Failures are surfaced but must not undo a successful GraphQL severity update. */
|
|
98
|
+
const updateFtsViaHydra = (ftsPayload) => __awaiter(this, void 0, void 0, function* () {
|
|
99
|
+
const { fts: ftsUpdate, contactInfo24x7: contactUpdate } = ftsPayload;
|
|
100
|
+
if (ftsUpdate === undefined && contactUpdate === undefined) {
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
yield updateCaseDetails(caseDispatch, caseDetails.caseNumber, Object.assign(Object.assign({}, (ftsUpdate !== undefined ? { fts: ftsUpdate } : {})), (contactUpdate !== undefined ? { contactInfo24x7: contactUpdate } : {})));
|
|
104
|
+
});
|
|
69
105
|
const [currentSeverity, setCurrentSeverity] = useState(caseDetails.caseSeverity);
|
|
70
106
|
const [localFtsContact, setLocalFtsContact] = useState(contactInfo24x7 || '');
|
|
71
107
|
const [localFts, setLocalFts] = useState(isUndefined(fts) ? true : fts);
|
|
72
108
|
const initialContactSameAsOwnerRef = useRef(ftsContactSameAsOwner !== null && ftsContactSameAsOwner !== void 0 ? ftsContactSameAsOwner : false);
|
|
73
|
-
const
|
|
109
|
+
const hasPremiumSla = isPremiumEntitlement(entitlementSla || '');
|
|
110
|
+
const severityForFts = String(currentSeverity !== null && currentSeverity !== void 0 ? currentSeverity : '').trim();
|
|
111
|
+
const shouldShowFts = isSev1(severityForFts) || isSev2(severityForFts);
|
|
112
|
+
const isPreviousSeveritySelected = isEqual(caseDetails.caseSeverity, currentSeverity);
|
|
74
113
|
const [isOpen, setIsOpen] = useState(false);
|
|
75
114
|
const onToggleClick = () => {
|
|
76
115
|
setIsOpen(!isOpen);
|
|
@@ -156,14 +195,14 @@ export default function UpdateSeverityModal(props) {
|
|
|
156
195
|
const updateCaseFtsInfo = () => __awaiter(this, void 0, void 0, function* () {
|
|
157
196
|
try {
|
|
158
197
|
const ftsUpdateComment = `${getFtsUpdateComment()} \n\n #### Description \n ${descriptionValue.trim()}`;
|
|
159
|
-
yield
|
|
198
|
+
yield updateFtsViaHydra({
|
|
160
199
|
fts: localFts,
|
|
161
200
|
contactInfo24x7: localFtsContact,
|
|
162
201
|
});
|
|
163
|
-
yield
|
|
164
|
-
caseNumber: caseDetails.caseNumber,
|
|
202
|
+
yield postComment({
|
|
165
203
|
commentBody: ftsUpdateComment === null || ftsUpdateComment === void 0 ? void 0 : ftsUpdateComment.trim(),
|
|
166
204
|
contentType: 'markdown',
|
|
205
|
+
updateDiscussionState: true,
|
|
167
206
|
});
|
|
168
207
|
ToastNotification.addSuccessMessage(t(`Case has been successfully updated`));
|
|
169
208
|
}
|
|
@@ -199,12 +238,19 @@ export default function UpdateSeverityModal(props) {
|
|
|
199
238
|
});
|
|
200
239
|
try {
|
|
201
240
|
setSeverityUpdating(caseOverviewDispatch, true);
|
|
202
|
-
|
|
241
|
+
const _a = updatedCaseDetails, { fts: ftsUpdate, contactInfo24x7: contactUpdate } = _a, severityAndStatus = __rest(_a, ["fts", "contactInfo24x7"]);
|
|
242
|
+
yield updateSeverityViaGraphQL(severityAndStatus);
|
|
243
|
+
if (ftsUpdate !== undefined || contactUpdate !== undefined) {
|
|
244
|
+
try {
|
|
245
|
+
yield updateFtsViaHydra({ fts: ftsUpdate, contactInfo24x7: contactUpdate });
|
|
246
|
+
}
|
|
247
|
+
catch (_b) { }
|
|
248
|
+
}
|
|
203
249
|
try {
|
|
204
|
-
yield
|
|
205
|
-
caseNumber: caseDetails.caseNumber,
|
|
250
|
+
yield postComment({
|
|
206
251
|
commentBody: severityUpdateComment === null || severityUpdateComment === void 0 ? void 0 : severityUpdateComment.trim(),
|
|
207
252
|
contentType: 'markdown',
|
|
253
|
+
updateDiscussionState: true,
|
|
208
254
|
});
|
|
209
255
|
try {
|
|
210
256
|
checkForCaseStatusToggleOnAttachOrComment(caseDispatch, loggedInUserRights.data.isInternal(), caseDetails.caseStatus);
|
|
@@ -213,20 +259,23 @@ export default function UpdateSeverityModal(props) {
|
|
|
213
259
|
ToastNotification.addSuccessMessage(t('Severity has been successfully updated'));
|
|
214
260
|
}
|
|
215
261
|
catch (e) {
|
|
216
|
-
yield
|
|
217
|
-
caseNumber: caseDetails.caseNumber,
|
|
262
|
+
yield postComment({
|
|
218
263
|
commentBody: severityUpdateFailedComment === null || severityUpdateFailedComment === void 0 ? void 0 : severityUpdateFailedComment.trim(),
|
|
219
264
|
contentType: 'markdown',
|
|
265
|
+
updateDiscussionState: true,
|
|
220
266
|
});
|
|
221
267
|
onClose();
|
|
222
268
|
caseUpdateError.showError(e, t(`Failed to update case status. Please try again`));
|
|
223
|
-
yield
|
|
269
|
+
yield updateSeverityViaGraphQL({
|
|
270
|
+
status: 'Waiting on Customer',
|
|
271
|
+
severity: updatedCaseDetails['severity'],
|
|
272
|
+
});
|
|
224
273
|
}
|
|
225
274
|
}
|
|
226
275
|
catch (e) {
|
|
227
276
|
onClose();
|
|
228
277
|
caseUpdateError.showError(e, t(`Couldn't post severity update comment. Please try again`));
|
|
229
|
-
yield
|
|
278
|
+
yield updateSeverityViaGraphQL({
|
|
230
279
|
severity: caseDetails.caseSeverity,
|
|
231
280
|
});
|
|
232
281
|
setDescriptionValue(descriptionValue === null || descriptionValue === void 0 ? void 0 : descriptionValue.trim());
|
|
@@ -237,14 +286,13 @@ export default function UpdateSeverityModal(props) {
|
|
|
237
286
|
catch (e) {
|
|
238
287
|
onClose();
|
|
239
288
|
caseUpdateError.showError(e, t('Severity failed to update'));
|
|
240
|
-
yield
|
|
289
|
+
yield updateSeverityViaGraphQL({
|
|
241
290
|
severity: caseDetails.caseSeverity,
|
|
242
291
|
});
|
|
243
292
|
reUpdateSeverity(caseDetails.caseSeverity);
|
|
244
293
|
setDescriptionValue(descriptionValue === null || descriptionValue === void 0 ? void 0 : descriptionValue.trim());
|
|
245
294
|
}
|
|
246
295
|
finally {
|
|
247
|
-
yield client.refetchQueries({ include: [GET_CASE_COMMENTS] });
|
|
248
296
|
setIsUpdateClickedToShowError(false);
|
|
249
297
|
setDescriptionValue('');
|
|
250
298
|
}
|
|
@@ -262,14 +310,12 @@ export default function UpdateSeverityModal(props) {
|
|
|
262
310
|
if (isEmpty(updatedCaseDetails)) {
|
|
263
311
|
return false;
|
|
264
312
|
}
|
|
265
|
-
|
|
313
|
+
if (isEqual(caseDetails.caseSeverity, currentSeverity) &&
|
|
266
314
|
isEqual(caseDetails.fts, localFts) &&
|
|
267
315
|
isEqual(caseDetails.contactInfo24x7, localFtsContact)) {
|
|
268
316
|
return false;
|
|
269
317
|
}
|
|
270
|
-
|
|
271
|
-
return true;
|
|
272
|
-
}
|
|
318
|
+
return true;
|
|
273
319
|
};
|
|
274
320
|
const onFtsChange = (e) => {
|
|
275
321
|
if (canEditCase.alert())
|
|
@@ -284,8 +330,9 @@ export default function UpdateSeverityModal(props) {
|
|
|
284
330
|
if (!e.target.checked) {
|
|
285
331
|
return;
|
|
286
332
|
}
|
|
287
|
-
|
|
288
|
-
|
|
333
|
+
const ownerPhone = `${phoneCountryCode}-${phoneAreaCodePrefixLineNumber}`;
|
|
334
|
+
setUpdatedCaseDetails((pre) => (Object.assign(Object.assign({}, pre), { contactInfo24x7: ownerPhone })));
|
|
335
|
+
setLocalFtsContact(ownerPhone);
|
|
289
336
|
};
|
|
290
337
|
const onFtsContactChange = (e) => {
|
|
291
338
|
if (canEditCase.alert())
|
|
@@ -293,21 +340,53 @@ export default function UpdateSeverityModal(props) {
|
|
|
293
340
|
setLocalFtsContact(e.target.value);
|
|
294
341
|
setUpdatedCaseDetails((pre) => (Object.assign(Object.assign({}, pre), { contactInfo24x7: e.target.value.trim() })));
|
|
295
342
|
};
|
|
296
|
-
|
|
297
|
-
const
|
|
343
|
+
const isUpdateValid = checkIsUpdateValid();
|
|
344
|
+
const isDescriptionDisabled = (caseOverviewState.caseSeverityUpdating && isCaseUpdating) || isPostingComment || !isUpdateValid;
|
|
345
|
+
const isSubmitButtonDisabled = !(isUpdateValid && isTextAreaValid());
|
|
298
346
|
// To handle the severity change
|
|
299
|
-
const onSeverityChange = (
|
|
347
|
+
const onSeverityChange = (_event, value) => {
|
|
300
348
|
if (canEditCase.alert())
|
|
301
349
|
return;
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
350
|
+
const option = typeof value === 'object' && value !== null && 'name' in value
|
|
351
|
+
? value
|
|
352
|
+
: filteredSeverities.find((s) => s.name === value) || {
|
|
353
|
+
name: String(value),
|
|
354
|
+
disabled: false,
|
|
355
|
+
label: String(value),
|
|
356
|
+
additionalInfo: '',
|
|
357
|
+
};
|
|
358
|
+
// Re-selecting the previously saved severity: reset and keep description/Update disabled
|
|
359
|
+
if (isEqual(caseDetails.caseSeverity, option.name)) {
|
|
360
|
+
setCurrentSeverity(option.name);
|
|
361
|
+
setUpdatedCaseDetails({});
|
|
362
|
+
setLocalFts(isUndefined(fts) ? true : !!fts);
|
|
363
|
+
setLocalFtsContact(contactInfo24x7 || '');
|
|
364
|
+
setCaseState(caseDispatch, { ftsContactSameAsOwner: initialContactSameAsOwnerRef.current });
|
|
365
|
+
setDescriptionValue('');
|
|
366
|
+
setIsUpdateClickedToShowError(false);
|
|
367
|
+
setIsSeverityInValidLocal(option);
|
|
368
|
+
setIsOpen(false);
|
|
369
|
+
return;
|
|
370
|
+
}
|
|
371
|
+
if (isSev1(option.name) && (hasPremiumSla || isEmpty(entitlementSla))) {
|
|
305
372
|
setLocalFts(true);
|
|
306
373
|
setLocalFtsContact('');
|
|
307
374
|
setCaseState(caseDispatch, { ftsContactSameAsOwner: false });
|
|
308
|
-
setUpdatedCaseDetails(
|
|
375
|
+
setUpdatedCaseDetails({
|
|
376
|
+
severity: option.name,
|
|
377
|
+
fts: !isIdea,
|
|
378
|
+
contactInfo24x7: '',
|
|
379
|
+
});
|
|
380
|
+
}
|
|
381
|
+
else if (isSev2(option.name) &&
|
|
382
|
+
(hasPremiumSla || isEmpty(entitlementSla) || showFtsOnCaseViewEditPage(entitlementSla || '', option.name))) {
|
|
383
|
+
setUpdatedCaseDetails({
|
|
384
|
+
severity: option.name,
|
|
385
|
+
});
|
|
309
386
|
}
|
|
310
387
|
else {
|
|
388
|
+
setLocalFts(false);
|
|
389
|
+
setLocalFtsContact('');
|
|
311
390
|
setUpdatedCaseDetails({ severity: option.name, fts: false });
|
|
312
391
|
}
|
|
313
392
|
setCurrentSeverity(option.name);
|
|
@@ -380,23 +459,21 @@ export default function UpdateSeverityModal(props) {
|
|
|
380
459
|
React.createElement(FlexItem, null, selectedSeverity.label || t(`Select a severity`)),
|
|
381
460
|
React.createElement(FlexItem, null, isFetching || versionsDetails.isFetching ? React.createElement(Spinner, { size: "md" }) : '')))), shouldFocusToggleOnSelect: true, isScrollable: true, popperProps: { direction: 'down', enableFlip: false } },
|
|
382
461
|
React.createElement(DropdownList, null, allCaseSeverities.data
|
|
383
|
-
? filteredSeverities.map((option) => (React.createElement(DropdownItem, { value: option, key: option.name, description: option.additionalInfo }, option.label)))
|
|
462
|
+
? filteredSeverities.map((option) => (React.createElement(DropdownItem, { value: option.name, key: option.name, description: option.additionalInfo }, option.label)))
|
|
384
463
|
: []))),
|
|
385
464
|
React.createElement("div", null,
|
|
386
465
|
React.createElement("label", { htmlFor: "date-input", className: "pf-v6-u-mt-md" },
|
|
387
466
|
React.createElement(Trans, null, "Describe update"),
|
|
388
467
|
React.createElement("span", { className: "form-required", "aria-hidden": "true" }, "*")),
|
|
389
|
-
React.createElement(TextArea, { placeholder: t('How has the business impact changed? If you have increased severity, please explain why.'), isDisabled: (
|
|
390
|
-
isPostingComment ||
|
|
391
|
-
!checkIsUpdateValid(), value: descriptionValue, onChange: (_event, value) => handleTextAreaChange(value), resizeOrientation: "vertical", "aria-label": "severity-update-descritpion", validated: isEmpty(descriptionValue) && isUpdateClickedToShowError ? 'error' : 'default', isRequired: true }),
|
|
468
|
+
React.createElement(TextArea, { placeholder: t('How has the business impact changed? If you have increased severity, please explain why.'), isDisabled: isDescriptionDisabled, value: descriptionValue, onChange: (_event, value) => handleTextAreaChange(value), resizeOrientation: "vertical", "aria-label": "severity-update-descritpion", validated: isEmpty(descriptionValue) && isUpdateClickedToShowError ? 'error' : 'default', isRequired: true }),
|
|
392
469
|
React.createElement("div", { className: "pf-v6-u-mt-xs" },
|
|
393
470
|
React.createElement(Trans, null, "To view your comment, go to the Discussion tab."))),
|
|
394
|
-
|
|
471
|
+
shouldShowFts && (React.createElement("div", { className: "pf-v6-u-mt-md pf-v6-u-mb-sm" },
|
|
395
472
|
React.createElement("div", null,
|
|
396
|
-
React.createElement("input", { type: "checkbox", id: "update-severity-fts", "data-tracking-id": "update-severity-fts", name: "update-severity-fts", checked: localFts, onChange: onFtsChange }),
|
|
473
|
+
React.createElement("input", { type: "checkbox", id: "update-severity-fts", "data-tracking-id": "update-severity-fts", name: "update-severity-fts", checked: localFts, onChange: onFtsChange, disabled: !isSev1(currentSeverity) }),
|
|
397
474
|
React.createElement("label", { htmlFor: "update-severity-fts" },
|
|
398
475
|
React.createElement(Trans, null, "24x7 Support"))),
|
|
399
|
-
localFts && (React.createElement("div", null,
|
|
476
|
+
(localFts || isSev1(currentSeverity) || isSev2(currentSeverity)) && (React.createElement("div", null,
|
|
400
477
|
React.createElement("label", { htmlFor: "update-severity-24-7-contact", className: "pf-v6-u-mt-xs" },
|
|
401
478
|
React.createElement(Trans, null, "Contact for 24x7 support")),
|
|
402
479
|
React.createElement("div", null,
|
|
@@ -416,8 +493,9 @@ export default function UpdateSeverityModal(props) {
|
|
|
416
493
|
React.createElement("p", { className: "pf-v6-u-text-color-subtle pf-v6-u-font-size-sm pf-v6-u-mb-md" }, t('Describing your update helps us better assist you.')),
|
|
417
494
|
modalBody()),
|
|
418
495
|
React.createElement(ModalFooter, null,
|
|
419
|
-
React.createElement(Button, { key: "submit", variant: "primary", onClick: onSubmit, isLoading: isCaseUpdating || isPostingComment, "data-tracking-id": "update-severity-submit", isDisabled:
|
|
420
|
-
|
|
421
|
-
|
|
496
|
+
React.createElement(Button, { key: "submit", variant: "primary", onClick: onSubmit, isLoading: isCaseUpdating || isPostingComment, "data-tracking-id": "update-severity-submit", isDisabled: (isPreviousSeveritySelected && !onlyFtsInfoChanged) ||
|
|
497
|
+
(!isUpdateClickedToShowError && isUpdateValid
|
|
498
|
+
? false
|
|
499
|
+
: isSubmitButtonDisabled || isCaseUpdating || isPostingComment) }, t('Update')),
|
|
422
500
|
React.createElement(Button, { key: "back", variant: "link", onClick: onCancel, "data-tracking-id": "update-severity-cancel", isDisabled: isCaseUpdating || isPostingComment }, t('Cancel')))));
|
|
423
501
|
}
|
|
@@ -3,6 +3,8 @@ export interface GetParentIdVariables {
|
|
|
3
3
|
CaseNumber: {
|
|
4
4
|
eq: string;
|
|
5
5
|
};
|
|
6
|
+
} | {
|
|
7
|
+
and: Array<Record<string, unknown>>;
|
|
6
8
|
};
|
|
7
9
|
}
|
|
8
10
|
export interface GetParentIdResponse {
|
|
@@ -58,6 +60,8 @@ export interface GetEscalationDetailsVariables {
|
|
|
58
60
|
ParentId: {
|
|
59
61
|
eq: string;
|
|
60
62
|
};
|
|
63
|
+
} | {
|
|
64
|
+
and: Array<Record<string, unknown>>;
|
|
61
65
|
};
|
|
62
66
|
}
|
|
63
67
|
export interface GetEscalationDetailsResponse {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"escalation.d.ts","sourceRoot":"","sources":["../../../../src/graphql/schemas/escalation.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACjC,KAAK,
|
|
1
|
+
{"version":3,"file":"escalation.d.ts","sourceRoot":"","sources":["../../../../src/graphql/schemas/escalation.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACjC,KAAK,EACC;QACI,UAAU,EAAE;YAAE,EAAE,EAAE,MAAM,CAAA;SAAE,CAAC;KAC9B,GACD;QACI,GAAG,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;KACvC,CAAC;CACX;AAED,MAAM,WAAW,mBAAmB;IAChC,oBAAoB,EAAE;QAClB,KAAK,EAAE;YACH,iBAAiB,EAAE;gBACf,KAAK,EAAE,KAAK,CAAC;oBACT,IAAI,EAAE;wBACF,EAAE,EAAE,MAAM,CAAC;qBACd,CAAC;iBACL,CAAC,CAAC;aACN,CAAC;SACL,CAAC;KACL,CAAC;CACL;AAED,MAAM,WAAW,gCAAgC;IAC7C,SAAS,EAAE;QACP,OAAO,EAAE,MAAM,CAAC;QAChB,WAAW,EAAE,MAAM,CAAC;QACpB,MAAM,EAAE,MAAM,CAAC;QACf,MAAM,EAAE,MAAM,CAAC;QACf,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,YAAY,EAAE,MAAM,CAAC;QACrB,QAAQ,EAAE,MAAM,CAAC;QACjB,qBAAqB,EAAE,MAAM,CAAC;QAC9B,yBAAyB,EAAE,MAAM,CAAC;KACrC,CAAC;CACL;AAED,MAAM,WAAW,+BAA+B;IAC5C,oBAAoB,EAAE;QAClB,UAAU,EAAE;YACR,mBAAmB,EAAE;gBACjB,EAAE,EAAE,MAAM,CAAC;gBACX,UAAU,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAC9B,MAAM,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAC1B,OAAO,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAC3B,QAAQ,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAA;iBAAE,CAAC;aAC/B,CAAC;SACL,CAAC;KACL,CAAC;CACL;AAED,MAAM,WAAW,6BAA6B;IAC1C,KAAK,EACC;QACI,QAAQ,EAAE;YAAE,EAAE,EAAE,MAAM,CAAA;SAAE,CAAC;KAC5B,GACD;QACI,GAAG,EAAE,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;KACvC,CAAC;CACX;AAED,MAAM,WAAW,4BAA4B;IACzC,oBAAoB,EAAE;QAClB,KAAK,EAAE;YACH,iBAAiB,EAAE;gBACf,KAAK,EAAE,KAAK,CAAC;oBACT,IAAI,EAAE;wBACF,UAAU,EAAE;4BAAE,KAAK,EAAE,MAAM,CAAA;yBAAE,CAAC;wBAC9B,OAAO,EAAE;4BAAE,KAAK,EAAE,MAAM,CAAA;yBAAE,CAAC;wBAC3B,MAAM,EAAE;4BAAE,KAAK,EAAE,MAAM,CAAA;yBAAE,CAAC;qBAC7B,CAAC;iBACL,CAAC,CAAC;aACN,CAAC;SACL,CAAC;KACL,CAAC;CACL"}
|
|
@@ -137,7 +137,7 @@ declare const _default: {
|
|
|
137
137
|
'Exporting CSV': string;
|
|
138
138
|
'Could not export CSV': string;
|
|
139
139
|
'4 (Low)': string;
|
|
140
|
-
'3 (
|
|
140
|
+
'3 (Medium)': string;
|
|
141
141
|
'2 (High)': string;
|
|
142
142
|
'1 (Urgent)': string;
|
|
143
143
|
'Saved for later': string;
|
|
@@ -533,7 +533,7 @@ declare const _default: {
|
|
|
533
533
|
STANDARD: string;
|
|
534
534
|
PREMIUM: string;
|
|
535
535
|
'4 (Low) - 2 business days': string;
|
|
536
|
-
'3 (
|
|
536
|
+
'3 (Medium) - 1 business day': string;
|
|
537
537
|
'2 (High) - 4 business hours': string;
|
|
538
538
|
'1 (Urgent) - 1 business hour': string;
|
|
539
539
|
'Loading...': string;
|
|
@@ -137,7 +137,7 @@ export default {
|
|
|
137
137
|
'Exporting CSV': 'CSV wird exportiert',
|
|
138
138
|
'Could not export CSV': 'CSV nicht exportiert',
|
|
139
139
|
'4 (Low)': '4 (Niedrig)',
|
|
140
|
-
'3 (
|
|
140
|
+
'3 (Medium)': '3 (Medium)',
|
|
141
141
|
'2 (High)': '2 (Hoch)',
|
|
142
142
|
'1 (Urgent)': '1 (Dringend)',
|
|
143
143
|
'Saved for later': 'Gespeichert für später',
|
|
@@ -533,7 +533,7 @@ export default {
|
|
|
533
533
|
STANDARD: 'STANDARD',
|
|
534
534
|
PREMIUM: 'PREMIUM',
|
|
535
535
|
'4 (Low) - 2 business days': '4 (Niedrig) – 2 Werktage',
|
|
536
|
-
'3 (
|
|
536
|
+
'3 (Medium) - 1 business day': '3 (Medium) – 1 Werktag',
|
|
537
537
|
'2 (High) - 4 business hours': '2 (Hoch) – 4 Geschäftsstunden',
|
|
538
538
|
'1 (Urgent) - 1 business hour': '1 (Dringend) – 1 Geschäftsstunde',
|
|
539
539
|
'Loading...': 'Laden...',
|
|
@@ -138,7 +138,7 @@ declare const _default: {
|
|
|
138
138
|
'Exporting CSV': string;
|
|
139
139
|
'Could not export CSV': string;
|
|
140
140
|
'4 (Low)': string;
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': string;
|
|
142
142
|
'2 (High)': string;
|
|
143
143
|
'1 (Urgent)': string;
|
|
144
144
|
'Saved for later': string;
|
|
@@ -534,7 +534,7 @@ declare const _default: {
|
|
|
534
534
|
STANDARD: string;
|
|
535
535
|
PREMIUM: string;
|
|
536
536
|
'4 (Low) - 2 business days': string;
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': string;
|
|
538
538
|
'2 (High) - 4 business hours': string;
|
|
539
539
|
'1 (Urgent) - 1 business hour': string;
|
|
540
540
|
'Loading...': string;
|
|
@@ -138,7 +138,7 @@ export default {
|
|
|
138
138
|
'Exporting CSV': 'Exportación de CSV',
|
|
139
139
|
'Could not export CSV': 'No pudo exportar el CSV',
|
|
140
140
|
'4 (Low)': '4 (bajo)',
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': '3 (Medium)',
|
|
142
142
|
'2 (High)': '2 (alto)',
|
|
143
143
|
'1 (Urgent)': '1 (urgente)',
|
|
144
144
|
'Saved for later': 'Guardado para más tarde',
|
|
@@ -534,7 +534,7 @@ export default {
|
|
|
534
534
|
STANDARD: 'STANDARD',
|
|
535
535
|
PREMIUM: 'PREMIUM',
|
|
536
536
|
'4 (Low) - 2 business days': '4 (Bajo) - 2 días hábiles',
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': '3 (Medium) - 1 día hábil',
|
|
538
538
|
'2 (High) - 4 business hours': '2 (Alto) - 4 horas de trabajo',
|
|
539
539
|
'1 (Urgent) - 1 business hour': '1 (Urgente) - 1 hora de trabajo',
|
|
540
540
|
'Loading...': 'Cargando...',
|
|
@@ -138,7 +138,7 @@ declare const _default: {
|
|
|
138
138
|
'Exporting CSV': string;
|
|
139
139
|
'Could not export CSV': string;
|
|
140
140
|
'4 (Low)': string;
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': string;
|
|
142
142
|
'2 (High)': string;
|
|
143
143
|
'1 (Urgent)': string;
|
|
144
144
|
'Saved for later': string;
|
|
@@ -533,7 +533,7 @@ declare const _default: {
|
|
|
533
533
|
STANDARD: string;
|
|
534
534
|
PREMIUM: string;
|
|
535
535
|
'4 (Low) - 2 business days': string;
|
|
536
|
-
'3 (
|
|
536
|
+
'3 (Medium) - 1 business day': string;
|
|
537
537
|
'2 (High) - 4 business hours': string;
|
|
538
538
|
'1 (Urgent) - 1 business hour': string;
|
|
539
539
|
'Loading...': string;
|
|
@@ -138,7 +138,7 @@ export default {
|
|
|
138
138
|
'Exporting CSV': 'Exportation de CSV',
|
|
139
139
|
'Could not export CSV': 'N’a pas pu exporter CSV',
|
|
140
140
|
'4 (Low)': '4 (faible)',
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': '3 (normal)',
|
|
142
142
|
'2 (High)': '2 (élevé)',
|
|
143
143
|
'1 (Urgent)': '1 (urgent)',
|
|
144
144
|
'Saved for later': 'Sauvegardé pour plus tard',
|
|
@@ -534,7 +534,7 @@ export default {
|
|
|
534
534
|
STANDARD: 'STANDARD',
|
|
535
535
|
PREMIUM: 'PREMIUM',
|
|
536
536
|
'4 (Low) - 2 business days': '4 (faible) - 2 jours ouvrables',
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': '3 (normal) - 1 jour ouvrable',
|
|
538
538
|
'2 (High) - 4 business hours': '2 (élevé) - 4 heures ouvrables',
|
|
539
539
|
'1 (Urgent) - 1 business hour': '1 (Urgent) - 1 heure ouvrable',
|
|
540
540
|
'Loading...': 'Chargement...',
|
|
@@ -138,7 +138,7 @@ declare const _default: {
|
|
|
138
138
|
'Exporting CSV': string;
|
|
139
139
|
'Could not export CSV': string;
|
|
140
140
|
'4 (Low)': string;
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': string;
|
|
142
142
|
'2 (High)': string;
|
|
143
143
|
'1 (Urgent)': string;
|
|
144
144
|
'Saved for later': string;
|
|
@@ -534,7 +534,7 @@ declare const _default: {
|
|
|
534
534
|
STANDARD: string;
|
|
535
535
|
PREMIUM: string;
|
|
536
536
|
'4 (Low) - 2 business days': string;
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': string;
|
|
538
538
|
'2 (High) - 4 business hours': string;
|
|
539
539
|
'1 (Urgent) - 1 business hour': string;
|
|
540
540
|
'Loading...': string;
|
|
@@ -138,7 +138,7 @@ export default {
|
|
|
138
138
|
'Exporting CSV': 'Esportazione CSV',
|
|
139
139
|
'Could not export CSV': 'Impossibile esportare CSV',
|
|
140
140
|
'4 (Low)': '4 (basso)',
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': '3 (normale)',
|
|
142
142
|
'2 (High)': '2 (alto)',
|
|
143
143
|
'1 (Urgent)': '1 (urgente)',
|
|
144
144
|
'Saved for later': 'Salvato per dopo',
|
|
@@ -534,7 +534,7 @@ export default {
|
|
|
534
534
|
STANDARD: 'STANDARD',
|
|
535
535
|
PREMIUM: 'PREMIUM',
|
|
536
536
|
'4 (Low) - 2 business days': '4 (Basso): 2 giorni lavorativi',
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': '3 (Normale): 1 giorno lavorativo',
|
|
538
538
|
'2 (High) - 4 business hours': '2 (alto): 4 ore lavorative',
|
|
539
539
|
'1 (Urgent) - 1 business hour': '1 (urgente): 1 ora lavorativa',
|
|
540
540
|
'Loading...': 'Caricamento in corso',
|
|
@@ -138,7 +138,7 @@ declare const _default: {
|
|
|
138
138
|
'Exporting CSV': string;
|
|
139
139
|
'Could not export CSV': string;
|
|
140
140
|
'4 (Low)': string;
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': string;
|
|
142
142
|
'2 (High)': string;
|
|
143
143
|
'1 (Urgent)': string;
|
|
144
144
|
'Saved for later': string;
|
|
@@ -533,7 +533,7 @@ declare const _default: {
|
|
|
533
533
|
STANDARD: string;
|
|
534
534
|
PREMIUM: string;
|
|
535
535
|
'4 (Low) - 2 business days': string;
|
|
536
|
-
'3 (
|
|
536
|
+
'3 (Medium) - 1 business day': string;
|
|
537
537
|
'2 (High) - 4 business hours': string;
|
|
538
538
|
'1 (Urgent) - 1 business hour': string;
|
|
539
539
|
'Loading...': string;
|
|
@@ -138,7 +138,7 @@ export default {
|
|
|
138
138
|
'Exporting CSV': 'CSV をエクスポート中です',
|
|
139
139
|
'Could not export CSV': 'CSV をエクスポートできません',
|
|
140
140
|
'4 (Low)': '4 (低)',
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': '3 (中)',
|
|
142
142
|
'2 (High)': '2 (高)',
|
|
143
143
|
'1 (Urgent)': '1 (緊急)',
|
|
144
144
|
'Saved for later': '一時保存しました',
|
|
@@ -534,7 +534,7 @@ export default {
|
|
|
534
534
|
STANDARD: 'STANDARD',
|
|
535
535
|
PREMIUM: 'PREMIUM',
|
|
536
536
|
'4 (Low) - 2 business days': '4 (低) - 2 営業日',
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': '3 (中) - 1 営業日',
|
|
538
538
|
'2 (High) - 4 business hours': '2 (高) - 4 営業時間',
|
|
539
539
|
'1 (Urgent) - 1 business hour': '1 (緊急) - 1 営業時間',
|
|
540
540
|
'Loading...': '読み込み中...',
|
|
@@ -138,7 +138,7 @@ declare const _default: {
|
|
|
138
138
|
'Exporting CSV': string;
|
|
139
139
|
'Could not export CSV': string;
|
|
140
140
|
'4 (Low)': string;
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': string;
|
|
142
142
|
'2 (High)': string;
|
|
143
143
|
'1 (Urgent)': string;
|
|
144
144
|
'Saved for later': string;
|
|
@@ -535,7 +535,7 @@ declare const _default: {
|
|
|
535
535
|
STANDARD: string;
|
|
536
536
|
PREMIUM: string;
|
|
537
537
|
'4 (Low) - 2 business days': string;
|
|
538
|
-
'3 (
|
|
538
|
+
'3 (Medium) - 1 business day': string;
|
|
539
539
|
'2 (High) - 4 business hours': string;
|
|
540
540
|
'1 (Urgent) - 1 business hour': string;
|
|
541
541
|
'Loading...': string;
|
|
@@ -138,7 +138,7 @@ export default {
|
|
|
138
138
|
'Exporting CSV': 'CSV 내보내기',
|
|
139
139
|
'Could not export CSV': 'CSV를 내보낼 수 없습니다',
|
|
140
140
|
'4 (Low)': '4 (낮음)',
|
|
141
|
-
'3 (
|
|
141
|
+
'3 (Medium)': '3 (보통)',
|
|
142
142
|
'2 (High)': '2 (높음)',
|
|
143
143
|
'1 (Urgent)': '1 (긴급)',
|
|
144
144
|
'Saved for later': '임시 저장했습니다',
|
|
@@ -536,7 +536,7 @@ export default {
|
|
|
536
536
|
STANDARD: 'STANDARD',
|
|
537
537
|
PREMIUM: 'PREMIUM',
|
|
538
538
|
'4 (Low) - 2 business days': '4 (낮음)-영업일 기준 2 일',
|
|
539
|
-
'3 (
|
|
539
|
+
'3 (Medium) - 1 business day': '3 (중간)-영업일 기준 1 일',
|
|
540
540
|
'2 (High) - 4 business hours': '2 (높음) - 4 시간 (영업 시간)',
|
|
541
541
|
'1 (Urgent) - 1 business hour': '1 (긴급) - 1 시간 (영업 시간)',
|
|
542
542
|
'Loading...': '로드 중 ...',
|
|
@@ -137,7 +137,7 @@ declare const _default: {
|
|
|
137
137
|
'Exporting CSV': string;
|
|
138
138
|
'Could not export CSV': string;
|
|
139
139
|
'4 (Low)': string;
|
|
140
|
-
'3 (
|
|
140
|
+
'3 (Medium)': string;
|
|
141
141
|
'2 (High)': string;
|
|
142
142
|
'1 (Urgent)': string;
|
|
143
143
|
'Saved for later': string;
|
|
@@ -534,7 +534,7 @@ declare const _default: {
|
|
|
534
534
|
STANDARD: string;
|
|
535
535
|
PREMIUM: string;
|
|
536
536
|
'4 (Low) - 2 business days': string;
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': string;
|
|
538
538
|
'2 (High) - 4 business hours': string;
|
|
539
539
|
'1 (Urgent) - 1 business hour': string;
|
|
540
540
|
'Loading...': string;
|
|
@@ -137,7 +137,7 @@ export default {
|
|
|
137
137
|
'Exporting CSV': 'Exportando CSV',
|
|
138
138
|
'Could not export CSV': 'Não foi possível exportar CSV',
|
|
139
139
|
'4 (Low)': '4 (Baixa)',
|
|
140
|
-
'3 (
|
|
140
|
+
'3 (Medium)': '3 (Medium)',
|
|
141
141
|
'2 (High)': '2 (Alta)',
|
|
142
142
|
'1 (Urgent)': '1 (Urgente)',
|
|
143
143
|
'Saved for later': 'Salvo para mais tarde',
|
|
@@ -534,7 +534,7 @@ export default {
|
|
|
534
534
|
STANDARD: 'STANDARD',
|
|
535
535
|
PREMIUM: 'PREMIUM',
|
|
536
536
|
'4 (Low) - 2 business days': '4 (Baixa) - 2 dias úteis',
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': '3 (Medium) - 1 dia útil',
|
|
538
538
|
'2 (High) - 4 business hours': '2 (Alta) - 4 horas úteis',
|
|
539
539
|
'1 (Urgent) - 1 business hour': '1 (Urgente) - 1 hora útil',
|
|
540
540
|
'Loading...': 'Carregando...',
|
|
@@ -137,7 +137,7 @@ declare const _default: {
|
|
|
137
137
|
'Exporting CSV': string;
|
|
138
138
|
'Could not export CSV': string;
|
|
139
139
|
'4 (Low)': string;
|
|
140
|
-
'3 (
|
|
140
|
+
'3 (Medium)': string;
|
|
141
141
|
'2 (High)': string;
|
|
142
142
|
'1 (Urgent)': string;
|
|
143
143
|
'Saved for later': string;
|
|
@@ -534,7 +534,7 @@ declare const _default: {
|
|
|
534
534
|
STANDARD: string;
|
|
535
535
|
PREMIUM: string;
|
|
536
536
|
'4 (Low) - 2 business days': string;
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': string;
|
|
538
538
|
'2 (High) - 4 business hours': string;
|
|
539
539
|
'1 (Urgent) - 1 business hour': string;
|
|
540
540
|
'Loading...': string;
|
|
@@ -137,7 +137,7 @@ export default {
|
|
|
137
137
|
'Exporting CSV': 'Экспорт CSV',
|
|
138
138
|
'Could not export CSV': 'Не удалось экспортировать CSV',
|
|
139
139
|
'4 (Low)': '4 (низкий)',
|
|
140
|
-
'3 (
|
|
140
|
+
'3 (Medium)': '3 (обычный)',
|
|
141
141
|
'2 (High)': '2 (высокий)',
|
|
142
142
|
'1 (Urgent)': '1 (срочный)',
|
|
143
143
|
'Saved for later': 'Сохранено на будущее',
|
|
@@ -534,7 +534,7 @@ export default {
|
|
|
534
534
|
STANDARD: 'STANDARD',
|
|
535
535
|
PREMIUM: 'PREMIUM',
|
|
536
536
|
'4 (Low) - 2 business days': '4 (низкий) — 2 рабочих дня',
|
|
537
|
-
'3 (
|
|
537
|
+
'3 (Medium) - 1 business day': '3 (нормальный) — 1 рабочий день',
|
|
538
538
|
'2 (High) - 4 business hours': '2 (высокий) — 4 рабочих часа',
|
|
539
539
|
'1 (Urgent) - 1 business hour': '1 (срочный) — 1 рабочий час',
|
|
540
540
|
'Loading...': 'Загрузка...',
|
|
@@ -137,7 +137,7 @@ declare const _default: {
|
|
|
137
137
|
'Exporting CSV': string;
|
|
138
138
|
'Could not export CSV': string;
|
|
139
139
|
'4 (Low)': string;
|
|
140
|
-
'3 (
|
|
140
|
+
'3 (Medium)': string;
|
|
141
141
|
'2 (High)': string;
|
|
142
142
|
'1 (Urgent)': string;
|
|
143
143
|
'Saved for later': string;
|
|
@@ -527,7 +527,7 @@ declare const _default: {
|
|
|
527
527
|
STANDARD: string;
|
|
528
528
|
PREMIUM: string;
|
|
529
529
|
'4 (Low) - 2 business days': string;
|
|
530
|
-
'3 (
|
|
530
|
+
'3 (Medium) - 1 business day': string;
|
|
531
531
|
'2 (High) - 4 business hours': string;
|
|
532
532
|
'1 (Urgent) - 1 business hour': string;
|
|
533
533
|
'Loading...': string;
|
|
@@ -137,7 +137,7 @@ export default {
|
|
|
137
137
|
'Exporting CSV': '导出 CSV',
|
|
138
138
|
'Could not export CSV': '无法导出 CSV',
|
|
139
139
|
'4 (Low)': '4 (低)',
|
|
140
|
-
'3 (
|
|
140
|
+
'3 (Medium)': '3 (正常)',
|
|
141
141
|
'2 (High)': '2 (高)',
|
|
142
142
|
'1 (Urgent)': '1 (紧急)',
|
|
143
143
|
'Saved for later': '为以后保存',
|
|
@@ -527,7 +527,7 @@ export default {
|
|
|
527
527
|
STANDARD: 'STANDARD',
|
|
528
528
|
PREMIUM: 'PREMIUM',
|
|
529
529
|
'4 (Low) - 2 business days': '4(低)- 2 个工作日',
|
|
530
|
-
'3 (
|
|
530
|
+
'3 (Medium) - 1 business day': '3(普通)- 1 个工作日',
|
|
531
531
|
'2 (High) - 4 business hours': '2(高)- 4 个工作小时',
|
|
532
532
|
'1 (Urgent) - 1 business hour': '1(紧急)- 1 个工作小时',
|
|
533
533
|
'Loading...': '正在加载...',
|
|
@@ -61,7 +61,7 @@ export declare const enum SupportLevelsInternal {
|
|
|
61
61
|
export declare const enum SeverityLevelsInternal {
|
|
62
62
|
SEV_1 = "1 (Urgent)",
|
|
63
63
|
SEV_2 = "2 (High)",
|
|
64
|
-
SEV_3 = "3 (
|
|
64
|
+
SEV_3 = "3 (Medium)",
|
|
65
65
|
SEV_4 = "4 (Low)"
|
|
66
66
|
}
|
|
67
67
|
export declare const SupportLevelDisplay: {
|
|
@@ -83,7 +83,7 @@ export declare const ITRForSLASeverity: {
|
|
|
83
83
|
initial: string;
|
|
84
84
|
ongoing: string;
|
|
85
85
|
};
|
|
86
|
-
"3 (
|
|
86
|
+
"3 (Medium)": {
|
|
87
87
|
initial: string;
|
|
88
88
|
ongoing: string;
|
|
89
89
|
};
|
|
@@ -101,7 +101,7 @@ export declare const ITRForSLASeverity: {
|
|
|
101
101
|
initial: string;
|
|
102
102
|
ongoing: string;
|
|
103
103
|
};
|
|
104
|
-
"3 (
|
|
104
|
+
"3 (Medium)": {
|
|
105
105
|
initial: string;
|
|
106
106
|
ongoing: string;
|
|
107
107
|
};
|
|
@@ -119,7 +119,7 @@ export declare const ITRForSLASeverity: {
|
|
|
119
119
|
initial: string;
|
|
120
120
|
ongoing: string;
|
|
121
121
|
};
|
|
122
|
-
"3 (
|
|
122
|
+
"3 (Medium)": {
|
|
123
123
|
initial: string;
|
|
124
124
|
ongoing: string;
|
|
125
125
|
};
|
|
@@ -132,13 +132,13 @@ export declare const ITRForSLASeverity: {
|
|
|
132
132
|
export declare const SeverityDescription: {
|
|
133
133
|
"1 (Urgent)": string;
|
|
134
134
|
"2 (High)": string;
|
|
135
|
-
"3 (
|
|
135
|
+
"3 (Medium)": string;
|
|
136
136
|
"4 (Low)": string;
|
|
137
137
|
};
|
|
138
138
|
export declare const SeverityDescriptionDetails: {
|
|
139
139
|
"1 (Urgent)": string;
|
|
140
140
|
"2 (High)": string;
|
|
141
|
-
"3 (
|
|
141
|
+
"3 (Medium)": string;
|
|
142
142
|
"4 (Low)": string;
|
|
143
143
|
};
|
|
144
144
|
export declare const LargeDescriptionErrorMessage = "Cumulative case description cannot be more than {{limit}} characters";
|
|
@@ -198,6 +198,7 @@ export interface ICaseDetailsState {
|
|
|
198
198
|
contactInfo24x7?: string;
|
|
199
199
|
contactName?: string;
|
|
200
200
|
contactPhone?: string | null;
|
|
201
|
+
suppliedPhone?: string | null;
|
|
201
202
|
contactId?: string;
|
|
202
203
|
contactSSOName?: string;
|
|
203
204
|
createdById?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseConstNTypes.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"CaseConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseConstNTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -74,33 +74,33 @@ export const ITRForSLASeverity = {
|
|
|
74
74
|
["selfSupport" /* SupportLevelsInternal.SELF_SUPPORT */]: {
|
|
75
75
|
["1 (Urgent)" /* SeverityLevelsInternal.SEV_1 */]: { initial: '', ongoing: '' },
|
|
76
76
|
["2 (High)" /* SeverityLevelsInternal.SEV_2 */]: { initial: '', ongoing: '' },
|
|
77
|
-
["3 (
|
|
77
|
+
["3 (Medium)" /* SeverityLevelsInternal.SEV_3 */]: { initial: '', ongoing: '' },
|
|
78
78
|
["4 (Low)" /* SeverityLevelsInternal.SEV_4 */]: { initial: '', ongoing: '' },
|
|
79
79
|
},
|
|
80
80
|
["standard" /* SupportLevelsInternal.STANDARD */]: {
|
|
81
81
|
["1 (Urgent)" /* SeverityLevelsInternal.SEV_1 */]: { initial: '1 business hour', ongoing: '1 business hour' },
|
|
82
82
|
["2 (High)" /* SeverityLevelsInternal.SEV_2 */]: { initial: '4 business hours', ongoing: '4 business hours' },
|
|
83
|
-
["3 (
|
|
83
|
+
["3 (Medium)" /* SeverityLevelsInternal.SEV_3 */]: { initial: '1 business day', ongoing: '1 business day' },
|
|
84
84
|
["4 (Low)" /* SeverityLevelsInternal.SEV_4 */]: { initial: '2 business days', ongoing: '2 business days' },
|
|
85
85
|
},
|
|
86
86
|
["premium" /* SupportLevelsInternal.PREMIUM */]: {
|
|
87
87
|
["1 (Urgent)" /* SeverityLevelsInternal.SEV_1 */]: { initial: '1 hour', ongoing: '1 hour or as agreed' },
|
|
88
88
|
["2 (High)" /* SeverityLevelsInternal.SEV_2 */]: { initial: '2 hours', ongoing: '4 hours or as agreed' },
|
|
89
|
-
["3 (
|
|
89
|
+
["3 (Medium)" /* SeverityLevelsInternal.SEV_3 */]: { initial: '4 business hours', ongoing: '8 business hours or as agreed' },
|
|
90
90
|
["4 (Low)" /* SeverityLevelsInternal.SEV_4 */]: { initial: '8 business hours', ongoing: '2 business days or as agreed' },
|
|
91
91
|
},
|
|
92
92
|
};
|
|
93
93
|
export const SeverityDescription = {
|
|
94
94
|
["1 (Urgent)" /* SeverityLevelsInternal.SEV_1 */]: 'Severe impact to critical systems',
|
|
95
95
|
["2 (High)" /* SeverityLevelsInternal.SEV_2 */]: 'Critical systems have been significantly degraded',
|
|
96
|
-
["3 (
|
|
96
|
+
["3 (Medium)" /* SeverityLevelsInternal.SEV_3 */]: 'Partial, non-critical loss of usage',
|
|
97
97
|
["4 (Low)" /* SeverityLevelsInternal.SEV_4 */]: 'A non-urgent query regarding a Red Hat Product or service.',
|
|
98
98
|
};
|
|
99
99
|
//updated description details
|
|
100
100
|
export const SeverityDescriptionDetails = {
|
|
101
101
|
["1 (Urgent)" /* SeverityLevelsInternal.SEV_1 */]: 'An issue with a Red Hat Product or Service that is<strong> actively causing serious interruptions to your business critical operations.</strong> This is an issue requiring immediate attention as there is a significant risk to your business.',
|
|
102
102
|
["2 (High)" /* SeverityLevelsInternal.SEV_2 */]: 'An issue with a Red Hat Product or Service that is <strong> partially functional </strong>(such as degradation of a service but the service is still available) and actively impacting your business operations. This is an issue on a business critical system requiring accelerated attention.',
|
|
103
|
-
["3 (
|
|
103
|
+
["3 (Medium)" /* SeverityLevelsInternal.SEV_3 */]: 'An issue with a Red Hat Product or Service that is <strong> currently functioning as expected </strong> but you either (1) recently experienced a degradation that you are monitoring or seeking a root cause for or (2) you are seeing indicators of a potential loss of functionality to a business critical system.',
|
|
104
104
|
["4 (Low)" /* SeverityLevelsInternal.SEV_4 */]: 'Typically, a query that does not involve any interruption to your business critical operations. ',
|
|
105
105
|
};
|
|
106
106
|
export const LargeDescriptionErrorMessage = 'Cumulative case description cannot be more than {{limit}} characters';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseDetailsPageReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseDetailsPageReducer.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oDAAoD,CAAC;AACtF,OAAO,EAAE,WAAW,EAAE,MAAM,2CAA2C,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,2CAA2C,CAAC;AAC5E,OAAO,EAAE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EACH,iBAAiB,
|
|
1
|
+
{"version":3,"file":"CaseDetailsPageReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseDetailsPageReducer.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oDAAoD,CAAC;AACtF,OAAO,EAAE,WAAW,EAAE,MAAM,2CAA2C,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,2CAA2C,CAAC;AAC5E,OAAO,EAAE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EACH,iBAAiB,EAKpB,MAAM,mBAAmB,CAAC;AAI3B,KAAK,WAAW,GAAG,OAAO,CAAC,oBAAoB,EAAE,cAAc,CAAC,CAAC;AACjE,MAAM,MAAM,8BAA8B,GAAG,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC;AAE1E,oBAAY,oBAAoB;IAC5B,WAAW,gBAAgB;CAC9B;AAED,MAAM,WAAW,cAAc;IAC3B,kBAAkB,EAAE,mBAAmB,CAAC,OAAO,CAAC,gBAAgB,EAAE,CAAC,CAAC,CAAC;IACrE,mBAAmB,EAAE,mBAAmB,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC;IAGjE,0BAA0B,EAAE,mBAAmB,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;IACpE,eAAe,EAAE,mBAAmB,CAAC,eAAe,EAAE,CAAC,CAAC;CAC3D;AAED,eAAO,MAAM,2BAA2B,EAAE,cAOzC,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,OAAO,cAAc,EAAE,QAAQ,WAAW,KAAG,GASnF,CAAC;AAEF,eAAO,MAAM,gBAAgB,GACzB,UAAU,8BAA8B,EACxC,YAAY,MAAM,EAClB,cAAc,iBAAiB,EAC/B,mBAAmB,MAAM,kBA+B5B,CAAC;AAEF,eAAO,MAAM,cAAc,GAAU,UAAU,8BAA8B,EAAE,YAAY,MAAM,kBAoBhG,CAAC;AAsBF,eAAO,MAAM,qBAAqB,GAAU,WAAW,8BAA8B,EAAE,aAAa,MAAM,kBAEzG,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAC7B,UAAU,8BAA8B,EACxC,UAAU,MAAM,EAChB,cAAc;IAAE,KAAK,EAAE,CAAC,OAAO,EAAE,GAAG,KAAK,OAAO,CAAC,GAAG,CAAC,CAAA;CAAE,EACvD,oBAAiB,kBAqCpB,CAAC"}
|
|
@@ -8,7 +8,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
10
|
import { publicApi } from '@cee-eng/hydrajs';
|
|
11
|
-
import { fetchCaseAttachmentsViaGraphQL, fetchCaseDetailsByCaseNumber, getApiResourceObject, } from '@rh-support/utils';
|
|
11
|
+
import { buildAccessRestrictionExclusionFilter, fetchCaseAttachmentsViaGraphQL, fetchCaseDetailsByCaseNumber, getApiResourceObject, } from '@rh-support/utils';
|
|
12
12
|
import { GET_ESCALATION_DETAILS } from '../graphql';
|
|
13
13
|
export var CaseDetailsConstants;
|
|
14
14
|
(function (CaseDetailsConstants) {
|
|
@@ -112,7 +112,11 @@ export const fetchCaseEscalations = (dispatch_1, parentId_1, apolloClient_1, ...
|
|
|
112
112
|
});
|
|
113
113
|
const { data } = yield apolloClient.query({
|
|
114
114
|
query: GET_ESCALATION_DETAILS,
|
|
115
|
-
variables: {
|
|
115
|
+
variables: {
|
|
116
|
+
where: {
|
|
117
|
+
and: [{ ParentId: { eq: parentId } }, buildAccessRestrictionExclusionFilter()],
|
|
118
|
+
},
|
|
119
|
+
},
|
|
116
120
|
});
|
|
117
121
|
const edges = (_d = (_c = (_b = (_a = data === null || data === void 0 ? void 0 : data.redhat_support_uiapi) === null || _a === void 0 ? void 0 : _a.query) === null || _b === void 0 ? void 0 : _b.RedHatSupportCase) === null || _c === void 0 ? void 0 : _c.edges) !== null && _d !== void 0 ? _d : [];
|
|
118
122
|
const caseEscalations = edges.map(({ node }) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.310",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"@progress/kendo-licensing": "1.3.5",
|
|
53
53
|
"@progress/kendo-react-pdf": "^5.16.0",
|
|
54
54
|
"@redux-devtools/extension": "^3.3.0",
|
|
55
|
-
"@rh-support/components": "2.5.
|
|
56
|
-
"@rh-support/react-context": "2.5.
|
|
55
|
+
"@rh-support/components": "2.5.191",
|
|
56
|
+
"@rh-support/react-context": "2.5.285",
|
|
57
57
|
"@rh-support/types": "2.0.26",
|
|
58
|
-
"@rh-support/user-permissions": "2.5.
|
|
59
|
-
"@rh-support/utils": "2.5.
|
|
58
|
+
"@rh-support/user-permissions": "2.5.137",
|
|
59
|
+
"@rh-support/utils": "2.5.119",
|
|
60
60
|
"@types/react-redux": "^7.1.33",
|
|
61
61
|
"@types/redux": "^3.6.0",
|
|
62
62
|
"date-fns": "3.6.0",
|
|
@@ -126,5 +126,5 @@
|
|
|
126
126
|
"defaults and supports es6-module",
|
|
127
127
|
"maintained node versions"
|
|
128
128
|
],
|
|
129
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "e737fe04f1e771923e483cd65f7d6f6f87b53356"
|
|
130
130
|
}
|