{"version":3,"file":"dynamic-modules-BntrYPHx.js","sources":["../../src/api/core/ApiError.ts","../../src/api/core/CancelablePromise.ts","../../src/api/core/OpenAPI.ts","../../src/api/models/ClaimData.ts","../../src/api/models/Config.ts","../../src/api/models/EligibilityData.ts","../../src/api/models/EligiblePlanData.ts","../../src/api/models/EstimatedLineItem.ts","../../src/api/models/EstimatedPaymentScheduleRequest.ts","../../src/api/models/IncurredCost.ts","../../src/api/models/LegalRepresentativeData.ts","../../src/api/models/LineItem.ts","../../src/api/models/ParticipantPaymentData.ts","../../src/api/models/ParticipantPaymentMethodData.ts","../../src/api/models/Payment.ts","../../src/api/models/PaymentLogData.ts","../../src/api/models/PaymentScheduleRequest.ts","../../src/api/models/ProjectedLineItem.ts","../../src/api/models/StatusChangeRequest.ts","../../src/api/models/StatusData.ts","../../src/api/core/request.ts","../../src/api/services/CalculatorService.ts","../../src/api/services/SystemService.ts","../../src/config.ts","../../../common/src/logger/logger.ts","../../../common/src/utils/misc.ts","../../../common/src/utils/scrub.ts","../../../common/src/utils/datadog.ts","../../../common/src/utils/dates.ts","../../../common/src/utils/heap.ts","../../../common/src/utils/money.ts","../../../common/src/components/LoggingErrorBoundary.tsx","../../../common/src/hooks/useMediaQuery.ts","../../../common/src/lib/datadog/types.ts","../../../common/src/lib/datadog/client.ts","../../../common/src/lib/datadog/ActionError.ts","../../../common/src/test/axe-helper.ts","../../src/redux/modules/calculator/actions/setIncurredCosts.ts","../../src/redux/modules/calculator/thunks/estimatePaymentSchedules.ts","../../src/redux/modules/calculator/actions/setEstimatedCosts.ts","../../src/redux/modules/calculator/actions/resetEstimatedCosts.ts","../../src/redux/modules/calculator/actions/setPlanStart.ts","../../src/redux/modules/calculator/reducer.ts","../../src/redux/modules/config/thunks/getConfig.ts","../../src/redux/modules/config/reducer.ts","../../src/lib/getAPIErrorMessage.ts","../../src/redux/middleware/datadog/utils.ts","../../src/redux/middleware/datadog/create.ts","../../src/redux/middleware/datadog/index.ts","../../src/redux/index.ts","../../src/redux/modules/config/selectors/configSelectors.ts","../../src/lib/featureFlags.ts","../../src/hooks/useClientExperienceConfig.ts","../../src/lib/getIsPaytientClient.ts","../../src/lib/getSystemProvider.ts","../../src/lib/getLDClient.ts","../../../m3p-core/src/assets/faq/en/careplus-post-optin.md?raw","../../../m3p-core/src/assets/faq/en/careplus-pre-optin.md?raw","../../../m3p-core/src/assets/faq/en/esi-post-optin.md?raw","../../../m3p-core/src/assets/faq/en/esi-pre-optin.md?raw","../../../m3p-core/src/assets/faq/en/humana-post-optin.md?raw","../../src/lib/getFeatureFlag.ts","../../src/pages/calculator/planStart/PlanStartPage.tsx","../../src/lib/getMaxOOP.ts","../../src/lib/meetsIncurredCostsCriteria.ts","../../src/redux/modules/calculator/selectors/incurredCostsSelectors.ts","../../src/lib/getCurrentMonth.ts","../../src/pages/calculator/constants.ts","../../src/lib/isPlanStartInFuture.ts","../../src/lib/getOptInMonth.ts","../../src/pages/calculator/incurredCosts/validations.ts","../../src/pages/calculator/incurredCosts/index.tsx","../../src/redux/modules/calculator/selectors/estimatedCostsSelectors.ts","../../src/pages/calculator/unmetCriteria/index.tsx","../../src/hooks/useMonths.ts","../../src/hooks/useFeatureFlags.ts","../../src/pages/calculator/estimatedCosts/validations.ts","../../src/pages/calculator/estimatedCosts/index.tsx","../../src/redux/modules/calculator/selectors/resultsSelectors.ts","../../src/hooks/useEstimatedSpentData.ts","../../src/pages/calculator/results/InfoBottomSheet/index.tsx","../../src/lib/getMonthString.ts","../../src/pages/calculator/results/helpers.ts","../../src/pages/calculator/results/EstimatedSpentChart/index.tsx","../../src/lib/getOptInDisplayDate.ts","../../src/pages/calculator/results/PDF/pdfTheme.ts","../../src/pages/calculator/results/PDF/pdfStyles.ts","../../src/pages/calculator/results/PDF/index.tsx","../../src/pages/calculator/results/index.tsx","../../src/pages/home/Hero/index.tsx","../../src/pages/home/PaymentEstimatorGuide/index.tsx","../../src/pages/home/PlanRequirements/index.tsx","../../src/pages/home/HowItWorks/index.tsx","../../src/pages/home/index.tsx"],"sourcesContent":["/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nimport type { ApiRequestOptions } from './ApiRequestOptions';\nimport type { ApiResult } from './ApiResult';\n\nexport class ApiError extends Error {\n public readonly url: string;\n public readonly status: number;\n public readonly statusText: string;\n public readonly body: any;\n public readonly request: ApiRequestOptions;\n\n constructor(request: ApiRequestOptions, response: ApiResult, message: string) {\n super(message);\n\n this.name = 'ApiError';\n this.url = response.url;\n this.status = response.status;\n this.statusText = response.statusText;\n this.body = response.body;\n this.request = request;\n }\n}\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport class CancelError extends Error {\n\n constructor(message: string) {\n super(message);\n this.name = 'CancelError';\n }\n\n public get isCancelled(): boolean {\n return true;\n }\n}\n\nexport interface OnCancel {\n readonly isResolved: boolean;\n readonly isRejected: boolean;\n readonly isCancelled: boolean;\n\n (cancelHandler: () => void): void;\n}\n\nexport class CancelablePromise implements Promise {\n #isResolved: boolean;\n #isRejected: boolean;\n #isCancelled: boolean;\n readonly #cancelHandlers: (() => void)[];\n readonly #promise: Promise;\n #resolve?: (value: T | PromiseLike) => void;\n #reject?: (reason?: any) => void;\n\n constructor(\n executor: (\n resolve: (value: T | PromiseLike) => void,\n reject: (reason?: any) => void,\n onCancel: OnCancel\n ) => void\n ) {\n this.#isResolved = false;\n this.#isRejected = false;\n this.#isCancelled = false;\n this.#cancelHandlers = [];\n this.#promise = new Promise((resolve, reject) => {\n this.#resolve = resolve;\n this.#reject = reject;\n\n const onResolve = (value: T | PromiseLike): void => {\n if (this.#isResolved || this.#isRejected || this.#isCancelled) {\n return;\n }\n this.#isResolved = true;\n if (this.#resolve) this.#resolve(value);\n };\n\n const onReject = (reason?: any): void => {\n if (this.#isResolved || this.#isRejected || this.#isCancelled) {\n return;\n }\n this.#isRejected = true;\n if (this.#reject) this.#reject(reason);\n };\n\n const onCancel = (cancelHandler: () => void): void => {\n if (this.#isResolved || this.#isRejected || this.#isCancelled) {\n return;\n }\n this.#cancelHandlers.push(cancelHandler);\n };\n\n Object.defineProperty(onCancel, 'isResolved', {\n get: (): boolean => this.#isResolved,\n });\n\n Object.defineProperty(onCancel, 'isRejected', {\n get: (): boolean => this.#isRejected,\n });\n\n Object.defineProperty(onCancel, 'isCancelled', {\n get: (): boolean => this.#isCancelled,\n });\n\n return executor(onResolve, onReject, onCancel as OnCancel);\n });\n }\n\n get [Symbol.toStringTag]() {\n return \"Cancellable Promise\";\n }\n\n public then(\n onFulfilled?: ((value: T) => TResult1 | PromiseLike) | null,\n onRejected?: ((reason: any) => TResult2 | PromiseLike) | null\n ): Promise {\n return this.#promise.then(onFulfilled, onRejected);\n }\n\n public catch(\n onRejected?: ((reason: any) => TResult | PromiseLike) | null\n ): Promise {\n return this.#promise.catch(onRejected);\n }\n\n public finally(onFinally?: (() => void) | null): Promise {\n return this.#promise.finally(onFinally);\n }\n\n public cancel(): void {\n if (this.#isResolved || this.#isRejected || this.#isCancelled) {\n return;\n }\n this.#isCancelled = true;\n if (this.#cancelHandlers.length) {\n try {\n for (const cancelHandler of this.#cancelHandlers) {\n cancelHandler();\n }\n } catch (error) {\n console.warn('Cancellation threw an error', error);\n return;\n }\n }\n this.#cancelHandlers.length = 0;\n if (this.#reject) this.#reject(new CancelError('Request aborted'));\n }\n\n public get isCancelled(): boolean {\n return this.#isCancelled;\n }\n}\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nimport type { ApiRequestOptions } from './ApiRequestOptions';\n\ntype Resolver = (options: ApiRequestOptions) => Promise;\ntype Headers = Record;\n\nexport type OpenAPIConfig = {\n BASE: string;\n VERSION: string;\n WITH_CREDENTIALS: boolean;\n CREDENTIALS: 'include' | 'omit' | 'same-origin';\n TOKEN?: string | Resolver | undefined;\n USERNAME?: string | Resolver | undefined;\n PASSWORD?: string | Resolver | undefined;\n HEADERS?: Headers | Resolver | undefined;\n ENCODE_PATH?: ((path: string) => string) | undefined;\n};\n\nexport const OpenAPI: OpenAPIConfig = {\n BASE: 'https://participant-api.staging.m3p.health',\n VERSION: '0.0.1',\n WITH_CREDENTIALS: false,\n CREDENTIALS: 'include',\n TOKEN: undefined,\n USERNAME: undefined,\n PASSWORD: undefined,\n HEADERS: undefined,\n ENCODE_PATH: undefined,\n};\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type ClaimData = {\n /**\n * The ID of the claim\n */\n id: string;\n /**\n * The date when the medical service related to the claim was provided\n */\n dateOfService: string;\n /**\n * The date the claim was processed\n */\n processingDate: string;\n /**\n * The name or identifier of the pharmacy where the claim originated\n */\n pharmacy: string;\n /**\n * The name or identifier of the prescription related to the claim and dosage info\n */\n prescription: string;\n /**\n * The total amount incurred for the claim. This can be positive or negative, depending on whether the claim is an addition or adjustment\n */\n amount: number;\n /**\n * The display name used for the claim\n */\n displayName: string;\n /**\n * The claim status\n */\n status: ClaimData.status;\n /**\n * The claim number\n */\n claimNumber: string;\n};\nexport namespace ClaimData {\n /**\n * The claim status\n */\n export enum status {\n PAID = 'Paid',\n REVERSED = 'Reversed',\n ADJUSTED = 'Adjusted',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type Config = {\n id: string;\n provider: string;\n logoUrl: string;\n error?: Config.error;\n correctUrl?: string;\n};\nexport namespace Config {\n export enum error {\n INCORRECT_TENANT = 'IncorrectTenant',\n PARTICIPANT_NOT_FOUND = 'ParticipantNotFound',\n FAILED_TO_CALL_SPONSOR = 'FailedToCallSponsor',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\n/**\n * Information about eligibility\n */\nexport type EligibilityData = {\n isEligible?: boolean;\n reason?: EligibilityData.reason;\n};\nexport namespace EligibilityData {\n export enum reason {\n ELIGIBLE = 'ELIGIBLE',\n NOT_ENROLLED = 'NOT_ENROLLED',\n PAST_DUE = 'PAST_DUE',\n UNABLE_VERIFY = 'UNABLE_VERIFY',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type EligiblePlanData = {\n contractNumber: string;\n pbpNumber: string;\n segmentNumber?: string;\n startDate: string;\n endDate?: string;\n calendar?: EligiblePlanData.calendar;\n name?: string;\n};\nexport namespace EligiblePlanData {\n export enum calendar {\n CALENDAR_YEAR = 'CALENDAR_YEAR',\n NON_CALENDAR_YEAR = 'NON_CALENDAR_YEAR',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type EstimatedLineItem = {\n month?: EstimatedLineItem.month;\n incurredCosts?: number;\n maximumCap?: number;\n minimumAmountDue?: number;\n paymentApplied?: number;\n};\nexport namespace EstimatedLineItem {\n export enum month {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nimport type { IncurredCost } from './IncurredCost';\nexport type EstimatedPaymentScheduleRequest = {\n optInMonth?: EstimatedPaymentScheduleRequest.optInMonth;\n priorIncurredCosts?: number;\n incurredCosts?: Array;\n planStart?: EstimatedPaymentScheduleRequest.planStart;\n planEnd?: EstimatedPaymentScheduleRequest.planEnd;\n};\nexport namespace EstimatedPaymentScheduleRequest {\n export enum optInMonth {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n export enum planStart {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n export enum planEnd {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type IncurredCost = {\n month: IncurredCost.month;\n amount: number;\n};\nexport namespace IncurredCost {\n export enum month {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type LegalRepresentativeData = {\n firstName: string;\n lastName: string;\n relationship: LegalRepresentativeData.relationship;\n legalRepAttestation: boolean;\n};\nexport namespace LegalRepresentativeData {\n export enum relationship {\n SPOUSE = 'Spouse',\n SIBLING = 'Sibling',\n CHILD = 'Child',\n PARENT = 'Parent',\n LEGAL_GUARDIAN = 'LegalGuardian',\n OTHER = 'Other',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type LineItem = {\n month?: LineItem.month;\n incurredCosts?: number;\n maximumCap?: number;\n maxCapAugment?: number;\n minimumAmountDue?: number;\n actualAmountDue?: number;\n amountApplied?: number;\n rolloverAmount?: number;\n remainingBalance?: number;\n paymentAmount?: number;\n};\nexport namespace LineItem {\n export enum month {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type ParticipantPaymentData = {\n id?: string;\n amount?: number;\n status?: ParticipantPaymentData.status;\n paymentMethodId?: string;\n planId?: string;\n paymentMethodType?: ParticipantPaymentData.paymentMethodType;\n autopay?: boolean;\n expirationMonth?: number;\n expirationYear?: number;\n lastFourDigits?: string;\n paymentMethodName?: string;\n checkNumber?: string;\n confirmationNumber?: string;\n paidOn?: string;\n};\nexport namespace ParticipantPaymentData {\n export enum status {\n SUCCESS = 'SUCCESS',\n FAILED = 'FAILED',\n REFUNDED = 'REFUNDED',\n PROCESSING = 'PROCESSING',\n DISPUTED = 'DISPUTED',\n RETURNED = 'RETURNED',\n }\n export enum paymentMethodType {\n CREDIT_CARD = 'CREDIT_CARD',\n DEBIT_CARD = 'DEBIT_CARD',\n PREPAID_CARD = 'PREPAID_CARD',\n UNKNOWN_CARD = 'UNKNOWN_CARD',\n BANK_ACCOUNT = 'BANK_ACCOUNT',\n CHECK = 'CHECK',\n UNKNOWN = 'UNKNOWN',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type ParticipantPaymentMethodData = {\n /**\n * Unique identifier for the payment method.\n */\n id: string;\n /**\n * Type of the payment method, such as 'Credit Card' or 'Debit Card'.\n */\n type: ParticipantPaymentMethodData.type;\n /**\n * Name or brand of the payment method, such as 'Visa', 'MasterCard', 'Check'.\n */\n name?: string;\n /**\n * The last four digits of the payment method, typically a credit or debit card.\n */\n lastFour: string;\n /**\n * Expiration month of the payment method (1 = January, 12 = December).\n */\n expirationMonth: number;\n /**\n * Expiration year of the payment method.\n */\n expirationYear: number;\n /**\n * Verification status of the bank account, such as 'Verified' or 'Unverified'.\n */\n bankAccountVerificationStatus?: ParticipantPaymentMethodData.bankAccountVerificationStatus;\n /**\n * Indicates whether autopay is enabled for this payment method.\n */\n autopay: boolean;\n /**\n * Indicates whether the payment method is currently enabled.\n */\n enabled: boolean;\n /**\n * Indicates whether the payment method is expired, based on the expiration date.\n */\n expired: boolean;\n};\nexport namespace ParticipantPaymentMethodData {\n /**\n * Type of the payment method, such as 'Credit Card' or 'Debit Card'.\n */\n export enum type {\n CREDIT_CARD = 'CREDIT_CARD',\n DEBIT_CARD = 'DEBIT_CARD',\n PREPAID_CARD = 'PREPAID_CARD',\n UNKNOWN_CARD = 'UNKNOWN_CARD',\n BANK_ACCOUNT = 'BANK_ACCOUNT',\n CHECK = 'CHECK',\n UNKNOWN = 'UNKNOWN',\n }\n /**\n * Verification status of the bank account, such as 'Verified' or 'Unverified'.\n */\n export enum bankAccountVerificationStatus {\n VERIFIED = 'VERIFIED',\n VERIFICATION_PENDING = 'VERIFICATION_PENDING',\n VERIFICATION_FAILED = 'VERIFICATION_FAILED',\n VERIFICATION_UNKNOWN = 'VERIFICATION_UNKNOWN',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type Payment = {\n month: Payment.month;\n amount: number;\n};\nexport namespace Payment {\n export enum month {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type PaymentLogData = {\n id?: string;\n amount?: number;\n status?: PaymentLogData.status;\n type?: PaymentLogData.type;\n expirationMonth?: number;\n expirationYear?: number;\n lastFourDigits?: string;\n paymentMethodName?: string;\n checkNumber?: string;\n confirmationNumber?: string;\n autopay?: boolean;\n refundReason?: PaymentLogData.refundReason;\n paidOn?: string;\n refundRequestCreatedAt?: string;\n};\nexport namespace PaymentLogData {\n export enum status {\n SUCCESS = 'SUCCESS',\n FAILED = 'FAILED',\n PROCESSING = 'PROCESSING',\n DISPUTED = 'DISPUTED',\n RETURNED = 'RETURNED',\n PENDING = 'PENDING',\n REJECTED = 'REJECTED',\n COMPLETED = 'COMPLETED',\n }\n export enum type {\n CREDIT_CARD = 'CREDIT_CARD',\n DEBIT_CARD = 'DEBIT_CARD',\n PREPAID_CARD = 'PREPAID_CARD',\n UNKNOWN_CARD = 'UNKNOWN_CARD',\n BANK_ACCOUNT = 'BANK_ACCOUNT',\n CHECK = 'CHECK',\n UNKNOWN = 'UNKNOWN',\n REFUND = 'REFUND',\n }\n export enum refundReason {\n OVERPAYMENT = 'OVERPAYMENT',\n MISAPPLIED_PAYMENT = 'MISAPPLIED_PAYMENT',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nimport type { IncurredCost } from './IncurredCost';\nimport type { Payment } from './Payment';\nexport type PaymentScheduleRequest = {\n optInMonth: PaymentScheduleRequest.optInMonth;\n planStart: PaymentScheduleRequest.planStart;\n planEnd: PaymentScheduleRequest.planEnd;\n priorIncurredCosts: number;\n incurredCosts: Array;\n payments: Array;\n};\nexport namespace PaymentScheduleRequest {\n export enum optInMonth {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n export enum planStart {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n export enum planEnd {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type ProjectedLineItem = {\n month?: ProjectedLineItem.month;\n status?: ProjectedLineItem.status;\n amountDue?: number;\n remainingBalance?: number;\n};\nexport namespace ProjectedLineItem {\n export enum month {\n JANUARY = 'JANUARY',\n FEBRUARY = 'FEBRUARY',\n MARCH = 'MARCH',\n APRIL = 'APRIL',\n MAY = 'MAY',\n JUNE = 'JUNE',\n JULY = 'JULY',\n AUGUST = 'AUGUST',\n SEPTEMBER = 'SEPTEMBER',\n OCTOBER = 'OCTOBER',\n NOVEMBER = 'NOVEMBER',\n DECEMBER = 'DECEMBER',\n }\n export enum status {\n PAID = 'PAID',\n PAST_DUE = 'PAST_DUE',\n OPEN = 'OPEN',\n PROJECTED = 'PROJECTED',\n INACTIVE = 'INACTIVE',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nimport type { LegalRepresentativeData } from './LegalRepresentativeData';\nexport type StatusChangeRequest = {\n status?: StatusChangeRequest.status;\n legalRepresentativeData?: LegalRepresentativeData;\n};\nexport namespace StatusChangeRequest {\n export enum status {\n OPTED_IN = 'OptedIn',\n OPTED_OUT = 'OptedOut',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nexport type StatusData = {\n optInDate?: string;\n optOutDate?: string;\n isEligible?: boolean;\n isActive?: boolean;\n isOptedIn?: boolean;\n reason?: StatusData.reason;\n notEligibleReason?: StatusData.notEligibleReason;\n confirmationNumber?: string;\n status?: StatusData.status;\n createdAt?: string;\n earliestRetroEffectiveDate?: string;\n};\nexport namespace StatusData {\n export enum reason {\n SYSTEM_FAILURE = 'SystemFailure',\n INELIGIBLE_PLAN = 'IneligiblePlan',\n PAYMENT_DELINQUENT = 'PaymentDelinquent',\n OVERRIDE = 'Override',\n EFFECTIVE_DATE_CHANGE = 'EffectiveDateChange',\n VALID = 'Valid',\n PLAN_TERMINATED = 'PlanTerminated',\n DEATH = 'Death',\n PAYMENT_DELINQUENCY = 'PaymentDelinquency',\n OTHER = 'Other',\n VOLUNTARY = 'Voluntary',\n DELAY_LESS72 = 'DelayLess72',\n DELAY_MORE72 = 'DelayMore72',\n GRIEVANCE = 'Grievance',\n DECEASED_ENROLL = 'DeceasedEnroll',\n }\n export enum notEligibleReason {\n INELIGIBLE_PLAN = 'IneligiblePlan',\n PAYMENT_DELINQUENT = 'PaymentDelinquent',\n EFFECTIVE_DATE_CHANGE = 'EffectiveDateChange',\n DEATH = 'Death',\n }\n export enum status {\n OPTED_IN = 'OptedIn',\n OPTED_OUT = 'OptedOut',\n }\n}\n\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nimport axios from 'axios';\nimport type { AxiosError, AxiosRequestConfig, AxiosResponse, AxiosInstance } from 'axios';\nimport FormData from 'form-data';\n\nimport { ApiError } from './ApiError';\nimport type { ApiRequestOptions } from './ApiRequestOptions';\nimport type { ApiResult } from './ApiResult';\nimport { CancelablePromise } from './CancelablePromise';\nimport type { OnCancel } from './CancelablePromise';\nimport type { OpenAPIConfig } from './OpenAPI';\n\nexport const isDefined = (value: T | null | undefined): value is Exclude => {\n return value !== undefined && value !== null;\n};\n\nexport const isString = (value: any): value is string => {\n return typeof value === 'string';\n};\n\nexport const isStringWithValue = (value: any): value is string => {\n return isString(value) && value !== '';\n};\n\nexport const isBlob = (value: any): value is Blob => {\n return (\n typeof value === 'object' &&\n typeof value.type === 'string' &&\n typeof value.stream === 'function' &&\n typeof value.arrayBuffer === 'function' &&\n typeof value.constructor === 'function' &&\n typeof value.constructor.name === 'string' &&\n /^(Blob|File)$/.test(value.constructor.name) &&\n /^(Blob|File)$/.test(value[Symbol.toStringTag])\n );\n};\n\nexport const isFormData = (value: any): value is FormData => {\n return value instanceof FormData;\n};\n\nexport const isSuccess = (status: number): boolean => {\n return status >= 200 && status < 300;\n};\n\nexport const base64 = (str: string): string => {\n try {\n return btoa(str);\n } catch (err) {\n // @ts-ignore\n return Buffer.from(str).toString('base64');\n }\n};\n\nexport const getQueryString = (params: Record): string => {\n const qs: string[] = [];\n\n const append = (key: string, value: any) => {\n qs.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);\n };\n\n const process = (key: string, value: any) => {\n if (isDefined(value)) {\n if (Array.isArray(value)) {\n value.forEach(v => {\n process(key, v);\n });\n } else if (typeof value === 'object') {\n Object.entries(value).forEach(([k, v]) => {\n process(`${key}[${k}]`, v);\n });\n } else {\n append(key, value);\n }\n }\n };\n\n Object.entries(params).forEach(([key, value]) => {\n process(key, value);\n });\n\n if (qs.length > 0) {\n return `?${qs.join('&')}`;\n }\n\n return '';\n};\n\nconst getUrl = (config: OpenAPIConfig, options: ApiRequestOptions): string => {\n const encoder = config.ENCODE_PATH || encodeURI;\n\n const path = options.url\n .replace('{api-version}', config.VERSION)\n .replace(/{(.*?)}/g, (substring: string, group: string) => {\n if (options.path?.hasOwnProperty(group)) {\n return encoder(String(options.path[group]));\n }\n return substring;\n });\n\n const url = `${config.BASE}${path}`;\n if (options.query) {\n return `${url}${getQueryString(options.query)}`;\n }\n return url;\n};\n\nexport const getFormData = (options: ApiRequestOptions): FormData | undefined => {\n if (options.formData) {\n const formData = new FormData();\n\n const process = (key: string, value: any) => {\n if (isString(value) || isBlob(value)) {\n formData.append(key, value);\n } else {\n formData.append(key, JSON.stringify(value));\n }\n };\n\n Object.entries(options.formData)\n .filter(([_, value]) => isDefined(value))\n .forEach(([key, value]) => {\n if (Array.isArray(value)) {\n value.forEach(v => process(key, v));\n } else {\n process(key, value);\n }\n });\n\n return formData;\n }\n return undefined;\n};\n\ntype Resolver = (options: ApiRequestOptions) => Promise;\n\nexport const resolve = async (options: ApiRequestOptions, resolver?: T | Resolver): Promise => {\n if (typeof resolver === 'function') {\n return (resolver as Resolver)(options);\n }\n return resolver;\n};\n\nexport const getHeaders = async (config: OpenAPIConfig, options: ApiRequestOptions, formData?: FormData): Promise> => {\n const [token, username, password, additionalHeaders] = await Promise.all([\n resolve(options, config.TOKEN),\n resolve(options, config.USERNAME),\n resolve(options, config.PASSWORD),\n resolve(options, config.HEADERS),\n ]);\n\n const formHeaders = typeof formData?.getHeaders === 'function' && formData?.getHeaders() || {}\n\n const headers = Object.entries({\n Accept: 'application/json',\n ...additionalHeaders,\n ...options.headers,\n ...formHeaders,\n })\n .filter(([_, value]) => isDefined(value))\n .reduce((headers, [key, value]) => ({\n ...headers,\n [key]: String(value),\n }), {} as Record);\n\n if (isStringWithValue(token)) {\n headers['Authorization'] = `Bearer ${token}`;\n }\n\n if (isStringWithValue(username) && isStringWithValue(password)) {\n const credentials = base64(`${username}:${password}`);\n headers['Authorization'] = `Basic ${credentials}`;\n }\n\n if (options.body) {\n if (options.mediaType) {\n headers['Content-Type'] = options.mediaType;\n } else if (isBlob(options.body)) {\n headers['Content-Type'] = options.body.type || 'application/octet-stream';\n } else if (isString(options.body)) {\n headers['Content-Type'] = 'text/plain';\n } else if (!isFormData(options.body)) {\n headers['Content-Type'] = 'application/json';\n }\n }\n\n return headers;\n};\n\nexport const getRequestBody = (options: ApiRequestOptions): any => {\n if (options.body) {\n return options.body;\n }\n return undefined;\n};\n\nexport const sendRequest = async (\n config: OpenAPIConfig,\n options: ApiRequestOptions,\n url: string,\n body: any,\n formData: FormData | undefined,\n headers: Record,\n onCancel: OnCancel,\n axiosClient: AxiosInstance\n): Promise> => {\n const source = axios.CancelToken.source();\n\n const requestConfig: AxiosRequestConfig = {\n url,\n headers,\n data: body ?? formData,\n method: options.method,\n withCredentials: config.WITH_CREDENTIALS,\n cancelToken: source.token,\n };\n\n onCancel(() => source.cancel('The user aborted a request.'));\n\n try {\n return await axiosClient.request(requestConfig);\n } catch (error) {\n const axiosError = error as AxiosError;\n if (axiosError.response) {\n return axiosError.response;\n }\n throw error;\n }\n};\n\nexport const getResponseHeader = (response: AxiosResponse, responseHeader?: string): string | undefined => {\n if (responseHeader) {\n const content = response.headers[responseHeader];\n if (isString(content)) {\n return content;\n }\n }\n return undefined;\n};\n\nexport const getResponseBody = (response: AxiosResponse): any => {\n if (response.status !== 204) {\n return response.data;\n }\n return undefined;\n};\n\nexport const catchErrorCodes = (options: ApiRequestOptions, result: ApiResult): void => {\n const errors: Record = {\n 400: 'Bad Request',\n 401: 'Unauthorized',\n 403: 'Forbidden',\n 404: 'Not Found',\n 500: 'Internal Server Error',\n 502: 'Bad Gateway',\n 503: 'Service Unavailable',\n ...options.errors,\n }\n\n const error = errors[result.status];\n if (error) {\n throw new ApiError(options, result, error);\n }\n\n if (!result.ok) {\n const errorStatus = result.status ?? 'unknown';\n const errorStatusText = result.statusText ?? 'unknown';\n const errorBody = (() => {\n try {\n return JSON.stringify(result.body, null, 2);\n } catch (e) {\n return undefined;\n }\n })();\n\n throw new ApiError(options, result,\n `Generic Error: status: ${errorStatus}; status text: ${errorStatusText}; body: ${errorBody}`\n );\n }\n};\n\n/**\n * Request method\n * @param config The OpenAPI configuration object\n * @param options The request options from the service\n * @param axiosClient The axios client instance to use\n * @returns CancelablePromise\n * @throws ApiError\n */\nexport const request = (config: OpenAPIConfig, options: ApiRequestOptions, axiosClient: AxiosInstance = axios): CancelablePromise => {\n return new CancelablePromise(async (resolve, reject, onCancel) => {\n try {\n const url = getUrl(config, options);\n const formData = getFormData(options);\n const body = getRequestBody(options);\n const headers = await getHeaders(config, options, formData);\n\n if (!onCancel.isCancelled) {\n const response = await sendRequest(config, options, url, body, formData, headers, onCancel, axiosClient);\n const responseBody = getResponseBody(response);\n const responseHeader = getResponseHeader(response, options.responseHeader);\n\n const result: ApiResult = {\n url,\n ok: isSuccess(response.status),\n status: response.status,\n statusText: response.statusText,\n body: responseHeader ?? responseBody,\n };\n\n catchErrorCodes(options, result);\n\n resolve(result.body);\n }\n } catch (error) {\n reject(error);\n }\n });\n};\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nimport type { EstimatedPaymentSchedule } from '../models/EstimatedPaymentSchedule';\nimport type { EstimatedPaymentScheduleRequest } from '../models/EstimatedPaymentScheduleRequest';\nimport type { PaymentSchedule } from '../models/PaymentSchedule';\nimport type { PaymentScheduleRequest } from '../models/PaymentScheduleRequest';\nimport type { CancelablePromise } from '../core/CancelablePromise';\nimport { OpenAPI } from '../core/OpenAPI';\nimport { request as __request } from '../core/request';\nexport class CalculatorService {\n /**\n * Calculate the payment schedule provided actual incurred costs and payments\n * @param requestBody\n * @returns PaymentSchedule OK\n * @throws ApiError\n */\n public static getPaymentSchedule(\n requestBody: PaymentScheduleRequest,\n ): CancelablePromise {\n return __request(OpenAPI, {\n method: 'POST',\n url: '/calculator/actual',\n body: requestBody,\n mediaType: 'application/json',\n errors: {\n 500: `Internal Error`,\n },\n });\n }\n /**\n * Calculate the payment schedule provided estimated incurred costs and minimum payments\n * @param requestBody\n * @returns EstimatedPaymentSchedule OK\n * @throws ApiError\n */\n public static estimatePaymentSchedule(\n requestBody: EstimatedPaymentScheduleRequest,\n ): CancelablePromise {\n return __request(OpenAPI, {\n method: 'POST',\n url: '/calculator/estimate',\n body: requestBody,\n mediaType: 'application/json',\n errors: {\n 500: `Internal Error`,\n },\n });\n }\n}\n","/* generated using openapi-typescript-codegen -- do no edit */\n/* istanbul ignore file */\n/* tslint:disable */\n/* eslint-disable */\nimport type { Config } from '../models/Config';\nimport type { CancelablePromise } from '../core/CancelablePromise';\nimport { OpenAPI } from '../core/OpenAPI';\nimport { request as __request } from '../core/request';\nexport class SystemService {\n /**\n * Returns the configuration for the current M3P site\n * @returns Config OK\n * @throws ApiError\n */\n public static config(): CancelablePromise {\n return __request(OpenAPI, {\n method: 'GET',\n url: '/config',\n errors: {\n 500: `Internal Error`,\n },\n });\n }\n}\n","export const API_HOST: string =\n import.meta.env.VITE_API_HOST || \"https://participant-api.staging.m3p.health\";\n\nexport const CDN_HOST: string =\n import.meta.env.VITE_CDN_HOST || \"https://cdn.staging.m3p.health\";\n\nexport const LD_CLIENT_KEY: string =\n import.meta.env.VITE_LAUNCH_DARKLY_CLIENT_KEY || \"6685b5f3f6d1400fe403942b\"; // Development key\n\nexport const LD_INITIALIZE_TIMEOUT = 5; // seconds\n","import Debug, { Debugger } from \"debug\";\n\nconst getLogger = (channel?: string): Debugger => {\n return Debug.debug(channel ?? \"Paytient\");\n};\n\nexport const enableDebugging = (): void => {\n Debug.enable(\"Paytient,Paytient:*\");\n};\n\nexport default getLogger;\n","/* eslint-disable @typescript-eslint/no-explicit-any */\nexport const formatSixDigitCode = (code?: string): string => {\n if (typeof code !== \"string\") return \"\";\n const maxLength = 6;\n const onlyNumbers = code.replace(/\\D/g, \"\");\n return onlyNumbers.substring(0, maxLength);\n};\n\n/**\n * Check if the current context is the browser (vs SSR)\n */\nexport const isBrowser = (): boolean => typeof window !== \"undefined\";\n\n/**\n * Take a string and replace all instances of UUIDs with a replacement string\n */\nexport const replaceUUID = (input: string, replaceValue = \"\"): string =>\n input.replace(\n /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/i,\n replaceValue,\n );\n\n/**\n * Take a URL path and replace all instances of numeric IDs or UUIDs with a\n * replacement string\n */\nexport const replaceUrlId = (\n input?: string | null,\n replaceValue = \":id\",\n): string => {\n if (!input) return \"\";\n const split = input.split(\"/\");\n if (split.length === 1) return input;\n return split\n .map((s) => {\n if (new RegExp(/^[0-9]+$/).test(s)) {\n return replaceValue;\n }\n return replaceUUID(s, replaceValue);\n })\n .join(\"/\");\n};\n","/* eslint-disable @typescript-eslint/no-explicit-any */\nimport { replaceUUID } from \"./misc\";\n\n/**\n * Array of keys that should be scrubbed before reporting errors or analytics,\n * etc.\n */\nconst SCRUB_SENSITIVE_KEYS = [\n \"Authorization\",\n \"accessToken\",\n \"access_token\",\n \"billingEmailAddress\",\n \"address\",\n \"addressLine1\",\n \"addressLine2\",\n \"annualIncome\",\n \"birthDate\",\n \"card #\",\n \"card holder\",\n \"card number\",\n \"card type\",\n \"card verification\",\n \"card#\",\n \"cardholder\",\n \"cardnum\",\n \"cardnumber\",\n \"cardtype\",\n \"cc num\",\n \"cc type\",\n \"cc-csc\",\n \"cc-exp\",\n \"cc-number\",\n \"ccnum\",\n \"ccnumber\",\n \"cctype\",\n \"ccv2\",\n \"confirmPassword\",\n \"confirm_password\",\n \"credit card no\",\n \"credit card number\",\n \"creditcardno\",\n \"creditcardnumber\",\n \"cvc2\",\n \"cvv2\",\n \"description\",\n \"defaultAccountName\",\n \"email\",\n \"emailAddress\",\n \"employeeName\",\n \"expdate\",\n \"expiration date\",\n \"expirationdate\",\n \"firstName\",\n \"lastFour\",\n \"lastName\",\n \"loginToken\",\n \"monthlyObligations\",\n \"new-password\",\n \"name des karteninhabers\",\n \"name on card\",\n \"name on credit card\",\n \"nameoncard\",\n \"new credit card\",\n \"newcreditcardnumber\",\n \"pass\",\n \"passwd\",\n \"password\",\n \"passwordConfirmation\",\n \"passwordResetCode\",\n \"password_confirmation\",\n \"payment type\",\n \"phoneNumber\",\n \"pw\",\n \"refreshToken\",\n \"refresh_token\",\n \"resetCode\",\n \"secret\",\n \"secretKey\",\n \"secretToken\",\n \"secret_key\",\n \"security code\",\n \"ssn\",\n \"token\",\n \"verifyPassword\",\n];\n\n/**\n * Recursively scrub all scrubKeys within a data object that has embedded JSON\n * strings\n */\nexport const scrubData = (\n data: R,\n opts?: {\n scrubKeys?: string[];\n skipKeys?: string[];\n scrubUUIDs?: boolean;\n scrubSSNs?: boolean;\n omitPaths?: string[];\n replacementValue?: string;\n },\n): R => {\n const {\n scrubKeys = SCRUB_SENSITIVE_KEYS,\n replacementValue = \"[FILTERED]\",\n scrubUUIDs = true,\n skipKeys = [\"correlationId\"],\n } = opts || {};\n\n const scrubUrl = (input: string): string => {\n // Only scrub query params\n if (!(typeof input === \"string\" && input.includes(\"=\"))) {\n return input;\n }\n\n // Matches any key=value pair in a URL\n return input.replace(\n /([^&=?]+)=([^&]*)/g,\n (_, key: string, value: string) => {\n if (scrubKeys.includes(key)) {\n return `${key}=${replacementValue}`;\n }\n let newValue = value;\n if (scrubUUIDs) {\n newValue = replaceUUID(newValue, replacementValue);\n }\n return `${key}=${newValue}`;\n },\n );\n };\n\n const scrubString = (input: string): string => {\n if (!input) return \"\";\n try {\n const parsed = JSON.parse(input);\n const clean = searchAndReplace(parsed);\n return JSON.stringify(clean);\n } catch (e) {\n let scrubbed = input;\n // Handle URL strings\n scrubbed = scrubUrl(scrubbed);\n // Handle regular strings\n if (scrubUUIDs) {\n scrubbed = replaceUUID(scrubbed, replacementValue);\n }\n return scrubbed;\n }\n };\n\n const searchAndReplace = (input: S): S => {\n \"use strict\";\n // \"use strict\" is needed to force `Object.freeze` into strict mode in Jest.\n // For some reason, it wasn't strict otherwise even though ES modules are\n // supposed to be strict by default.\n let output: any;\n\n if (typeof input === \"undefined\") return input;\n if (input === null) return input;\n if (typeof input === \"number\") return input;\n if (typeof input === \"string\") return scrubString(input) as any;\n if (typeof input === \"object\") {\n output = Array.isArray(input) ? [...input] : { ...input };\n\n Object.keys(output).forEach((key) => {\n if (skipKeys.includes(key)) return;\n const property = output[key];\n\n if (scrubKeys.includes(key)) {\n output[key] = replacementValue;\n } else if (typeof property === \"string\") {\n const newVal = scrubString(property);\n output[key] = newVal;\n } else if (typeof property === \"object\") {\n output[key] = searchAndReplace(property);\n }\n });\n }\n return output;\n };\n\n return searchAndReplace(data) as R;\n};\n","/**\n * Add an error to the Datadog error tracking.\n * @param error The error to track.\n * @param options Additional options for the error.\n * @example\n * addDatadogError(new Error(\"An error occurred\"), { customProperty: \"value\" });\n * @see https://docs.datadoghq.com/real_user_monitoring/browser/collecting_browser_errors\n */\n\nexport const addDatadogError = (\n error: unknown,\n options?: Record,\n) => {\n if (!error || error instanceof Error === false) return;\n\n if (!window.DD_RUM || !window.DD_RUM.addError || !window.DD_RUM.onReady) {\n return;\n }\n\n window.DD_RUM?.onReady(() => {\n window.DD_RUM?.addError(error, options);\n });\n};\n\n/**\n * DataDog's browser SDK does not currently support custom tags.\n * Use this function to apply global context to all logs and RUM events.\n *\n * See https://paytient.atlassian.net/wiki/spaces/ENG/pages/1892843567/Implement+a+Datadog+Tagging+Policy\n * Related GitHub issue: https://github.com/DataDog/browser-sdk/issues/462#issuecomment-1934356830\n *\n * Note: As a workaround, these keys will be used in log processing rules. If these keys are changed,\n * make sure to update any relevant processers in Datadog.\n *\n * @param businessUnit The business unit to apply to the global context.\n */\nexport const applyDatadogGlobalContext = ({\n businessUnit,\n}: {\n businessUnit: string;\n}) => {\n window.DD_RUM?.setGlobalContextProperty(\"business_unit\", businessUnit);\n window.DD_RUM?.setGlobalContextProperty(\"department\", \"engineering\");\n window.DD_LOGS?.setGlobalContextProperty(\"business_unit\", businessUnit);\n window.DD_LOGS?.setGlobalContextProperty(\"department\", \"engineering\");\n};\n","import { addMinutes, format, parseISO } from \"date-fns\";\nimport { toZonedTime } from \"date-fns-tz\";\nimport { enUS } from \"date-fns/locale\";\n\ntype FormatAsInput = {\n date?: unknown;\n dateFormat: string;\n emptyValue?: string;\n timeZone?: string;\n};\n\nconst formatAs = ({\n date,\n dateFormat,\n emptyValue = \"\",\n timeZone,\n}: FormatAsInput) => {\n if (!date) return emptyValue;\n const d = checkValidDate(date);\n if (!d) return emptyValue;\n try {\n const timeZonedDate = timeZone ? getZonedDateTime(d, timeZone) : d;\n return format(timeZonedDate, dateFormat);\n } catch (err) {\n return emptyValue;\n }\n};\n\n/**\n * Returns a formatted short date (format: MMM d, y)\n *\n * @param date - The Date or date-like string or number to format\n * @param emptyValue - A string to display if the date is empty/null/undefined\n * @param timeZone - A string of the time zone to convert the date to.\n * It can be in the short or long format. Example: \"CST\" or \"America/Chicago\"\n */\nexport const formatDate = (\n date?: unknown,\n emptyValue = \"\",\n timeZone?: string,\n dateFormat = \"MMM d, y\",\n): string => {\n return formatAs({ date, dateFormat, emptyValue, timeZone });\n};\n\n/**\n * Returns a formatted short calendar date (format: yyyy-MM-dd)\n *\n * @param date - The Date or date-like string or number to format\n * @param emptyValue - A string to display if the date is empty/null/undefined\n */\nexport const formatCalendarDate = (date?: unknown, emptyValue = \"\"): string => {\n return formatAs({ date, dateFormat: \"yyyy-MM-dd\", emptyValue });\n};\n\n/**\n * Returns a formatted short date without day (format: MM/yyyy)\n *\n * @param month - The month number to format\n * @param year - The year number to format\n * @param emptyValue - A string to display if the month or year are empty/null/undefined\n */\nexport const formatMonthlyDateByMonthAndYear = (\n month: number,\n year: number,\n emptyValue = \"\",\n): string => {\n if (\n !month ||\n !year ||\n isNaN(month) ||\n isNaN(year) ||\n typeof month === \"object\" ||\n typeof year === \"object\"\n )\n return emptyValue;\n const d = new Date(`${month}/12/${year}`);\n if (!d) return emptyValue;\n return format(d, \"MM/yyyy\");\n};\n\n/**\n * Returns a formatted short date and time\n *\n * @param date - The Date or date-like string or number to format\n * @param emptyValue - A string to display if the date is empty/null/undefined\n */\nexport const formatDateTime = (\n date?: unknown,\n options?: {\n emptyValue?: string | undefined;\n dateFormat?: string | undefined;\n timeZone?: string;\n },\n): string => {\n const {\n emptyValue = \"\",\n dateFormat = \"MMM d, y h:mm a\",\n timeZone,\n } = options || {};\n return formatAs({ date, dateFormat: dateFormat, emptyValue, timeZone });\n};\n\n/**\n * Returns a formatted short date and time with seconds\n *\n * @param date - The Date or date-like string or number to format\n * @param emptyValue - A string to display if the date is empty/null/undefined\n * @param timeZone - A string of the time zone to convert the date to.\n * It can be in the short or long format. Example: \"CST\" or \"America/Chicago\"\n */\nexport const formatDateTimeWithSeconds = (\n date?: unknown,\n emptyValue = \"\",\n timeZone?: string,\n): string => {\n return formatAs({\n date,\n dateFormat: \"MMM d, y h:mm:ss a\",\n emptyValue,\n timeZone,\n });\n};\n\n/**\n * Returns a formatted short numeric date and time with seconds\n *\n * @param date - The Date or date-like string or number to format\n * @param emptyValue - A string to display if the date is empty/null/undefined\n * @param timeZone - A string of the time zone to convert the date to.\n * It can be in the short or long format. Example: \"CST\" or \"America/Chicago\"\n */\nexport const formatNumericDateTimeWithSeconds = (\n date?: unknown,\n emptyValue = \"\",\n timeZone?: string,\n): string => {\n return formatAs({ date, dateFormat: \"MM-dd-yyyy pp\", emptyValue, timeZone });\n};\n\n/**\n * Returns a formatted short numeric date separated with dashes\n *\n * @param date - The Date or date-like string or number to format\n * @param emptyValue - A string to display if the date is empty/null/undefined\n * @param timeZone - A string of the time zone to convert the date to.\n * It can be in the short or long format. Example: \"CST\" or \"America/Chicago\"\n */\nexport const formatNumericDateWithDashes = (\n date?: unknown,\n emptyValue = \"\",\n timeZone?: string,\n): string => {\n return formatAs({ date, dateFormat: \"MM-dd-yyyy\", emptyValue, timeZone });\n};\n\n/**\n * Converts a local Date into a UTC Date object\n */\nexport const getUTCDateObject = (date: Date): Date => {\n return new Date(addMinutes(date, date.getTimezoneOffset()));\n};\n\n/**\n * Converts a Date to a specific time zone\n * Default \"America/Chicago\" || \"CST\"\n */\n/**\n * Converts a Date to a specific time zone\n *\n * @param date - The Date or date-like string or number to format\n * @param timeZone - A string of the time zone to convert the date to. Defaults \"America/Chicago\"\n */\nexport const getZonedDateTime = (\n date: Date | string | number,\n timeZone: string = \"America/Chicago\",\n): Date => {\n if (!timeZone) return new Date(date);\n\n const timeZonedDate = new Date(date).toLocaleString(\"en-US\", {\n timeZone,\n });\n\n // converting it back to a Date object since it's a string after time zone conversion\n return new Date(timeZonedDate);\n};\n\n/**\n * If the date is a string, parse it to ISO string\n */\nconst checkValidDate = (d: unknown) => {\n return typeof d === \"string\"\n ? parseISO(d)\n : typeof d === \"number\" || d instanceof Date\n ? d\n : 0;\n};\n\n/**\n * Returns the month name of a given date\n *\n * @param date - The Date or date-like string or number to format\n */\nexport const getFormattedMonthName = (\n date: Date | string | null | undefined,\n): string | null => {\n if (!date) return null;\n\n const parsedDate = checkValidDate(date);\n const utcDate = toZonedTime(parsedDate, \"UTC\");\n return format(utcDate, \"MMMM\", { locale: enUS }).toUpperCase();\n};\n","/**\n * Create a custom event in Heap\n * @param eventName - The name of the event to track\n * @param options - Options for the event\n * @param options.identity - The identity of the user to track the event for\n * @param options.customProperties - Custom properties to include with the event\n * @param options.userProperties - User properties to include with the event\n * @example\n * trackHeapEvent(\"test event\", { identity: \"userId\", customProperties: { foo: \"bar\" } });\n */\n\ntype TrackHeapEventOptions = {\n identity?: string;\n customProperties?: Record;\n userProperties?: Record;\n};\n\nexport const trackHeapEvent = (\n eventName: string,\n options?: TrackHeapEventOptions,\n): void => {\n const { identity, customProperties, userProperties } = options || {};\n\n if (window.heap) {\n window.heap.track(eventName, customProperties ?? {});\n if (identity) window.heap.identify(identity);\n if (userProperties) window.heap.addUserProperties(userProperties);\n } else {\n console.warn(\"Heap not found\");\n }\n};\n","import Big from \"big.js\";\n\n/*\n * Support rounding to 14 decimal places\n */\nBig.DP = 14;\n\n/*\n * Implements ROUND_HALF_UP\n */\nBig.RM = 1;\n\nBig.strict = false;\n\ntype InputType = string | number | null | undefined;\n\n/**\n * Round a number with floating point precision up to 14 decimal places. Returns\n * a string to avoid trailing zero truncation.\n */\nexport const round = (value: InputType, decimals?: number): string =>\n Big(value || 0)\n .round(decimals || 0)\n .toString();\n\n/**\n * Adds currency with floating-point precision and returns string representation\n */\nexport const addMoney = (...addends: InputType[]): string => {\n return addMoneyNumeric(...addends).toFixed(2);\n};\n\n/**\n * Adds currency with floating-point precision\n */\nexport const addMoneyNumeric = (...addends: InputType[]): number => {\n return addends\n .reduce((sum, item) => (sum = sum.plus(item || 0)), new Big(0))\n .round(2)\n .toNumber();\n};\n\n/**\n * Gets the percentage of two numbers as a whole number percent\n */\nexport const getPercentageOf = (\n value: InputType,\n ofValue: InputType,\n decimals = 0,\n): string | undefined => {\n try {\n const percent = Big(value || 0)\n .div(ofValue || 0)\n .times(100)\n .toString();\n\n return round(percent, decimals);\n } catch (e) {\n // Returns undefined for divide by zero errors\n return undefined;\n }\n};\n\n/**\n * Format as currency string with decimals\n */\nexport const formatCurrency = (\n value?: unknown,\n opts?: {\n withDecimals?: boolean;\n isPadded?: boolean;\n hideDecimalsIfWhole?: boolean;\n noParentheses?: boolean;\n },\n): string => {\n const {\n withDecimals = true,\n hideDecimalsIfWhole = false,\n noParentheses = false,\n } = opts || {};\n\n const v = Big(\n typeof value === \"string\" || typeof value === \"number\" ? value : 0,\n );\n\n const formattingOpts = withDecimals\n ? { minimumFractionDigits: 2 }\n : { maximumFractionDigits: 0 };\n\n // If whole number, hide decimals\n if (hideDecimalsIfWhole && v.mod(1).eq(0)) {\n formattingOpts.minimumFractionDigits = 0;\n }\n\n const result = Number(v.abs().toFixed(2)).toLocaleString(\n undefined,\n formattingOpts,\n );\n const padding = opts?.isPadded ? \" \" : \"\";\n\n // If less than zero, return negative notation\n if (v.lt(0)) {\n if (noParentheses) {\n return `-$${padding}${result}`;\n }\n return `($${padding}${result})`;\n } else {\n return `$${padding}${result}`;\n }\n};\n","import React, { ErrorInfo } from \"react\";\nimport { addDatadogError } from \"../utils\";\n\ntype Props = { children: React.ReactNode; fallback?: React.ReactNode };\n\ntype State = { hasError: boolean };\n\nexport class LoggingErrorBoundary extends React.Component {\n constructor(props: Props) {\n super(props);\n this.state = { hasError: false };\n }\n\n static getDerivedStateFromError() {\n return { hasError: true };\n }\n\n // Based on https://docs.datadoghq.com/real_user_monitoring/browser/collecting_browser_errors/?tab=npm#react-error-boundaries-instrumentation\n componentDidCatch(error: Error, info: ErrorInfo): void {\n const renderingError = new Error(error.message);\n renderingError.name = `ReactRenderingError`;\n renderingError.stack = info.componentStack ?? undefined;\n renderingError.cause = error;\n\n addDatadogError(\n renderingError,\n { is_crash: true }, // https://github.com/DataDog/browser-sdk/issues/2514\n );\n }\n\n render() {\n return this.state.hasError ? this.props.fallback : this.props.children;\n }\n}\n","import React from \"react\";\n\nconst useIsomorphicLayoutEffect =\n typeof window !== \"undefined\" ? React.useLayoutEffect : React.useEffect;\n\n/**\n * This is an SSR-safe implementation of the equivalent hook in Chakra:\n * https://v1.chakra-ui.com/docs/styled-system/utility-hooks/use-media-query\n *\n * As of Chakra v1.x, useMediaQuery() causes the app to crash in prod envs. This\n * issue may have been fixed in Chakra v2.x\n */\nexport const useMediaQuery = (query: string): boolean[] => {\n const [targetReached, setTargetReached] = React.useState(false);\n\n const updateTarget = React.useCallback((e: MediaQueryListEvent) => {\n if (e.matches) {\n setTargetReached(true);\n } else {\n setTargetReached(false);\n }\n }, []);\n\n useIsomorphicLayoutEffect(() => {\n const media = window.matchMedia(query);\n media.addListener(updateTarget);\n\n // Check on mount (callback is not called until a change occurs)\n if (media.matches) {\n setTargetReached(true);\n }\n\n return () => media.removeListener(updateTarget);\n }, []);\n\n // eslint-disable-next-line sonarjs/prefer-immediate-return\n const memoTargetReached = React.useMemo(\n () => [targetReached],\n [targetReached],\n );\n\n return memoTargetReached;\n};\n","/* eslint-disable @typescript-eslint/ban-types */\nexport type LogLevel = \"info\" | \"debug\" | \"warn\" | \"error\";\n\nexport type UserSession = {\n id: string;\n [key: string]: unknown;\n};\n\n/**\n * Abstract Datadog client class to share across web and react native\n */\nexport abstract class DatadogClient {\n abstract setDatadogUserSession(user: UserSession): Promise;\n abstract addFeatureFlagEvaluation(key: string, value: string): Promise;\n abstract setGlobalContextProperty(key: string, value: string): Promise;\n abstract setLogLevel(level: LogLevel): void;\n\n abstract debug(\n message: string,\n context?: object,\n error?: Error,\n ): Promise;\n abstract info(\n message: string,\n context?: object,\n error?: Error,\n ): Promise;\n abstract warn(\n message: string,\n context?: object,\n error?: Error,\n ): Promise;\n abstract error(\n message: string,\n context?: object,\n error?: Error,\n ): Promise;\n}\n","/* eslint-disable @typescript-eslint/ban-types */\nimport getLogger from \"../../logger/logger\";\n\nimport { DatadogClient, LogLevel, UserSession } from \"./types\";\n\nconst log = getLogger(\"Paytient:datadog\");\nconst info = getLogger(\"Paytient:datadog:info\");\nconst debug = getLogger(\"Paytient:datadog:debug\");\nconst err = getLogger(\"Paytient:datadog:error\");\n\nexport class DatadogWebClient extends DatadogClient {\n async setDatadogUserSession(user: UserSession): Promise {\n const promises: void[] = [];\n\n if (window.DD_LOGS) {\n promises.push(window.DD_LOGS.setUser(user));\n } else {\n log(\"DD_LOGS not found\");\n }\n\n if (window.DD_RUM) {\n promises.push(window.DD_RUM.setUser(user));\n } else {\n log(\"DD_RUM not found\");\n }\n\n return Promise.allSettled(promises).then((...args) => {\n log(\"setDatadogUserSession\", { user }, { result: args });\n });\n }\n\n async debug(message: string, context?: object, error?: Error): Promise {\n debug(message, context, error);\n return window.DD_LOGS?.logger.debug(message, context, error);\n }\n\n async info(message: string, context?: object, error?: Error): Promise {\n info(message, context, error);\n return window.DD_LOGS?.logger.info(message, context, error);\n }\n\n async warn(message: string, context?: object, error?: Error): Promise {\n info(message, context, error);\n return window.DD_LOGS?.logger.warn(message, context, error);\n }\n\n async error(message: string, context?: object, error?: Error): Promise {\n err(message, context, error);\n return window.DD_LOGS?.logger.error(message, context, error);\n }\n\n async addFeatureFlagEvaluation(key: string, value: string): Promise {\n window.DD_RUM?.addFeatureFlagEvaluation(key, value);\n log(\"addFeatureFlagEvaluation\", key, value);\n }\n\n async setGlobalContextProperty(key: string, value: string): Promise {\n window.DD_LOGS?.setGlobalContextProperty(key, value);\n window.DD_RUM?.setGlobalContextProperty(key, value);\n log(\"setGlobalContextProperty\", key, value);\n }\n\n setLogLevel(level: LogLevel): void {\n window.DD_LOGS?.logger.setLevel(level);\n log(\"setLogLevel\", level);\n }\n}\n\nexport const dd = new DatadogWebClient();\n","/**\n * @deprecated - Use rejectWithValue + unwrapResult from RTK to return/throw\n * errors. Error messaging should be handled by components.\n */\nclass ActionError extends Error {\n constructor(message: string, cause: Error) {\n super(message, { cause });\n this.name = \"ActionError\";\n }\n}\n\nexport { ActionError };\n","import { configureAxe } from \"jest-axe\";\n\nconst axeScreen = configureAxe({\n preload: false,\n impactLevels: [\"moderate\", \"serious\", \"critical\"],\n});\n\nconst axeComponent = configureAxe({\n rules: {\n // disable landmark rules when testing isolated components.\n region: { enabled: false },\n },\n preload: false,\n impactLevels: [\"moderate\", \"serious\", \"critical\"],\n});\n\n/**\n * Runs accessibility checks on a given HTML element using the `jest-axe` library.\n *\n * @param container - The HTML element to check.\n * @param options - Configuration options for the check.\n * @param options.isUsingFakeTimers - Whether Jest is currently using fake timers.\n * If true, the function will switch to real timers before running the check, and switch back\n * to fake timers afterwards.\n * @param options.isScreen - Whether the HTML element represents a full screen.\n * If true, the function will run checks that are relevant for full screens. If false,\n * the function will run checks that are relevant for isolated components.\n *\n * @returns A promise that resolves to the results of the accessibility checks.\n */\nexport const axe = async (\n container: HTMLElement,\n options: {\n isUsingFakeTimers?: boolean;\n isScreen?: boolean;\n },\n) => {\n const { isUsingFakeTimers, isScreen } = options;\n\n if (isUsingFakeTimers) jest.useRealTimers();\n\n let results;\n isScreen\n ? (results = await axeScreen(container))\n : (results = await axeComponent(container));\n\n if (isUsingFakeTimers) jest.useFakeTimers();\n\n return results;\n};\n","import { createAction } from \"@reduxjs/toolkit\";\n\nexport const setIncurredCosts = createAction(\n \"calculator/SET_INCURRED_COSTS\",\n);\n","import { createAsyncThunk } from \"@reduxjs/toolkit\";\nimport {\n CalculatorService,\n EstimatedPaymentScheduleRequest,\n IncurredCost,\n} from \"src/api\";\nimport { Month } from \"src/typings/domain/months\";\n\nexport const estimatePaymentSchedule = createAsyncThunk(\n \"calculator/estimatePaymentSchedule\",\n\n async (values: {\n optInMonth?: Month;\n priorIncurredCosts: number;\n months: { [key: string]: number };\n planStart?: Month | null;\n planEnd?: Month | null;\n }) => {\n const incurredCosts: IncurredCost[] = Object.entries(values.months).map(\n ([month, amount]) => ({\n month: month as IncurredCost.month,\n amount,\n }),\n );\n\n const request: EstimatedPaymentScheduleRequest = {\n incurredCosts,\n optInMonth:\n values.optInMonth as EstimatedPaymentScheduleRequest.optInMonth,\n planStart: values.planStart as EstimatedPaymentScheduleRequest.planStart,\n planEnd: values.planEnd as EstimatedPaymentScheduleRequest.planEnd,\n priorIncurredCosts: values.priorIncurredCosts,\n };\n\n return await CalculatorService.estimatePaymentSchedule(request);\n },\n);\n","import { createAction } from \"@reduxjs/toolkit\";\n\nexport const setEstimatedCosts = createAction<{ [key: string]: number }>(\n \"calculator/SET_ESTIMATED_COSTS\",\n);\n","import { createAction } from \"@reduxjs/toolkit\";\n\nexport const resetEstimatedCosts = createAction(\n \"calculator/RESET_ESTIMATED_COSTS\",\n);\n","import { createAction } from \"@reduxjs/toolkit\";\nimport { Month } from \"src/typings/domain/months\";\n\nexport const setPlanStart = createAction(\"calculator/SET_PLAN_START\");\n","import { combineReducers, createReducer } from \"@reduxjs/toolkit\";\nimport { EstimatedPaymentSchedule } from \"src/api\";\nimport { Month } from \"src/typings/domain/months\";\nimport { setIncurredCosts } from \"./actions/setIncurredCosts\";\nimport { estimatePaymentSchedule } from \"./thunks/estimatePaymentSchedules\";\nimport { setEstimatedCosts } from \"./actions/setEstimatedCosts\";\nimport { resetEstimatedCosts } from \"./actions/resetEstimatedCosts\";\nimport { setPlanStart } from \"./actions/setPlanStart\";\n\nexport type CalculatorState = {\n incurredCosts: number | null;\n results: EstimatedPaymentSchedule;\n estimatedCosts: { [key: string]: number };\n error: string;\n isFetching: boolean;\n planStart?: Month | null;\n};\n\nexport const initialState: CalculatorState = {\n incurredCosts: null,\n estimatedCosts: {\n january: 0,\n february: 0,\n march: 0,\n april: 0,\n may: 0,\n june: 0,\n july: 0,\n august: 0,\n september: 0,\n october: 0,\n november: 0,\n december: 0,\n },\n results: {},\n planStart: null,\n error: \"\",\n isFetching: false,\n};\n\nconst reducer = combineReducers({\n planStart: createReducer(initialState.planStart, (builder) => {\n builder.addCase(setPlanStart, (_, action) => action.payload);\n }),\n incurredCosts: createReducer(initialState.incurredCosts, (builder) => {\n builder.addCase(setIncurredCosts, (_, action) => action.payload);\n }),\n estimatedCosts: createReducer(initialState.estimatedCosts, (builder) => {\n builder.addCase(setEstimatedCosts, (_, action) => action.payload);\n builder.addCase(resetEstimatedCosts, () => initialState.estimatedCosts);\n }),\n results: createReducer(initialState.results, (builder) => {\n builder.addCase(\n estimatePaymentSchedule.fulfilled,\n (_, action) => action.payload,\n );\n }),\n isFetching: createReducer(false, (builder) => {\n builder.addCase(estimatePaymentSchedule.pending, () => true);\n builder.addCase(estimatePaymentSchedule.fulfilled, () => false);\n builder.addCase(estimatePaymentSchedule.rejected, () => false);\n }),\n error: createReducer(\"\", (builder) => {\n builder.addCase(estimatePaymentSchedule.pending, () => \"\");\n builder.addCase(estimatePaymentSchedule.fulfilled, () => \"\");\n builder.addCase(\n estimatePaymentSchedule.rejected,\n (_, action) => action.error.message || \"There was an error.\",\n );\n }),\n});\n\nexport default reducer;\n","import { createAsyncThunk } from \"@reduxjs/toolkit\";\nimport { Config, SystemService } from \"src/api\";\n\ntype Output = Config;\ntype Input = undefined;\n\nexport const getConfig = createAsyncThunk(\n \"config/GET_CONFIG\",\n async () => await SystemService.config(),\n);\n","import { createReducer, combineReducers } from \"@reduxjs/toolkit\";\nimport { Config } from \"src/api\";\nimport { getConfig } from \"./thunks/getConfig\";\n\nexport type ConfigState = {\n data: Config;\n error: string;\n isFetching: boolean;\n};\n\nexport const initialState: ConfigState = {\n data: {\n id: \"\",\n provider: \"\",\n logoUrl: \"\",\n },\n error: \"\",\n isFetching: false,\n};\n\nconst configReducer = combineReducers({\n data: createReducer(initialState.data, (builder) => {\n builder.addCase(getConfig.pending, () => ({\n id: \"\",\n provider: \"\",\n logoUrl: \"\",\n }));\n builder.addCase(getConfig.fulfilled, (_, action) => action.payload);\n builder.addCase(getConfig.rejected, () => ({\n id: \"\",\n provider: \"\",\n logoUrl: \"\",\n }));\n }),\n error: createReducer(initialState.error, (builder) => {\n builder.addCase(getConfig.pending, () => \"\");\n builder.addCase(getConfig.fulfilled, () => \"\");\n builder.addCase(getConfig.rejected, (_, action) => {\n return action.error.message || \"Error retrieving config\";\n });\n }),\n isFetching: createReducer(initialState.isFetching, (builder) => {\n builder.addCase(getConfig.pending, () => true);\n builder.addCase(getConfig.fulfilled, () => false);\n builder.addCase(getConfig.rejected, () => false);\n }),\n});\n\nexport default configReducer;\n","import _get from \"lodash/get\";\nimport { ApiError } from \"src/api\";\n\n/**\n * Cycles through the typical API error properties to find the message\n *\n * @returns return error message from inside the error object\n */\nexport const getAPIErrorMessage = (\n error: ApiError | unknown,\n): string | undefined => {\n const responseError = _get(\n error,\n \"response.data.error_description\",\n _get(error, \"response.data.message\"),\n );\n const statusErrorText = _get(error, \"statusText\");\n const responseDataError = _get(error, \"response.data\");\n return responseError || statusErrorText || responseDataError;\n};\n","/* eslint-disable @typescript-eslint/explicit-module-boundary-types */\n/* eslint-disable @typescript-eslint/no-explicit-any */\nimport { getLogger, replaceUUID, scrubData } from \"@paytient/common\";\nimport {\n AnyAction,\n MiddlewareAPI,\n isRejected,\n isRejectedWithValue,\n} from \"@reduxjs/toolkit\";\nimport { getAPIErrorMessage } from \"src/lib/getAPIErrorMessage\";\n\nimport { AppDispatch, RootState } from \"src/redux\";\n\nconst log = getLogger(\"Paytient:middleware:datadog:utils\");\n\nexport const getErrorFromAction = (action: any) =>\n action?.meta?.error ?? action?.payload;\n\nexport const MASK = \"[FILTERED]\";\n\n/**\n * Apply a MASK to any sensitive state data that we don't want sent to Datadog\n */\nexport const stateSanitizer = (state: T): T => {\n return scrubData(state);\n};\n\nexport const requestBodySanitizer = (body?: string): string | undefined => {\n const searchAndReplace = (object: { [key: string]: unknown } = {}): void => {\n Object.keys(object).forEach((key) => {\n if (key === \"password\") object[key] = MASK;\n });\n };\n\n let requestPayload = {};\n if (typeof body === \"string\") {\n try {\n requestPayload = JSON.parse(body);\n searchAndReplace(requestPayload);\n return JSON.stringify(requestPayload);\n } catch (e) {\n return body;\n }\n }\n\n return body;\n};\n\ntype ExtrasLike = {\n custom: {\n type: string;\n };\n};\n\ntype ExtrasCustom = {\n type: string;\n response?: string | Record;\n correlationId?: string;\n};\n\ntype ExtrasRequest = {\n url: string;\n method: string;\n params: Record;\n baseURL: string;\n body?: unknown;\n};\n\ntype Extras = {\n title?: string;\n custom?: ExtrasCustom;\n request?: ExtrasRequest;\n fingerprint?: string;\n};\n\n/**\n * Get the primary Datadog item title and fingerprint by which all Datadog\n * errors are grouped\n */\nexport const getItemTitle = (\n action: A,\n _: E,\n) => {\n // Fingerprint and title\n let message = \"\";\n\n const error = getErrorFromAction(action);\n const apiMessage = error?.response?.data?.code || getAPIErrorMessage(error);\n const errorCode = action.payload?.code;\n\n if (apiMessage) {\n // If API error\n message = apiMessage;\n } else if (error instanceof Error) {\n // If Error instance\n ({ message } = action.payload);\n } else if (typeof error === \"string\") {\n // If simple message\n message = action.payload;\n } else if (error?.error) {\n // If error message was parsed from API\n message = action.payload.data;\n } else if (errorCode) {\n message = errorCode;\n }\n\n // Primary Datadog item title and fingerprint by which all errors are grouped.\n // Note that this was implemented for Rollbar, but it may still be useful\n const title = [action.type, error?.response?.status, message]\n .filter((x) => x)\n .join(\" \");\n return replaceUUID(title, MASK);\n};\n\n/**\n * Provide additional metadata from the redux error action to provide to the\n * Datadog item\n */\nexport const getExtras = (action: any) => {\n const extras: any = {};\n const error = getErrorFromAction(action);\n const config = error?.config;\n\n if (config) {\n // API Request Info\n extras.request = {\n url: config.url,\n method: config.method,\n params: config.params,\n baseURL: config.baseURL,\n };\n if (config.data) extras.request.body = requestBodySanitizer(config.data);\n }\n\n extras.custom = {};\n\n // Action type\n extras.custom.type = action?.type;\n\n // Response data\n if (error?.response?.data) {\n extras.custom.response = error.response.data;\n }\n\n if (isRejectedWithValue(action)) {\n extras.custom.errorCode = action.payload.code;\n extras.custom.internalMessage = action.payload.message;\n }\n\n // Backend requestid -> updated to correlationId\n const correlationId =\n error?.response?.headers?.[\"correlation-id\"] ??\n error?.headers?.[\"correlation-id\"];\n if (correlationId) {\n extras.custom.correlationId = correlationId;\n }\n\n // Primary Datadog item title and fingerprint by which all Datadog errors\n // are grouped\n const title = getItemTitle(action, extras);\n extras.title = title;\n extras.fingerprint = title;\n\n return scrubData(extras, {\n scrubUUIDs: true,\n });\n};\n\n/**\n * Determine which actions get reported to Datadog\n */\nexport const isErrorToReport = (\n action: AnyAction,\n _: MiddlewareAPI,\n): boolean => {\n // Ignore actions just by type when needed\n const actionBlocklist: string[] = [];\n\n // eslint-disable-next-line sonarjs/no-empty-collection\n const isBlocklisted = actionBlocklist.includes(action.type);\n if (isBlocklisted) log(\"Blocklisted Action Error Ignored\", action);\n\n return (\n (action.error || isRejected(action) || isRejectedWithValue(action)) &&\n !isBlocklisted &&\n !action.meta?.aborted\n );\n};\n","import { Buffer } from \"buffer\";\nimport { AnyAction, Middleware } from \"@reduxjs/toolkit\";\nimport {\n scrubData,\n getLogger,\n ActionError,\n DatadogClient,\n} from \"@paytient/common\";\n\nimport { getExtras, getErrorFromAction, isErrorToReport } from \"./utils\";\n\nconst log = getLogger(\"Paytient:middleware:datadog\");\n\nexport const createMiddleware =\n (dd: DatadogClient): Middleware =>\n (store) =>\n (next) =>\n (action: AnyAction) => {\n if (isErrorToReport(action, store)) {\n const extras = getExtras(action);\n\n if (action?.payload?.config?.data) {\n action.payload.config.data = scrubData(action.payload.config.data);\n }\n\n const context = {\n ...extras,\n };\n\n log(\"payload bytes\", Buffer.byteLength(JSON.stringify(context)));\n\n const rawError = getErrorFromAction(action);\n const message = extras?.title ?? action?.payload?.message;\n const actionError =\n rawError instanceof Error\n ? new ActionError(message, rawError)\n : undefined;\n\n dd.error(message, context, actionError);\n }\n\n return next(action);\n };\n","import { dd } from \"@paytient/common\";\nimport { createMiddleware } from \"./create\";\n\nexport const datadogMiddleware = createMiddleware(dd);\n","import type { Action, ThunkAction } from \"@reduxjs/toolkit\";\nimport { combineReducers, configureStore } from \"@reduxjs/toolkit\";\nimport { useDispatch, useSelector } from \"react-redux\";\n\nimport calculatorReducer from \"./modules/calculator/reducer\";\nimport configReducer from \"./modules/config/reducer\";\nimport { datadogMiddleware } from \"./middleware/datadog\";\n\nexport const rootReducer = combineReducers({\n calculator: calculatorReducer,\n config: configReducer,\n});\n\nexport const rtkConfig = {\n devTools: {\n maxAge: 100,\n trace: true,\n },\n reducer: ((state, action) =>\n rootReducer(state, action)) as typeof rootReducer,\n};\n\n/* istanbul ignore next */\nexport const store = configureStore({\n ...rtkConfig,\n middleware: (getDefaultMiddleware) =>\n // add any service as extraArgument on the next line\n getDefaultMiddleware().concat(datadogMiddleware),\n});\n\nexport type AppStore = typeof store;\n// Use throughout your app instead of plain `useDispatch` and `useSelector`\nexport type AppDispatch = AppStore[\"dispatch\"];\n// Use throughout your app instead of plain `useDispatch` and `useSelector`\n\nexport type AppSelector = (state: RootState) => T;\nexport const useAppDispatch = () => useDispatch();\nexport const useAppSelector = (selector: AppSelector) =>\n useSelector(selector);\n\n/* Only for use outside react tree */\nexport const selectFromStore = (selector: AppSelector) => {\n return selector(store.getState());\n};\n\nexport type RootState = ReturnType;\n\nexport type AppThunk = ThunkAction<\n ThunkReturnType,\n RootState,\n unknown,\n Action\n>;\n\n/**\n * Override react-redux to declare RootState and useDispatch everywhere\n */\ndeclare module \"react-redux\" {\n // eslint-disable-next-line @typescript-eslint/no-empty-interface\n export interface DefaultRootState extends RootState {}\n}\n","import { createSelector } from \"reselect\";\nimport { RootState } from \"src/redux\";\n\nexport const selectConfig = (state: RootState) => state.config.data;\n\nexport const selectSponsorName = (state: RootState) =>\n state.config.data?.provider;\n\nexport const selectIsESI = createSelector(\n selectSponsorName,\n (sponsorName) => sponsorName === \"ESI\",\n);\n","export const featureFlags = {\n ClientExperienceConfig: \"configure-client-experience-config\",\n RolloutNCYCalculatorUpdates: \"rollout-ncy-calculator-updates\",\n} as const;\n\nexport type FeatureFlag = (typeof featureFlags)[keyof typeof featureFlags];\n","import { useLDClient } from \"launchdarkly-react-client-sdk\";\nimport { addDatadogError } from \"@paytient/common\";\nimport { featureFlags } from \"src/lib/featureFlags\";\n\nexport type ExperienceConfig = {\n logoUrl: string;\n faviconUrl: string;\n sponsorUrl: string;\n theme: { brandColors: Record };\n contactInfo: { phone: string };\n faqKey: string;\n};\n\nconst defaultConfig: ExperienceConfig = {\n logoUrl: \"\",\n faviconUrl: \"\",\n sponsorUrl: \"\",\n theme: { brandColors: {} },\n contactInfo: { phone: \"\" },\n faqKey: \"\",\n};\n\nexport function useClientExperienceConfig(): ExperienceConfig {\n const client = useLDClient();\n\n if (!client) {\n return defaultConfig;\n }\n\n try {\n return client.variation(\n featureFlags.ClientExperienceConfig,\n ) as ExperienceConfig;\n } catch (error) {\n addDatadogError(error);\n return defaultConfig;\n }\n}\n","export const getIsPaytientClient = (): boolean => {\n const subdomain = window.location?.hostname?.split?.(\".\")?.[0];\n return subdomain === \"paytient\";\n};\n","import { SystemService } from \"src/api\";\nimport { getIsPaytientClient } from \"./getIsPaytientClient\";\n\n/**\n * Check if the current system provider is Paytient and return it,\n * otherwise returns the system provider from the config API\n * @returns string\n */\nexport const getSystemProvider = async () => {\n const isPaytientClient = getIsPaytientClient();\n if (isPaytientClient) return \"paytient\";\n\n const systemConfig = await SystemService.config();\n return systemConfig.id;\n};\n","import { initialize, LDClient } from \"launchdarkly-react-client-sdk\";\nimport { addDatadogError } from \"@paytient/common\";\nimport { LD_CLIENT_KEY, LD_INITIALIZE_TIMEOUT } from \"src/config\";\nimport { getSystemProvider } from \"./getSystemProvider\";\n\nlet ldClient: LDClient;\n\nexport const getLDClient = async (systemProvider?: string) => {\n try {\n if (ldClient) {\n await ldClient.waitForInitialization();\n return ldClient;\n }\n\n ldClient = initialize(LD_CLIENT_KEY, {\n kind: \"user\",\n clientId: systemProvider ?? (await getSystemProvider()),\n anonymous: true,\n timeout: LD_INITIALIZE_TIMEOUT,\n });\n await ldClient.waitForInitialization();\n\n return ldClient;\n } catch (error) {\n addDatadogError(error);\n throw error;\n }\n};\n","export default \"\\nThe Medicare Prescription Payment Plan (the program) is an optional program that can help you manage your prescription payments. With this program:\\n\\n
\\n\\n- Costs for your covered Part D prescriptions are spread out over the plan year.\\n- You pay $0 at the pharmacy when you fill new or existing covered Part D prescriptions.\\n- You’ll receive a monthly bill from CarePlus with the amount you owe, your due date, and instructions on how to make a payment.\\n\\n
\\n\\n**This payment option might help you manage your expenses, but it does not save you money or lower your drug costs.**\\n\\n
\\n\\n\\n\\n- **Extra Help, also called Low Income Subsidy (LIS):** A Medicare program that helps pay your Medicare drug costs if you have limited income and resources. Visit
secure.ssa.gov/i1020/start to find out if you qualify and apply. You can also apply with your state’s Medicaid office. Visit Medicare.gov/basics/costs/help/drug-costs to learn more.\\n\\n
\\n\\n- **Medicare Savings Program:** A state-run program that helps people with limited income and resources pay some or all of their Medicare premiums, deductibles and coinsurance. Visit Medicare.gov/medicare-savings-programs to learn more.\\n\\n
\\n\\n- **Manufacturer’s Pharmaceutical Assistance Programs, sometimes called Patient Assistance Programs (PAPs):** A program from drug manufacturers to help lower drugs costs for people with Medicare. Visit go.medicare.gov/pap to learn more.\\n\\n
\\n\\n- **CarePlus programs:** CarePlus has several programs and plan benefits to help manage the costs of your prescriptions. Visit **CarePlusHealthPlans.com/RxCostHelp** to learn how these programs may benefit you.\\n\\n
\\n\\n**Note:** The programs listed above can help lower your costs, but they can’t help you pay off your balance in the program.\\n\\n
\\n\\n**

To learn if you qualify for savings

**
\\nVisit Medicare.gov/basics/costs/help or contact your local Social Security office. You can find your local Social Security office at secure.ssa.gov/ICON/main.jsp or by calling 1-800-772-1213. TTY users can call 1-800-325-0778.\\n\\n\\n\\n\\nWhen you opt out of The Medicare Prescription Payment Plan (the program) here’s what happens:\\n\\n
\\n\\n- Going forward, you’ll pay your pharmacy directly for all your covered Part D drug costs, (also applies to mail order and specialty pharmacies).\\n- You will stop purchases added to your balance.\\n- You will continue to receive monthly bills for the amount incurred while in The program until your balance is paid.\\n- You also have the option to pay the balance in full at any time.\\n\\n
\\n\\nIf you choose to participate in The program in the future, you simply opt-in as you did before.\\n\\n
\\n\\n\\nIn the Medicare Prescription Payment Plan (the program), you will get a monthly bill from CarePlus instead of paying for your covered Part D prescriptions at the pharmacy.  \\n\\n
\\n\\nFor your first month, based on your start date in the program, your monthly payment could be as high as your total covered Part D drug costs for that month.\\n\\n
\\n\\nYour monthly bill is based on what you owe for any prescriptions you get, plus any balance from the previous month, divided by the number of months left in the year.\\n\\n
\\n\\nYour payment can change every month as you fill new prescriptions or refill existing ones.  These will be added to your balance which may change from month to month.\\n\\n
\\n\\nBeginning in 2025, you won’t pay more than $2,000 for out-of-pocket costs for covered Part D drugs. This is true for everyone with Medicare drug coverage, even if you don’t join the program.\\n\\n
\\n\\nIt doesn’t cost anything to participate in the program and you won’t pay any interest or fees on the amount you owe.\\n\\n
\\n\\nNote: Your monthly payment calculation is done every month to capture both your balance AND the remaining months left in the year.\\n\\n
\\n\\n\\n\\nYour minimum payment due will be the amount you have accrued to date divided by the remaining months in the year. It may also include any previously missed payments or partial payments that were received. If you had any refunds or credits applied from the previous month, that could be applied to that minimum payment due as well. You need to pay the minimum payment each month by the due date to avoid being removed from the program.\\n\\n
\\n
\\n\\nYou have several options to pay your minimum payment due. You can pay:\\n\\n
\\n\\n- Online at **CarePlusHealthPlans.com/MPPP**, by credit or debit card, HSA/FSA card, or withdraw from your bank account.\\n- To reach our support team, please call our support team **1-800-794-5907 (TTY: 711)**. From October 1 - March 31, we are open daily, 8 a.m. to 8 p.m. in your local timezone. From April 1 - September 30, we are open Monday - Friday, 8 a.m. to 8 p.m. in your local timezone. You may leave a voicemail after hours, Saturdays, Sundays, and holidays and we will return your call within one business day.\\n- Through the mail, by check. Mail your check using the enclosed envelopes and payment form to:\\n\\n - CarePlus Health Plans c/o HPS\\n
PO Box 371429\\n
Pittsburgh, PA 15250-7429\\n
\\n
\\n\\n
\\n
\\n\\n**This only applies to your participation in the Medicare Prescription Payment Plan. Your Medicare drug coverage and other Medicare benefits won’t be affected, and you’ll continue to be enrolled for your drug coverage.**\\n
\\n\\n\\n\\nYou have several options to pay your past due balance. You can pay:\\n\\n- Online at **CarePlusHealthPlans.com/MPPP**, by credit or debit card, or withdraw from your bank account.\\n- To reach our support team, please call our support team **1-800-794-5907 (TTY: 711)**. From October 1 - March 31, we are open daily, 8 a.m. to 8 p.m. in your local timezone. From April 1 - September 30, we are open Monday - Friday, 8 a.m. to 8 p.m. in your local timezone. You may leave a voicemail after hours, Saturdays, Sundays, and holidays and we will return your call within one business day.\\n- Through the mail, by check.\\n\\n - CarePlus Health Plans c/o HPS\\n
PO Box 371429\\n
Pittsburgh, PA 15250-7429\\n
\\n
\\n\\n**This only applies to your participation in the Medicare Prescription Payment Plan. Your Medicare drug coverage and other Medicare benefits won’t be affected, and you’ll continue to be enrolled for your drug coverage.**\\n
\\n\\n\\n\\nThere are several things to keep in mind if you do not pay off your past due balance:\\n\\n
\\n\\n- You will continue to receive bills until your past due balance is paid.\\n- If you have failed to pay the monthly billed amount by the payment due date, there is a two-month grace period before you will be terminated from the program.\\n- You will be ineligible to re-join the program until your past due balance is paid.\\n- Once your past due balance is paid, you can rejoin the program anytime.\\n\\n
\\n\\n\\n\\nIf you disagree with our decision, you have the right to ask CarePlus to review our decision. You must submit your dispute within 60 days after the incident or event initiating the grievance.\\n
\\n
\\nYou may mail, fax, or call the Grievance Department at:
\\nCarePlus Health Plans, Inc.
\\nAttn: Grievances & Appeals department
    \\nP.O. Box 277810
\\nMiramar, FL 33027
\\nFax: 1-800-956-4288
\\nPhone: 1-800-794-5907 (TTY: 711)\\n\\n
\\n\\n\\n\\n- Your participation in the Medicare Prescription Payment Plan (the program) will end on December 31.\\n- To participate in the program in the new plan year, you must opt in to the program again for a January 1 start date.\\n\\n\\n\"","export default \"\\nThe Medicare Prescription Payment Plan (the program) is an optional program that can help you manage your prescription payments. With this program:\\n\\n
\\n\\n- Costs for your covered Part D prescriptions are spread out over the plan year.\\n- You pay $0 at the pharmacy when you fill new or existing covered Part D prescriptions.\\n- You’ll receive a monthly bill from CarePlus with the amount you owe, your due date, and instructions on how to make a payment.\\n\\n
\\n\\n**This payment option might help you manage your expenses, but it does not save you money or lower your drug costs.**\\n\\n
\\n\\n\\nThe Medicare Prescription Payment Plan (the program) may help you manage your Part D prescription drug costs. Here are some tips to help you decide. \\n\\n
\\n\\n- If during the prior plan year, you filled a single prescription costing more than $600.\\n- If you have spent more than $2,000 on your covered Part D prescriptions Last Year.\\n- If you sign up EARLY in the new plan year.\\n\\n - The more months you have in the Program, the more your payments will be spread out.\\n\\n
\\n\\n\\n\\n- Have prescription costs that are the same month to month.\\n- Have higher drug costs later in the year, as your balance would need to be paid off by year end.\\n- Are eligible for a Dual Eligible Special Needs Plan\\n- Qualify for cost savings programs:\\n- Extra Help/Low-Income Subsidy (LIS)\\n- Medicare Savings Program\\n- State Pharmaceutical Assistance Program (SPAP)\\n- Manufacturer’s Pharmaceutical Assistance Programs, sometimes called Patient Assistance Programs (PAPs)\\n\\n
\\n\\nTo learn if you qualify for savings, visit Medicare.gov/basics/costs/help or contact your local Social Security office. You can find your local Social Security office at secure.ssa.gov/ICON/main.jsp or by calling 1-800-772-1213. TTY users can call 1-800-325-0778.\\n
\\n\\n\\n\\n**Medicare:** Visit Medicare.gov/prescription-payment-plan, or call 1-800-MEDICARE (1-800-633-4227), 24 hours a day, 7 days a week. TTY users can call 1-877-486-2048.\\n\\n
\\n
\\n\\n**Careplus:** If you have questions about the Medicare Prescription Payment Plan, please call our support team 1-800-794-5907 (TTY: 711). From October 1 - March 31, we are open daily, 8 a.m. to 8 p.m. in your local timezone. From April 1 - September 30, we are open Monday - Friday, 8 a.m. to 8 p.m. in your local timezone. You may leave a voicemail after hours, Saturdays, Sundays, and holidays and we will return your call within one business day.\\n
\\n\\n\\n\\nTo opt in to the Medicare Prescription Payment Program, visit URL **CarePlusHealthPlans.com/MPPP**. Here you’ll find:\\n\\n
\\n\\n- Program information\\n- Frequently Asked Questions\\n- Balance and transaction history\\n- And more!\\n\\n
\\n\\nYou can also contact CarePlus Customer Service by calling **1-800-794-5907 (TTY: 711)**. From October 1 - March 31, we are open daily, 8 a.m. to 8 p.m. in your local timezone. From April 1 - September 30, we are open Monday - Friday, 8 a.m. to 8 p.m. in your local timezone. You may leave a voicemail after hours, Saturdays, Sundays, and holidays and we will return your call within one business day.\\n
\\n\\n\\nIn the Medicare Prescription Payment Plan (the Program), you will get a monthly bill from CarePlus instead of paying for your covered Part D prescriptions at the pharmacy.  \\n\\n
\\n\\nFor your first month, based on your start date in the Program, your monthly payment could be as high as your total covered Part D drug costs for that month.\\n\\n
\\n \\nYour monthly bill is based on what you owe for any prescriptions you get, plus any balance from the previous month, divided by the number of months left in the year. \\n\\n
\\n\\nYour payment can change every month as you fill new prescriptions or refill existing ones.  These will be added to your balance which may change from month to month.\\n\\n
\\n\\nBeginning in 2025, you won’t pay more than $2,000 for out-of-pocket costs for covered Part D drugs. This is true for everyone with Medicare drug coverage, even if you don’t join the Program.\\n\\n
\\n\\nIt doesn’t cost anything to participate in the Program and you won’t pay any interest or fees on the amount you owe.\\n\\n
\\n\\nNote: Your monthly payment calculation is done every month to capture both your balance AND the remaining months left in the year. \\n
\\n\\n\\n\\n- **Extra Help, also called Low Income Subsidy (LIS):** A Medicare program that helps pay your Medicare drug costs if you have limited income and resources. Visit secure.ssa.gov/i1020/start to find out if you qualify and apply. You can also apply with your state’s Medicaid office. Visit Medicare.gov/basics/costs/help/drug-costs to learn more.\\n\\n- **Medicare Savings Program:** A state-run program that helps people with limited income and resources pay some or all of their Medicare premiums, deductibles and coinsurance. Visit Medicare.gov/medicare-savings-programs to learn more.\\n\\n- **Manufacturer’s Pharmaceutical Assistance Programs, sometimes called Patient Assistance Programs (PAPs):** A program from drug manufacturers to help lower drugs costs for people with Medicare. Visit go.medicare.gov/pap to learn more.\\n\\n- **CarePlus programs:** CarePlus has several programs and plan benefits to help manage the costs of your prescriptions. Visit **CarePlusHealthPlans.com/RxCostHelp** to learn how these programs may benefit you.\\n\\n
\\n\\n**Note:** The programs listed above can help lower your costs, but they can’t help you pay off your balance in the program.\\n\\n
\\n\\n**

Have questions?

**
\\nTo reach our support team, please call our support team 1-800-794-5907 (TTY: 711). From October 1 - March 31, we are open daily, 8 a.m. to 8 p.m. in your local timezone. From April 1 - September 30, we are open Monday - Friday, 8 a.m. to 8 p.m. in your local timezone. You may leave a voicemail after hours, Saturdays, Sundays, and holidays and we will return your call within one business day.\\n\\n
\\n\\n**

To learn if you qualify for savings

**
\\nVisit Medicare.gov/basics/costs/help or contact your local Social Security office. You can find your local Social Security office at secure.ssa.gov/ICON/main.jsp or by calling 1-800-772-1213. TTY users can call 1-800-325-0778.\\n\\n
\\n\\n\\nWhen you opt out of The Medicare Prescription Payment Plan (“the program”) here’s what happens: \\n\\n
\\n\\n- Going forward, you’ll pay your pharmacy directly for all your covered Part D drug costs, (also applies to mail order and specialty pharmacies).\\n- You will stop purchases added to your balance.\\n- You will continue to receive monthly bills for the amount incurred while in the program until your balance is paid.\\n- You also have the option to pay the balance in full at any time.\\n\\n
\\n\\nIf you choose to participate in the program in the future, you simply opt in as you did before. \\n
\\n\"","export default \"\\nThe Medicare Prescription Payment Plan (the program) is an optional program that can help you manage your prescription payments. With this program:\\n\\n
\\n\\n- Costs for your covered Part D prescriptions are spread out over the plan year.\\n- You pay $0 at the pharmacy when you fill new or existing covered Part D prescriptions.\\n- You’ll receive a monthly bill from Express Scripts with the amount you owe, your due date, and instructions on how to make a payment.\\n\\n
\\n\\n**This payment option might help you manage your expenses, but it does not save you money or lower your drug costs.**\\n\\n
\\n\\n**Additional resources and tools:**\\n\\n- Learn more about the Medicare Prescription Payment Plan.\\n- Payment Plan Fact Sheet\\n- Estimate Monthly Payments\\n\\n
\\n\\n\\n\\nThis payment option might not be the best choice for you if:\\n\\n
\\n\\n- Your yearly drug costs are low\\n- Your drug costs are the same each month\\n- You’re considering signing up for the payment option late in the calendar year (after September)\\n- You don’t want to change how you pay for your drugs\\n- You get or are eligible for Extra Help from Medicare\\n- You get or are eligible for a Medicare Savings Program\\n- You get help paying for your drugs from other organizations, like a State Pharmaceutical Assistance Program (SPAP) or a charity\\n
\\n\\n\\n\\n- **Extra Help, also called Low Income Subsidy (LIS):** A Medicare program that helps pay your Medicare drug costs if you have limited income and resources. Visit secure.ssa.gov/i1020/start to find out if you qualify and apply. You can also apply with your state’s Medicaid office. Visit Medicare.gov/basics/costs/help/drug-costs to learn more.\\n\\n- **Medicare Savings Program:** A state-run program that helps people with limited income and resources pay some or all of their Medicare premiums, deductibles and coinsurance. Visit Medicare.gov/medicare-savings-programs to learn more.\\n\\n- **State Pharmaceutical Assistance Program (SPAP):** A program that may include coverage for your Medicare drug plan premiums and/or cost sharing. SPAP contributions may count toward your Medicare drug coverage out-of-pocket limit. Visit go.medicare.gov/spap to learn more.\\n\\n- **Manufacturer’s Pharmaceutical Assistance Programs, sometimes called Patient Assistance Programs (PAPs):** A program from drug manufacturers to help lower drugs costs for people with Medicare. Visit go.medicare.gov/pap to learn more.\\n\\n- **Note:** The programs listed above can help lower your costs, but they can’t help you pay off your balance in the program.\\n\\n
\\n\\n**

Have questions?

**
\\n\\nCall Express Scripts at **866-845-1803**, 24 hours a day, 7 days a week. TTY users call: **1-800-716-3231**.\\n\\n
\\n\\n**

To learn if you qualify for savings

**
\\n\\nVisit Medicare.gov/basics/costs/help or contact your local Social Security office. You can find your local Social Security office at secure.ssa.gov/ICON/main.jsp or by calling 1-800-772-1213. TTY users can call 1-800-325-0778.\\n
\\n\\n\\n\\nWhen you opt out of The Medicare Prescription Payment Plan (the program) here’s what happens:\\n

\\n\\n- Going forward, you’ll pay your pharmacy directly for all your covered Part D drug costs, (also applies to mail order and specialty pharmacies).\\n- You will stop purchases added to your balance.\\n- You will continue to receive monthly bills for the amount incurred while in the program until your balance is paid.\\n- You also have the option to pay the balance in full at any time.\\n\\n
\\n\\nIf you choose to participate in the program in the future, you simply opt in as you did before.\\n\\n
\\n\\n\\n\\nIn the Medicare Prescription Payment Plan (the program), you will get a monthly bill from Express Scripts instead of paying for your covered Part D prescriptions at the pharmacy.\\n\\n
\\n
\\n\\nFor your first month, based on your start date in the program, your monthly payment could be as high as your total covered Part D drug costs for that month.\\n\\n
\\n
\\n\\nYour monthly bill is based on what you owe for any prescriptions you get, plus any balance from the previous month, divided by the number of months left in the year.\\n\\n
\\n
\\n\\nYour payment can change every month as you fill new prescriptions or refill existing ones.  These will be added to your balance which may change from month to month.\\n\\n
\\n
\\n\\nBeginning in 2025, you won’t pay more than $2,000 for out-of-pocket costs for covered Part D drugs. This is true for everyone with Medicare drug coverage, even if you don’t join the program. Your plan may reduce these out-of-pocket drug costs even further.\\n\\n
\\n
\\n\\nIt doesn’t cost anything to participate in the program and you won’t pay any interest or fees on the amount you owe.\\n\\n
\\n
\\n\\n**Note:** Your monthly payment calculation is done every month to capture both your balance AND the remaining months left in the year.\\n
\\n\\n\\n\\nYour minimum payment due will be the amount you have accrued to date divided by the remaining months in the year. It may also include any previously missed payments or partial payments that were received. If you had any refunds or credits applied from the previous month, that could be applied to that minimum payment due as well. You need to pay the minimum payment each month by the due date to avoid being removed from the program.\\n\\n
\\n
\\n\\nYou have several options to pay your past due balance. You can pay:\\n\\n
\\n\\n- Online at express-scripts.m3p.health, by credit or debit card, or withdraw from your bank account.\\n- By phone by calling **866-845-1803**, 24 hours a day, 7 days a week. TTY users call: **1-800-716-3231**.\\n- For payments by mail, please reference the statement received in the mail for address information\\n\\n
\\n
\\n\\n**This only applies to your participation in the Medicare Prescription Payment Plan. Your Medicare drug coverage and other Medicare benefits won’t be affected, and you’ll continue to be enrolled for your drug coverage.**\\n
\\n\\n\\n\\nYou have several options to pay your past due balance. You can pay:\\n\\n
\\n\\n- Online at express-scripts.m3p.health, by credit or debit card, or withdraw from your bank account.\\n- By phone by calling **866-845-1803**, 24 hours a day, 7 days a week. TTY users call: **1-800-716-3231**.\\n- For payments by mail, please reference the statement received in the mail for address information\\n\\n
\\n\\n**This only applies to your participation in the Medicare Prescription Payment Plan. Your Medicare drug coverage and other Medicare benefits won’t be affected, and you’ll continue to be enrolled for your drug coverage.**\\n
\\n\\n\\n\\nThere are several things to keep in mind if you do not pay off your past due balance:\\n\\n
\\n\\n- You will continue to receive bills until your past due balance is paid.\\n- There is a two month grace period from the time you receive your bill for you to pay the amount due. If you do not pay your bill during this time, your participation in the Medicare Prescription Payment Plan will be terminated. Your Medicare drug coverage and other Medicare benefits won’t be affected and you’ll continue to be enrolled for your drug coverage.\\n- You will be ineligible to re-join the program until your past due balance is paid.\\n- Once your past due balance is paid, you can rejoin the program anytime.\\n\\n
\\n\\n\\nPlease call the number on the back of your ID card or refer to your Evidence of Coverage for additional information on filing a complaint or grievance.\\n\\n\"","export default \"\\nThe Medicare Prescription Payment Plan (the program) is an optional program that can help you manage your prescription payments. With this program:\\n\\n
\\n\\n- Costs for your covered Part D prescriptions are spread out over the plan year.\\n- You pay $0 at the pharmacy when you fill new or existing covered Part D prescriptions.\\n- You’ll receive a monthly bill from Express Scripts with the amount you owe, your due date, and instructions on how to make a payment.\\n\\n
\\n\\n**This payment option might help you manage your expenses, but it does not save you money or lower your drug costs.**\\n\\n
\\n\\n**Additional resources and tools:**\\n\\n- Learn more about the Medicare Prescription Payment Plan.\\n- Payment Plan Fact Sheet\\n- Estimate Monthly Payments\\n\\n
\\n\\n\\nThe Medicare Prescription Payment Plan (the program) may help you manage your Part D prescription drug costs. Here are some tips to help you decide.\\n\\n
\\n\\n- If during the prior plan year, you filled a single prescription costing more than $600.\\n- If you have spent more than $2,000 on your covered Part D prescriptions Last Year.\\n- If you sign up EARLY in the new plan year.\\n - The more months you have in the program, the more your payments will be spread out.\\n\\n
\\n\\n\\n\\n- Have prescription costs that are the same month to month.\\n- Have higher drug costs later in the year, as your balance would need to be paid off by year end.\\n- Are eligible for a Dual Eligible Special Needs Plan\\n- Qualify for cost savings programs:\\n - Extra Help/Low-Income Subsidy (LIS)\\n - Medicare Savings Program\\n - State Pharmaceutical Assistance Program (SPAP)\\n - Manufacturer’s Pharmaceutical Assistance Programs, sometimes called Patient Assistance Programs (PAPs)\\n\\n
\\n\\nTo learn if you qualify for savings, visit Medicare.gov/basics/costs/help or contact your local Social Security office. You can find your local Social Security office at secure.ssa.gov/ICON/main.jsp or by calling 1-800-772-1213. TTY users can call 1-800-325-0778.\\n
\\n\\n\\n

**Medicare:** Visit Medicare.gov/prescription-payment-plan, or call 1-800-MEDICARE (1-800-633-4227), 24 hours a day, 7 days a week. TTY users can call 1-877-486-2048.

\\n
\\n

**State Health Insurance Program (SHIP):** Visit shiphelp.org to get the phone number for your local SHIP and get free, personalized health insurance counseling.

\\n
\\n

Visit your plan’s website, or call your plan to get more information. Your plan’s phone number is on the back of your membership card.

\\n
\\n
\\n\\n\\nVisit your plan’s website, or call your plan to get more information. Your plan’s phone number is on the back of your membership card.\\n\\n\\n\\nIn the Medicare Prescription Payment Plan (the program), you will get a monthly bill from Express Scripts instead of paying for your covered Part D prescriptions at the pharmacy.  \\n\\n
\\n\\nFor your first month, based on your start date in the program, your monthly payment could be as high as your total covered Part D drug costs for that month.\\n\\n
\\n\\nYour monthly bill is based on what you owe for any prescriptions you get, plus any balance from the previous month, divided by the number of months left in the year.\\n\\n
\\n\\nYour payment can change every month as you fill new prescriptions or refill existing ones. These will be added to your balance which may change from month to month.\\n\\n
\\n\\nBeginning in 2025, you won’t pay more than $2,000 for out-of-pocket costs for covered Part D drugs. This is true for everyone with Medicare drug coverage, even if you don’t join the program. Your plan may reduce these out-of-pocket drug costs even further.\\n\\n
\\n\\nIt doesn’t cost anything to participate in the program and you won’t pay any interest or fees on the amount you owe.\\n\\n
\\n\\nNote: Your monthly payment calculation is done every month to capture both your balance AND the remaining months left in the year. \\n
\\n\\n\\n\\n- **Extra Help, also called Low Income Subsidy (LIS):** A Medicare program that helps pay your Medicare drug costs if you have limited income and resources. Visit secure.ssa.gov/i1020/start to find out if you qualify and apply. You can also apply with your state’s Medicaid office. Visit Medicare.gov/basics/costs/help/drug-costs to learn more.\\n\\n- **Medicare Savings Program:** A state-run program that helps people with limited income and resources pay some or all of their Medicare premiums, deductibles and coinsurance. Visit Medicare.gov/medicare-savings-programs to learn more.\\n\\n- **State Pharmaceutical Assistance Program (SPAP):** A program that may include coverage for your Medicare drug plan premiums and/or cost sharing. SPAP contributions may count toward your Medicare drug coverage out-of-pocket limit. Visit go.medicare.gov/spap to learn more.\\n\\n- **Manufacturer’s Pharmaceutical Assistance Programs, sometimes called Patient Assistance Programs (PAPs):** A program from drug manufacturers to help lower drugs costs for people with Medicare. Visit go.medicare.gov/pap to learn more.\\n\\n
\\n\\n**Note:** The programs listed above can help lower your costs, but they can’t help you pay off your balance in the program.\\n\\n
\\n\\n**

Have questions?

**
\\nCall Express Scripts at **866-845-1803**, 24 hours a day, 7 days a week. TTY users call: **1-800-716-3231**.\\n\\n
\\n\\n**

To learn if you qualify for savings

**
\\nVisit Medicare.gov/basics/costs/help or contact your local Social Security office. You can find your local Social Security office at secure.ssa.gov/ICON/main.jsp or by calling 1-800-772-1213. TTY users can call 1-800-325-0778.\\n
\\n\\n\\nWhen you opt out of The Medicare Prescription Payment Plan (“the program”) here’s what happens:\\n\\n
\\n\\n- Going forward, you’ll pay your pharmacy directly for all your covered Part D drug costs, (also applies to mail order and specialty pharmacies).\\n- Purchases will no longer be added to your balance.\\n- You will continue to receive monthly bills for the amount incurred while in the program until your balance is paid.\\n- You also have the option to pay the balance in full at any time.\\n\\n
\\n\\nIf you choose to participate in the program in the future, you simply opt in as you did before. \\n
\\n\"","export default \"\\nThe Medicare Prescription Payment Plan (the program) is an optional program that can help you manage your prescription payments. With this program:\\n\\n
\\n\\n- Costs for your covered Part D prescriptions are spread out over the plan year.\\n- You pay $0 at the pharmacy when you fill new or existing covered Part D prescriptions.\\n- You’ll receive a monthly bill from Humana with the amount you owe, your due date, and instructions on how to make a payment.\\n\\n
\\n\\n**This payment option might help you manage your expenses, but it does not save you money or lower your drug costs.**\\n\\n
\\n\\n\\n\\n- **Extra Help, also called Low Income Subsidy (LIS):** A Medicare program that helps pay your Medicare drug costs if you have limited income and resources. Visit secure.ssa.gov/i1020/start to find out if you qualify and apply. You can also apply with your state’s Medicaid office. Visit Medicare.gov/basics/costs/help/drug-costs to learn more.\\n\\n- **Medicare Savings Program:** A state-run program that helps people with limited income and resources pay some or all of their Medicare premiums, deductibles and coinsurance. Visit Medicare.gov/medicare-savings-programs to learn more.\\n\\n- **State Pharmaceutical Assistance Program (SPAP):** A program that may include coverage for your Medicare drug plan premiums and/or cost sharing. SPAP contributions may count toward your Medicare drug coverage out-of-pocket limit. Visit go.medicare.gov/spap to learn more.\\n\\n- **Manufacturer’s Pharmaceutical Assistance Programs, sometimes called Patient Assistance Programs (PAPs):** A program from drug manufacturers to help lower drugs costs for people with Medicare. Visit go.medicare.gov/pap to learn more.\\n\\n- **Humana programs:** Humana has several programs and plan benefits to help manage the costs of your prescriptions. Visit **Humana.com/RxCostHelp** to learn how these programs may benefit you\\n\\n
\\n\\n**Note:** The programs listed above can help lower your costs, but they can’t help you pay off your balance in the program.\\n\\n
\\n\\n**

Have questions?

**
\\nIf you have questions about the Medicare Prescription Payment Plan, please contact Customer Service by dialing **800-222-0018 (TTY: 711)**. You can call us daily, from 8 a.m. to 8 p.m. in your local timezone. However, please note that our automated phone system may answer your call during weekends and holidays.\\n\\n
\\n\\n**

To learn if you qualify for savings

**
\\nVisit Medicare.gov/basics/costs/help or contact your local Social Security office. You can find your local Social Security office at secure.ssa.gov/ICON/main.jsp or by calling 1-800-772-1213. TTY users can call 1-800-325-0778.\\n\\n
\\n\\n\\nWhen you opt out of The Medicare Prescription Payment Plan (the program) here’s what happens: \\n\\n
\\n\\n- Going forward, you’ll pay your pharmacy directly for all your covered Part D drug costs, (also applies to mail order and specialty pharmacies).\\n- You will stop purchases added to your balance.\\n- You will continue to receive monthly bills for the amount incurred while in the program until your balance is paid.\\n- You also have the option to pay the balance in full at any time.\\n\\n
\\n\\nIf you choose to participate in the program in the future, you simply opt in as you did before.\\n\\n
\\n\\n\\n\\nIn the Medicare Prescription Payment Plan (the program), you will get a monthly bill from Humana instead of paying for your covered Part D prescriptions at the pharmacy.\\n\\n
\\n
\\n\\nFor your first month, based on your start date in the program, your monthly payment could be as high as your total covered Part D drug costs for that month.\\n\\n
\\n
\\n\\nYour monthly bill is based on what you owe for any prescriptions you get, plus any balance from the previous month, divided by the number of months left in the year.\\n\\n
\\n
\\n\\nYour payment can change every month as you fill new prescriptions or refill existing ones.  These will be added to your balance which may change from month to month.\\n\\n
\\n
\\n\\nBeginning in 2025, you won’t pay more than $2,000 for out-of-pocket costs for covered Part D drugs. This is true for everyone with Medicare drug coverage, even if you don’t join the program.\\n\\n
\\n
\\n\\nIt doesn’t cost anything to participate in the program and you won’t pay any interest or fees on the amount you owe.\\n\\n
\\n
\\n\\nNote: Your monthly payment calculation is done every month to capture both your balance AND the remaining months left in the year.\\n\\n
\\n\\n\\n\\nYour minimum payment due will be the amount you have accrued to date divided by the remaining months in the year. It may also include any previously missed payments or partial payments that were received. If you had any refunds or credits applied from the previous month, that could be applied to that minimum payment due as well. You need to pay the minimum payment each month by the due date to avoid being removed from the program.\\n\\n
\\n
\\n\\nYou have several options to pay your minimum payment due. You can pay:\\n\\n
\\n\\n- Online at **Humana.com/MPPP**, by credit or debit card, HSA/FSA card, or withdraw from your bank account.\\n- By phone by calling **800-222-0018 (TTY: 711)**. You can call us seven days a week, from 8 a.m.—8 p.m. However, please note that our automated phone system may answer your call during weekends and holidays.\\n- Through the mail, by check. Mail your check using the enclosed envelopes and payment form to:\\n
    Humana Pharmacy Solutions Inc\\n
    PO Box 371429\\n
    Pittsburgh, PA 15250-7429\\n\\n
\\n
\\n\\n**This only applies to your participation in the Medicare Prescription Payment Plan. Your Medicare drug coverage and other Medicare benefits won’t be affected, and you’ll continue to be enrolled for your drug coverage.**\\n
\\n\\n\\n\\nYou have several options to pay your past due balance. You can pay:\\n\\n
\\n\\n- Online at **Humana.com/MPPP**, by credit or debit card, or withdraw from your bank account.\\n- By phone by dialing **800-222-0018 (TTY: 711)**. You can call us daily, from 8 a.m. to 8 p.m. in your local timezone. However, please note that our automated phone system may answer your call during weekends and holidays.\\n
    Humana Pharmacy Solutions Inc\\n
    PO Box 371429\\n
    Pittsburgh, PA 15250-7429\\n\\n
\\n\\n**This only applies to your participation in the Medicare Prescription Payment Plan. Your Medicare drug coverage and other Medicare benefits won’t be affected, and you’ll continue to be enrolled for your drug coverage.**\\n
\\n\\n\\n\\nThere are several things to keep in mind if you do not pay off your past due balance:\\n\\n
\\n\\n- You will continue to receive bills until your past due balance is paid.\\n- If you have failed to pay the monthly billed amount by the payment due date, there is a two-month grace period before you will be terminated from the program.\\n- You will be ineligible to re-join the program until your past due balance is paid.\\n- Once your past due balance is paid, you can rejoin the program anytime.\\n\\n
\\n\\n\\n\\nIf you disagree with our decision, you have the right to ask Humana to review our decision. You must submit your dispute within 60 days after the incident or event initiating the grievance.\\n\\n
\\n\\nYou may mail, fax, or call the Grievance Department at:
\\nAddress: Humana Grievances and Appeals Dept.
\\nP.O. Box 14165
\\nLexington, KY 40512-4165
\\nCustomer Care: 800-457-4708 (TTY:711)
\\nFax: 800-949-2961\\n\\n
\\n\\nTo submit a grievance online:\\n\\n- Go to **Humana.com/exceptions** and complete and submit the online form, or\\n- Sign into your MyHumana account and access the grievance form on the Documents and 
Forms page.\\n\\n
\\n\\n\\n\\n- Your participation in the Medicare Prescription Payment Plan (the program) will end on December 31.\\n- To participate in the program in the new plan year, you must opt in to the program again for a January 1 start date.\\n\\n\\n\"","import { FeatureFlag } from \"./featureFlags\";\nimport { getLDClient } from \"./getLDClient\";\n\nexport const getFeatureFlag = async (featureFlag: FeatureFlag) => {\n const ldClient = await getLDClient();\n return ldClient.variation(featureFlag);\n};\n","import { redirect, useNavigate } from \"react-router-dom\";\nimport { Select } from \"@paytient/ui\";\nimport { Box } from \"@chakra-ui/react\";\nimport { useDispatch } from \"react-redux\";\nimport { TFunction } from \"i18next\";\nimport { useTranslation } from \"react-i18next\";\nimport { useState } from \"react\";\nimport { FullScreenLayout } from \"@paytient/m3p-core/ui\";\nimport { useSetPageTitle } from \"@paytient/m3p-core/hooks\";\nimport { featureFlags } from \"src/lib/featureFlags\";\nimport { getFeatureFlag } from \"src/lib/getFeatureFlag\";\nimport { setPlanStart } from \"src/redux/modules/calculator/actions/setPlanStart\";\nimport { Month } from \"src/typings/domain/months\";\n\nexport const loader = async () => {\n const isNCYUpdate = await getFeatureFlag(\n featureFlags.RolloutNCYCalculatorUpdates,\n );\n\n if (!isNCYUpdate) return redirect(\"/calculator/incurred-costs\");\n return null;\n};\n\nconst getMonths = (t: TFunction) => [\n {\n name: \"JANUARY\",\n label: t(\"months.january.label\", \"January\"),\n ariaLabel: t(\"months.january.ariaLabel\", \"January input\"),\n },\n {\n name: \"FEBRUARY\",\n label: t(\"months.february.label\", \"February\"),\n ariaLabel: t(\"months.february.ariaLabel\", \"February input\"),\n },\n {\n name: \"MARCH\",\n label: t(\"months.march.label\", \"March\"),\n ariaLabel: t(\"months.march.ariaLabel\", \"March input\"),\n },\n {\n name: \"APRIL\",\n label: t(\"months.april.label\", \"April\"),\n ariaLabel: t(\"months.april.ariaLabel\", \"April input\"),\n },\n {\n name: \"MAY\",\n label: t(\"months.may.label\", \"May\"),\n ariaLabel: t(\"months.may.ariaLabel\", \"May input\"),\n },\n {\n name: \"JUNE\",\n label: t(\"months.june.label\", \"June\"),\n ariaLabel: t(\"months.june.ariaLabel\", \"June input\"),\n },\n {\n name: \"JULY\",\n label: t(\"months.july.label\", \"July\"),\n ariaLabel: t(\"months.july.ariaLabel\", \"July input\"),\n },\n {\n name: \"AUGUST\",\n label: t(\"months.august.label\", \"August\"),\n ariaLabel: t(\"months.august.ariaLabel\", \"August input\"),\n },\n {\n name: \"SEPTEMBER\",\n label: t(\"months.september.label\", \"September\"),\n ariaLabel: t(\"months.september.ariaLabel\", \"September input\"),\n },\n {\n name: \"OCTOBER\",\n label: t(\"months.october.label\", \"October\"),\n ariaLabel: t(\"months.october.ariaLabel\", \"October input\"),\n },\n {\n name: \"NOVEMBER\",\n label: t(\"months.november.label\", \"November\"),\n ariaLabel: t(\"months.november.ariaLabel\", \"November input\"),\n },\n {\n name: \"DECEMBER\",\n label: t(\"months.december.label\", \"December\"),\n ariaLabel: t(\"months.december.ariaLabel\", \"December input\"),\n },\n];\n\nconst PlanStartPage = () => {\n const { t } = useTranslation();\n useSetPageTitle(t(\"page.planStart.title\"));\n const navigate = useNavigate();\n const dispatch = useDispatch();\n\n const [selectedMonth, setSelectedMonth] = useState(\"JANUARY\");\n\n const monthOptions = getMonths(t).map((month) => ({\n label: month.label,\n value: month.name as Month,\n }));\n\n const handleMonthChange = (newValue: string) => {\n setSelectedMonth(newValue as Month);\n };\n\n const handleNext = () => {\n dispatch(setPlanStart(selectedMonth));\n navigate(\"/calculator/incurred-costs\");\n };\n\n const currentYear = new Date().getFullYear().toString();\n\n return (\n \n \n \n \n \n );\n};\n\nexport const Component = PlanStartPage;\n","/**\n * This is a previsory function in case the maxOOP changes as discussed in a meeting.\n * @returns {number} The maximum out-of-pocket cost for the plan\n */\nexport const getMaxOOP = () => {\n return 2000;\n};\n","/**\n * Checks if a given number meets the incurred costs criteria.\n *\n * @param n - The number to be checked.\n * @returns A boolean indicating whether the number meets the criteria.\n */\nimport { getMaxOOP } from \"./getMaxOOP\";\n\nexport const meetsIncurredCostsCriteria = (incurredCosts: number) => {\n return incurredCosts < getMaxOOP();\n};\n","import { createSelector } from \"@reduxjs/toolkit\";\nimport { meetsIncurredCostsCriteria } from \"src/lib/meetsIncurredCostsCriteria\";\nimport { RootState } from \"src/redux\";\n\nexport const selectIncurredCosts = (state: RootState) =>\n state.calculator.incurredCosts;\n\nexport const selectMetIncurredCostsCriteria = createSelector(\n selectIncurredCosts,\n (incurredCosts) =>\n incurredCosts !== null ? meetsIncurredCostsCriteria(incurredCosts) : false,\n);\n\nexport const selectHasIncurredCosts = createSelector(\n selectIncurredCosts,\n (incurredCosts) => typeof incurredCosts === \"number\",\n);\n","import { Month } from \"src/typings/domain/months\";\n\n/**\n * Returns the current month as a Month object. You should use as [correct type from openAPI model] when using this function to get the optInMonth to do an API call.\n * @returns {Month} The current month, which should be the optIn month when using the calculator.\n */\nexport function getCurrentMonth(): Month {\n const currentDate = new Date();\n const currentMonth: Month = currentDate\n .toLocaleString(\"default\", {\n month: \"long\",\n })\n .toUpperCase() as Month;\n\n return currentMonth;\n}\n","export const PLAN_START_YEAR = 2025;\nexport const DEFAULT_PLAN_START_MONTH = \"JANUARY\";\n\nexport const MONTHS = [\n \"JANUARY\",\n \"FEBRUARY\",\n \"MARCH\",\n \"APRIL\",\n \"MAY\",\n \"JUNE\",\n \"JULY\",\n \"AUGUST\",\n \"SEPTEMBER\",\n \"OCTOBER\",\n \"NOVEMBER\",\n \"DECEMBER\",\n] as const;\n","import { MONTHS } from \"src/pages/calculator/constants\";\nimport { getCurrentMonth } from \"src/lib/getCurrentMonth\";\nimport { Month } from \"src/typings/domain/months\";\n\nexport const isPlanStartInFuture = (\n planStart: Month | null | undefined,\n): boolean => {\n if (!planStart) return false;\n\n const planStartIndex = MONTHS.indexOf(planStart);\n const currentMonthIndex = MONTHS.indexOf(getCurrentMonth());\n\n return planStartIndex > currentMonthIndex;\n};\n","import { getCurrentMonth } from \"src/lib/getCurrentMonth\";\nimport { Month } from \"src/typings/domain/months\";\nimport { isPlanStartInFuture } from \"./isPlanStartInFuture\";\n\nexport const getOptInMonth = (planStart: Month | null | undefined): Month => {\n if (planStart && isPlanStartInFuture(planStart)) {\n return planStart;\n }\n return getCurrentMonth();\n};\n","import * as Yup from \"yup\";\n\nexport const validationSchema = () =>\n Yup.object().shape({\n incurredCosts: Yup.number().required(),\n });\n","import { useDispatch, useSelector } from \"react-redux\";\nimport { useTranslation } from \"react-i18next\";\nimport { useNavigate, redirect } from \"react-router-dom\";\nimport { useFormik, FormikProps } from \"formik\";\nimport { capitalize } from \"lodash\";\nimport { CurrencyInput } from \"@paytient/ui\";\nimport { FullScreenLayout } from \"@paytient/m3p-core/ui\";\nimport { useSetPageTitle } from \"@paytient/m3p-core/hooks\";\nimport { selectFromStore } from \"src/redux\";\nimport { setIncurredCosts } from \"src/redux/modules/calculator/actions/setIncurredCosts\";\nimport { meetsIncurredCostsCriteria } from \"src/lib/meetsIncurredCostsCriteria\";\nimport { selectIncurredCosts } from \"src/redux/modules/calculator/selectors/incurredCostsSelectors\";\nimport { featureFlags } from \"src/lib/featureFlags\";\nimport { getFeatureFlag } from \"src/lib/getFeatureFlag\";\nimport { getOptInMonth } from \"src/lib/getOptInMonth\";\nimport { selectPlanStart } from \"src/redux/modules/calculator/selectors/selectPlanStart\";\nimport { validationSchema } from \"./validations\";\n\ntype IncurredCostsValues = {\n incurredCosts: number | null | undefined;\n};\n\nexport const loader = async () => {\n const isNCYUpdate = await getFeatureFlag(\n featureFlags.RolloutNCYCalculatorUpdates,\n );\n\n if (isNCYUpdate) {\n const planStart = selectFromStore(selectPlanStart);\n if (!planStart) {\n return redirect(\"/calculator/plan-start\");\n } else {\n // if opt-in month is the same as plan start month then there were no prior incurred costs, so skip forward to estimated-costs\n if (getOptInMonth(planStart) === planStart) {\n return redirect(\"/calculator/estimated-costs\");\n }\n }\n }\n return null;\n};\n\nexport const Component = () => {\n const { t } = useTranslation();\n useSetPageTitle(t(\"page.incurredCosts.title\"));\n const dispatch = useDispatch();\n const navigate = useNavigate();\n const planStart = useSelector(selectPlanStart);\n const currentYear = new Date().getFullYear();\n const incurredCosts = useSelector(selectIncurredCosts);\n\n const onSubmit = (values: IncurredCostsValues) => {\n if (values.incurredCosts !== undefined && values.incurredCosts !== null) {\n dispatch(setIncurredCosts(values.incurredCosts));\n if (meetsIncurredCostsCriteria(values.incurredCosts)) {\n navigate(\"/calculator/estimated-costs\");\n } else {\n navigate(\"/calculator/unmet-criteria\");\n }\n }\n };\n\n const formik: FormikProps =\n useFormik({\n onSubmit,\n initialValues: { incurredCosts },\n validationSchema: validationSchema(),\n enableReinitialize: true,\n });\n\n const { values, handleBlur, setFieldValue, submitForm, touched } = formik;\n\n const disableButton =\n values.incurredCosts === undefined || values.incurredCosts === null;\n\n const handleInputChange = (val: string) => {\n const cleanVal = val === \"\" ? undefined : Number(val);\n setFieldValue(\"incurredCosts\", cleanVal);\n };\n\n return (\n \n \n \n );\n};\n","import { createSelector } from \"@reduxjs/toolkit\";\nimport { getMaxOOP } from \"src/lib/getMaxOOP\";\nimport { RootState } from \"src/redux\";\nimport { selectIncurredCosts } from \"./incurredCostsSelectors\";\n\nexport const selectEstimatedCosts = (state: RootState) =>\n state.calculator.estimatedCosts;\n\nexport const selectEstimatedCostsSum = createSelector(\n [selectEstimatedCosts, selectIncurredCosts],\n (estimatedCosts, incurredCosts) =>\n Object.values(estimatedCosts).reduce((acc, item) => acc + item, 0) +\n incurredCosts!,\n);\n\nexport const selectIsOverMaxOOP = createSelector(\n selectEstimatedCostsSum,\n (estimatedCostsSum) => estimatedCostsSum >= getMaxOOP(),\n);\n","import { Trans, useTranslation } from \"react-i18next\";\nimport { redirect, useNavigate } from \"react-router-dom\";\nimport { Box, Heading, Text } from \"@chakra-ui/react\";\nimport { IconDuotone } from \"@paytient/ui\";\nimport { FullScreenLayout } from \"@paytient/m3p-core/ui\";\nimport { useSetPageTitle } from \"@paytient/m3p-core/hooks\";\nimport { useDispatch } from \"react-redux\";\nimport { setIncurredCosts } from \"src/redux/modules/calculator/actions/setIncurredCosts\";\nimport { selectFromStore, store } from \"src/redux\";\nimport { setEstimatedCosts } from \"src/redux/modules/calculator/actions/setEstimatedCosts\";\nimport { initialState } from \"src/redux/modules/calculator/reducer\";\nimport { selectIsOverMaxOOP } from \"src/redux/modules/calculator/selectors/estimatedCostsSelectors\";\n\nexport const loader = async () => {\n const isOverMaxOOP = selectFromStore(selectIsOverMaxOOP);\n\n if (!isOverMaxOOP) {\n store.dispatch(setIncurredCosts(initialState.incurredCosts));\n store.dispatch(setEstimatedCosts(initialState.estimatedCosts));\n return redirect(\"/\");\n }\n\n return null;\n};\n\nexport const Component = () => {\n const navigate = useNavigate();\n const { t } = useTranslation();\n useSetPageTitle(t(\"page.unmetCriteria.title\"));\n const dispatch = useDispatch();\n\n const handleButtonClick = () => {\n // TODO: Navigate to sponsor site\n dispatch(setIncurredCosts(null));\n navigate(\"/\");\n };\n\n return (\n \n \n \n \n \n \n {t(\"calculator.unmetCriteria.title\")}\n \n t(\"calculator.unmetCriteria.body\")}\n i18nKey=\"calculator.unmetCriteria.body\"\n components={{\n p: ,\n }}\n >\n \n \n );\n};\n","import { useTranslation } from \"react-i18next\";\n\nexport function useMonths(startMonth: string) {\n const { t } = useTranslation();\n\n const months = [\n {\n name: \"JANUARY\",\n label: t(\"months.january.label\", \"January\"),\n ariaLabel: t(\"months.january.ariaLabel\", \"January input\"),\n },\n {\n name: \"FEBRUARY\",\n label: t(\"months.february.label\", \"February\"),\n ariaLabel: t(\"months.february.ariaLabel\", \"February input\"),\n },\n {\n name: \"MARCH\",\n label: t(\"months.march.label\", \"March\"),\n ariaLabel: t(\"months.march.ariaLabel\", \"March input\"),\n },\n {\n name: \"APRIL\",\n label: t(\"months.april.label\", \"April\"),\n ariaLabel: t(\"months.april.ariaLabel\", \"April input\"),\n },\n {\n name: \"MAY\",\n label: t(\"months.may.label\", \"May\"),\n ariaLabel: t(\"months.may.ariaLabel\", \"May input\"),\n },\n {\n name: \"JUNE\",\n label: t(\"months.june.label\", \"June\"),\n ariaLabel: t(\"months.june.ariaLabel\", \"June input\"),\n },\n {\n name: \"JULY\",\n label: t(\"months.july.label\", \"July\"),\n ariaLabel: t(\"months.july.ariaLabel\", \"July input\"),\n },\n {\n name: \"AUGUST\",\n label: t(\"months.august.label\", \"August\"),\n ariaLabel: t(\"months.august.ariaLabel\", \"August input\"),\n },\n {\n name: \"SEPTEMBER\",\n label: t(\"months.september.label\", \"September\"),\n ariaLabel: t(\"months.september.ariaLabel\", \"September input\"),\n },\n {\n name: \"OCTOBER\",\n label: t(\"months.october.label\", \"October\"),\n ariaLabel: t(\"months.october.ariaLabel\", \"October input\"),\n },\n {\n name: \"NOVEMBER\",\n label: t(\"months.november.label\", \"November\"),\n ariaLabel: t(\"months.november.ariaLabel\", \"November input\"),\n },\n {\n name: \"DECEMBER\",\n label: t(\"months.december.label\", \"December\"),\n ariaLabel: t(\"months.december.ariaLabel\", \"December input\"),\n },\n ];\n\n const startMonthIndex = months.findIndex(\n (month) => month.name === startMonth,\n );\n\n return months.slice(startMonthIndex).concat(months.slice(0, startMonthIndex));\n}\n","import { useFlags } from \"launchdarkly-react-client-sdk\";\nimport { FeatureFlag } from \"src/lib/featureFlags\";\n\nexport const useFeatureFlags = (flagKey: FeatureFlag) => {\n const flags = useFlags();\n return flags[flagKey];\n};\n","import * as Yup from \"yup\";\n\nexport const validationSchema = () =>\n Yup.object().shape({\n january: Yup.number().nullable(),\n february: Yup.number().nullable(),\n march: Yup.number().nullable(),\n april: Yup.number().nullable(),\n may: Yup.number().nullable(),\n june: Yup.number().nullable(),\n july: Yup.number().nullable(),\n august: Yup.number().nullable(),\n september: Yup.number().nullable(),\n october: Yup.number().nullable(),\n november: Yup.number().nullable(),\n december: Yup.number().nullable(),\n });\n","import { Box, Flex, useToast } from \"@chakra-ui/react\";\nimport { isFulfilled } from \"@reduxjs/toolkit\";\nimport { redirect, useNavigate } from \"react-router-dom\";\nimport { useTranslation } from \"react-i18next\";\nimport { FormikProps, useFormik } from \"formik\";\nimport { CurrencyInput } from \"@paytient/ui\";\nimport { FullScreenLayout } from \"@paytient/m3p-core/ui\";\nimport { useSetPageTitle } from \"@paytient/m3p-core/hooks\";\nimport { useSelector } from \"react-redux\";\nimport { estimatePaymentSchedule } from \"src/redux/modules/calculator/thunks/estimatePaymentSchedules\";\nimport { meetsIncurredCostsCriteria } from \"src/lib/meetsIncurredCostsCriteria\";\nimport { selectFromStore, useAppDispatch } from \"src/redux\";\nimport { setEstimatedCosts } from \"src/redux/modules/calculator/actions/setEstimatedCosts\";\nimport { selectIncurredCosts } from \"src/redux/modules/calculator/selectors/incurredCostsSelectors\";\nimport { selectPlanStart } from \"src/redux/modules/calculator/selectors/selectPlanStart\";\nimport { useMonths } from \"src/hooks/useMonths\";\nimport { getCurrentMonth } from \"src/lib/getCurrentMonth\";\nimport { getOptInMonth } from \"src/lib/getOptInMonth\";\nimport {\n DEFAULT_PLAN_START_MONTH,\n PLAN_START_YEAR,\n MONTHS,\n} from \"src/pages/calculator/constants\";\nimport { featureFlags } from \"src/lib/featureFlags\";\nimport { useFeatureFlags } from \"src/hooks/useFeatureFlags\";\nimport { validationSchema } from \"./validations\";\n\ntype EstimatedCostsValues = {\n [key: string]: number | undefined;\n};\n\nexport const loader = async () => {\n const incurredCosts = selectFromStore(selectIncurredCosts);\n\n if (!meetsIncurredCostsCriteria(incurredCosts ?? 0)) {\n return redirect(\"/calculator/unmet-criteria\");\n }\n\n return null;\n};\n\nconst EstimatedCostsPage = () => {\n const { t } = useTranslation();\n useSetPageTitle(t(\"page.estimatedCosts.title\"));\n const isNCYUpdate = useFeatureFlags(featureFlags.RolloutNCYCalculatorUpdates);\n const toast = useToast();\n const navigate = useNavigate();\n const dispatch = useAppDispatch();\n const priorIncurredCosts = useSelector(selectIncurredCosts);\n const selectedPlanStart =\n useSelector(selectPlanStart) ?? DEFAULT_PLAN_START_MONTH;\n const optInMonth = isNCYUpdate\n ? getOptInMonth(selectedPlanStart)\n : getCurrentMonth();\n const months = useMonths(selectedPlanStart);\n\n const getMonthDifference = (from: Date, to: Date): number => {\n return (\n (to.getFullYear() - from.getFullYear()) * 12 +\n (to.getMonth() - from.getMonth())\n );\n };\n\n const isMonthDisabled = (monthIndex: number): boolean => {\n const planStartIndex = MONTHS.indexOf(selectedPlanStart);\n const planStartDate = new Date(PLAN_START_YEAR, planStartIndex, 1);\n const monthsElapsed = getMonthDifference(planStartDate, new Date());\n if (monthsElapsed < 0) return false;\n\n return monthIndex < monthsElapsed;\n };\n\n const onSubmit = async (values: EstimatedCostsValues) => {\n const transformedValues = Object.fromEntries(\n Object.entries(values).map(([key, value]) => [key, value ?? 0]), // Replace undefined with 0\n );\n\n dispatch(setEstimatedCosts(transformedValues));\n\n const res = await dispatch(\n estimatePaymentSchedule({\n months: transformedValues,\n optInMonth,\n planStart: selectedPlanStart,\n priorIncurredCosts: priorIncurredCosts ?? 0,\n }),\n );\n\n if (isFulfilled(res)) {\n navigate(\"/calculator/results\");\n } else {\n toast({\n title: t(\"errors.retry\", \"Something went wrong, please try again.\"),\n status: \"error\",\n variant: \"error\",\n isClosable: true,\n });\n }\n };\n\n const formik: FormikProps =\n useFormik({\n onSubmit,\n initialValues: {},\n validationSchema: validationSchema(),\n enableReinitialize: false,\n });\n\n const {\n values,\n handleBlur,\n setFieldValue,\n submitForm,\n touched,\n isValid,\n dirty,\n } = formik;\n\n const disableButton = !(isValid && dirty);\n\n const handleInputChange = (monthName: string, val: string) => {\n const sanitizedValue = val ? +val.replace(/[^0-9.]/g, \"\") : undefined;\n setFieldValue(monthName, sanitizedValue);\n };\n\n return (\n \n \n {months.map((month, index) => (\n \n handleInputChange(month.name, val)}\n handleBlur={handleBlur(month.name)}\n testId={`estimated-costs-input-${month.name}`}\n maxLength={8}\n inputMode=\"numeric\"\n decimalScale={2}\n fixedDecimalScale={false}\n isDisabled={isMonthDisabled(index) || formik.isSubmitting}\n />\n \n ))}\n \n \n );\n};\n\nexport const Component = EstimatedCostsPage;\n","import { createSelector } from \"@reduxjs/toolkit\";\nimport { RootState } from \"src/redux\";\n\nexport const selectResults = (state: RootState) => state.calculator.results;\n\nexport const selectHasResults = createSelector(\n selectResults,\n (results) => Object.values(results).length > 0,\n);\n","import { useMemo } from \"react\";\nimport { useSelector } from \"react-redux\";\nimport { getMaxOOP } from \"src/lib/getMaxOOP\";\nimport {\n selectEstimatedCostsSum,\n selectIsOverMaxOOP,\n} from \"src/redux/modules/calculator/selectors/estimatedCostsSelectors\";\n\nexport const useEstimatedSpentData = () => {\n const estimatedCostsSum = useSelector(selectEstimatedCostsSum);\n const maxOOP = getMaxOOP();\n const isOverMaxOOP = useSelector(selectIsOverMaxOOP);\n\n const remainingSpent = useMemo(\n () => maxOOP - estimatedCostsSum,\n [estimatedCostsSum, maxOOP],\n );\n\n const estimatedSpentPercentage = useMemo(() => {\n const percentage = isOverMaxOOP ? 100 : (estimatedCostsSum / maxOOP) * 100;\n const color = isOverMaxOOP ? \"green.700\" : \"brand.500\";\n return { percentage, color };\n }, [estimatedCostsSum, isOverMaxOOP, maxOOP]);\n\n return {\n estimatedSpent: estimatedCostsSum,\n remainingSpent,\n estimatedSpentPercentage,\n isOverMaxOOP,\n };\n};\n","import { Button, Container, Text, VStack } from \"@chakra-ui/react\";\nimport { BottomSheet } from \"@paytient/ui\";\nimport { useTranslation } from \"react-i18next\";\n\nexport const InfoBottomSheet = ({\n isOpen,\n onClose,\n}: {\n isOpen: boolean;\n onClose: () => void;\n}) => {\n const { t } = useTranslation();\n\n const displayMessages = [\n t(\n \"calculator.results.bottomSheetInfo.description.p1\",\n \"The Inflation Reduction Act (IRA) addresses the coverage gap and limits drug costs to $2,000. Your plan may reduce these out-of-pocket drug costs even further. The Medicare Prescription Payment Plan can help spread your out-of-pocket drug costs over the plan year.\",\n ),\n t(\n \"calculator.results.bottomSheetInfo.description.p2\",\n \"Out-of-pocket (OOP) costs for Medicare Part D includes copayments, coinsurance, and deductibles paid directly by beneficiaries when purchasing prescription drugs covered by their plan, after insurance coverage or subsidies.\",\n ),\n t(\n \"calculator.results.bottomSheetInfo.description.p3\",\n \"In 2025, the out-of-pocket maximum is $2,000. If this maximum is met, eligible prescriptions will cost $0 for the remainder of your plan year. Some individuals may have a lower out-of-pocket maximum; please contact your Medicare Part D sponsor for details.\",\n ),\n t(\n \"calculator.results.bottomSheetInfo.description.p4\",\n \"The progress indicator shows your estimated OOP prescription spend vs. the amount remaining to reach the 2025 OOP maximum.\",\n ),\n ];\n\n return (\n \n {t(\"calculator.results.bottomSheetInfo.done\", \"Done\")}\n \n }\n >\n \n \n {displayMessages.map((item, index) => (\n \n {item}\n \n ))}\n \n \n \n );\n};\n","import i18next from \"i18next\";\nimport { LineItem } from \"src/api\";\n\nexport const getMonthString = (month: LineItem.month): string => {\n switch (month) {\n case LineItem.month.JANUARY:\n return i18next.t(\"months.january.label\", \"January\");\n case LineItem.month.FEBRUARY:\n return i18next.t(\"months.february.label\", \"February\");\n case LineItem.month.MARCH:\n return i18next.t(\"months.march.label\", \"March\");\n case LineItem.month.APRIL:\n return i18next.t(\"months.april.label\", \"April\");\n case LineItem.month.MAY:\n return i18next.t(\"months.may.label\", \"May\");\n case LineItem.month.JUNE:\n return i18next.t(\"months.june.label\", \"June\");\n case LineItem.month.JULY:\n return i18next.t(\"months.july.label\", \"July\");\n case LineItem.month.AUGUST:\n return i18next.t(\"months.august.label\", \"August\");\n case LineItem.month.SEPTEMBER:\n return i18next.t(\"months.september.label\", \"September\");\n case LineItem.month.OCTOBER:\n return i18next.t(\"months.october.label\", \"October\");\n case LineItem.month.NOVEMBER:\n return i18next.t(\"months.november.label\", \"November\");\n case LineItem.month.DECEMBER:\n return i18next.t(\"months.december.label\", \"December\");\n default:\n return \"\";\n }\n};\n","import { getYear, isBefore } from \"date-fns\";\nimport { MonthItem } from \"@paytient/m3p-core/ui\";\nimport { formatDate, getUTCDateObject } from \"@paytient/common\";\n\nimport { getMonthString } from \"src/lib/getMonthString\";\nimport { LineItem } from \"src/api\";\n\nexport const parseMonths = (\n months: LineItem[] | undefined,\n optInMonthIndex: number,\n): MonthItem[] => {\n if (!months) {\n return [];\n }\n\n return months.map((item, index) => {\n return {\n minimumAmountDue: item.minimumAmountDue,\n value: item.month as string,\n name: getMonthString(item.month as LineItem.month),\n status: index < optInMonthIndex ? \"INACTIVE\" : \"PROJECTED\",\n };\n });\n};\n\ntype CalculatorDate = {\n value: string;\n year: number;\n};\n\nexport const getCalculatorDate = (): CalculatorDate => {\n const newDate = getUTCDateObject(new Date());\n const newDate2025 = getUTCDateObject(new Date(\"2025-01-01\"));\n\n const currentDate = formatDate(newDate);\n const currentYear = getYear(newDate);\n const date = isBefore(newDate, newDate2025)\n ? formatDate(newDate2025)\n : currentDate;\n const year = currentYear > 2025 ? currentYear : 2025;\n\n return {\n value: date,\n year: year,\n };\n};\n","import React from \"react\";\nimport { useTranslation } from \"react-i18next\";\nimport { Flex, FlexProps, useDisclosure } from \"@chakra-ui/react\";\nimport { Text, Link, IconButton } from \"@paytient/ui\";\nimport { ProgressBar } from \"@paytient/m3p-core/ui\";\nimport { formatCurrency } from \"@paytient/common\";\n\nimport { useEstimatedSpentData } from \"src/hooks/useEstimatedSpentData\";\n\nimport { InfoBottomSheet } from \"../InfoBottomSheet\";\nimport { getCalculatorDate } from \"../helpers\";\n\ntype Props = Omit;\n\nexport const EstimatedSpentChart: React.FC = ({ ...rest }: Props) => {\n const { t } = useTranslation();\n const { isOpen, onClose, onOpen } = useDisclosure();\n\n const {\n estimatedSpent,\n remainingSpent,\n estimatedSpentPercentage,\n isOverMaxOOP,\n } = useEstimatedSpentData();\n const { year } = getCalculatorDate();\n\n return (\n <>\n \n \n \n {t(\n \"calculator.results.outOfPocketSpent\",\n \"{{year}} estimated out-of-pocket spent\",\n {\n year,\n },\n )}\n \n \n \n \n \n \n \n {formatCurrency(estimatedSpent)}\n \n \n {t(\"calculator.results.estimatedSpent\", \"Estimated spent\")}\n \n \n \n \n {isOverMaxOOP ? \"$0\" : formatCurrency(remainingSpent)}\n \n \n {t(\"calculator.results.remaining\", \"Remaining\")}\n \n \n \n {isOverMaxOOP && (\n \n \n {t(\n \"calculator.results.exceededOutOfPocketCost\",\n \"Your estimated out-of-pocket costs exceed the out-of-pocket maximum for {{year}}.\",\n {\n year,\n },\n )}\n \n \n {t(\"calculator.results.learnMore.text\", \"Learn more\")}\n \n \n )}\n \n\n \n \n );\n};\n","import { format } from \"date-fns\";\nimport { MONTHS, PLAN_START_YEAR } from \"src/pages/calculator/constants\";\nimport { Month } from \"src/typings/domain/months\";\nimport { isPlanStartInFuture } from \"./isPlanStartInFuture\";\n\nexport const getOptInDisplayDate = (\n selectedPlanStart: Month | null | undefined,\n): { value: string; year: number } => {\n if (!selectedPlanStart || !isPlanStartInFuture(selectedPlanStart)) {\n // If plan start is this month or in the past use today’s date\n const today = new Date();\n return {\n value: format(today, \"MMM d, yyyy\"),\n year: today.getFullYear(),\n };\n }\n\n // If plan start is in the future use first of that month\n const planStartIndex = MONTHS.indexOf(selectedPlanStart);\n const futureDate = new Date(PLAN_START_YEAR, planStartIndex, 1);\n\n return {\n value: format(futureDate, \"MMM d, yyyy\"),\n year: futureDate.getFullYear(),\n };\n};\n","export const themeColor = {\n optInBg: \"#f0fdf4\", // green.50\n optInText: \"#15803d\", // green.700\n yearTagBg: \"#FFFCF0\", // yellow.50\n yearTagText: \"#92400E\", // yellow.700\n backgroundColor: \"#F4F4F5\", // gray.100\n border: \"#d4d4d8\", // gray.300\n text: \"#6f6f7a\", // gray.500\n footer: \"#1d1d1f\", // gray.900\n black: \"#000000\", // black\n};\n\nexport const shared = {\n radius: 6,\n height: \"90px\",\n gridWidth: \"300px\",\n};\n\nexport const themeSpacing = {\n xs: \"4px\",\n sm: \"8px\",\n md: \"10px\",\n lg: \"12px\",\n xl: \"14px\",\n xxl: \"20px\",\n \"2xl\": \"24px\",\n \"3xl\": \"30px\",\n};\n\nexport const themeFontSize = {\n xs: 10,\n sm: 12,\n md: 14,\n lg: 17,\n xl: 20,\n \"2xl\": 24,\n};\n\nexport const themeFontWeight = {\n semibold: 600,\n};\n","import { StyleSheet } from \"@react-pdf/renderer\";\nimport {\n themeColor,\n shared,\n themeSpacing,\n themeFontSize,\n themeFontWeight,\n} from \"./pdfTheme\";\n\nexport const createPdfStyles = (\n sponsorColor: string,\n progressBarPercentage: number,\n) =>\n StyleSheet.create({\n page: {\n flexDirection: \"column\",\n padding: themeSpacing[\"3xl\"],\n fontFamily: \"Inter\",\n },\n header: {\n flexDirection: \"row\",\n justifyContent: \"flex-start\",\n alignItems: \"center\",\n borderBottomWidth: 1,\n borderBottomColor: themeColor.border,\n borderBottomStyle: \"solid\",\n paddingBottom: themeSpacing.lg,\n },\n headerContainerText: {\n alignItems: \"flex-start\",\n flexDirection: \"column\",\n },\n headerText: {\n fontSize: themeFontSize.sm,\n fontWeight: themeFontWeight.semibold,\n marginBottom: themeSpacing.xs,\n },\n headerSubText: {\n fontSize: themeFontSize.sm,\n },\n logo: {\n width: \"40px\",\n },\n title: {\n fontSize: themeFontSize.xl,\n fontWeight: themeFontWeight.semibold,\n marginTop: themeSpacing[\"2xl\"],\n marginBottom: themeSpacing.xxl,\n },\n gridResult: {\n display: \"flex\",\n flexDirection: \"row\",\n justifyContent: \"space-between\",\n },\n gridContainer: {\n flexDirection: \"row\",\n flexWrap: \"wrap\",\n borderRadius: shared.radius,\n width: shared.gridWidth,\n },\n gridItem: {\n backgroundColor: \"white\",\n borderLeftWidth: 1,\n borderTopWidth: 1,\n borderColor: themeColor.border,\n height: shared.height,\n flexGrow: 1,\n flexBasis: \"33.33%\",\n display: \"flex\",\n justifyContent: \"center\",\n alignItems: \"center\",\n paddingVertical: themeSpacing.md,\n },\n gridDisabledItem: {\n backgroundColor: themeColor.backgroundColor,\n borderLeftWidth: 1,\n borderTopWidth: 1,\n borderColor: themeColor.border,\n height: shared.height,\n flexGrow: 1,\n flexBasis: \"33.33%\",\n display: \"flex\",\n justifyContent: \"center\",\n alignItems: \"center\",\n paddingVertical: themeSpacing.md,\n },\n gridItemOptInText: {\n color: themeColor.optInText,\n fontSize: themeFontSize.xs,\n },\n gridItemYearText: {\n color: themeColor.yearTagText,\n fontSize: themeFontSize.xs,\n },\n gridTopLeftCornerItem: {\n borderTopLeftRadius: shared.radius,\n },\n gridTopRightCornerItem: {\n borderTopRightRadius: shared.radius,\n },\n gridItemOverlayContainer: {\n position: \"absolute\",\n top: 0,\n left: 0,\n right: 0,\n height: \"18px\",\n display: \"flex\",\n justifyContent: \"center\",\n alignItems: \"center\",\n },\n gridItemOptInContainerOverlay: {\n backgroundColor: themeColor.optInBg,\n },\n gridItemYearContainerOverlay: {\n backgroundColor: themeColor.yearTagBg,\n },\n gridMonthText: {\n fontSize: themeFontSize.sm,\n color: themeColor.text,\n },\n gridMoneyText: {\n fontWeight: themeFontWeight.semibold,\n fontSize: themeFontSize.lg,\n color: themeColor.black,\n },\n bracketContainer: {\n display: \"flex\",\n flexDirection: \"row\",\n alignItems: \"center\",\n },\n bracketGrid: {\n borderTopWidth: 1,\n borderRightWidth: 1,\n borderBottomWidth: 1,\n borderColor: themeColor.border,\n width: \"30px\",\n height: \"358px\",\n },\n bracketChart: {\n borderTopWidth: 1,\n borderRightWidth: 1,\n borderBottomWidth: 1,\n borderColor: themeColor.border,\n width: \"30px\",\n height: \"132px\",\n },\n bracketLine: {\n borderTopWidth: 1,\n borderColor: themeColor.border,\n width: \"25px\",\n },\n bracketTextContainer: {\n padding: themeSpacing.sm,\n borderWidth: 1,\n borderColor: themeColor.border,\n width: \"160px\",\n borderRadius: themeSpacing.sm,\n },\n bracketText: {\n fontSize: themeFontSize.sm,\n color: themeColor.text,\n },\n chartContainer: {\n width: shared.gridWidth,\n display: \"flex\",\n flexDirection: \"column\",\n padding: themeSpacing.xl,\n borderWidth: 1,\n borderColor: themeColor.border,\n borderStyle: \"solid\",\n borderTop: 0,\n borderBottomRightRadius: shared.radius,\n borderBottomLeftRadius: shared.radius,\n },\n chartText: {\n fontSize: themeFontSize.sm,\n color: themeColor.text,\n },\n chartProgressBar: {\n height: \"12px\",\n backgroundColor: themeColor.backgroundColor,\n borderRadius: themeSpacing.sm,\n marginTop: themeSpacing.xl,\n marginBottom: themeSpacing.lg,\n },\n chartProgressBarPercentage: {\n position: \"absolute\",\n height: \"12px\",\n backgroundColor: `${sponsorColor}`,\n borderRadius: themeSpacing.sm,\n width: `${progressBarPercentage}%`,\n },\n chartSubContainer: {\n display: \"flex\",\n flexDirection: \"row\",\n justifyContent: \"space-between\",\n },\n chartValueContainer: {\n display: \"flex\",\n flexDirection: \"column\",\n },\n chartRemainingValueContainer: {\n display: \"flex\",\n flexDirection: \"column\",\n alignItems: \"flex-end\",\n },\n chartValuePrice: {\n fontWeight: themeFontWeight.semibold,\n fontSize: \"26px\",\n color: themeColor.black,\n },\n chartValueText: {\n fontSize: themeFontSize.sm,\n color: themeColor.text,\n },\n footerTitle: {\n marginTop: \"46px\",\n fontSize: themeFontSize.sm,\n color: themeColor.footer,\n fontWeight: themeFontWeight.semibold,\n marginBottom: themeSpacing.xs,\n },\n footerText: {\n fontSize: themeFontSize.sm,\n color: themeColor.text,\n },\n });\n","import { useTranslation } from \"react-i18next\";\nimport { Document, Page, Text, View, Font } from \"@react-pdf/renderer\";\nimport { formatCurrency } from \"@paytient/common\";\nimport { MonthItem } from \"@paytient/m3p-core/ui\";\nimport InterRegular from \"@paytient/ui/src/theme/fonts/Inter/Inter-Regular.ttf\";\nimport InterSemiBold from \"@paytient/ui/src/theme/fonts/Inter/Inter-SemiBold.ttf\";\n\nimport { createPdfStyles } from \"./pdfStyles\";\n\nFont.register({\n family: \"Inter\",\n fonts: [\n { src: InterRegular, fontWeight: 400 },\n { src: InterSemiBold, fontWeight: 600 },\n ],\n});\n\ntype Props = {\n months: Array;\n optInMonthIndex: number;\n estimatedSpent: number;\n remainingSpent: number;\n progressBarPercentage: number;\n sponsorColor: string;\n optInDate: { value: string; year: number };\n yearTagIndex?: number;\n yearTagValue?: number;\n};\n\nexport const MyDocument = ({\n months,\n sponsorColor,\n estimatedSpent,\n remainingSpent,\n progressBarPercentage,\n optInMonthIndex,\n optInDate,\n yearTagIndex,\n yearTagValue,\n}: Props) => {\n const { t } = useTranslation();\n const styles = createPdfStyles(sponsorColor, progressBarPercentage);\n const columns = 3;\n const total = months.length;\n\n return (\n \n \n \n \n \n {t(\n \"calculator.results.pdf.header.title\",\n \"Your Medicare Prescription Payment Plan Estimate\",\n )}\n \n \n {t(\n \"calculator.results.pdf.header.text\",\n \"Based on the selected opt-in date of {{date}}\",\n {\n date: optInDate.value,\n },\n )}\n \n \n \n \n {t(\n \"calculator.results.pdf.title\",\n \"Your estimated monthly payments for {{year}}\",\n {\n year: optInDate.year,\n },\n )}\n \n \n \n {months.map((item, index) => {\n const isDisabled = item.status === \"INACTIVE\";\n const isLastColumn = (index + 1) % columns === 0;\n const isLastRow = index >= total - columns;\n const isTopLeft = index === 0;\n const isTopRight = index === columns - 1;\n\n const itemStyle = {\n ...(isDisabled ? styles.gridDisabledItem : styles.gridItem),\n borderRightWidth: isLastColumn ? 1 : 0,\n borderBottomWidth: isLastRow ? 1 : 0,\n ...(isTopLeft ? styles.gridTopLeftCornerItem : {}),\n ...(isTopRight ? styles.gridTopRightCornerItem : {}),\n };\n\n return (\n \n {index === optInMonthIndex && (\n \n \n {`${t(\"calculator.results.pdf.optIn\", \"Opt in\")} - ${optInDate.year}`}\n \n \n )}\n\n {index === yearTagIndex && yearTagValue && (\n \n \n {yearTagValue}\n \n \n )}\n \n {item.name.slice(0, 3)}\n \n \n {formatCurrency(item.minimumAmountDue)}\n \n \n );\n })}\n \n \n \n \n \n \n {t(\n \"calculator.results.pdf.paymentScheduleDescription\",\n \"This payment schedule is an estimation based on the selected opt-in date of {{date}}. Monthly payments are calculated based on incurred prescription costs and the number of remaining months in your plan year.\",\n {\n date: optInDate.value,\n },\n )}\n \n \n \n \n \n \n \n {t(\n \"calculator.results.pdf.outOfPocketSpent\",\n \"{{year}} estimated out-of-pocket spent\",\n {\n year: optInDate.year,\n },\n )}\n \n \n \n \n \n \n \n {formatCurrency(estimatedSpent)}\n \n \n {t(\n \"calculator.results.pdf.estimatedSpent\",\n \"Estimated spent\",\n )}\n \n \n \n \n {formatCurrency(remainingSpent)}\n \n \n {t(\"calculator.results.pdf.remaining\", \"Remaining\")}\n \n \n \n \n \n \n \n \n \n {t(\n \"calculator.results.pdf.outOfPocketDescription\",\n \"In {{year}}, the out-of-pocket maximum is $2,000. If this maximum is met, eligible prescriptions will cost $0 for the remainder of your plan year. Some individuals may have a lower out-of-pocket maximum; please contact your Medicare Part D sponsor for details.\",\n {\n year: optInDate.year,\n },\n )}\n \n \n \n \n \n {t(\n \"calculator.results.pdf.footer.title\",\n \"These will not be your official monthly payments.\",\n )}\n \n \n {t(\n \"calculator.results.pdf.footer.text\",\n \"The Inflation Reduction Act (IRA) eliminates the coverage gap and limits drug costs to $2,000. Your plan may reduce these out-of-pocket drug costs even further. The Medicare Prescription Payment Plan can help spread your out-of-pocket drug costs over the plan year. The values in this table represent an estimation and are not actual payment amounts. Your official payment schedule will vary based on your opt-in date and eligible prescription costs in {{year}}. To officially participate in the program, you will need to opt-in.\",\n {\n year: optInDate.year,\n },\n )}\n \n \n \n );\n};\n","import { useState, useMemo } from \"react\";\nimport { redirect, useNavigate } from \"react-router-dom\";\nimport { useTranslation } from \"react-i18next\";\nimport { useSelector } from \"react-redux\";\nimport { Box, Text, useToken, useToast } from \"@chakra-ui/react\";\nimport { BlobProviderParams, PDFDownloadLink } from \"@react-pdf/renderer\";\nimport { Button, Spinner } from \"@paytient/ui\";\nimport { FullScreenLayout, ResultsGrid } from \"@paytient/m3p-core/ui\";\nimport { useSetPageTitle } from \"@paytient/m3p-core/hooks\";\nimport { getIsPaytientClient } from \"src/lib/getIsPaytientClient\";\nimport {\n selectHasResults,\n selectResults,\n} from \"src/redux/modules/calculator/selectors/resultsSelectors\";\nimport { EstimatedSpentChart } from \"src/pages/calculator/results/EstimatedSpentChart\";\nimport { useEstimatedSpentData } from \"src/hooks/useEstimatedSpentData\";\nimport { selectFromStore } from \"src/redux\";\nimport { selectPlanStart } from \"src/redux/modules/calculator/selectors/selectPlanStart\";\nimport { featureFlags } from \"src/lib/featureFlags\";\nimport { getOptInMonth } from \"src/lib/getOptInMonth\";\nimport { getOptInDisplayDate } from \"src/lib/getOptInDisplayDate\";\nimport { useFeatureFlags } from \"src/hooks/useFeatureFlags\";\nimport { parseMonths } from \"./helpers\";\nimport { MyDocument } from \"./PDF\";\n\nexport const loader = () => {\n const hasResults = selectFromStore(selectHasResults);\n if (!hasResults) return redirect(\"/\");\n return null;\n};\n\nexport const Component = () => {\n const navigate = useNavigate();\n const { t } = useTranslation();\n useSetPageTitle(t(\"page.results.title\"));\n\n const results = useSelector(selectResults);\n const selectedPlanStart = useSelector(selectPlanStart);\n\n const toast = useToast();\n const [pdfError, setPdfError] = useState(false);\n const isNCYUpdate = useFeatureFlags(featureFlags.RolloutNCYCalculatorUpdates);\n\n const optInMonth = getOptInMonth(selectedPlanStart);\n const isPaytientClient = getIsPaytientClient();\n const {\n estimatedSpent,\n remainingSpent,\n isOverMaxOOP,\n estimatedSpentPercentage,\n } = useEstimatedSpentData();\n\n const [brand600] = useToken(\n // the key within the theme, in this case `theme.colors`\n \"colors\",\n // the subkey(s), resolving to `theme.colors.red.100`\n [\"brand.600\"],\n // a single fallback or fallback array matching the length of the previous arg\n );\n\n const months = results.lineItems;\n\n const optInMonthIndex =\n months?.findIndex((item) => item.month === optInMonth) ?? 0;\n\n // We need to leave t as a dependency to ensure that the component re-renders when the language changes\n const updatedMonths = useMemo(\n () => parseMonths(months, optInMonthIndex),\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [months, optInMonthIndex, t],\n );\n const date = getOptInDisplayDate(selectedPlanStart);\n\n const handleExitButtonClick = () => {\n // TODO: Navigate to sponsor site\n navigate(\"/\");\n };\n\n //TODO: Add toast for success and error messages\n const renderPDFItem = ({ loading, error }: BlobProviderParams) => {\n if (loading) return ;\n if (error) {\n setPdfError(true);\n toast({\n title: t(\"errors.retry\", \"Something went wrong, please try again.\"),\n status: \"error\",\n variant: \"error\",\n isClosable: true,\n });\n return \"Error!\";\n }\n return t(\"calculator.results.download.text\", \"Download as PDF\");\n };\n\n const handleDownloadResults = () => {\n toast({\n title: t(\n \"calculator.results.download.success\",\n \"PDF successfully downloaded!\",\n ),\n status: \"success\",\n variant: \"success\",\n isClosable: true,\n });\n };\n\n const selectedMonthProps = {\n name: optInMonth,\n label: `${t(\"calculator.results.optIn\", \"Opt In\")} - ${date.year}`,\n };\n\n return (\n \n \n \n \n \n m.month === \"JANUARY\" && idx !== 0,\n )\n : undefined\n }\n yearTagValue={isNCYUpdate ? date.year + 1 : undefined}\n />\n }\n fileName={t(\n \"calculator.results.pdf.fileName\",\n \"estimated-monthly-payment-schedule\",\n )}\n onClick={handleDownloadResults}\n >\n {({ blob, url, loading, error }) =>\n renderPDFItem({ blob, url, loading, error })\n }\n \n \n \n {t(\"calculator.results.description\", { year: date.year })}\n \n \n \n );\n};\n","import { useNavigate } from \"react-router-dom\";\nimport { useTranslation } from \"react-i18next\";\nimport { Flex, Heading, Container, Image } from \"@chakra-ui/react\";\nimport { Button, Icon, Text } from \"@paytient/ui\";\n\nimport { useClientExperienceConfig } from \"src/hooks/useClientExperienceConfig\";\nimport { useAppSelector } from \"src/redux\";\nimport { selectConfig } from \"src/redux/modules/config/selectors/configSelectors\";\n\nexport const Hero: React.FC = () => {\n const navigate = useNavigate();\n const { t } = useTranslation();\n\n const config = useAppSelector(selectConfig);\n const experienceConfig = useClientExperienceConfig();\n const { provider } = config;\n return (\n \n \n \n {experienceConfig?.logoUrl ? (\n \n ) : (\n \n )}\n \n \n {t(\"home.hero.title\", \"Monthly payment calculator\")}\n \n \n {t(\n \"home.hero.subtitle\",\n \"Use this calculator to estimate your monthly payments for the Medicare Prescription Payment Plan.\",\n )}\n \n \n navigate(\"/calculator\")}\n w={{\n base: \"full\",\n md: \"auto\",\n }}\n >\n {t(\"home.hero.button.text\", \"Estimate my monthly payment\")}\n \n \n \n \n );\n};\n","import { Flex, Heading, Container } from \"@chakra-ui/react\";\nimport { Button } from \"@paytient/ui\";\nimport { useTranslation } from \"react-i18next\";\nimport { useNavigate } from \"react-router-dom\";\n\nexport const PaymentEstimatorGuide = () => {\n const navigate = useNavigate();\n const { t } = useTranslation();\n\n return (\n \n \n \n \n {t(\n \"home.paymentEstimatorGuide.title\",\n \"Calculate my monthly payment\",\n )}\n \n navigate(\"/calculator\")}\n w={{ base: \"full\", md: \"auto\" }}\n >\n {t(\n \"home.paymentEstimatorGuide.button.text\",\n \"Estimate my monthly payment\",\n )}\n \n \n \n \n );\n};\n","import { useTranslation } from \"react-i18next\";\nimport {\n Box,\n Container,\n Flex,\n Grid,\n GridItem,\n Heading,\n Text,\n} from \"@chakra-ui/react\";\nimport { Divider } from \"@paytient/m3p-core/ui\";\n\nexport const PlanRequirements = () => {\n const { t } = useTranslation();\n\n return (\n \n \n \n \n \n \n {t(\n \"home.planRequirements.title\",\n \"How do I know if the plan is right for me?\",\n )}\n \n \n {t(\n \"home.planRequirements.subtitle\",\n \"If you say 'yes' to any of these statements, this program might be right for you.\",\n )}\n \n \n \n \n \n \n {t(\n \"home.planRequirements.requirements.one\",\n \"If during the prior plan year, you filled a single prescription costing more than $600.\",\n )}\n \n \n \n {t(\n \"home.planRequirements.requirements.two\",\n \"If you have spent more than $2,000 on your covered Part D prescriptions last year.\",\n )}\n \n \n \n {t(\n \"home.planRequirements.requirements.three\",\n \"If you opt in EARLY in the new plan year.\",\n )}{\" \"}\n \n {t(\n \"home.planRequirements.requirements.threePart2\",\n \"The more months you have in the program, the more your payments will be spread out.\",\n )}\n \n \n \n \n {t(\n \"home.planRequirements.requirements.four\",\n \"If there are times when you can't afford your prescription(s) up front.\",\n )}\n \n \n \n \n \n \n );\n};\n","import { useTranslation } from \"react-i18next\";\nimport { Container, Flex, Heading } from \"@chakra-ui/react\";\nimport { Card, CardProps } from \"@paytient/m3p-core/ui\";\nimport { Text } from \"@paytient/ui\";\n\nimport { getCalculatorDate } from \"src/pages/calculator/results/helpers\";\n\nexport const HowItWorks = () => {\n const { t } = useTranslation();\n const date = getCalculatorDate();\n\n const cards: CardProps[] = [\n {\n id: \"1\",\n title: t(\"home.howItWorks.cards.one.title\", \"1. Opt in\"),\n icon: {\n name: \"checkCircle\",\n color: \"brand.500\",\n },\n content: t(\n \"home.howItWorks.cards.one.content\",\n \"Opt in to the Medicare Prescription Payment Plan online, over the phone, or by mail. It doesn't cost anything to participate and you won't pay any interest or fees. \\n\\n It can take up to 24 hours before you can start using the payment plan.\",\n ),\n testId: \"card-1\",\n },\n {\n id: \"2\",\n title: t(\"home.howItWorks.cards.two.title\", \"2. Fill Rx\"),\n icon: {\n name: \"pill\",\n color: \"brand.500\",\n },\n content: t(\n \"home.howItWorks.cards.two.content\",\n \"You will fill your eligible Part D prescriptions as usual, without needing to pay anything up front. \\n\\nIn {{year}}, the out-of-pocket maximum is $2,000*. If this maximum is met, eligible Part D prescriptions will cost $0 for the remainder of your plan year. Some individuals may have a lower maximum.\",\n {\n year: date.year,\n },\n ),\n testId: \"card-2\",\n },\n {\n id: \"3\",\n title: t(\"home.howItWorks.cards.three.title\", \"3. Pay\"),\n icon: {\n name: \"card\",\n color: \"brand.500\",\n },\n content: t(\n \"home.howItWorks.cards.three.content\",\n \"At the end of each month, you will receive a bill for the prescriptions you've picked up. The total cost is divided in to interest-free installments, which you pay over the remaining months of your plan year. Bills can be paid online, over the phone, or by check.\",\n ),\n testId: \"card-3\",\n },\n {\n id: \"4\",\n title: t(\"home.howItWorks.cards.four.title\", \"4. That's it!\"),\n icon: {\n name: \"userCircle\",\n color: \"brand.500\",\n },\n content: t(\n \"home.howItWorks.cards.four.content\",\n \"Additional prescription costs that you incur over the course of your plan year will be reflected in each monthly bill. This means your monthly bill and program payment schedule may change.\",\n ),\n testId: \"card-4\",\n },\n ];\n\n return (\n \n \n \n {t(\n \"home.howItWorks.title\",\n \"How does the Medicare Prescription Payment Plan work?\",\n )}\n \n \n \n \n \n \n \n \n \n \n \n \n {t(\n \"home.howItWorks.reference\",\n \"*The Inflation Reduction Act (IRA) eliminates the coverage gap and limits drug costs to $2,000. Your plan may reduce these out-of-pocket drug costs even further. The Medicare Prescription Payment Plan can help spread your out-of-pocket drug costs over the plan year.\",\n )}\n \n \n \n );\n};\n","import { redirect } from \"react-router-dom\";\n\nimport { getIsPaytientClient } from \"src/lib/getIsPaytientClient\";\n\nimport { Hero } from \"./Hero\";\nimport { PaymentEstimatorGuide } from \"./PaymentEstimatorGuide\";\nimport { PlanRequirements } from \"./PlanRequirements\";\nimport { HowItWorks } from \"./HowItWorks\";\n\n// redirects to /calculator if it's Paytient client\nexport const loader = () => {\n const isPaytientClient = getIsPaytientClient();\n if (isPaytientClient) return redirect(\"/calculator\");\n return null;\n};\n\n// Component is a naming convention of react-router. Refer to https://reactrouter.com/en/main/route/lazy\nexport const Component = () => {\n return (\n <>\n \n \n \n \n \n );\n};\n"],"names":["ApiError","request","response","message","CancelError","CancelablePromise","#isResolved","#isRejected","#isCancelled","#cancelHandlers","#promise","#resolve","#reject","executor","resolve","reject","onResolve","value","onReject","reason","onCancel","cancelHandler","onFulfilled","onRejected","onFinally","error","OpenAPI","ClaimData","status","Config","EligibilityData","EligiblePlanData","calendar","EstimatedLineItem","month","EstimatedPaymentScheduleRequest","optInMonth","planStart","planEnd","IncurredCost","LegalRepresentativeData","relationship","LineItem","ParticipantPaymentData","paymentMethodType","ParticipantPaymentMethodData","type","bankAccountVerificationStatus","Payment","PaymentLogData","refundReason","PaymentScheduleRequest","ProjectedLineItem","StatusChangeRequest","StatusData","notEligibleReason","isDefined","isString","isStringWithValue","isBlob","isFormData","FormData","isSuccess","base64","str","getQueryString","params","qs","append","key","process","v","k","getUrl","config","options","encoder","path","substring","group","url","getFormData","formData","_","resolver","getHeaders","token","username","password","additionalHeaders","formHeaders","headers","credentials","getRequestBody","sendRequest","body","axiosClient","source","axios","requestConfig","axiosError","getResponseHeader","responseHeader","content","getResponseBody","catchErrorCodes","result","errorStatus","errorStatusText","errorBody","responseBody","CalculatorService","requestBody","__request","SystemService","API_HOST","CDN_HOST","LD_CLIENT_KEY","LD_INITIALIZE_TIMEOUT","getLogger","channel","Debug","replaceUUID","input","replaceValue","SCRUB_SENSITIVE_KEYS","scrubData","data","opts","scrubKeys","replacementValue","scrubUUIDs","skipKeys","scrubUrl","newValue","scrubString","parsed","clean","searchAndReplace","scrubbed","output","property","newVal","addDatadogError","formatAs","date","dateFormat","emptyValue","timeZone","d","checkValidDate","timeZonedDate","getZonedDateTime","format","formatDate","getUTCDateObject","addMinutes","parseISO","trackHeapEvent","eventName","identity","customProperties","userProperties","Big","formatCurrency","withDecimals","hideDecimalsIfWhole","noParentheses","formattingOpts","padding","LoggingErrorBoundary","React","props","info","renderingError","DatadogClient","log","debug","err","DatadogWebClient","user","promises","args","context","level","dd","ActionError","cause","configureAxe","setIncurredCosts","createAction","estimatePaymentSchedule","createAsyncThunk","values","amount","setEstimatedCosts","resetEstimatedCosts","setPlanStart","initialState","reducer","combineReducers","createReducer","builder","action","getConfig","configReducer","getAPIErrorMessage","responseError","_get","statusErrorText","responseDataError","getErrorFromAction","MASK","requestBodySanitizer","object","requestPayload","getItemTitle","apiMessage","errorCode","title","x","getExtras","extras","isRejectedWithValue","correlationId","isErrorToReport","isBlocklisted","isRejected","createMiddleware","store","next","Buffer","rawError","actionError","datadogMiddleware","rootReducer","calculatorReducer","rtkConfig","state","configureStore","getDefaultMiddleware","useAppDispatch","useDispatch","useAppSelector","selector","useSelector","selectFromStore","selectConfig","selectSponsorName","createSelector","sponsorName","featureFlags","defaultConfig","useClientExperienceConfig","client","useLDClient","getIsPaytientClient","getSystemProvider","ldClient","getLDClient","systemProvider","initialize","careplusPostOptin$2","careplusPreOptin$2","esiPostOptin$2","esiPreOptin$2","humanaPostOptin$2","getFeatureFlag","featureFlag","loader$5","redirect","getMonths","t","useSetPageTitle","navigate","useNavigate","dispatch","selectedMonth","setSelectedMonth","reactExports","handleMonthChange","jsxRuntimeExports","FullScreenLayout","handleNext","currentYear","Box","Select","meetsIncurredCostsCriteria","incurredCosts","getMaxOOP","selectIncurredCosts","getCurrentMonth","PLAN_START_YEAR","DEFAULT_PLAN_START_MONTH","MONTHS","isPlanStartInFuture","planStartIndex","currentMonthIndex","getOptInMonth","validationSchema$1","create$3","create$5","loader$4","selectPlanStart","formik","useFormik","values2","validationSchema","handleBlur","setFieldValue","submitForm","touched","disableButton","handleInputChange","val","cleanVal","lodashExports","CurrencyInput","selectEstimatedCosts","selectEstimatedCostsSum","estimatedCosts","acc","item","selectIsOverMaxOOP","estimatedCostsSum","initialState$1","Component$3","IconDuotone","jsx","Heading","Trans","Text","useMonths","useTranslation","months","startMonthIndex","startMonth","useFeatureFlags","flagKey","se","Yup.number","isNCYUpdate","toast","priorIncurredCosts","selectedPlanStart","getMonthDifference","from","to","isMonthDisabled","monthIndex","planStartDate","monthsElapsed","transformedValues","isFulfilled","res","isValid","dirty","monthName","sanitizedValue","Flex","index","selectResults","selectHasResults","results","maxOOP","isOverMaxOOP","remainingSpent","estimatedSpentPercentage","InfoBottomSheet","isOpen","onClose","displayMessages","BottomSheet","Button","Container","VStack","instance","parseMonths","optInMonthIndex","getMonthString","getCalculatorDate","newDate","newDate2025","currentDate","getYear","isBefore","year","rest","onOpen","useDisclosure","estimatedSpent","IconButton","ProgressBar","jsxs","Link","getOptInDisplayDate","today","futureDate","themeColor","shared","themeSpacing","themeFontSize","createPdfStyles","sponsorColor","progressBarPercentage","StyleSheet","themeFontWeight","Font","InterRegular","InterSemiBold","MyDocument","optInDate","yearTagIndex","yearTagValue","styles","columns","total","Document","View","Text$1","isDisabled","isLastColumn","isLastRow","isTopLeft","isTopRight","itemStyle","Component$1","useToast","setPdfError","isPaytientClient","useEstimatedSpentData","brand600","useToken","handleExitButtonClick","renderPDFItem","loading","Spinner","selectedMonthProps","ResultsGrid","updatedMonths","EstimatedSpentChart","Button$1","PDFDownloadLink","m","idx","blob","Hero","experienceConfig","Image","provider","Icon","PaymentEstimatorGuide","Grid","GridItem","Divider","cards","Card","loader","PlanRequirements","HowItWorks"],"mappings":"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AAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,2GCAAC,GAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,2GCAAC,GAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,2GCAAC,GAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}