@metriport/shared 0.32.1 → 0.32.2

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.
Files changed (59) hide show
  1. package/dist/common/date.d.ts +1 -0
  2. package/dist/common/date.d.ts.map +1 -1
  3. package/dist/common/date.js +5 -1
  4. package/dist/common/date.js.map +1 -1
  5. package/dist/domain/patient/patient-import/schemas.js +1 -1
  6. package/dist/domain/patient/patient-import/schemas.js.map +1 -1
  7. package/dist/external/hl7v2/constants.d.ts +1 -1
  8. package/dist/external/hl7v2/constants.d.ts.map +1 -1
  9. package/dist/external/hl7v2/constants.js +2 -2
  10. package/dist/external/hl7v2/constants.js.map +1 -1
  11. package/dist/interface/external/ehr/canvas/cx-mapping.d.ts +3 -0
  12. package/dist/interface/external/ehr/canvas/cx-mapping.d.ts.map +1 -1
  13. package/dist/interface/external/ehr/canvas/cx-mapping.js +1 -0
  14. package/dist/interface/external/ehr/canvas/cx-mapping.js.map +1 -1
  15. package/dist/interface/external/ehr/canvas/external-event.d.ts +67 -0
  16. package/dist/interface/external/ehr/canvas/external-event.d.ts.map +1 -0
  17. package/dist/interface/external/ehr/canvas/external-event.js +48 -0
  18. package/dist/interface/external/ehr/canvas/external-event.js.map +1 -0
  19. package/dist/interface/external/ehr/canvas/index.d.ts +1 -0
  20. package/dist/interface/external/ehr/canvas/index.d.ts.map +1 -1
  21. package/dist/interface/external/ehr/canvas/index.js +1 -0
  22. package/dist/interface/external/ehr/canvas/index.js.map +1 -1
  23. package/dist/interface/external/ehr/canvas/jwt-token.d.ts +15 -0
  24. package/dist/interface/external/ehr/canvas/jwt-token.d.ts.map +1 -1
  25. package/dist/interface/external/ehr/canvas/jwt-token.js +7 -1
  26. package/dist/interface/external/ehr/canvas/jwt-token.js.map +1 -1
  27. package/dist/interface/external/ehr/healthie/allergy.d.ts +18 -18
  28. package/dist/interface/external/ehr/source.d.ts +2 -0
  29. package/dist/interface/external/ehr/source.d.ts.map +1 -1
  30. package/dist/interface/external/ehr/source.js +6 -1
  31. package/dist/interface/external/ehr/source.js.map +1 -1
  32. package/dist/medical/fhir/coding.d.ts +11 -0
  33. package/dist/medical/fhir/coding.d.ts.map +1 -1
  34. package/dist/medical/fhir/coding.js +27 -1
  35. package/dist/medical/fhir/coding.js.map +1 -1
  36. package/dist/medical/fhir/imaging-detection.d.ts +706 -0
  37. package/dist/medical/fhir/imaging-detection.d.ts.map +1 -0
  38. package/dist/medical/fhir/imaging-detection.js +361 -0
  39. package/dist/medical/fhir/imaging-detection.js.map +1 -0
  40. package/dist/medical/fhir/loinc/loinc-class-display-lookup.json +1730 -0
  41. package/dist/medical/fhir/loinc/loinc-code-class-lookup.json +432994 -0
  42. package/dist/medical/fhir/procedure-type.d.ts +1316 -0
  43. package/dist/medical/fhir/procedure-type.d.ts.map +1 -0
  44. package/dist/medical/fhir/procedure-type.js +263 -0
  45. package/dist/medical/fhir/procedure-type.js.map +1 -0
  46. package/dist/medical/index.d.ts +1 -0
  47. package/dist/medical/index.d.ts.map +1 -1
  48. package/dist/medical/index.js +1 -0
  49. package/dist/medical/index.js.map +1 -1
  50. package/dist/medical/webhook/webhook-request.d.ts +56 -56
  51. package/dist/util/index.d.ts +1 -0
  52. package/dist/util/index.d.ts.map +1 -1
  53. package/dist/util/index.js +1 -0
  54. package/dist/util/index.js.map +1 -1
  55. package/dist/util/sqs-delay-from-uuid.d.ts +11 -0
  56. package/dist/util/sqs-delay-from-uuid.d.ts.map +1 -0
  57. package/dist/util/sqs-delay-from-uuid.js +21 -0
  58. package/dist/util/sqs-delay-from-uuid.js.map +1 -0
  59. package/package.json +2 -2
@@ -0,0 +1,1316 @@
1
+ import { Procedure } from "@medplum/fhirtypes";
2
+ /**
3
+ * CPT code ranges for all procedure types
4
+ * modality: https://www.dicomlibrary.com/dicom/modality/
5
+ */
6
+ export declare const PROCEDURE_TYPE_RANGES: readonly [{
7
+ readonly start: 70010;
8
+ readonly end: 70390;
9
+ readonly type: "X-Ray";
10
+ readonly category: "Head/Neck X-Ray";
11
+ readonly modality: "DX";
12
+ }, {
13
+ readonly start: 71010;
14
+ readonly end: 71035;
15
+ readonly type: "X-Ray";
16
+ readonly category: "Chest X-Ray";
17
+ readonly modality: "DX";
18
+ }, {
19
+ readonly start: 72010;
20
+ readonly end: 72120;
21
+ readonly type: "X-Ray";
22
+ readonly category: "Spine X-Ray";
23
+ readonly modality: "DX";
24
+ }, {
25
+ readonly start: 73000;
26
+ readonly end: 73140;
27
+ readonly type: "X-Ray";
28
+ readonly category: "Upper Extremity X-Ray";
29
+ readonly modality: "DX";
30
+ }, {
31
+ readonly start: 73500;
32
+ readonly end: 73660;
33
+ readonly type: "X-Ray";
34
+ readonly category: "Lower Extremity X-Ray";
35
+ readonly modality: "DX";
36
+ }, {
37
+ readonly start: 74018;
38
+ readonly end: 74022;
39
+ readonly type: "X-Ray";
40
+ readonly category: "Abdomen X-Ray";
41
+ readonly modality: "DX";
42
+ }, {
43
+ readonly start: 70450;
44
+ readonly end: 70498;
45
+ readonly type: "CT";
46
+ readonly category: "Head/Neck CT";
47
+ readonly modality: "CT";
48
+ }, {
49
+ readonly start: 71250;
50
+ readonly end: 71275;
51
+ readonly type: "CT";
52
+ readonly category: "Chest CT";
53
+ readonly modality: "CT";
54
+ }, {
55
+ readonly start: 72125;
56
+ readonly end: 72133;
57
+ readonly type: "CT";
58
+ readonly category: "Spine CT";
59
+ readonly modality: "CT";
60
+ }, {
61
+ readonly start: 73200;
62
+ readonly end: 73225;
63
+ readonly type: "CT";
64
+ readonly category: "Upper Extremity CT";
65
+ readonly modality: "CT";
66
+ }, {
67
+ readonly start: 73700;
68
+ readonly end: 73725;
69
+ readonly type: "CT";
70
+ readonly category: "Lower Extremity CT";
71
+ readonly modality: "CT";
72
+ }, {
73
+ readonly start: 74150;
74
+ readonly end: 74178;
75
+ readonly type: "CT";
76
+ readonly category: "Abdomen/Pelvis CT";
77
+ readonly modality: "CT";
78
+ }, {
79
+ readonly start: 70540;
80
+ readonly end: 70559;
81
+ readonly type: "MRI";
82
+ readonly category: "Head/Neck MRI";
83
+ readonly modality: "MR";
84
+ }, {
85
+ readonly start: 71550;
86
+ readonly end: 71555;
87
+ readonly type: "MRI";
88
+ readonly category: "Chest MRI";
89
+ readonly modality: "MR";
90
+ }, {
91
+ readonly start: 72141;
92
+ readonly end: 72159;
93
+ readonly type: "MRI";
94
+ readonly category: "Spine MRI";
95
+ readonly modality: "MR";
96
+ }, {
97
+ readonly start: 73218;
98
+ readonly end: 73223;
99
+ readonly type: "MRI";
100
+ readonly category: "Upper Extremity MRI";
101
+ readonly modality: "MR";
102
+ }, {
103
+ readonly start: 73718;
104
+ readonly end: 73723;
105
+ readonly type: "MRI";
106
+ readonly category: "Lower Extremity MRI";
107
+ readonly modality: "MR";
108
+ }, {
109
+ readonly start: 74181;
110
+ readonly end: 74185;
111
+ readonly type: "MRI";
112
+ readonly category: "Abdomen/Pelvis MRI";
113
+ readonly modality: "MR";
114
+ }, {
115
+ readonly start: 76506;
116
+ readonly end: 76999;
117
+ readonly type: "Ultrasound";
118
+ readonly category: "General Ultrasound";
119
+ readonly modality: "US";
120
+ }, {
121
+ readonly start: 93303;
122
+ readonly end: 93355;
123
+ readonly type: "Ultrasound";
124
+ readonly category: "Echocardiography";
125
+ readonly modality: "US";
126
+ }, {
127
+ readonly start: 93880;
128
+ readonly end: 93998;
129
+ readonly type: "Ultrasound";
130
+ readonly category: "Vascular Ultrasound";
131
+ readonly modality: "US";
132
+ }, {
133
+ readonly start: 77046;
134
+ readonly end: 77067;
135
+ readonly type: "Mammography";
136
+ readonly category: "Breast Imaging";
137
+ readonly modality: "MG";
138
+ }, {
139
+ readonly start: 77078;
140
+ readonly end: 77086;
141
+ readonly type: "Bone Density";
142
+ readonly category: "Bone Density";
143
+ readonly modality: "BMD";
144
+ }, {
145
+ readonly start: 78012;
146
+ readonly end: 78099;
147
+ readonly type: "Nuclear Medicine";
148
+ readonly category: "Bone Scan";
149
+ readonly modality: "NM";
150
+ }, {
151
+ readonly start: 78102;
152
+ readonly end: 78199;
153
+ readonly type: "Nuclear Medicine";
154
+ readonly category: "Nuclear Medicine - GI";
155
+ readonly modality: "NM";
156
+ }, {
157
+ readonly start: 78201;
158
+ readonly end: 78299;
159
+ readonly type: "Nuclear Medicine";
160
+ readonly category: "Nuclear Medicine - GU";
161
+ readonly modality: "NM";
162
+ }, {
163
+ readonly start: 78300;
164
+ readonly end: 78399;
165
+ readonly type: "Nuclear Medicine";
166
+ readonly category: "Nuclear Medicine - Musculoskeletal";
167
+ readonly modality: "NM";
168
+ }, {
169
+ readonly start: 78608;
170
+ readonly end: 78650;
171
+ readonly type: "Nuclear Medicine";
172
+ readonly category: "Nuclear Medicine - Cardiac";
173
+ readonly modality: "NM";
174
+ }, {
175
+ readonly start: 78414;
176
+ readonly end: 78499;
177
+ readonly type: "PET";
178
+ readonly category: "PET Scan";
179
+ readonly modality: "PT";
180
+ }, {
181
+ readonly start: 78800;
182
+ readonly end: 78899;
183
+ readonly type: "PET";
184
+ readonly category: "PET - Tumor Imaging";
185
+ readonly modality: "PT";
186
+ }, {
187
+ readonly start: 75600;
188
+ readonly end: 75989;
189
+ readonly type: "Angiography";
190
+ readonly category: "Vascular Imaging";
191
+ readonly modality: "XA";
192
+ }, {
193
+ readonly start: 36200;
194
+ readonly end: 36299;
195
+ readonly type: "Vascular Injection";
196
+ readonly category: "Vascular Injection";
197
+ readonly modality: "XA";
198
+ }, {
199
+ readonly start: 93451;
200
+ readonly end: 93533;
201
+ readonly type: "Cardiac Catheterization";
202
+ readonly category: "Cardiac Imaging";
203
+ readonly modality: "XA";
204
+ }, {
205
+ readonly start: 92133;
206
+ readonly end: 92136;
207
+ readonly type: "Ophthalmic Imaging";
208
+ readonly category: "Ophthalmic OCT";
209
+ readonly modality: "OCT";
210
+ }, {
211
+ readonly start: 92225;
212
+ readonly end: 92287;
213
+ readonly type: "Ophthalmic Imaging";
214
+ readonly category: "Ophthalmic Imaging";
215
+ readonly modality: "OP";
216
+ }, {
217
+ readonly start: 93000;
218
+ readonly end: 93010;
219
+ readonly type: "ECG";
220
+ readonly category: "Electrocardiography";
221
+ readonly modality: "ECG";
222
+ }, {
223
+ readonly start: 93224;
224
+ readonly end: 93278;
225
+ readonly type: "Cardiac Monitor";
226
+ readonly category: "Ambulatory ECG";
227
+ readonly modality: "ECG";
228
+ }, {
229
+ readonly start: 93561;
230
+ readonly end: 93572;
231
+ readonly type: "Cardiac EP Study";
232
+ readonly category: "Electrophysiology";
233
+ readonly modality: "EPS";
234
+ }, {
235
+ readonly start: 43200;
236
+ readonly end: 43273;
237
+ readonly type: "Endoscopy";
238
+ readonly category: "Upper GI Endoscopy";
239
+ readonly modality: "ES";
240
+ }, {
241
+ readonly start: 44360;
242
+ readonly end: 44408;
243
+ readonly type: "Endoscopy";
244
+ readonly category: "Small Bowel Endoscopy";
245
+ readonly modality: "ES";
246
+ }, {
247
+ readonly start: 45300;
248
+ readonly end: 45398;
249
+ readonly type: "Endoscopy";
250
+ readonly category: "Colonoscopy";
251
+ readonly modality: "ES";
252
+ }, {
253
+ readonly start: 31231;
254
+ readonly end: 31298;
255
+ readonly type: "Endoscopy";
256
+ readonly category: "Nasal/Sinus Endoscopy";
257
+ readonly modality: "ES";
258
+ }, {
259
+ readonly start: 43235;
260
+ readonly end: 43259;
261
+ readonly type: "Endoscopy";
262
+ readonly category: "Esophagogastroduodenoscopy";
263
+ readonly modality: "ES";
264
+ }, {
265
+ readonly start: 10021;
266
+ readonly end: 10022;
267
+ readonly type: "Surgery";
268
+ readonly category: "Fine Needle Aspiration";
269
+ }, {
270
+ readonly start: 10030;
271
+ readonly end: 10036;
272
+ readonly type: "Surgery";
273
+ readonly category: "Image-guided Procedures";
274
+ }, {
275
+ readonly start: 11000;
276
+ readonly end: 11047;
277
+ readonly type: "Surgery";
278
+ readonly category: "Debridement";
279
+ }, {
280
+ readonly start: 11055;
281
+ readonly end: 11057;
282
+ readonly type: "Surgery";
283
+ readonly category: "Paring/Cutting";
284
+ }, {
285
+ readonly start: 11100;
286
+ readonly end: 11107;
287
+ readonly type: "Surgery";
288
+ readonly category: "Skin Biopsy";
289
+ }, {
290
+ readonly start: 11200;
291
+ readonly end: 11201;
292
+ readonly type: "Surgery";
293
+ readonly category: "Skin Tag Removal";
294
+ }, {
295
+ readonly start: 11400;
296
+ readonly end: 11471;
297
+ readonly type: "Surgery";
298
+ readonly category: "Excision - Benign Lesions";
299
+ }, {
300
+ readonly start: 11600;
301
+ readonly end: 11646;
302
+ readonly type: "Surgery";
303
+ readonly category: "Excision - Malignant Lesions";
304
+ }, {
305
+ readonly start: 12001;
306
+ readonly end: 12057;
307
+ readonly type: "Surgery";
308
+ readonly category: "Simple Repair";
309
+ }, {
310
+ readonly start: 13100;
311
+ readonly end: 13160;
312
+ readonly type: "Surgery";
313
+ readonly category: "Complex Repair";
314
+ }, {
315
+ readonly start: 20200;
316
+ readonly end: 20999;
317
+ readonly type: "Surgery";
318
+ readonly category: "Musculoskeletal";
319
+ }, {
320
+ readonly start: 21010;
321
+ readonly end: 21499;
322
+ readonly type: "Surgery";
323
+ readonly category: "Head/Skull Surgery";
324
+ }, {
325
+ readonly start: 22010;
326
+ readonly end: 22899;
327
+ readonly type: "Surgery";
328
+ readonly category: "Spine Surgery";
329
+ }, {
330
+ readonly start: 23000;
331
+ readonly end: 23929;
332
+ readonly type: "Surgery";
333
+ readonly category: "Shoulder Surgery";
334
+ }, {
335
+ readonly start: 24000;
336
+ readonly end: 24999;
337
+ readonly type: "Surgery";
338
+ readonly category: "Elbow/Arm Surgery";
339
+ }, {
340
+ readonly start: 25000;
341
+ readonly end: 25999;
342
+ readonly type: "Surgery";
343
+ readonly category: "Forearm/Wrist Surgery";
344
+ }, {
345
+ readonly start: 26010;
346
+ readonly end: 26989;
347
+ readonly type: "Surgery";
348
+ readonly category: "Hand Surgery";
349
+ }, {
350
+ readonly start: 27000;
351
+ readonly end: 27299;
352
+ readonly type: "Surgery";
353
+ readonly category: "Hip/Pelvis Surgery";
354
+ }, {
355
+ readonly start: 27301;
356
+ readonly end: 27599;
357
+ readonly type: "Surgery";
358
+ readonly category: "Thigh/Knee Surgery";
359
+ }, {
360
+ readonly start: 27600;
361
+ readonly end: 27899;
362
+ readonly type: "Surgery";
363
+ readonly category: "Leg/Ankle Surgery";
364
+ }, {
365
+ readonly start: 28001;
366
+ readonly end: 28899;
367
+ readonly type: "Surgery";
368
+ readonly category: "Foot Surgery";
369
+ }, {
370
+ readonly start: 30000;
371
+ readonly end: 30999;
372
+ readonly type: "Surgery";
373
+ readonly category: "Nose Surgery";
374
+ }, {
375
+ readonly start: 31000;
376
+ readonly end: 31899;
377
+ readonly type: "Surgery";
378
+ readonly category: "Larynx Surgery";
379
+ }, {
380
+ readonly start: 32035;
381
+ readonly end: 32999;
382
+ readonly type: "Surgery";
383
+ readonly category: "Chest/Lung Surgery";
384
+ }, {
385
+ readonly start: 33010;
386
+ readonly end: 33999;
387
+ readonly type: "Surgery";
388
+ readonly category: "Heart Surgery";
389
+ }, {
390
+ readonly start: 34001;
391
+ readonly end: 34834;
392
+ readonly type: "Surgery";
393
+ readonly category: "Vascular Surgery";
394
+ }, {
395
+ readonly start: 40490;
396
+ readonly end: 40799;
397
+ readonly type: "Surgery";
398
+ readonly category: "Mouth Surgery";
399
+ }, {
400
+ readonly start: 41000;
401
+ readonly end: 41599;
402
+ readonly type: "Surgery";
403
+ readonly category: "Tongue/Floor of Mouth Surgery";
404
+ }, {
405
+ readonly start: 42000;
406
+ readonly end: 42999;
407
+ readonly type: "Surgery";
408
+ readonly category: "Throat Surgery";
409
+ }, {
410
+ readonly start: 43020;
411
+ readonly end: 43499;
412
+ readonly type: "Surgery";
413
+ readonly category: "Esophagus Surgery";
414
+ }, {
415
+ readonly start: 43500;
416
+ readonly end: 43999;
417
+ readonly type: "Surgery";
418
+ readonly category: "Stomach Surgery";
419
+ }, {
420
+ readonly start: 44005;
421
+ readonly end: 44799;
422
+ readonly type: "Surgery";
423
+ readonly category: "Intestine Surgery";
424
+ }, {
425
+ readonly start: 45000;
426
+ readonly end: 45999;
427
+ readonly type: "Surgery";
428
+ readonly category: "Rectum Surgery";
429
+ }, {
430
+ readonly start: 46020;
431
+ readonly end: 46999;
432
+ readonly type: "Surgery";
433
+ readonly category: "Anus Surgery";
434
+ }, {
435
+ readonly start: 47000;
436
+ readonly end: 47399;
437
+ readonly type: "Surgery";
438
+ readonly category: "Liver Surgery";
439
+ }, {
440
+ readonly start: 47400;
441
+ readonly end: 47999;
442
+ readonly type: "Surgery";
443
+ readonly category: "Biliary Surgery";
444
+ }, {
445
+ readonly start: 48000;
446
+ readonly end: 48999;
447
+ readonly type: "Surgery";
448
+ readonly category: "Pancreas Surgery";
449
+ }, {
450
+ readonly start: 49000;
451
+ readonly end: 49999;
452
+ readonly type: "Surgery";
453
+ readonly category: "Abdomen Surgery";
454
+ }, {
455
+ readonly start: 50010;
456
+ readonly end: 50593;
457
+ readonly type: "Surgery";
458
+ readonly category: "Kidney Surgery";
459
+ }, {
460
+ readonly start: 50600;
461
+ readonly end: 50980;
462
+ readonly type: "Surgery";
463
+ readonly category: "Ureter Surgery";
464
+ }, {
465
+ readonly start: 51020;
466
+ readonly end: 51999;
467
+ readonly type: "Surgery";
468
+ readonly category: "Bladder Surgery";
469
+ }, {
470
+ readonly start: 52000;
471
+ readonly end: 52700;
472
+ readonly type: "Surgery";
473
+ readonly category: "Urethra Surgery";
474
+ }, {
475
+ readonly start: 53000;
476
+ readonly end: 53899;
477
+ readonly type: "Surgery";
478
+ readonly category: "Urethra Surgery";
479
+ }, {
480
+ readonly start: 54000;
481
+ readonly end: 54699;
482
+ readonly type: "Surgery";
483
+ readonly category: "Male Genital Surgery";
484
+ }, {
485
+ readonly start: 55000;
486
+ readonly end: 55899;
487
+ readonly type: "Surgery";
488
+ readonly category: "Prostate Surgery";
489
+ }, {
490
+ readonly start: 56405;
491
+ readonly end: 56821;
492
+ readonly type: "Surgery";
493
+ readonly category: "Vulva Surgery";
494
+ }, {
495
+ readonly start: 57000;
496
+ readonly end: 57426;
497
+ readonly type: "Surgery";
498
+ readonly category: "Vagina Surgery";
499
+ }, {
500
+ readonly start: 58100;
501
+ readonly end: 58579;
502
+ readonly type: "Surgery";
503
+ readonly category: "Uterus Surgery";
504
+ }, {
505
+ readonly start: 58600;
506
+ readonly end: 58770;
507
+ readonly type: "Surgery";
508
+ readonly category: "Ovary Surgery";
509
+ }, {
510
+ readonly start: 80047;
511
+ readonly end: 80076;
512
+ readonly type: "Lab";
513
+ readonly category: "Organ/Disease Panels";
514
+ }, {
515
+ readonly start: 80150;
516
+ readonly end: 80299;
517
+ readonly type: "Lab";
518
+ readonly category: "Drug Testing";
519
+ }, {
520
+ readonly start: 80400;
521
+ readonly end: 80439;
522
+ readonly type: "Lab";
523
+ readonly category: "Evocative Testing";
524
+ }, {
525
+ readonly start: 81000;
526
+ readonly end: 81099;
527
+ readonly type: "Lab";
528
+ readonly category: "Urinalysis";
529
+ }, {
530
+ readonly start: 81105;
531
+ readonly end: 81408;
532
+ readonly type: "Lab";
533
+ readonly category: "Molecular Pathology";
534
+ }, {
535
+ readonly start: 82009;
536
+ readonly end: 84999;
537
+ readonly type: "Lab";
538
+ readonly category: "Chemistry";
539
+ }, {
540
+ readonly start: 85002;
541
+ readonly end: 85999;
542
+ readonly type: "Lab";
543
+ readonly category: "Hematology";
544
+ }, {
545
+ readonly start: 86000;
546
+ readonly end: 86849;
547
+ readonly type: "Lab";
548
+ readonly category: "Immunology";
549
+ }, {
550
+ readonly start: 87001;
551
+ readonly end: 87999;
552
+ readonly type: "Lab";
553
+ readonly category: "Microbiology";
554
+ }, {
555
+ readonly start: 88000;
556
+ readonly end: 88099;
557
+ readonly type: "Lab";
558
+ readonly category: "Necropsy";
559
+ }, {
560
+ readonly start: 88104;
561
+ readonly end: 88199;
562
+ readonly type: "Lab";
563
+ readonly category: "Cytopathology";
564
+ }, {
565
+ readonly start: 88300;
566
+ readonly end: 88399;
567
+ readonly type: "Lab";
568
+ readonly category: "Surgical Pathology";
569
+ }, {
570
+ readonly start: 97010;
571
+ readonly end: 97039;
572
+ readonly type: "Physical Therapy";
573
+ readonly category: "Modalities";
574
+ }, {
575
+ readonly start: 97110;
576
+ readonly end: 97546;
577
+ readonly type: "Physical Therapy";
578
+ readonly category: "Therapeutic Procedures";
579
+ }, {
580
+ readonly start: 97597;
581
+ readonly end: 97610;
582
+ readonly type: "Physical Therapy";
583
+ readonly category: "Active Wound Care";
584
+ }, {
585
+ readonly start: 98940;
586
+ readonly end: 98943;
587
+ readonly type: "Chiropractic";
588
+ readonly category: "Spinal Manipulation";
589
+ }, {
590
+ readonly start: 96360;
591
+ readonly end: 96379;
592
+ readonly type: "Infusion";
593
+ readonly category: "Hydration/Infusion";
594
+ }, {
595
+ readonly start: 96401;
596
+ readonly end: 96549;
597
+ readonly type: "Chemotherapy";
598
+ readonly category: "Chemotherapy Administration";
599
+ }, {
600
+ readonly start: 20550;
601
+ readonly end: 20553;
602
+ readonly type: "Injection";
603
+ readonly category: "Trigger Point Injection";
604
+ }, {
605
+ readonly start: 20600;
606
+ readonly end: 20611;
607
+ readonly type: "Injection";
608
+ readonly category: "Joint Injection";
609
+ }, {
610
+ readonly start: 0;
611
+ readonly end: 1999;
612
+ readonly type: "Anesthesia";
613
+ readonly category: "Anesthesia Services";
614
+ }, {
615
+ readonly start: 99201;
616
+ readonly end: 99215;
617
+ readonly type: "Office Visit";
618
+ readonly category: "Office/Outpatient Visits";
619
+ }, {
620
+ readonly start: 99217;
621
+ readonly end: 99220;
622
+ readonly type: "Hospital Care";
623
+ readonly category: "Observation Care";
624
+ }, {
625
+ readonly start: 99221;
626
+ readonly end: 99239;
627
+ readonly type: "Hospital Care";
628
+ readonly category: "Hospital Inpatient Services";
629
+ }, {
630
+ readonly start: 99241;
631
+ readonly end: 99255;
632
+ readonly type: "Consultation";
633
+ readonly category: "Consultations";
634
+ }, {
635
+ readonly start: 99281;
636
+ readonly end: 99288;
637
+ readonly type: "Emergency";
638
+ readonly category: "Emergency Department";
639
+ }, {
640
+ readonly start: 99304;
641
+ readonly end: 99318;
642
+ readonly type: "Nursing Facility";
643
+ readonly category: "Nursing Facility Services";
644
+ }, {
645
+ readonly start: 99341;
646
+ readonly end: 99350;
647
+ readonly type: "Home Visit";
648
+ readonly category: "Home Services";
649
+ }, {
650
+ readonly start: 99381;
651
+ readonly end: 99397;
652
+ readonly type: "Preventive";
653
+ readonly category: "Preventive Medicine";
654
+ }];
655
+ /**
656
+ * Get full procedure info from CPT code
657
+ */
658
+ export declare function getProcedureInfo(cptCode: number): {
659
+ readonly start: 70010;
660
+ readonly end: 70390;
661
+ readonly type: "X-Ray";
662
+ readonly category: "Head/Neck X-Ray";
663
+ readonly modality: "DX";
664
+ } | {
665
+ readonly start: 71010;
666
+ readonly end: 71035;
667
+ readonly type: "X-Ray";
668
+ readonly category: "Chest X-Ray";
669
+ readonly modality: "DX";
670
+ } | {
671
+ readonly start: 72010;
672
+ readonly end: 72120;
673
+ readonly type: "X-Ray";
674
+ readonly category: "Spine X-Ray";
675
+ readonly modality: "DX";
676
+ } | {
677
+ readonly start: 73000;
678
+ readonly end: 73140;
679
+ readonly type: "X-Ray";
680
+ readonly category: "Upper Extremity X-Ray";
681
+ readonly modality: "DX";
682
+ } | {
683
+ readonly start: 73500;
684
+ readonly end: 73660;
685
+ readonly type: "X-Ray";
686
+ readonly category: "Lower Extremity X-Ray";
687
+ readonly modality: "DX";
688
+ } | {
689
+ readonly start: 74018;
690
+ readonly end: 74022;
691
+ readonly type: "X-Ray";
692
+ readonly category: "Abdomen X-Ray";
693
+ readonly modality: "DX";
694
+ } | {
695
+ readonly start: 70450;
696
+ readonly end: 70498;
697
+ readonly type: "CT";
698
+ readonly category: "Head/Neck CT";
699
+ readonly modality: "CT";
700
+ } | {
701
+ readonly start: 71250;
702
+ readonly end: 71275;
703
+ readonly type: "CT";
704
+ readonly category: "Chest CT";
705
+ readonly modality: "CT";
706
+ } | {
707
+ readonly start: 72125;
708
+ readonly end: 72133;
709
+ readonly type: "CT";
710
+ readonly category: "Spine CT";
711
+ readonly modality: "CT";
712
+ } | {
713
+ readonly start: 73200;
714
+ readonly end: 73225;
715
+ readonly type: "CT";
716
+ readonly category: "Upper Extremity CT";
717
+ readonly modality: "CT";
718
+ } | {
719
+ readonly start: 73700;
720
+ readonly end: 73725;
721
+ readonly type: "CT";
722
+ readonly category: "Lower Extremity CT";
723
+ readonly modality: "CT";
724
+ } | {
725
+ readonly start: 74150;
726
+ readonly end: 74178;
727
+ readonly type: "CT";
728
+ readonly category: "Abdomen/Pelvis CT";
729
+ readonly modality: "CT";
730
+ } | {
731
+ readonly start: 70540;
732
+ readonly end: 70559;
733
+ readonly type: "MRI";
734
+ readonly category: "Head/Neck MRI";
735
+ readonly modality: "MR";
736
+ } | {
737
+ readonly start: 71550;
738
+ readonly end: 71555;
739
+ readonly type: "MRI";
740
+ readonly category: "Chest MRI";
741
+ readonly modality: "MR";
742
+ } | {
743
+ readonly start: 72141;
744
+ readonly end: 72159;
745
+ readonly type: "MRI";
746
+ readonly category: "Spine MRI";
747
+ readonly modality: "MR";
748
+ } | {
749
+ readonly start: 73218;
750
+ readonly end: 73223;
751
+ readonly type: "MRI";
752
+ readonly category: "Upper Extremity MRI";
753
+ readonly modality: "MR";
754
+ } | {
755
+ readonly start: 73718;
756
+ readonly end: 73723;
757
+ readonly type: "MRI";
758
+ readonly category: "Lower Extremity MRI";
759
+ readonly modality: "MR";
760
+ } | {
761
+ readonly start: 74181;
762
+ readonly end: 74185;
763
+ readonly type: "MRI";
764
+ readonly category: "Abdomen/Pelvis MRI";
765
+ readonly modality: "MR";
766
+ } | {
767
+ readonly start: 76506;
768
+ readonly end: 76999;
769
+ readonly type: "Ultrasound";
770
+ readonly category: "General Ultrasound";
771
+ readonly modality: "US";
772
+ } | {
773
+ readonly start: 93303;
774
+ readonly end: 93355;
775
+ readonly type: "Ultrasound";
776
+ readonly category: "Echocardiography";
777
+ readonly modality: "US";
778
+ } | {
779
+ readonly start: 93880;
780
+ readonly end: 93998;
781
+ readonly type: "Ultrasound";
782
+ readonly category: "Vascular Ultrasound";
783
+ readonly modality: "US";
784
+ } | {
785
+ readonly start: 77046;
786
+ readonly end: 77067;
787
+ readonly type: "Mammography";
788
+ readonly category: "Breast Imaging";
789
+ readonly modality: "MG";
790
+ } | {
791
+ readonly start: 77078;
792
+ readonly end: 77086;
793
+ readonly type: "Bone Density";
794
+ readonly category: "Bone Density";
795
+ readonly modality: "BMD";
796
+ } | {
797
+ readonly start: 78012;
798
+ readonly end: 78099;
799
+ readonly type: "Nuclear Medicine";
800
+ readonly category: "Bone Scan";
801
+ readonly modality: "NM";
802
+ } | {
803
+ readonly start: 78102;
804
+ readonly end: 78199;
805
+ readonly type: "Nuclear Medicine";
806
+ readonly category: "Nuclear Medicine - GI";
807
+ readonly modality: "NM";
808
+ } | {
809
+ readonly start: 78201;
810
+ readonly end: 78299;
811
+ readonly type: "Nuclear Medicine";
812
+ readonly category: "Nuclear Medicine - GU";
813
+ readonly modality: "NM";
814
+ } | {
815
+ readonly start: 78300;
816
+ readonly end: 78399;
817
+ readonly type: "Nuclear Medicine";
818
+ readonly category: "Nuclear Medicine - Musculoskeletal";
819
+ readonly modality: "NM";
820
+ } | {
821
+ readonly start: 78608;
822
+ readonly end: 78650;
823
+ readonly type: "Nuclear Medicine";
824
+ readonly category: "Nuclear Medicine - Cardiac";
825
+ readonly modality: "NM";
826
+ } | {
827
+ readonly start: 78414;
828
+ readonly end: 78499;
829
+ readonly type: "PET";
830
+ readonly category: "PET Scan";
831
+ readonly modality: "PT";
832
+ } | {
833
+ readonly start: 78800;
834
+ readonly end: 78899;
835
+ readonly type: "PET";
836
+ readonly category: "PET - Tumor Imaging";
837
+ readonly modality: "PT";
838
+ } | {
839
+ readonly start: 75600;
840
+ readonly end: 75989;
841
+ readonly type: "Angiography";
842
+ readonly category: "Vascular Imaging";
843
+ readonly modality: "XA";
844
+ } | {
845
+ readonly start: 36200;
846
+ readonly end: 36299;
847
+ readonly type: "Vascular Injection";
848
+ readonly category: "Vascular Injection";
849
+ readonly modality: "XA";
850
+ } | {
851
+ readonly start: 93451;
852
+ readonly end: 93533;
853
+ readonly type: "Cardiac Catheterization";
854
+ readonly category: "Cardiac Imaging";
855
+ readonly modality: "XA";
856
+ } | {
857
+ readonly start: 92133;
858
+ readonly end: 92136;
859
+ readonly type: "Ophthalmic Imaging";
860
+ readonly category: "Ophthalmic OCT";
861
+ readonly modality: "OCT";
862
+ } | {
863
+ readonly start: 92225;
864
+ readonly end: 92287;
865
+ readonly type: "Ophthalmic Imaging";
866
+ readonly category: "Ophthalmic Imaging";
867
+ readonly modality: "OP";
868
+ } | {
869
+ readonly start: 93000;
870
+ readonly end: 93010;
871
+ readonly type: "ECG";
872
+ readonly category: "Electrocardiography";
873
+ readonly modality: "ECG";
874
+ } | {
875
+ readonly start: 93224;
876
+ readonly end: 93278;
877
+ readonly type: "Cardiac Monitor";
878
+ readonly category: "Ambulatory ECG";
879
+ readonly modality: "ECG";
880
+ } | {
881
+ readonly start: 93561;
882
+ readonly end: 93572;
883
+ readonly type: "Cardiac EP Study";
884
+ readonly category: "Electrophysiology";
885
+ readonly modality: "EPS";
886
+ } | {
887
+ readonly start: 43200;
888
+ readonly end: 43273;
889
+ readonly type: "Endoscopy";
890
+ readonly category: "Upper GI Endoscopy";
891
+ readonly modality: "ES";
892
+ } | {
893
+ readonly start: 44360;
894
+ readonly end: 44408;
895
+ readonly type: "Endoscopy";
896
+ readonly category: "Small Bowel Endoscopy";
897
+ readonly modality: "ES";
898
+ } | {
899
+ readonly start: 45300;
900
+ readonly end: 45398;
901
+ readonly type: "Endoscopy";
902
+ readonly category: "Colonoscopy";
903
+ readonly modality: "ES";
904
+ } | {
905
+ readonly start: 31231;
906
+ readonly end: 31298;
907
+ readonly type: "Endoscopy";
908
+ readonly category: "Nasal/Sinus Endoscopy";
909
+ readonly modality: "ES";
910
+ } | {
911
+ readonly start: 43235;
912
+ readonly end: 43259;
913
+ readonly type: "Endoscopy";
914
+ readonly category: "Esophagogastroduodenoscopy";
915
+ readonly modality: "ES";
916
+ } | {
917
+ readonly start: 10021;
918
+ readonly end: 10022;
919
+ readonly type: "Surgery";
920
+ readonly category: "Fine Needle Aspiration";
921
+ } | {
922
+ readonly start: 10030;
923
+ readonly end: 10036;
924
+ readonly type: "Surgery";
925
+ readonly category: "Image-guided Procedures";
926
+ } | {
927
+ readonly start: 11000;
928
+ readonly end: 11047;
929
+ readonly type: "Surgery";
930
+ readonly category: "Debridement";
931
+ } | {
932
+ readonly start: 11055;
933
+ readonly end: 11057;
934
+ readonly type: "Surgery";
935
+ readonly category: "Paring/Cutting";
936
+ } | {
937
+ readonly start: 11100;
938
+ readonly end: 11107;
939
+ readonly type: "Surgery";
940
+ readonly category: "Skin Biopsy";
941
+ } | {
942
+ readonly start: 11200;
943
+ readonly end: 11201;
944
+ readonly type: "Surgery";
945
+ readonly category: "Skin Tag Removal";
946
+ } | {
947
+ readonly start: 11400;
948
+ readonly end: 11471;
949
+ readonly type: "Surgery";
950
+ readonly category: "Excision - Benign Lesions";
951
+ } | {
952
+ readonly start: 11600;
953
+ readonly end: 11646;
954
+ readonly type: "Surgery";
955
+ readonly category: "Excision - Malignant Lesions";
956
+ } | {
957
+ readonly start: 12001;
958
+ readonly end: 12057;
959
+ readonly type: "Surgery";
960
+ readonly category: "Simple Repair";
961
+ } | {
962
+ readonly start: 13100;
963
+ readonly end: 13160;
964
+ readonly type: "Surgery";
965
+ readonly category: "Complex Repair";
966
+ } | {
967
+ readonly start: 20200;
968
+ readonly end: 20999;
969
+ readonly type: "Surgery";
970
+ readonly category: "Musculoskeletal";
971
+ } | {
972
+ readonly start: 21010;
973
+ readonly end: 21499;
974
+ readonly type: "Surgery";
975
+ readonly category: "Head/Skull Surgery";
976
+ } | {
977
+ readonly start: 22010;
978
+ readonly end: 22899;
979
+ readonly type: "Surgery";
980
+ readonly category: "Spine Surgery";
981
+ } | {
982
+ readonly start: 23000;
983
+ readonly end: 23929;
984
+ readonly type: "Surgery";
985
+ readonly category: "Shoulder Surgery";
986
+ } | {
987
+ readonly start: 24000;
988
+ readonly end: 24999;
989
+ readonly type: "Surgery";
990
+ readonly category: "Elbow/Arm Surgery";
991
+ } | {
992
+ readonly start: 25000;
993
+ readonly end: 25999;
994
+ readonly type: "Surgery";
995
+ readonly category: "Forearm/Wrist Surgery";
996
+ } | {
997
+ readonly start: 26010;
998
+ readonly end: 26989;
999
+ readonly type: "Surgery";
1000
+ readonly category: "Hand Surgery";
1001
+ } | {
1002
+ readonly start: 27000;
1003
+ readonly end: 27299;
1004
+ readonly type: "Surgery";
1005
+ readonly category: "Hip/Pelvis Surgery";
1006
+ } | {
1007
+ readonly start: 27301;
1008
+ readonly end: 27599;
1009
+ readonly type: "Surgery";
1010
+ readonly category: "Thigh/Knee Surgery";
1011
+ } | {
1012
+ readonly start: 27600;
1013
+ readonly end: 27899;
1014
+ readonly type: "Surgery";
1015
+ readonly category: "Leg/Ankle Surgery";
1016
+ } | {
1017
+ readonly start: 28001;
1018
+ readonly end: 28899;
1019
+ readonly type: "Surgery";
1020
+ readonly category: "Foot Surgery";
1021
+ } | {
1022
+ readonly start: 30000;
1023
+ readonly end: 30999;
1024
+ readonly type: "Surgery";
1025
+ readonly category: "Nose Surgery";
1026
+ } | {
1027
+ readonly start: 31000;
1028
+ readonly end: 31899;
1029
+ readonly type: "Surgery";
1030
+ readonly category: "Larynx Surgery";
1031
+ } | {
1032
+ readonly start: 32035;
1033
+ readonly end: 32999;
1034
+ readonly type: "Surgery";
1035
+ readonly category: "Chest/Lung Surgery";
1036
+ } | {
1037
+ readonly start: 33010;
1038
+ readonly end: 33999;
1039
+ readonly type: "Surgery";
1040
+ readonly category: "Heart Surgery";
1041
+ } | {
1042
+ readonly start: 34001;
1043
+ readonly end: 34834;
1044
+ readonly type: "Surgery";
1045
+ readonly category: "Vascular Surgery";
1046
+ } | {
1047
+ readonly start: 40490;
1048
+ readonly end: 40799;
1049
+ readonly type: "Surgery";
1050
+ readonly category: "Mouth Surgery";
1051
+ } | {
1052
+ readonly start: 41000;
1053
+ readonly end: 41599;
1054
+ readonly type: "Surgery";
1055
+ readonly category: "Tongue/Floor of Mouth Surgery";
1056
+ } | {
1057
+ readonly start: 42000;
1058
+ readonly end: 42999;
1059
+ readonly type: "Surgery";
1060
+ readonly category: "Throat Surgery";
1061
+ } | {
1062
+ readonly start: 43020;
1063
+ readonly end: 43499;
1064
+ readonly type: "Surgery";
1065
+ readonly category: "Esophagus Surgery";
1066
+ } | {
1067
+ readonly start: 43500;
1068
+ readonly end: 43999;
1069
+ readonly type: "Surgery";
1070
+ readonly category: "Stomach Surgery";
1071
+ } | {
1072
+ readonly start: 44005;
1073
+ readonly end: 44799;
1074
+ readonly type: "Surgery";
1075
+ readonly category: "Intestine Surgery";
1076
+ } | {
1077
+ readonly start: 45000;
1078
+ readonly end: 45999;
1079
+ readonly type: "Surgery";
1080
+ readonly category: "Rectum Surgery";
1081
+ } | {
1082
+ readonly start: 46020;
1083
+ readonly end: 46999;
1084
+ readonly type: "Surgery";
1085
+ readonly category: "Anus Surgery";
1086
+ } | {
1087
+ readonly start: 47000;
1088
+ readonly end: 47399;
1089
+ readonly type: "Surgery";
1090
+ readonly category: "Liver Surgery";
1091
+ } | {
1092
+ readonly start: 47400;
1093
+ readonly end: 47999;
1094
+ readonly type: "Surgery";
1095
+ readonly category: "Biliary Surgery";
1096
+ } | {
1097
+ readonly start: 48000;
1098
+ readonly end: 48999;
1099
+ readonly type: "Surgery";
1100
+ readonly category: "Pancreas Surgery";
1101
+ } | {
1102
+ readonly start: 49000;
1103
+ readonly end: 49999;
1104
+ readonly type: "Surgery";
1105
+ readonly category: "Abdomen Surgery";
1106
+ } | {
1107
+ readonly start: 50010;
1108
+ readonly end: 50593;
1109
+ readonly type: "Surgery";
1110
+ readonly category: "Kidney Surgery";
1111
+ } | {
1112
+ readonly start: 50600;
1113
+ readonly end: 50980;
1114
+ readonly type: "Surgery";
1115
+ readonly category: "Ureter Surgery";
1116
+ } | {
1117
+ readonly start: 51020;
1118
+ readonly end: 51999;
1119
+ readonly type: "Surgery";
1120
+ readonly category: "Bladder Surgery";
1121
+ } | {
1122
+ readonly start: 52000;
1123
+ readonly end: 52700;
1124
+ readonly type: "Surgery";
1125
+ readonly category: "Urethra Surgery";
1126
+ } | {
1127
+ readonly start: 53000;
1128
+ readonly end: 53899;
1129
+ readonly type: "Surgery";
1130
+ readonly category: "Urethra Surgery";
1131
+ } | {
1132
+ readonly start: 54000;
1133
+ readonly end: 54699;
1134
+ readonly type: "Surgery";
1135
+ readonly category: "Male Genital Surgery";
1136
+ } | {
1137
+ readonly start: 55000;
1138
+ readonly end: 55899;
1139
+ readonly type: "Surgery";
1140
+ readonly category: "Prostate Surgery";
1141
+ } | {
1142
+ readonly start: 56405;
1143
+ readonly end: 56821;
1144
+ readonly type: "Surgery";
1145
+ readonly category: "Vulva Surgery";
1146
+ } | {
1147
+ readonly start: 57000;
1148
+ readonly end: 57426;
1149
+ readonly type: "Surgery";
1150
+ readonly category: "Vagina Surgery";
1151
+ } | {
1152
+ readonly start: 58100;
1153
+ readonly end: 58579;
1154
+ readonly type: "Surgery";
1155
+ readonly category: "Uterus Surgery";
1156
+ } | {
1157
+ readonly start: 58600;
1158
+ readonly end: 58770;
1159
+ readonly type: "Surgery";
1160
+ readonly category: "Ovary Surgery";
1161
+ } | {
1162
+ readonly start: 80047;
1163
+ readonly end: 80076;
1164
+ readonly type: "Lab";
1165
+ readonly category: "Organ/Disease Panels";
1166
+ } | {
1167
+ readonly start: 80150;
1168
+ readonly end: 80299;
1169
+ readonly type: "Lab";
1170
+ readonly category: "Drug Testing";
1171
+ } | {
1172
+ readonly start: 80400;
1173
+ readonly end: 80439;
1174
+ readonly type: "Lab";
1175
+ readonly category: "Evocative Testing";
1176
+ } | {
1177
+ readonly start: 81000;
1178
+ readonly end: 81099;
1179
+ readonly type: "Lab";
1180
+ readonly category: "Urinalysis";
1181
+ } | {
1182
+ readonly start: 81105;
1183
+ readonly end: 81408;
1184
+ readonly type: "Lab";
1185
+ readonly category: "Molecular Pathology";
1186
+ } | {
1187
+ readonly start: 82009;
1188
+ readonly end: 84999;
1189
+ readonly type: "Lab";
1190
+ readonly category: "Chemistry";
1191
+ } | {
1192
+ readonly start: 85002;
1193
+ readonly end: 85999;
1194
+ readonly type: "Lab";
1195
+ readonly category: "Hematology";
1196
+ } | {
1197
+ readonly start: 86000;
1198
+ readonly end: 86849;
1199
+ readonly type: "Lab";
1200
+ readonly category: "Immunology";
1201
+ } | {
1202
+ readonly start: 87001;
1203
+ readonly end: 87999;
1204
+ readonly type: "Lab";
1205
+ readonly category: "Microbiology";
1206
+ } | {
1207
+ readonly start: 88000;
1208
+ readonly end: 88099;
1209
+ readonly type: "Lab";
1210
+ readonly category: "Necropsy";
1211
+ } | {
1212
+ readonly start: 88104;
1213
+ readonly end: 88199;
1214
+ readonly type: "Lab";
1215
+ readonly category: "Cytopathology";
1216
+ } | {
1217
+ readonly start: 88300;
1218
+ readonly end: 88399;
1219
+ readonly type: "Lab";
1220
+ readonly category: "Surgical Pathology";
1221
+ } | {
1222
+ readonly start: 97010;
1223
+ readonly end: 97039;
1224
+ readonly type: "Physical Therapy";
1225
+ readonly category: "Modalities";
1226
+ } | {
1227
+ readonly start: 97110;
1228
+ readonly end: 97546;
1229
+ readonly type: "Physical Therapy";
1230
+ readonly category: "Therapeutic Procedures";
1231
+ } | {
1232
+ readonly start: 97597;
1233
+ readonly end: 97610;
1234
+ readonly type: "Physical Therapy";
1235
+ readonly category: "Active Wound Care";
1236
+ } | {
1237
+ readonly start: 98940;
1238
+ readonly end: 98943;
1239
+ readonly type: "Chiropractic";
1240
+ readonly category: "Spinal Manipulation";
1241
+ } | {
1242
+ readonly start: 96360;
1243
+ readonly end: 96379;
1244
+ readonly type: "Infusion";
1245
+ readonly category: "Hydration/Infusion";
1246
+ } | {
1247
+ readonly start: 96401;
1248
+ readonly end: 96549;
1249
+ readonly type: "Chemotherapy";
1250
+ readonly category: "Chemotherapy Administration";
1251
+ } | {
1252
+ readonly start: 20550;
1253
+ readonly end: 20553;
1254
+ readonly type: "Injection";
1255
+ readonly category: "Trigger Point Injection";
1256
+ } | {
1257
+ readonly start: 20600;
1258
+ readonly end: 20611;
1259
+ readonly type: "Injection";
1260
+ readonly category: "Joint Injection";
1261
+ } | {
1262
+ readonly start: 0;
1263
+ readonly end: 1999;
1264
+ readonly type: "Anesthesia";
1265
+ readonly category: "Anesthesia Services";
1266
+ } | {
1267
+ readonly start: 99201;
1268
+ readonly end: 99215;
1269
+ readonly type: "Office Visit";
1270
+ readonly category: "Office/Outpatient Visits";
1271
+ } | {
1272
+ readonly start: 99217;
1273
+ readonly end: 99220;
1274
+ readonly type: "Hospital Care";
1275
+ readonly category: "Observation Care";
1276
+ } | {
1277
+ readonly start: 99221;
1278
+ readonly end: 99239;
1279
+ readonly type: "Hospital Care";
1280
+ readonly category: "Hospital Inpatient Services";
1281
+ } | {
1282
+ readonly start: 99241;
1283
+ readonly end: 99255;
1284
+ readonly type: "Consultation";
1285
+ readonly category: "Consultations";
1286
+ } | {
1287
+ readonly start: 99281;
1288
+ readonly end: 99288;
1289
+ readonly type: "Emergency";
1290
+ readonly category: "Emergency Department";
1291
+ } | {
1292
+ readonly start: 99304;
1293
+ readonly end: 99318;
1294
+ readonly type: "Nursing Facility";
1295
+ readonly category: "Nursing Facility Services";
1296
+ } | {
1297
+ readonly start: 99341;
1298
+ readonly end: 99350;
1299
+ readonly type: "Home Visit";
1300
+ readonly category: "Home Services";
1301
+ } | {
1302
+ readonly start: 99381;
1303
+ readonly end: 99397;
1304
+ readonly type: "Preventive";
1305
+ readonly category: "Preventive Medicine";
1306
+ } | {
1307
+ type: "-";
1308
+ category: "-";
1309
+ };
1310
+ /**
1311
+ * Get the type of the procedure from the CPT code
1312
+ * @param procedure
1313
+ * @returns The type of the procedure
1314
+ */
1315
+ export declare function getProcedureType(procedure: Procedure): string;
1316
+ //# sourceMappingURL=procedure-type.d.ts.map