@sequoiaport/codes 0.1.4-beta.3 → 0.1.4-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -2240,6 +2240,902 @@ type LEGetVersionOutput = z.infer<typeof GetVersionOutputSchema>;
2240
2240
  type LEHealthOutput = z.infer<typeof LEHealthOutputSchema>;
2241
2241
  type LEGetStatsOutput = z.infer<typeof GetStatsOutputSchema>;
2242
2242
 
2243
+ /** Individual tier breakdown (professional + facility + anesthesia) */
2244
+ declare const TierBreakdownSchema: z.ZodObject<{
2245
+ professional: z.ZodNumber;
2246
+ facility: z.ZodNumber;
2247
+ anesthesia: z.ZodOptional<z.ZodNumber>;
2248
+ total: z.ZodNumber;
2249
+ source: z.ZodOptional<z.ZodString>;
2250
+ method: z.ZodOptional<z.ZodString>;
2251
+ multiplier_source: z.ZodOptional<z.ZodString>;
2252
+ wcmsa_facility: z.ZodOptional<z.ZodString>;
2253
+ }, "strip", z.ZodTypeAny, {
2254
+ total: number;
2255
+ professional: number;
2256
+ facility: number;
2257
+ source?: string | undefined;
2258
+ anesthesia?: number | undefined;
2259
+ method?: string | undefined;
2260
+ multiplier_source?: string | undefined;
2261
+ wcmsa_facility?: string | undefined;
2262
+ }, {
2263
+ total: number;
2264
+ professional: number;
2265
+ facility: number;
2266
+ source?: string | undefined;
2267
+ anesthesia?: number | undefined;
2268
+ method?: string | undefined;
2269
+ multiplier_source?: string | undefined;
2270
+ wcmsa_facility?: string | undefined;
2271
+ }>;
2272
+ /** Per-CPT line item with all 4 tiers */
2273
+ declare const TieredLineItemSchema: z.ZodObject<{
2274
+ cpt_code: z.ZodString;
2275
+ modifier: z.ZodOptional<z.ZodString>;
2276
+ quantity: z.ZodNumber;
2277
+ locality: z.ZodString;
2278
+ medicare_professional: z.ZodNumber;
2279
+ medicare_facility_pfs: z.ZodNumber;
2280
+ medicare_facility_drg: z.ZodOptional<z.ZodNumber>;
2281
+ medicare_anesthesia: z.ZodOptional<z.ZodNumber>;
2282
+ medicare_total: z.ZodNumber;
2283
+ commercial_professional: z.ZodNumber;
2284
+ commercial_facility: z.ZodNumber;
2285
+ commercial_anesthesia: z.ZodOptional<z.ZodNumber>;
2286
+ commercial_total: z.ZodNumber;
2287
+ p80_professional: z.ZodOptional<z.ZodNumber>;
2288
+ p80_facility: z.ZodOptional<z.ZodNumber>;
2289
+ p80_anesthesia: z.ZodOptional<z.ZodNumber>;
2290
+ p80_total: z.ZodOptional<z.ZodNumber>;
2291
+ billed_professional: z.ZodOptional<z.ZodNumber>;
2292
+ billed_facility: z.ZodOptional<z.ZodNumber>;
2293
+ billed_anesthesia: z.ZodOptional<z.ZodNumber>;
2294
+ billed_total: z.ZodOptional<z.ZodNumber>;
2295
+ drg_code: z.ZodOptional<z.ZodString>;
2296
+ drg_title: z.ZodOptional<z.ZodString>;
2297
+ drg_weight: z.ZodOptional<z.ZodNumber>;
2298
+ calculation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2299
+ }, "strip", z.ZodTypeAny, {
2300
+ cpt_code: string;
2301
+ quantity: number;
2302
+ locality: string;
2303
+ medicare_professional: number;
2304
+ medicare_facility_pfs: number;
2305
+ medicare_total: number;
2306
+ commercial_professional: number;
2307
+ commercial_facility: number;
2308
+ commercial_total: number;
2309
+ modifier?: string | undefined;
2310
+ medicare_facility_drg?: number | undefined;
2311
+ medicare_anesthesia?: number | undefined;
2312
+ commercial_anesthesia?: number | undefined;
2313
+ p80_professional?: number | undefined;
2314
+ p80_facility?: number | undefined;
2315
+ p80_anesthesia?: number | undefined;
2316
+ p80_total?: number | undefined;
2317
+ billed_professional?: number | undefined;
2318
+ billed_facility?: number | undefined;
2319
+ billed_anesthesia?: number | undefined;
2320
+ billed_total?: number | undefined;
2321
+ drg_code?: string | undefined;
2322
+ drg_title?: string | undefined;
2323
+ drg_weight?: number | undefined;
2324
+ calculation?: Record<string, string> | undefined;
2325
+ }, {
2326
+ cpt_code: string;
2327
+ quantity: number;
2328
+ locality: string;
2329
+ medicare_professional: number;
2330
+ medicare_facility_pfs: number;
2331
+ medicare_total: number;
2332
+ commercial_professional: number;
2333
+ commercial_facility: number;
2334
+ commercial_total: number;
2335
+ modifier?: string | undefined;
2336
+ medicare_facility_drg?: number | undefined;
2337
+ medicare_anesthesia?: number | undefined;
2338
+ commercial_anesthesia?: number | undefined;
2339
+ p80_professional?: number | undefined;
2340
+ p80_facility?: number | undefined;
2341
+ p80_anesthesia?: number | undefined;
2342
+ p80_total?: number | undefined;
2343
+ billed_professional?: number | undefined;
2344
+ billed_facility?: number | undefined;
2345
+ billed_anesthesia?: number | undefined;
2346
+ billed_total?: number | undefined;
2347
+ drg_code?: string | undefined;
2348
+ drg_title?: string | undefined;
2349
+ drg_weight?: number | undefined;
2350
+ calculation?: Record<string, string> | undefined;
2351
+ }>;
2352
+ /** MPFS rate lookup result */
2353
+ declare const MPFSRateSchema: z.ZodObject<{
2354
+ cpt_code: z.ZodString;
2355
+ modifier: z.ZodOptional<z.ZodString>;
2356
+ locality: z.ZodString;
2357
+ work_rvu: z.ZodNumber;
2358
+ nonfacility_pe_rvu: z.ZodNumber;
2359
+ facility_pe_rvu: z.ZodOptional<z.ZodNumber>;
2360
+ mp_rvu: z.ZodNumber;
2361
+ work_gpci: z.ZodNumber;
2362
+ pe_gpci: z.ZodNumber;
2363
+ mp_gpci: z.ZodNumber;
2364
+ conversion_factor: z.ZodNumber;
2365
+ professional_allowable: z.ZodNumber;
2366
+ facility_allowable: z.ZodOptional<z.ZodNumber>;
2367
+ }, "strip", z.ZodTypeAny, {
2368
+ conversion_factor: number;
2369
+ cpt_code: string;
2370
+ locality: string;
2371
+ work_rvu: number;
2372
+ nonfacility_pe_rvu: number;
2373
+ mp_rvu: number;
2374
+ work_gpci: number;
2375
+ pe_gpci: number;
2376
+ mp_gpci: number;
2377
+ professional_allowable: number;
2378
+ modifier?: string | undefined;
2379
+ facility_pe_rvu?: number | undefined;
2380
+ facility_allowable?: number | undefined;
2381
+ }, {
2382
+ conversion_factor: number;
2383
+ cpt_code: string;
2384
+ locality: string;
2385
+ work_rvu: number;
2386
+ nonfacility_pe_rvu: number;
2387
+ mp_rvu: number;
2388
+ work_gpci: number;
2389
+ pe_gpci: number;
2390
+ mp_gpci: number;
2391
+ professional_allowable: number;
2392
+ modifier?: string | undefined;
2393
+ facility_pe_rvu?: number | undefined;
2394
+ facility_allowable?: number | undefined;
2395
+ }>;
2396
+ /** projectCostTiered output */
2397
+ declare const ProjectCostTieredOutputSchema: z.ZodObject<{
2398
+ result: z.ZodObject<{
2399
+ claimant_zip: z.ZodString;
2400
+ cbsa: z.ZodOptional<z.ZodString>;
2401
+ state: z.ZodString;
2402
+ locality: z.ZodString;
2403
+ line_items: z.ZodArray<z.ZodObject<{
2404
+ cpt_code: z.ZodString;
2405
+ modifier: z.ZodOptional<z.ZodString>;
2406
+ quantity: z.ZodNumber;
2407
+ locality: z.ZodString;
2408
+ medicare_professional: z.ZodNumber;
2409
+ medicare_facility_pfs: z.ZodNumber;
2410
+ medicare_facility_drg: z.ZodOptional<z.ZodNumber>;
2411
+ medicare_anesthesia: z.ZodOptional<z.ZodNumber>;
2412
+ medicare_total: z.ZodNumber;
2413
+ commercial_professional: z.ZodNumber;
2414
+ commercial_facility: z.ZodNumber;
2415
+ commercial_anesthesia: z.ZodOptional<z.ZodNumber>;
2416
+ commercial_total: z.ZodNumber;
2417
+ p80_professional: z.ZodOptional<z.ZodNumber>;
2418
+ p80_facility: z.ZodOptional<z.ZodNumber>;
2419
+ p80_anesthesia: z.ZodOptional<z.ZodNumber>;
2420
+ p80_total: z.ZodOptional<z.ZodNumber>;
2421
+ billed_professional: z.ZodOptional<z.ZodNumber>;
2422
+ billed_facility: z.ZodOptional<z.ZodNumber>;
2423
+ billed_anesthesia: z.ZodOptional<z.ZodNumber>;
2424
+ billed_total: z.ZodOptional<z.ZodNumber>;
2425
+ drg_code: z.ZodOptional<z.ZodString>;
2426
+ drg_title: z.ZodOptional<z.ZodString>;
2427
+ drg_weight: z.ZodOptional<z.ZodNumber>;
2428
+ calculation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2429
+ }, "strip", z.ZodTypeAny, {
2430
+ cpt_code: string;
2431
+ quantity: number;
2432
+ locality: string;
2433
+ medicare_professional: number;
2434
+ medicare_facility_pfs: number;
2435
+ medicare_total: number;
2436
+ commercial_professional: number;
2437
+ commercial_facility: number;
2438
+ commercial_total: number;
2439
+ modifier?: string | undefined;
2440
+ medicare_facility_drg?: number | undefined;
2441
+ medicare_anesthesia?: number | undefined;
2442
+ commercial_anesthesia?: number | undefined;
2443
+ p80_professional?: number | undefined;
2444
+ p80_facility?: number | undefined;
2445
+ p80_anesthesia?: number | undefined;
2446
+ p80_total?: number | undefined;
2447
+ billed_professional?: number | undefined;
2448
+ billed_facility?: number | undefined;
2449
+ billed_anesthesia?: number | undefined;
2450
+ billed_total?: number | undefined;
2451
+ drg_code?: string | undefined;
2452
+ drg_title?: string | undefined;
2453
+ drg_weight?: number | undefined;
2454
+ calculation?: Record<string, string> | undefined;
2455
+ }, {
2456
+ cpt_code: string;
2457
+ quantity: number;
2458
+ locality: string;
2459
+ medicare_professional: number;
2460
+ medicare_facility_pfs: number;
2461
+ medicare_total: number;
2462
+ commercial_professional: number;
2463
+ commercial_facility: number;
2464
+ commercial_total: number;
2465
+ modifier?: string | undefined;
2466
+ medicare_facility_drg?: number | undefined;
2467
+ medicare_anesthesia?: number | undefined;
2468
+ commercial_anesthesia?: number | undefined;
2469
+ p80_professional?: number | undefined;
2470
+ p80_facility?: number | undefined;
2471
+ p80_anesthesia?: number | undefined;
2472
+ p80_total?: number | undefined;
2473
+ billed_professional?: number | undefined;
2474
+ billed_facility?: number | undefined;
2475
+ billed_anesthesia?: number | undefined;
2476
+ billed_total?: number | undefined;
2477
+ drg_code?: string | undefined;
2478
+ drg_title?: string | undefined;
2479
+ drg_weight?: number | undefined;
2480
+ calculation?: Record<string, string> | undefined;
2481
+ }>, "many">;
2482
+ medicare: z.ZodObject<{
2483
+ professional: z.ZodNumber;
2484
+ facility: z.ZodNumber;
2485
+ anesthesia: z.ZodOptional<z.ZodNumber>;
2486
+ total: z.ZodNumber;
2487
+ source: z.ZodOptional<z.ZodString>;
2488
+ method: z.ZodOptional<z.ZodString>;
2489
+ multiplier_source: z.ZodOptional<z.ZodString>;
2490
+ wcmsa_facility: z.ZodOptional<z.ZodString>;
2491
+ }, "strip", z.ZodTypeAny, {
2492
+ total: number;
2493
+ professional: number;
2494
+ facility: number;
2495
+ source?: string | undefined;
2496
+ anesthesia?: number | undefined;
2497
+ method?: string | undefined;
2498
+ multiplier_source?: string | undefined;
2499
+ wcmsa_facility?: string | undefined;
2500
+ }, {
2501
+ total: number;
2502
+ professional: number;
2503
+ facility: number;
2504
+ source?: string | undefined;
2505
+ anesthesia?: number | undefined;
2506
+ method?: string | undefined;
2507
+ multiplier_source?: string | undefined;
2508
+ wcmsa_facility?: string | undefined;
2509
+ }>;
2510
+ commercial: z.ZodObject<{
2511
+ professional: z.ZodNumber;
2512
+ facility: z.ZodNumber;
2513
+ anesthesia: z.ZodOptional<z.ZodNumber>;
2514
+ total: z.ZodNumber;
2515
+ source: z.ZodOptional<z.ZodString>;
2516
+ method: z.ZodOptional<z.ZodString>;
2517
+ multiplier_source: z.ZodOptional<z.ZodString>;
2518
+ wcmsa_facility: z.ZodOptional<z.ZodString>;
2519
+ }, "strip", z.ZodTypeAny, {
2520
+ total: number;
2521
+ professional: number;
2522
+ facility: number;
2523
+ source?: string | undefined;
2524
+ anesthesia?: number | undefined;
2525
+ method?: string | undefined;
2526
+ multiplier_source?: string | undefined;
2527
+ wcmsa_facility?: string | undefined;
2528
+ }, {
2529
+ total: number;
2530
+ professional: number;
2531
+ facility: number;
2532
+ source?: string | undefined;
2533
+ anesthesia?: number | undefined;
2534
+ method?: string | undefined;
2535
+ multiplier_source?: string | undefined;
2536
+ wcmsa_facility?: string | undefined;
2537
+ }>;
2538
+ p80_estimate: z.ZodObject<{
2539
+ professional: z.ZodNumber;
2540
+ facility: z.ZodNumber;
2541
+ anesthesia: z.ZodOptional<z.ZodNumber>;
2542
+ total: z.ZodNumber;
2543
+ source: z.ZodOptional<z.ZodString>;
2544
+ method: z.ZodOptional<z.ZodString>;
2545
+ multiplier_source: z.ZodOptional<z.ZodString>;
2546
+ wcmsa_facility: z.ZodOptional<z.ZodString>;
2547
+ }, "strip", z.ZodTypeAny, {
2548
+ total: number;
2549
+ professional: number;
2550
+ facility: number;
2551
+ source?: string | undefined;
2552
+ anesthesia?: number | undefined;
2553
+ method?: string | undefined;
2554
+ multiplier_source?: string | undefined;
2555
+ wcmsa_facility?: string | undefined;
2556
+ }, {
2557
+ total: number;
2558
+ professional: number;
2559
+ facility: number;
2560
+ source?: string | undefined;
2561
+ anesthesia?: number | undefined;
2562
+ method?: string | undefined;
2563
+ multiplier_source?: string | undefined;
2564
+ wcmsa_facility?: string | undefined;
2565
+ }>;
2566
+ billed_charges: z.ZodObject<{
2567
+ professional: z.ZodNumber;
2568
+ facility: z.ZodNumber;
2569
+ anesthesia: z.ZodOptional<z.ZodNumber>;
2570
+ total: z.ZodNumber;
2571
+ source: z.ZodOptional<z.ZodString>;
2572
+ method: z.ZodOptional<z.ZodString>;
2573
+ multiplier_source: z.ZodOptional<z.ZodString>;
2574
+ wcmsa_facility: z.ZodOptional<z.ZodString>;
2575
+ }, "strip", z.ZodTypeAny, {
2576
+ total: number;
2577
+ professional: number;
2578
+ facility: number;
2579
+ source?: string | undefined;
2580
+ anesthesia?: number | undefined;
2581
+ method?: string | undefined;
2582
+ multiplier_source?: string | undefined;
2583
+ wcmsa_facility?: string | undefined;
2584
+ }, {
2585
+ total: number;
2586
+ professional: number;
2587
+ facility: number;
2588
+ source?: string | undefined;
2589
+ anesthesia?: number | undefined;
2590
+ method?: string | undefined;
2591
+ multiplier_source?: string | undefined;
2592
+ wcmsa_facility?: string | undefined;
2593
+ }>;
2594
+ data_year: z.ZodNumber;
2595
+ conversion_factor: z.ZodNumber;
2596
+ calculation_date: z.ZodString;
2597
+ data_sources: z.ZodArray<z.ZodString, "many">;
2598
+ inflation_adjustment: z.ZodOptional<z.ZodObject<{
2599
+ rand_data_year: z.ZodNumber;
2600
+ target_year: z.ZodNumber;
2601
+ medical_cpi_factor: z.ZodNumber;
2602
+ hospital_services_factor: z.ZodNumber;
2603
+ }, "strip", z.ZodTypeAny, {
2604
+ rand_data_year: number;
2605
+ target_year: number;
2606
+ medical_cpi_factor: number;
2607
+ hospital_services_factor: number;
2608
+ }, {
2609
+ rand_data_year: number;
2610
+ target_year: number;
2611
+ medical_cpi_factor: number;
2612
+ hospital_services_factor: number;
2613
+ }>>;
2614
+ commercial_multipliers: z.ZodOptional<z.ZodObject<{
2615
+ state: z.ZodString;
2616
+ inpatient_facility: z.ZodNumber;
2617
+ outpatient_facility: z.ZodNumber;
2618
+ professional: z.ZodNumber;
2619
+ overall: z.ZodNumber;
2620
+ }, "strip", z.ZodTypeAny, {
2621
+ professional: number;
2622
+ state: string;
2623
+ inpatient_facility: number;
2624
+ outpatient_facility: number;
2625
+ overall: number;
2626
+ }, {
2627
+ professional: number;
2628
+ state: string;
2629
+ inpatient_facility: number;
2630
+ outpatient_facility: number;
2631
+ overall: number;
2632
+ }>>;
2633
+ }, "strip", z.ZodTypeAny, {
2634
+ conversion_factor: number;
2635
+ data_year: number;
2636
+ locality: string;
2637
+ claimant_zip: string;
2638
+ state: string;
2639
+ line_items: {
2640
+ cpt_code: string;
2641
+ quantity: number;
2642
+ locality: string;
2643
+ medicare_professional: number;
2644
+ medicare_facility_pfs: number;
2645
+ medicare_total: number;
2646
+ commercial_professional: number;
2647
+ commercial_facility: number;
2648
+ commercial_total: number;
2649
+ modifier?: string | undefined;
2650
+ medicare_facility_drg?: number | undefined;
2651
+ medicare_anesthesia?: number | undefined;
2652
+ commercial_anesthesia?: number | undefined;
2653
+ p80_professional?: number | undefined;
2654
+ p80_facility?: number | undefined;
2655
+ p80_anesthesia?: number | undefined;
2656
+ p80_total?: number | undefined;
2657
+ billed_professional?: number | undefined;
2658
+ billed_facility?: number | undefined;
2659
+ billed_anesthesia?: number | undefined;
2660
+ billed_total?: number | undefined;
2661
+ drg_code?: string | undefined;
2662
+ drg_title?: string | undefined;
2663
+ drg_weight?: number | undefined;
2664
+ calculation?: Record<string, string> | undefined;
2665
+ }[];
2666
+ medicare: {
2667
+ total: number;
2668
+ professional: number;
2669
+ facility: number;
2670
+ source?: string | undefined;
2671
+ anesthesia?: number | undefined;
2672
+ method?: string | undefined;
2673
+ multiplier_source?: string | undefined;
2674
+ wcmsa_facility?: string | undefined;
2675
+ };
2676
+ commercial: {
2677
+ total: number;
2678
+ professional: number;
2679
+ facility: number;
2680
+ source?: string | undefined;
2681
+ anesthesia?: number | undefined;
2682
+ method?: string | undefined;
2683
+ multiplier_source?: string | undefined;
2684
+ wcmsa_facility?: string | undefined;
2685
+ };
2686
+ p80_estimate: {
2687
+ total: number;
2688
+ professional: number;
2689
+ facility: number;
2690
+ source?: string | undefined;
2691
+ anesthesia?: number | undefined;
2692
+ method?: string | undefined;
2693
+ multiplier_source?: string | undefined;
2694
+ wcmsa_facility?: string | undefined;
2695
+ };
2696
+ billed_charges: {
2697
+ total: number;
2698
+ professional: number;
2699
+ facility: number;
2700
+ source?: string | undefined;
2701
+ anesthesia?: number | undefined;
2702
+ method?: string | undefined;
2703
+ multiplier_source?: string | undefined;
2704
+ wcmsa_facility?: string | undefined;
2705
+ };
2706
+ calculation_date: string;
2707
+ data_sources: string[];
2708
+ cbsa?: string | undefined;
2709
+ inflation_adjustment?: {
2710
+ rand_data_year: number;
2711
+ target_year: number;
2712
+ medical_cpi_factor: number;
2713
+ hospital_services_factor: number;
2714
+ } | undefined;
2715
+ commercial_multipliers?: {
2716
+ professional: number;
2717
+ state: string;
2718
+ inpatient_facility: number;
2719
+ outpatient_facility: number;
2720
+ overall: number;
2721
+ } | undefined;
2722
+ }, {
2723
+ conversion_factor: number;
2724
+ data_year: number;
2725
+ locality: string;
2726
+ claimant_zip: string;
2727
+ state: string;
2728
+ line_items: {
2729
+ cpt_code: string;
2730
+ quantity: number;
2731
+ locality: string;
2732
+ medicare_professional: number;
2733
+ medicare_facility_pfs: number;
2734
+ medicare_total: number;
2735
+ commercial_professional: number;
2736
+ commercial_facility: number;
2737
+ commercial_total: number;
2738
+ modifier?: string | undefined;
2739
+ medicare_facility_drg?: number | undefined;
2740
+ medicare_anesthesia?: number | undefined;
2741
+ commercial_anesthesia?: number | undefined;
2742
+ p80_professional?: number | undefined;
2743
+ p80_facility?: number | undefined;
2744
+ p80_anesthesia?: number | undefined;
2745
+ p80_total?: number | undefined;
2746
+ billed_professional?: number | undefined;
2747
+ billed_facility?: number | undefined;
2748
+ billed_anesthesia?: number | undefined;
2749
+ billed_total?: number | undefined;
2750
+ drg_code?: string | undefined;
2751
+ drg_title?: string | undefined;
2752
+ drg_weight?: number | undefined;
2753
+ calculation?: Record<string, string> | undefined;
2754
+ }[];
2755
+ medicare: {
2756
+ total: number;
2757
+ professional: number;
2758
+ facility: number;
2759
+ source?: string | undefined;
2760
+ anesthesia?: number | undefined;
2761
+ method?: string | undefined;
2762
+ multiplier_source?: string | undefined;
2763
+ wcmsa_facility?: string | undefined;
2764
+ };
2765
+ commercial: {
2766
+ total: number;
2767
+ professional: number;
2768
+ facility: number;
2769
+ source?: string | undefined;
2770
+ anesthesia?: number | undefined;
2771
+ method?: string | undefined;
2772
+ multiplier_source?: string | undefined;
2773
+ wcmsa_facility?: string | undefined;
2774
+ };
2775
+ p80_estimate: {
2776
+ total: number;
2777
+ professional: number;
2778
+ facility: number;
2779
+ source?: string | undefined;
2780
+ anesthesia?: number | undefined;
2781
+ method?: string | undefined;
2782
+ multiplier_source?: string | undefined;
2783
+ wcmsa_facility?: string | undefined;
2784
+ };
2785
+ billed_charges: {
2786
+ total: number;
2787
+ professional: number;
2788
+ facility: number;
2789
+ source?: string | undefined;
2790
+ anesthesia?: number | undefined;
2791
+ method?: string | undefined;
2792
+ multiplier_source?: string | undefined;
2793
+ wcmsa_facility?: string | undefined;
2794
+ };
2795
+ calculation_date: string;
2796
+ data_sources: string[];
2797
+ cbsa?: string | undefined;
2798
+ inflation_adjustment?: {
2799
+ rand_data_year: number;
2800
+ target_year: number;
2801
+ medical_cpi_factor: number;
2802
+ hospital_services_factor: number;
2803
+ } | undefined;
2804
+ commercial_multipliers?: {
2805
+ professional: number;
2806
+ state: string;
2807
+ inpatient_facility: number;
2808
+ outpatient_facility: number;
2809
+ overall: number;
2810
+ } | undefined;
2811
+ }>;
2812
+ }, "strip", z.ZodTypeAny, {
2813
+ result: {
2814
+ conversion_factor: number;
2815
+ data_year: number;
2816
+ locality: string;
2817
+ claimant_zip: string;
2818
+ state: string;
2819
+ line_items: {
2820
+ cpt_code: string;
2821
+ quantity: number;
2822
+ locality: string;
2823
+ medicare_professional: number;
2824
+ medicare_facility_pfs: number;
2825
+ medicare_total: number;
2826
+ commercial_professional: number;
2827
+ commercial_facility: number;
2828
+ commercial_total: number;
2829
+ modifier?: string | undefined;
2830
+ medicare_facility_drg?: number | undefined;
2831
+ medicare_anesthesia?: number | undefined;
2832
+ commercial_anesthesia?: number | undefined;
2833
+ p80_professional?: number | undefined;
2834
+ p80_facility?: number | undefined;
2835
+ p80_anesthesia?: number | undefined;
2836
+ p80_total?: number | undefined;
2837
+ billed_professional?: number | undefined;
2838
+ billed_facility?: number | undefined;
2839
+ billed_anesthesia?: number | undefined;
2840
+ billed_total?: number | undefined;
2841
+ drg_code?: string | undefined;
2842
+ drg_title?: string | undefined;
2843
+ drg_weight?: number | undefined;
2844
+ calculation?: Record<string, string> | undefined;
2845
+ }[];
2846
+ medicare: {
2847
+ total: number;
2848
+ professional: number;
2849
+ facility: number;
2850
+ source?: string | undefined;
2851
+ anesthesia?: number | undefined;
2852
+ method?: string | undefined;
2853
+ multiplier_source?: string | undefined;
2854
+ wcmsa_facility?: string | undefined;
2855
+ };
2856
+ commercial: {
2857
+ total: number;
2858
+ professional: number;
2859
+ facility: number;
2860
+ source?: string | undefined;
2861
+ anesthesia?: number | undefined;
2862
+ method?: string | undefined;
2863
+ multiplier_source?: string | undefined;
2864
+ wcmsa_facility?: string | undefined;
2865
+ };
2866
+ p80_estimate: {
2867
+ total: number;
2868
+ professional: number;
2869
+ facility: number;
2870
+ source?: string | undefined;
2871
+ anesthesia?: number | undefined;
2872
+ method?: string | undefined;
2873
+ multiplier_source?: string | undefined;
2874
+ wcmsa_facility?: string | undefined;
2875
+ };
2876
+ billed_charges: {
2877
+ total: number;
2878
+ professional: number;
2879
+ facility: number;
2880
+ source?: string | undefined;
2881
+ anesthesia?: number | undefined;
2882
+ method?: string | undefined;
2883
+ multiplier_source?: string | undefined;
2884
+ wcmsa_facility?: string | undefined;
2885
+ };
2886
+ calculation_date: string;
2887
+ data_sources: string[];
2888
+ cbsa?: string | undefined;
2889
+ inflation_adjustment?: {
2890
+ rand_data_year: number;
2891
+ target_year: number;
2892
+ medical_cpi_factor: number;
2893
+ hospital_services_factor: number;
2894
+ } | undefined;
2895
+ commercial_multipliers?: {
2896
+ professional: number;
2897
+ state: string;
2898
+ inpatient_facility: number;
2899
+ outpatient_facility: number;
2900
+ overall: number;
2901
+ } | undefined;
2902
+ };
2903
+ }, {
2904
+ result: {
2905
+ conversion_factor: number;
2906
+ data_year: number;
2907
+ locality: string;
2908
+ claimant_zip: string;
2909
+ state: string;
2910
+ line_items: {
2911
+ cpt_code: string;
2912
+ quantity: number;
2913
+ locality: string;
2914
+ medicare_professional: number;
2915
+ medicare_facility_pfs: number;
2916
+ medicare_total: number;
2917
+ commercial_professional: number;
2918
+ commercial_facility: number;
2919
+ commercial_total: number;
2920
+ modifier?: string | undefined;
2921
+ medicare_facility_drg?: number | undefined;
2922
+ medicare_anesthesia?: number | undefined;
2923
+ commercial_anesthesia?: number | undefined;
2924
+ p80_professional?: number | undefined;
2925
+ p80_facility?: number | undefined;
2926
+ p80_anesthesia?: number | undefined;
2927
+ p80_total?: number | undefined;
2928
+ billed_professional?: number | undefined;
2929
+ billed_facility?: number | undefined;
2930
+ billed_anesthesia?: number | undefined;
2931
+ billed_total?: number | undefined;
2932
+ drg_code?: string | undefined;
2933
+ drg_title?: string | undefined;
2934
+ drg_weight?: number | undefined;
2935
+ calculation?: Record<string, string> | undefined;
2936
+ }[];
2937
+ medicare: {
2938
+ total: number;
2939
+ professional: number;
2940
+ facility: number;
2941
+ source?: string | undefined;
2942
+ anesthesia?: number | undefined;
2943
+ method?: string | undefined;
2944
+ multiplier_source?: string | undefined;
2945
+ wcmsa_facility?: string | undefined;
2946
+ };
2947
+ commercial: {
2948
+ total: number;
2949
+ professional: number;
2950
+ facility: number;
2951
+ source?: string | undefined;
2952
+ anesthesia?: number | undefined;
2953
+ method?: string | undefined;
2954
+ multiplier_source?: string | undefined;
2955
+ wcmsa_facility?: string | undefined;
2956
+ };
2957
+ p80_estimate: {
2958
+ total: number;
2959
+ professional: number;
2960
+ facility: number;
2961
+ source?: string | undefined;
2962
+ anesthesia?: number | undefined;
2963
+ method?: string | undefined;
2964
+ multiplier_source?: string | undefined;
2965
+ wcmsa_facility?: string | undefined;
2966
+ };
2967
+ billed_charges: {
2968
+ total: number;
2969
+ professional: number;
2970
+ facility: number;
2971
+ source?: string | undefined;
2972
+ anesthesia?: number | undefined;
2973
+ method?: string | undefined;
2974
+ multiplier_source?: string | undefined;
2975
+ wcmsa_facility?: string | undefined;
2976
+ };
2977
+ calculation_date: string;
2978
+ data_sources: string[];
2979
+ cbsa?: string | undefined;
2980
+ inflation_adjustment?: {
2981
+ rand_data_year: number;
2982
+ target_year: number;
2983
+ medical_cpi_factor: number;
2984
+ hospital_services_factor: number;
2985
+ } | undefined;
2986
+ commercial_multipliers?: {
2987
+ professional: number;
2988
+ state: string;
2989
+ inpatient_facility: number;
2990
+ outpatient_facility: number;
2991
+ overall: number;
2992
+ } | undefined;
2993
+ };
2994
+ }>;
2995
+ /** projectCost (Medicare-only) output */
2996
+ declare const ProjectCostOutputSchema: z.ZodObject<{
2997
+ result: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2998
+ }, "strip", z.ZodTypeAny, {
2999
+ result: Record<string, unknown>;
3000
+ }, {
3001
+ result: Record<string, unknown>;
3002
+ }>;
3003
+ /** lookupFacilityFee output */
3004
+ declare const LookupFacilityFeeOutputSchema: z.ZodObject<{
3005
+ result: z.ZodRecord<z.ZodString, z.ZodUnknown>;
3006
+ }, "strip", z.ZodTypeAny, {
3007
+ result: Record<string, unknown>;
3008
+ }, {
3009
+ result: Record<string, unknown>;
3010
+ }>;
3011
+ /** lookupMPFS output */
3012
+ declare const LookupMPFSOutputSchema: z.ZodObject<{
3013
+ result: z.ZodOptional<z.ZodObject<{
3014
+ cpt_code: z.ZodString;
3015
+ modifier: z.ZodOptional<z.ZodString>;
3016
+ locality: z.ZodString;
3017
+ work_rvu: z.ZodNumber;
3018
+ nonfacility_pe_rvu: z.ZodNumber;
3019
+ facility_pe_rvu: z.ZodOptional<z.ZodNumber>;
3020
+ mp_rvu: z.ZodNumber;
3021
+ work_gpci: z.ZodNumber;
3022
+ pe_gpci: z.ZodNumber;
3023
+ mp_gpci: z.ZodNumber;
3024
+ conversion_factor: z.ZodNumber;
3025
+ professional_allowable: z.ZodNumber;
3026
+ facility_allowable: z.ZodOptional<z.ZodNumber>;
3027
+ }, "strip", z.ZodTypeAny, {
3028
+ conversion_factor: number;
3029
+ cpt_code: string;
3030
+ locality: string;
3031
+ work_rvu: number;
3032
+ nonfacility_pe_rvu: number;
3033
+ mp_rvu: number;
3034
+ work_gpci: number;
3035
+ pe_gpci: number;
3036
+ mp_gpci: number;
3037
+ professional_allowable: number;
3038
+ modifier?: string | undefined;
3039
+ facility_pe_rvu?: number | undefined;
3040
+ facility_allowable?: number | undefined;
3041
+ }, {
3042
+ conversion_factor: number;
3043
+ cpt_code: string;
3044
+ locality: string;
3045
+ work_rvu: number;
3046
+ nonfacility_pe_rvu: number;
3047
+ mp_rvu: number;
3048
+ work_gpci: number;
3049
+ pe_gpci: number;
3050
+ mp_gpci: number;
3051
+ professional_allowable: number;
3052
+ modifier?: string | undefined;
3053
+ facility_pe_rvu?: number | undefined;
3054
+ facility_allowable?: number | undefined;
3055
+ }>>;
3056
+ }, "strip", z.ZodTypeAny, {
3057
+ result?: {
3058
+ conversion_factor: number;
3059
+ cpt_code: string;
3060
+ locality: string;
3061
+ work_rvu: number;
3062
+ nonfacility_pe_rvu: number;
3063
+ mp_rvu: number;
3064
+ work_gpci: number;
3065
+ pe_gpci: number;
3066
+ mp_gpci: number;
3067
+ professional_allowable: number;
3068
+ modifier?: string | undefined;
3069
+ facility_pe_rvu?: number | undefined;
3070
+ facility_allowable?: number | undefined;
3071
+ } | undefined;
3072
+ }, {
3073
+ result?: {
3074
+ conversion_factor: number;
3075
+ cpt_code: string;
3076
+ locality: string;
3077
+ work_rvu: number;
3078
+ nonfacility_pe_rvu: number;
3079
+ mp_rvu: number;
3080
+ work_gpci: number;
3081
+ pe_gpci: number;
3082
+ mp_gpci: number;
3083
+ professional_allowable: number;
3084
+ modifier?: string | undefined;
3085
+ facility_pe_rvu?: number | undefined;
3086
+ facility_allowable?: number | undefined;
3087
+ } | undefined;
3088
+ }>;
3089
+ /** lookupAnesthesia output */
3090
+ declare const LookupAnesthesiaOutputSchema: z.ZodObject<{
3091
+ result: z.ZodRecord<z.ZodString, z.ZodUnknown>;
3092
+ }, "strip", z.ZodTypeAny, {
3093
+ result: Record<string, unknown>;
3094
+ }, {
3095
+ result: Record<string, unknown>;
3096
+ }>;
3097
+ /** getFacilities output */
3098
+ declare const GetFacilitiesOutputSchema: z.ZodObject<{
3099
+ result: z.ZodRecord<z.ZodString, z.ZodUnknown>;
3100
+ }, "strip", z.ZodTypeAny, {
3101
+ result: Record<string, unknown>;
3102
+ }, {
3103
+ result: Record<string, unknown>;
3104
+ }>;
3105
+ /** cost health output */
3106
+ declare const CostHealthOutputSchema: z.ZodObject<{
3107
+ status: z.ZodEnum<["healthy", "degraded"]>;
3108
+ engine: z.ZodOptional<z.ZodString>;
3109
+ version: z.ZodOptional<z.ZodString>;
3110
+ }, "strip", z.ZodTypeAny, {
3111
+ status: "healthy" | "degraded";
3112
+ engine?: string | undefined;
3113
+ version?: string | undefined;
3114
+ }, {
3115
+ status: "healthy" | "degraded";
3116
+ engine?: string | undefined;
3117
+ version?: string | undefined;
3118
+ }>;
3119
+ /** cost stats output */
3120
+ declare const CostGetStatsOutputSchema: z.ZodObject<{
3121
+ stats: z.ZodRecord<z.ZodString, z.ZodUnknown>;
3122
+ }, "strip", z.ZodTypeAny, {
3123
+ stats: Record<string, unknown>;
3124
+ }, {
3125
+ stats: Record<string, unknown>;
3126
+ }>;
3127
+ type TierBreakdown = z.infer<typeof TierBreakdownSchema>;
3128
+ type TieredLineItem = z.infer<typeof TieredLineItemSchema>;
3129
+ type MPFSRate = z.infer<typeof MPFSRateSchema>;
3130
+ type CostProjectTieredOutput = z.infer<typeof ProjectCostTieredOutputSchema>;
3131
+ type CostProjectOutput = z.infer<typeof ProjectCostOutputSchema>;
3132
+ type CostLookupFacilityFeeOutput = z.infer<typeof LookupFacilityFeeOutputSchema>;
3133
+ type CostLookupMPFSOutput = z.infer<typeof LookupMPFSOutputSchema>;
3134
+ type CostLookupAnesthesiaOutput = z.infer<typeof LookupAnesthesiaOutputSchema>;
3135
+ type CostGetFacilitiesOutput = z.infer<typeof GetFacilitiesOutputSchema>;
3136
+ type CostHealthOutput = z.infer<typeof CostHealthOutputSchema>;
3137
+ type CostGetStatsOutput = z.infer<typeof CostGetStatsOutputSchema>;
3138
+
2243
3139
  /** Package info nested inside a product */
2244
3140
  declare const NdcPackageSchema: z.ZodObject<{
2245
3141
  package_ndc: z.ZodString;
@@ -4056,6 +4952,127 @@ declare class NdcCategory {
4056
4952
  getStats(): Promise<NdcGetStatsOutput>;
4057
4953
  health(): Promise<NdcHealthOutput>;
4058
4954
  }
4955
+ declare const CostProjectTieredInputSchema: z.ZodObject<{
4956
+ cpt_codes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4957
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
4958
+ cpt_code: z.ZodString;
4959
+ modifier: z.ZodOptional<z.ZodString>;
4960
+ quantity: z.ZodOptional<z.ZodNumber>;
4961
+ }, "strip", z.ZodTypeAny, {
4962
+ cpt_code: string;
4963
+ modifier?: string | undefined;
4964
+ quantity?: number | undefined;
4965
+ }, {
4966
+ cpt_code: string;
4967
+ modifier?: string | undefined;
4968
+ quantity?: number | undefined;
4969
+ }>, "many">>;
4970
+ zip_code: z.ZodString;
4971
+ include_anesthesia: z.ZodOptional<z.ZodBoolean>;
4972
+ provider_ccn: z.ZodOptional<z.ZodString>;
4973
+ }, "strip", z.ZodTypeAny, {
4974
+ zip_code: string;
4975
+ cpt_codes?: string[] | undefined;
4976
+ items?: {
4977
+ cpt_code: string;
4978
+ modifier?: string | undefined;
4979
+ quantity?: number | undefined;
4980
+ }[] | undefined;
4981
+ include_anesthesia?: boolean | undefined;
4982
+ provider_ccn?: string | undefined;
4983
+ }, {
4984
+ zip_code: string;
4985
+ cpt_codes?: string[] | undefined;
4986
+ items?: {
4987
+ cpt_code: string;
4988
+ modifier?: string | undefined;
4989
+ quantity?: number | undefined;
4990
+ }[] | undefined;
4991
+ include_anesthesia?: boolean | undefined;
4992
+ provider_ccn?: string | undefined;
4993
+ }>;
4994
+ declare const CostProjectInputSchema: z.ZodObject<{
4995
+ cpt_codes: z.ZodArray<z.ZodString, "many">;
4996
+ zip_code: z.ZodString;
4997
+ }, "strip", z.ZodTypeAny, {
4998
+ cpt_codes: string[];
4999
+ zip_code: string;
5000
+ }, {
5001
+ cpt_codes: string[];
5002
+ zip_code: string;
5003
+ }>;
5004
+ declare const CostLookupFacilityFeeInputSchema: z.ZodObject<{
5005
+ cpt_code: z.ZodString;
5006
+ zip_code: z.ZodString;
5007
+ }, "strip", z.ZodTypeAny, {
5008
+ cpt_code: string;
5009
+ zip_code: string;
5010
+ }, {
5011
+ cpt_code: string;
5012
+ zip_code: string;
5013
+ }>;
5014
+ declare const CostLookupMPFSInputSchema: z.ZodObject<{
5015
+ cpt_code: z.ZodString;
5016
+ zip_code: z.ZodString;
5017
+ modifier: z.ZodOptional<z.ZodString>;
5018
+ }, "strip", z.ZodTypeAny, {
5019
+ cpt_code: string;
5020
+ zip_code: string;
5021
+ modifier?: string | undefined;
5022
+ }, {
5023
+ cpt_code: string;
5024
+ zip_code: string;
5025
+ modifier?: string | undefined;
5026
+ }>;
5027
+ declare const CostLookupAnesthesiaInputSchema: z.ZodObject<{
5028
+ cpt_code: z.ZodString;
5029
+ zip_code: z.ZodString;
5030
+ }, "strip", z.ZodTypeAny, {
5031
+ cpt_code: string;
5032
+ zip_code: string;
5033
+ }, {
5034
+ cpt_code: string;
5035
+ zip_code: string;
5036
+ }>;
5037
+ declare const CostGetFacilitiesInputSchema: z.ZodObject<{
5038
+ zip_code: z.ZodOptional<z.ZodString>;
5039
+ state: z.ZodOptional<z.ZodString>;
5040
+ }, "strip", z.ZodTypeAny, {
5041
+ state?: string | undefined;
5042
+ zip_code?: string | undefined;
5043
+ }, {
5044
+ state?: string | undefined;
5045
+ zip_code?: string | undefined;
5046
+ }>;
5047
+ type CostProjectTieredInput = z.infer<typeof CostProjectTieredInputSchema>;
5048
+ type CostProjectInput = z.infer<typeof CostProjectInputSchema>;
5049
+ type CostLookupFacilityFeeInput = z.infer<typeof CostLookupFacilityFeeInputSchema>;
5050
+ type CostLookupMPFSInput = z.infer<typeof CostLookupMPFSInputSchema>;
5051
+ type CostLookupAnesthesiaInput = z.infer<typeof CostLookupAnesthesiaInputSchema>;
5052
+ type CostGetFacilitiesInput = z.infer<typeof CostGetFacilitiesInputSchema>;
5053
+ /**
5054
+ * Cost Projection engine — 4-tier surgical/procedural cost estimates.
5055
+ * - projectCostTiered(): Full 4-tier projection (Medicare, Commercial, 80th %ile, Billed)
5056
+ * - projectCost(): Medicare-only cost projection
5057
+ * - lookupFacilityFee(): DRG-based facility fee
5058
+ * - lookupMPFS(): Medicare Physician Fee Schedule rate
5059
+ * - lookupAnesthesia(): Anesthesia cost breakdown
5060
+ * - getFacilities(): WCMSA designated medical centers
5061
+ * - getStats(): Database statistics
5062
+ * - health(): Engine health check
5063
+ */
5064
+ declare class CostCategory {
5065
+ private request;
5066
+ constructor(request: RequestFunction$1);
5067
+ projectCostTiered(input: CostProjectTieredInput): Promise<CostProjectTieredOutput>;
5068
+ projectCost(input: CostProjectInput): Promise<CostProjectOutput>;
5069
+ lookupFacilityFee(input: CostLookupFacilityFeeInput): Promise<CostLookupFacilityFeeOutput>;
5070
+ lookupMPFS(input: CostLookupMPFSInput): Promise<CostLookupMPFSOutput>;
5071
+ lookupAnesthesia(input: CostLookupAnesthesiaInput): Promise<CostLookupAnesthesiaOutput>;
5072
+ getFacilities(input?: CostGetFacilitiesInput): Promise<CostGetFacilitiesOutput>;
5073
+ getStats(): Promise<CostGetStatsOutput>;
5074
+ health(): Promise<CostHealthOutput>;
5075
+ }
4059
5076
 
4060
5077
  declare const DiagnosisToProceduresInputSchema: z.ZodObject<{
4061
5078
  snomed_id: z.ZodOptional<z.ZodString>;
@@ -4240,6 +5257,11 @@ declare class SystemCategory {
4240
5257
  * // Life expectancy (CDC/CMS WCMSA)
4241
5258
  * const le = await client.lifeExpectancy.lookupByAge({ age: 65 });
4242
5259
  *
5260
+ * // Cost projection (4-tier: Medicare, Commercial, 80th %ile, Billed)
5261
+ * const cost = await client.cost.projectCostTiered({
5262
+ * cpt_codes: ["27447"], zip_code: "10001", include_anesthesia: true
5263
+ * });
5264
+ *
4243
5265
  * // Orchestrator endpoints
4244
5266
  * const coverage = await client.clinical.checkCoverage({ cpt_code: "99213" });
4245
5267
  * const procedures = await client.clinical.getProceduresForDiagnosis({ icd10_code: "E11.9" });
@@ -4269,6 +5291,8 @@ declare class SequoiaCodesClient {
4269
5291
  readonly ndc: NdcCategory;
4270
5292
  /** Life Expectancy actuarial tables (CDC/CMS WCMSA standard) */
4271
5293
  readonly lifeExpectancy: LifeExpectancyCategory;
5294
+ /** Cost Projection engine — 4-tier surgical/procedural cost estimates (CMS PFS/IPPS + RAND + BLS CPI) */
5295
+ readonly cost: CostCategory;
4272
5296
  /** LCD (Local Coverage Determination) guidelines */
4273
5297
  readonly lcd: LcdCategory;
4274
5298
  /** NCD (National Coverage Determination) guidelines */
@@ -4295,4 +5319,4 @@ declare class CodesApiError extends Error {
4295
5319
  };
4296
5320
  }
4297
5321
 
4298
- export { type ApiResponse, type CPTCode, CodesApiError, type CoverageCheckInput, type CoverageCheckOutput, CptCategory, type CptGetCodeOutput, type CptGetCostInput, type CptGetCostOutput, type CptIdentifyCodeInput, type CptLinkIcd10Input, type CptLinkIcd10Output, type CptSearchCodeInput, type CptSearchOutput, type DiagnosisToProceduresInput, type DiagnosisToProceduresOutput, type EngineStatus, type GetCategoriesOutput, type GetResultInput, type GetResultOutput, HcpcsCategory, type HcpcsGetCostInput, type HcpcsIdentifyCodeInput, type HcpcsSearchCodeInput, type HealthOutput, Icd10Category, type Icd10Chapter, type Icd10Code, type Icd10GetChaptersOutput, type Icd10IdentifyCodeInput, type Icd10LookupOutput, type Icd10Mapping, type Icd10SearchCodeInput, type Icd10SearchOutput, type LEGetStatsOutput, type LEGetTableInput, type LEGetTableOutput, type LEGetVersionOutput, type LEHealthOutput, type LELookupBatchInput, type LELookupBatchOutput, type LELookupByAgeInput, type LELookupByAgeOutput, type VersionInfo as LEVersionInfo, LcdCategory, type LcdGetOutput, type LcdIdentifyGuidelineInput, type LcdSearchGuidelinesInput, type LcdSearchOutput, LifeExpectancyCategory, type LifeExpectancyResult, LoincCategory, type LoincCode, type LoincGetPanelMembersInput, type LoincGetPanelMembersOutput, type LoincIdentifyCodeInput, type LoincLookupOutput, type LoincSearchCodeInput, type LoincSearchOutput, NcdCategory, type NcdGetOutput, type NcdIdentifyGuidelineInput, type NcdSearchGuidelinesInput, type NcdSearchOutput, type NdcBatchLookupInput, type NdcBatchLookupOutput, NdcCategory, type NdcCrossRef, type NdcCrossRefInput, type NdcCrossRefOutput, type NdcFuzzySearchInput, type NdcFuzzySearchOutput, type NdcGetLabelerInput, type NdcGetLabelerOutput, type NdcGetPackagesInput, type NdcGetPackagesOutput, type NdcGetProductInput, type NdcGetProductOutput, type NdcGetStatsOutput, type NdcHealthOutput, type NdcLookupInput, type NdcLookupOutput, type NdcPackage, type NdcProduct, type NdcResult, type NdcSearchInput, type NdcSearchOutput, type PanelInfo, type PanelMember, RxnormCategory, type RxnormDrug, type RxnormGetIngredientsInput, type RxnormGetIngredientsOutput, type RxnormIdentifyCodeInput, type RxnormLookupNdcOutput, type RxnormLookupRxcuiOutput, type RxnormSearchCodeInput, type RxnormSearchOutput, SequoiaCodesClient, type SequoiaCodesClientConfig, SnomedCategory, type SnomedConcept, type SnomedIdentifyCodeInput, type SnomedLookupOutput, type SnomedRelationship, type SnomedSearchCodeInput, type SnomedSearchOutput };
5322
+ export { type ApiResponse, type CPTCode, CodesApiError, CostCategory, type CostGetFacilitiesInput, type CostGetFacilitiesOutput, type CostGetStatsOutput, type CostHealthOutput, type CostLookupAnesthesiaInput, type CostLookupAnesthesiaOutput, type CostLookupFacilityFeeInput, type CostLookupFacilityFeeOutput, type CostLookupMPFSInput, type CostLookupMPFSOutput, type CostProjectInput, type CostProjectOutput, type CostProjectTieredInput, type CostProjectTieredOutput, type CoverageCheckInput, type CoverageCheckOutput, CptCategory, type CptGetCodeOutput, type CptGetCostInput, type CptGetCostOutput, type CptIdentifyCodeInput, type CptLinkIcd10Input, type CptLinkIcd10Output, type CptSearchCodeInput, type CptSearchOutput, type DiagnosisToProceduresInput, type DiagnosisToProceduresOutput, type EngineStatus, type GetCategoriesOutput, type GetResultInput, type GetResultOutput, HcpcsCategory, type HcpcsGetCostInput, type HcpcsIdentifyCodeInput, type HcpcsSearchCodeInput, type HealthOutput, Icd10Category, type Icd10Chapter, type Icd10Code, type Icd10GetChaptersOutput, type Icd10IdentifyCodeInput, type Icd10LookupOutput, type Icd10Mapping, type Icd10SearchCodeInput, type Icd10SearchOutput, type LEGetStatsOutput, type LEGetTableInput, type LEGetTableOutput, type LEGetVersionOutput, type LEHealthOutput, type LELookupBatchInput, type LELookupBatchOutput, type LELookupByAgeInput, type LELookupByAgeOutput, type VersionInfo as LEVersionInfo, LcdCategory, type LcdGetOutput, type LcdIdentifyGuidelineInput, type LcdSearchGuidelinesInput, type LcdSearchOutput, LifeExpectancyCategory, type LifeExpectancyResult, LoincCategory, type LoincCode, type LoincGetPanelMembersInput, type LoincGetPanelMembersOutput, type LoincIdentifyCodeInput, type LoincLookupOutput, type LoincSearchCodeInput, type LoincSearchOutput, type MPFSRate, NcdCategory, type NcdGetOutput, type NcdIdentifyGuidelineInput, type NcdSearchGuidelinesInput, type NcdSearchOutput, type NdcBatchLookupInput, type NdcBatchLookupOutput, NdcCategory, type NdcCrossRef, type NdcCrossRefInput, type NdcCrossRefOutput, type NdcFuzzySearchInput, type NdcFuzzySearchOutput, type NdcGetLabelerInput, type NdcGetLabelerOutput, type NdcGetPackagesInput, type NdcGetPackagesOutput, type NdcGetProductInput, type NdcGetProductOutput, type NdcGetStatsOutput, type NdcHealthOutput, type NdcLookupInput, type NdcLookupOutput, type NdcPackage, type NdcProduct, type NdcResult, type NdcSearchInput, type NdcSearchOutput, type PanelInfo, type PanelMember, RxnormCategory, type RxnormDrug, type RxnormGetIngredientsInput, type RxnormGetIngredientsOutput, type RxnormIdentifyCodeInput, type RxnormLookupNdcOutput, type RxnormLookupRxcuiOutput, type RxnormSearchCodeInput, type RxnormSearchOutput, SequoiaCodesClient, type SequoiaCodesClientConfig, SnomedCategory, type SnomedConcept, type SnomedIdentifyCodeInput, type SnomedLookupOutput, type SnomedRelationship, type SnomedSearchCodeInput, type SnomedSearchOutput, type TierBreakdown, type TieredLineItem };