@rinse-dental/open-dental 0.1.1 → 0.1.3

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 (62) hide show
  1. package/deploy_notes.txt +0 -0
  2. package/dist/api/appointments.d.ts +1 -1
  3. package/dist/api/appointments.d.ts.map +1 -1
  4. package/dist/api/chartModules.d.ts +14 -0
  5. package/dist/api/chartModules.d.ts.map +1 -0
  6. package/dist/api/chartModules.js +21 -0
  7. package/dist/api/commlogs.d.ts +1 -1
  8. package/dist/api/commlogs.d.ts.map +1 -1
  9. package/dist/api/index.d.ts +7 -1
  10. package/dist/api/index.d.ts.map +1 -1
  11. package/dist/api/index.js +15 -4
  12. package/dist/api/patFields.d.ts +53 -0
  13. package/dist/api/patFields.d.ts.map +1 -0
  14. package/dist/api/patFields.js +87 -0
  15. package/dist/api/patients.d.ts +20 -1
  16. package/dist/api/patients.d.ts.map +1 -1
  17. package/dist/api/patients.js +34 -0
  18. package/dist/api/recalls.d.ts +84 -0
  19. package/dist/api/recalls.d.ts.map +1 -0
  20. package/dist/api/recalls.js +120 -0
  21. package/dist/api/treatplans.d.ts +53 -0
  22. package/dist/api/treatplans.d.ts.map +1 -0
  23. package/dist/api/treatplans.js +77 -0
  24. package/dist/openDental.d.ts +33 -3
  25. package/dist/openDental.d.ts.map +1 -1
  26. package/dist/openDental.js +64 -4
  27. package/dist/types/{appointmentType.d.ts → appointmentTypes.d.ts} +1 -1
  28. package/dist/types/appointmentTypes.d.ts.map +1 -0
  29. package/dist/types/chartModuleTypes.d.ts +21 -0
  30. package/dist/types/chartModuleTypes.d.ts.map +1 -0
  31. package/dist/types/{commlogType.d.ts → commlogTypes.d.ts} +1 -1
  32. package/dist/types/commlogTypes.d.ts.map +1 -0
  33. package/dist/types/commlogTypes.js +2 -0
  34. package/dist/types/patFieldTypes.d.ts +23 -0
  35. package/dist/types/patFieldTypes.d.ts.map +1 -0
  36. package/dist/types/patFieldTypes.js +2 -0
  37. package/dist/types/recallTypes.d.ts +98 -0
  38. package/dist/types/recallTypes.d.ts.map +1 -0
  39. package/dist/types/recallTypes.js +2 -0
  40. package/dist/types/treatPlanTypes.d.ts +72 -0
  41. package/dist/types/treatPlanTypes.d.ts.map +1 -0
  42. package/dist/types/treatPlanTypes.js +2 -0
  43. package/package.json +1 -1
  44. package/src/api/appointments.ts +1 -2
  45. package/src/api/chartModules.ts +25 -0
  46. package/src/api/commlogs.ts +1 -1
  47. package/src/api/index.ts +7 -2
  48. package/src/api/patFields.ts +112 -0
  49. package/src/api/patients.ts +50 -1
  50. package/src/api/recalls.ts +148 -0
  51. package/src/api/treatplans.ts +97 -0
  52. package/src/openDental.ts +73 -4
  53. package/src/types/chartModuleTypes.ts +29 -0
  54. package/src/types/patFieldTypes.ts +24 -0
  55. package/src/types/recallTypes.ts +102 -0
  56. package/src/types/treatPlanTypes.ts +75 -0
  57. package/dist/types/appointmentType.d.ts.map +0 -1
  58. package/dist/types/commlogType.d.ts.map +0 -1
  59. /package/dist/types/{appointmentType.js → appointmentTypes.js} +0 -0
  60. /package/dist/types/{commlogType.js → chartModuleTypes.js} +0 -0
  61. /package/src/types/{appointmentType.ts → appointmentTypes.ts} +0 -0
  62. /package/src/types/{commlogType.ts → commlogTypes.ts} +0 -0
@@ -0,0 +1,102 @@
1
+ /**
2
+ * GET Recalls object.
3
+ * @see https://www.opendental.com/site/apirecalls.html
4
+ */
5
+ export interface Recall {
6
+ RecallNum?: number; // Primary key
7
+ PatNum?: number; // FK to Patient table
8
+ DateDue?: string; // The date the recall is due. Based off previously completed recall procedures or insurance history. If blank, the patient has never had a recall procedure set complete.
9
+ DatePrevious?: string; // Date of previous treatment. String in "yyyy-mm-dd" format.
10
+ RecallInterval?: string; // The interval between recalls. String that contains a digit followed by 'y' for years, 'm' for months, 'w' for weeks, or 'd' for days. An example of 1 year, 6 months, and 20 days should be formatted as follows: '1y6m20d'. Default recalltype.DefaultInterval.
11
+ RecallStatus?: number; // FK to definition.DefNum where definition.Category=13. Default 0.
12
+ recallStatus?: string; // FK to definition.FieldValue where definition.Category=13
13
+ Note?: string; // An administrative note for staff use.
14
+ IsDisabled?: "true" | "false"; // Either "true" or "false". Default "false".
15
+ DateTStamp?: string; // datetime recall was created/updated
16
+ RecallTypeNum?: number; // Typically either "Prophy" or "Perio". RecallType is dependent upon Setup Recall and Recall Types.
17
+ DisableUntilBalance?: number; // Family balance must be less than this value for the recall to show in the recall list. Default 0.
18
+ DisableUntilDate?: string; // Recall will be disabled until this date. String in "yyyy-MM-dd" format.
19
+ DateScheduled?: string; // Date of their next recall. String in "yyyy-MM-dd" format.
20
+ Priority?: "Normal" | "ASAP"; // Either "Normal" or "ASAP". Default "Normal".
21
+ TimePatternOverride?: string; // Used to override recalltype.DefaultInterval. Time pattern in 5 minute increments. A string consisting of 'X' and '/' characters only.
22
+ }
23
+
24
+ /**
25
+ * GET Recall List params.
26
+ * @see https://www.opendental.com/site/apirecalls.html
27
+ */
28
+ export interface RecallListParams {
29
+ DateStart?: string; // Due date range. String in "yyyy-mm-dd" format. Default is based on RecallDaysPast preference.
30
+ DateEnd?: number; // Due date range. String in "yyyy-mm-dd" format. Default is based on RecallDaysFuture preference.
31
+ ProvNum?: string; // Provider. Default is all providers. Will consider PriProv and SecProv.
32
+ ClinicNum?: string; // Clinic. Default is all clinics. Use 0 for "Unassigned".
33
+ RecallType?: string; // Typically either "Prophy" or "Perio". Default is all RecallTypes stored in the preference.
34
+ IncludeReminded?: string; // Show patients that have already received reminders. Either "true" or "false". Default is false.
35
+ Offset?: number;
36
+ }
37
+
38
+ /**
39
+ * GET Recall List object.
40
+ * @see https://www.opendental.com/site/apirecalls.html
41
+ */
42
+ export interface RecallList {
43
+ DueDate?: string; // The date the recall is due. Based off previously completed recall procedures or insurance history. If blank, the patient has never had a recall procedure set complete.
44
+ PatNum?: number; // FK to Patient table
45
+ Patient?: string; // Patient's name. Last, First.
46
+ Age?: string; // Patient's Age.
47
+ Type?: string; // RecallType due.
48
+ Interval?: string; //The length of time between each recall appointment for the recall type.
49
+ NumRemind?: string; //The number of reminders sent since the patient's last recall appointment.
50
+ LastReminder?: string; //The date the last reminder was sent.
51
+ Contact?: string; //The patient's Preferred Recall Method. E.g. Text:(541)555-1234
52
+ Status?: string; //Recall communication about a patient's unscheduled recall appointment. Example "Left Msg".
53
+ ClinicNum?: number; //ClinicNum of clinic patient is assigned to. Will be 0 if not using Clinics.
54
+ Note?: string; //Administrative note.
55
+ }
56
+
57
+ /**
58
+ * CREATE Recall params. Creates a recall object.
59
+ * @see https://www.opendental.com/site/apirecalls.html
60
+ */
61
+ export interface CreateRecallParams {
62
+ PatNum: number; // Required. FK to Patient table
63
+ RecallTypeNum: number; // Required. Typically either "Prophy" or "Perio". RecallType is dependent upon Setup Recall and Recall Types.
64
+ DateDue?: string; // The date the recall is due. Based off previously completed recall procedures or insurance history. If blank, the patient has never had a recall procedure set complete.
65
+ RecallInterval?: string; // The interval between recalls. String that contains a digit followed by 'y' for years, 'm' for months, 'w' for weeks, or 'd' for days. An example of 1 year, 6 months, and 20 days should be formatted as follows: '1y6m20d'. Default recalltype.DefaultInterval.
66
+ RecallStatus?: number; // FK to definition.DefNum where definition.Category=13. Default 0.
67
+ Note?: string; // An administrative note for staff use.
68
+ IsDisabled?: "true" | "false"; // Either "true" or "false". Default "false".
69
+ DisableUntilBalance?: number; // Family balance must be less than this value for the recall to show in the recall list. Default 0.
70
+ DisableUntilDate?: string; // Recall will be disabled until this date. String in "yyyy-MM-dd" format.
71
+ Priority?: "Normal" | "ASAP"; // Either "Normal" or "ASAP". Default "Normal".
72
+ TimePatternOverride?: string; // Used to override recalltype.DefaultInterval. Time pattern in 5 minute increments. A string consisting of 'X' and '/' characters only.
73
+ }
74
+
75
+ /**
76
+ * EDIT Recall params. Updates a recall object.
77
+ * @see https://www.opendental.com/site/apirecalls.html
78
+ */
79
+ export interface UpdateRecallParams {
80
+ RecallNum: number; // Required. Primary key of recall to edit
81
+ DateDue?: string; // The date the recall is due. Based off previously completed recall procedures or insurance history. If blank, the patient has never had a recall procedure set complete.
82
+ RecallInterval?: string; // The interval between recalls. String that contains a digit followed by 'y' for years, 'm' for months, 'w' for weeks, or 'd' for days. An example of 1 year, 6 months, and 20 days should be formatted as follows: '1y6m20d'. Default recalltype.DefaultInterval.
83
+ RecallStatus?: number; // FK to definition.DefNum where definition.Category=13. Default 0.
84
+ Note?: string; // An administrative note for staff use.
85
+ IsDisabled?: "true" | "false"; // Either "true" or "false". Default "false".
86
+ DisableUntilBalance?: number; // Family balance must be less than this value for the recall to show in the recall list. Default 0.
87
+ DisableUntilDate?: string; // Recall will be disabled until this date. String in "yyyy-MM-dd" format.
88
+ Priority?: "Normal" | "ASAP"; // Either "Normal" or "ASAP". Default "Normal".
89
+ TimePatternOverride?: string; // Used to override recalltype.DefaultInterval. Time pattern in 5 minute increments. A string consisting of 'X' and '/' characters only.
90
+ }
91
+
92
+ /**
93
+ * EDIT Recall Status params and object.
94
+ * @see https://www.opendental.com/site/apirecalls.html
95
+ */
96
+ export interface UpdateRecallStatusParams {
97
+ PatNum: number; // Required. FK to Patient table
98
+ recallType: string; // Required. Typically either "Prophy" or "Perio". RecallType is dependent upon Setup Recall and Recall Types.
99
+ RecallStatus?: number; // FK to definition.DefNum where definition.Category=13. Default 0.
100
+ commlogMode?: "None" | "Email" | "Mail" | "Phone" | "InPerson" | "Text" | "EmailAndText" | "PhoneAndText"; // Optional. Either "None", "Email", "Mail", "Phone", "InPerson", "Text", "EmailAndText", or "PhoneAndText".
101
+ commlogNote?: string; // Optional. This text will be used instead of the default commlog.Note.
102
+ }
@@ -0,0 +1,75 @@
1
+ /**
2
+ * GET TreatPlans object.
3
+ * @see https://www.opendental.com/site/apitreatplans.html
4
+ */
5
+ export interface TreatmentPlan {
6
+ TreatPlanNum?: number; // Primary key
7
+ PatNum?: number; // FK to Patient table
8
+ DateTP?: string; //
9
+ Heading?: string; // Optional. Default "Inactive Treatment Plan".
10
+ Note?: string; // A note specific to this treatment plan that shows at the bottom. Overwrites existing note.
11
+ SigIsTopaz?: "true" | "false"; //
12
+ ResponsParty?: number; // FK to patient.PatNum. The patient responsible for approving the treatment.
13
+ DocNum?: number; //
14
+ TPStatus?: string; // "Saved", "Active" or "Inactive"
15
+ SecUserNumEntry?: number; //
16
+ SecDateEntry?: string; //
17
+ SecDateTEdit?: string; //
18
+ UserNumPresenter?: number; //
19
+ TPType?: "Insurance" | "Discount"; // Either "Insurance" or "Discount".
20
+ DateTSigned?: string; //
21
+ DateTPracticeSigned?: string; //
22
+ SignatureText?: string; // The typed name of the person who signed the patient signature.
23
+ SignaturePracticeText?: string; // The typed name of the person who signed the practice signature.
24
+ isSigned?: "true" | "false"; //
25
+ isSignedPractice?: "true" | "false"; //
26
+ }
27
+
28
+ /**
29
+ * Get TreatPlans Params. Returns TreatPlan object
30
+ * @see https://www.opendental.com/site/apitreatplans.html
31
+ */
32
+ export interface GetTreatmentPlanParams {
33
+ PatNum?: number; // FK to Patient table
34
+ SecDateTEdit?: string; // Only include TreatPlans with a SecDateTEdit altered after the specified date and time. String in "yyyy-MM-dd HH:mm:ss" format.
35
+ TPStatus?: "Saved" | "Active" | "Inactive"; // Either "Saved", "Active", or "Inactive". Default all.
36
+ }
37
+
38
+ /**
39
+ * POST TreatPlans Params. Returns TreatPlan object
40
+ * @see https://www.opendental.com/site/apitreatplans.html
41
+ */
42
+ export interface CreateTreatmentPlanParams {
43
+ PatNum: number; // Required. FK to Patient table
44
+ Heading?: string; // Optional. Defaults to the heading of the supplied Treatment Plan.
45
+ Note?: string; // A note specific to this treatment plan that shows at the bottom. Overwrites existing note.
46
+ TPType?: "Insurance" | "Discount"; // Optional. Either "Insurance" or "Discount". If the patient is subscribed to a Discount Plan, this will default to "Discount". Otherwise, defaults to "Insurance".
47
+ }
48
+
49
+ /**
50
+ * POST Save TreatPlans Params. Returns TreatPlan object.
51
+ * Creates an unsigned Saved TreatPlan from an existing Active or Inactive TreatPlan.
52
+ * @see https://www.opendental.com/site/apitreatplans.html
53
+ */
54
+ export interface SaveTreatmentPlanParams {
55
+ TreatPlanNum: number; // Required. PK of treatment plan to be saved
56
+ Heading?: string; // Optional. Defaults to the heading of the supplied Treatment Plan.
57
+ UserNumPresenter?: number; // Optional. FK to userod.UserNum. Default 0.
58
+ }
59
+
60
+ /**
61
+ * PUT TreatPlans object.
62
+ * @see https://www.opendental.com/site/apitreatplans.html
63
+ */
64
+ export interface UpdateTreatmentPlanParams {
65
+ TreatPlanNum: number; // Required in the URL.
66
+ DateTP?: string; // The date of the treatment plan. Can only be set if TPStatus is "Saved". String in "yyyy-MM-dd" format.
67
+ Heading?: string; // The heading that shows at the top of the treatment plan.
68
+ Note?: string; // A note specific to this treatment plan that shows at the bottom. Overwrites existing note.
69
+ ResponsParty?: number; // FK to patient.PatNum. The patient responsible for approving the treatment.
70
+ TPType?: "Insurance" | "Discount"; // Either "Insurance" or "Discount".
71
+ SignatureText?: string; // The typed name of the person who signed the patient signature.
72
+ SignaturePracticeText?: string; // The typed name of the person who signed the practice signature.
73
+ isSigned?: "true" | "false"; // Either "true" or "false". True updates the treatplan Signature, digitally signs for the patient, and overwrites existing signature. False clears the exisiting treatplan Signature.
74
+ isSignedPractice?: "true" | "false"; // Either "true" or "false". True updates the treatplan SignaturePractice, digitally signs for the practice, and overwrites existing signature. False clears the exisiting treatplan SignaturePractice.
75
+ }
@@ -1 +0,0 @@
1
- {"version":3,"file":"appointmentType.d.ts","sourceRoot":"","sources":["../../src/types/appointmentType.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"commlogType.d.ts","sourceRoot":"","sources":["../../src/types/commlogType.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,WAAW,OAAO;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,WAAW,GAAG,MAAM,GAAG,gBAAgB,GAAG,gBAAgB,CAAC;IACzG,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS,CAAC;CAClD;AAEH;;;GAGG;AACH,MAAM,WAAW,mBAAmB;IAChC,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,WAAW,GAAG,MAAM,GAAG,gBAAgB,GAAG,gBAAgB,CAAC;IACxG,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS,CAAC;CACpD"}
File without changes