@mindbill/react 0.9.2 → 0.9.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.
- package/dist/index.d.ts +40 -0
- package/dist/index.js +344 -79
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -70,6 +70,15 @@ type BillReviewPayer = {
|
|
|
70
70
|
};
|
|
71
71
|
type BillReviewFeatures = {
|
|
72
72
|
authorizationNumber?: boolean;
|
|
73
|
+
serviceDateRange?: boolean;
|
|
74
|
+
wcabNumber?: boolean;
|
|
75
|
+
codingPresets?: boolean;
|
|
76
|
+
};
|
|
77
|
+
type BillReviewClaimPatternStatus = {
|
|
78
|
+
state: "match" | "warning" | "unknown";
|
|
79
|
+
label: string;
|
|
80
|
+
detail?: string;
|
|
81
|
+
suggestion?: string;
|
|
73
82
|
};
|
|
74
83
|
type BillReviewData = {
|
|
75
84
|
bill: {
|
|
@@ -96,14 +105,21 @@ type BillReviewData = {
|
|
|
96
105
|
};
|
|
97
106
|
patient: {
|
|
98
107
|
name: string;
|
|
108
|
+
firstName?: string;
|
|
109
|
+
middleName?: string;
|
|
110
|
+
lastName?: string;
|
|
99
111
|
dob?: string;
|
|
100
112
|
};
|
|
101
113
|
injury: {
|
|
102
114
|
claimNumber?: string;
|
|
103
115
|
employer?: string;
|
|
104
116
|
doi?: string;
|
|
117
|
+
injuryEndDate?: string;
|
|
118
|
+
cumulativeTrauma?: boolean;
|
|
119
|
+
adjNumber?: string;
|
|
105
120
|
claimsAdminId?: string;
|
|
106
121
|
claimsAdminName?: string;
|
|
122
|
+
claimPatternStatus?: BillReviewClaimPatternStatus;
|
|
107
123
|
};
|
|
108
124
|
options?: {
|
|
109
125
|
billingProviders?: BillReviewBillingProvider[];
|
|
@@ -113,6 +129,20 @@ type BillReviewData = {
|
|
|
113
129
|
};
|
|
114
130
|
type BillReviewSaveInput = {
|
|
115
131
|
claimsAdminId: string;
|
|
132
|
+
patientOverrides?: {
|
|
133
|
+
firstName: string;
|
|
134
|
+
middleName?: string;
|
|
135
|
+
lastName: string;
|
|
136
|
+
dob?: string;
|
|
137
|
+
};
|
|
138
|
+
injuryOverrides?: {
|
|
139
|
+
claimNumber?: string;
|
|
140
|
+
employer?: string;
|
|
141
|
+
doi?: string;
|
|
142
|
+
injuryEndDate?: string;
|
|
143
|
+
cumulativeTrauma?: boolean;
|
|
144
|
+
adjNumber?: string;
|
|
145
|
+
};
|
|
116
146
|
dos: string;
|
|
117
147
|
dosEnd?: string | null;
|
|
118
148
|
authorizationNumber?: string | null;
|
|
@@ -147,6 +177,16 @@ type BillReviewFormProps = {
|
|
|
147
177
|
type BillReviewDraft = {
|
|
148
178
|
claimsAdminId: string;
|
|
149
179
|
claimsAdminName: string;
|
|
180
|
+
patientFirstName: string;
|
|
181
|
+
patientMiddleName: string;
|
|
182
|
+
patientLastName: string;
|
|
183
|
+
patientDob: string;
|
|
184
|
+
claimNumber: string;
|
|
185
|
+
employer: string;
|
|
186
|
+
doi: string;
|
|
187
|
+
injuryEndDate: string;
|
|
188
|
+
cumulativeTrauma: boolean;
|
|
189
|
+
adjNumber: string;
|
|
150
190
|
dos: string;
|
|
151
191
|
dosEnd: string;
|
|
152
192
|
authorizationNumber: string;
|