Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | 186x | import { z } from "zod"; import * as newMedicaidSubmission from "./new-medicaid-submission"; import * as uploadSubsequentDocuments from "./upload-subsequent-documents"; import * as newChipSubmission from "./new-chip-submission"; import * as capitatedAmendment from "./capitated-amendment"; import * as capitatedIntial from "./capitated-initial"; import * as capitatedRenewal from "./capitated-renewal"; import * as contractingAmendment from "./contracting-amendment"; import * as contractingInitial from "./contracting-initial"; import * as contractingRenewal from "./contracting-renewal"; import * as temporaryExtension from "./temporary-extension"; import * as withdrawPackage from "./withdraw-package"; import * as appk from "./app-k"; import * as withdrawRai from "./withdraw-rai"; import * as toggleWithdrawRai from "./toggle-withdraw-rai"; import * as respondToRai from "./respond-to-rai"; export * from "./respond-to-rai"; export * from "./legacy-event"; export * from "./legacy-package-view"; export * from "./legacy-admin-change"; export * from "./seatool"; export * from "./remove-appk-child"; export * from "./update-id"; export const events = { "capitated-amendment": capitatedAmendment, "capitated-initial": capitatedIntial, "capitated-renewal": capitatedRenewal, "contracting-amendment": contractingAmendment, "contracting-initial": contractingInitial, "contracting-renewal": contractingRenewal, "new-chip-submission": newChipSubmission, "new-medicaid-submission": newMedicaidSubmission, "temporary-extension": temporaryExtension, "withdraw-package": withdrawPackage, "withdraw-rai": withdrawRai, "toggle-withdraw-rai": toggleWithdrawRai, "respond-to-rai": respondToRai, "upload-subsequent-documents": uploadSubsequentDocuments, "app-k": appk, }; export type BaseSchemas = z.infer<typeof newMedicaidSubmission.baseSchema>; export type Events = { AppKSubmission: z.infer<typeof appk.schema>; CapitatedInitial: z.infer<typeof capitatedIntial.schema>; CapitatedRenewal: z.infer<typeof capitatedRenewal.schema>; CapitatedAmendment: z.infer<typeof capitatedAmendment.schema>; ContractingInitial: z.infer<typeof contractingInitial.schema>; ContractingRenewal: z.infer<typeof contractingRenewal.schema>; ContractingAmendment: z.infer<typeof contractingAmendment.schema>; NewChipSubmission: z.infer<typeof newChipSubmission.schema>; NewMedicaidSubmission: z.infer<typeof newMedicaidSubmission.schema>; TemporaryExtension: z.infer<typeof temporaryExtension.schema>; RespondToRai: z.infer<typeof respondToRai.schema>; UploadSubsequentDocuments: z.infer<typeof uploadSubsequentDocuments.schema>; WithdrawPackage: z.infer<typeof withdrawPackage.schema>; WithdrawRai: z.infer<typeof withdrawRai.schema>; ToggleWithdrawRai: z.infer<typeof toggleWithdrawRai.schema>; }; |