diff --git a/lib/packages/shared-types/opensearch/main/transforms/legacy-package-view.ts b/lib/packages/shared-types/opensearch/main/transforms/legacy-package-view.ts index f3846d2436..3f926176e4 100644 --- a/lib/packages/shared-types/opensearch/main/transforms/legacy-package-view.ts +++ b/lib/packages/shared-types/opensearch/main/transforms/legacy-package-view.ts @@ -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, diff --git a/lib/packages/shared-types/opensearch/main/transforms/new-submission.ts b/lib/packages/shared-types/opensearch/main/transforms/new-submission.ts index 8009f0847b..4875ad146e 100644 --- a/lib/packages/shared-types/opensearch/main/transforms/new-submission.ts +++ b/lib/packages/shared-types/opensearch/main/transforms/new-submission.ts @@ -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", @@ -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, diff --git a/lib/packages/shared-types/opensearch/main/transforms/seatool.ts b/lib/packages/shared-types/opensearch/main/transforms/seatool.ts index 1b427ab633..2d2afcfe19 100644 --- a/lib/packages/shared-types/opensearch/main/transforms/seatool.ts +++ b/lib/packages/shared-types/opensearch/main/transforms/seatool.ts @@ -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, @@ -209,7 +208,6 @@ export const tombstone = (id: string) => { return { id, actionType: null, - actionTypeId: null, approvedEffectiveDate: null, changedDate: null, description: null,