Skip to content

Commit

Permalink
remove actionTypeId
Browse files Browse the repository at this point in the history
  • Loading branch information
mdial89f committed Aug 6, 2024
1 parent 0f4fc4b commit 8aa528a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export const transform = (id: string) => {
flavor: "WAIVER",
state: id.slice(0, 2),
actionType: "Extend",
actionTypeId: 9999,
authorityId: data.temporaryExtensionType
? getIdByAuthorityName(data.temporaryExtensionType)
: null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export const transform = (id: string) => {
flavor: "WAIVER",
state: id.split("-")[0],
actionType: data.seaActionType,
actionTypeId: 9999,
authorityId: getIdByAuthorityName(data.authority.toUpperCase()),
authority: data.authority,
stateStatus: "Submitted",
Expand Down Expand Up @@ -104,7 +103,6 @@ export const transform = (id: string) => {
flavor: flavorLookup(data.authority.toLowerCase()),
proposedDate: data.proposedEffectiveDate,
actionType: data.seaActionType,
actionTypeId: 9999,
authorityId: getIdByAuthorityName(data.authority.toUpperCase()),
seatoolStatus: SEATOOL_STATUS.PENDING,
stateStatus,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ export const transform = (id: string) => {
id,
flavor: flavorLookup(data.STATE_PLAN.PLAN_TYPE), // This is MEDICAID CHIP or WAIVER... our concept
actionType: data.ACTIONTYPES?.[0].ACTION_NAME,
actionTypeId: data.ACTIONTYPES?.[0].ACTION_ID,
approvedEffectiveDate: getDateStringOrNullFromEpoc(
data.STATE_PLAN.APPROVED_EFFECTIVE_DATE ||
data.STATE_PLAN.ACTUAL_EFFECTIVE_DATE,
Expand Down Expand Up @@ -209,7 +208,6 @@ export const tombstone = (id: string) => {
return {
id,
actionType: null,
actionTypeId: null,
approvedEffectiveDate: null,
changedDate: null,
description: null,
Expand Down

0 comments on commit 8aa528a

Please sign in to comment.