@teja-app/api-client 2026.5.13 → 2026.5.17

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 (56) hide show
  1. package/dist/generated/index.d.ts +4 -4
  2. package/dist/generated/index.d.ts.map +1 -1
  3. package/dist/generated/index.js +4 -4
  4. package/dist/generated/index.js.map +1 -1
  5. package/dist/generated/services/AppointmentsService.d.ts +53 -0
  6. package/dist/generated/services/AppointmentsService.d.ts.map +1 -1
  7. package/dist/generated/services/AppointmentsService.js +30 -0
  8. package/dist/generated/services/AppointmentsService.js.map +1 -1
  9. package/dist/generated/services/BillingCodesService.d.ts +25 -0
  10. package/dist/generated/services/BillingCodesService.d.ts.map +1 -0
  11. package/dist/generated/services/BillingCodesService.js +20 -0
  12. package/dist/generated/services/BillingCodesService.js.map +1 -0
  13. package/dist/generated/services/ClientPortalAppointmentsService.d.ts +6 -0
  14. package/dist/generated/services/ClientPortalAppointmentsService.d.ts.map +1 -1
  15. package/dist/generated/services/ClientPortalAppointmentsService.js.map +1 -1
  16. package/dist/generated/services/ClientPortalService.d.ts +224 -0
  17. package/dist/generated/services/ClientPortalService.d.ts.map +1 -1
  18. package/dist/generated/services/ClientPortalService.js +50 -0
  19. package/dist/generated/services/ClientPortalService.js.map +1 -1
  20. package/dist/generated/services/ClientsService.d.ts +17 -0
  21. package/dist/generated/services/ClientsService.d.ts.map +1 -1
  22. package/dist/generated/services/ClientsService.js +15 -0
  23. package/dist/generated/services/ClientsService.js.map +1 -1
  24. package/dist/generated/services/InvoicesService.d.ts +635 -0
  25. package/dist/generated/services/InvoicesService.d.ts.map +1 -0
  26. package/dist/generated/services/InvoicesService.js +172 -0
  27. package/dist/generated/services/InvoicesService.js.map +1 -0
  28. package/dist/generated/services/ServicesService.d.ts +204 -0
  29. package/dist/generated/services/ServicesService.d.ts.map +1 -0
  30. package/dist/generated/services/ServicesService.js +109 -0
  31. package/dist/generated/services/ServicesService.js.map +1 -0
  32. package/dist/generated/services/SuperbillsService.d.ts +60 -357
  33. package/dist/generated/services/SuperbillsService.d.ts.map +1 -1
  34. package/dist/generated/services/SuperbillsService.js +8 -240
  35. package/dist/generated/services/SuperbillsService.js.map +1 -1
  36. package/dist/generated/services/TelehealthService.d.ts +30 -0
  37. package/dist/generated/services/TelehealthService.d.ts.map +1 -0
  38. package/dist/generated/services/TelehealthService.js +46 -0
  39. package/dist/generated/services/TelehealthService.js.map +1 -0
  40. package/package.json +1 -1
  41. package/dist/generated/services/BillingService.d.ts +0 -427
  42. package/dist/generated/services/BillingService.d.ts.map +0 -1
  43. package/dist/generated/services/BillingService.js +0 -280
  44. package/dist/generated/services/BillingService.js.map +0 -1
  45. package/dist/generated/services/ClientPortalSuperbillsService.d.ts +0 -13
  46. package/dist/generated/services/ClientPortalSuperbillsService.d.ts.map +0 -1
  47. package/dist/generated/services/ClientPortalSuperbillsService.js +0 -20
  48. package/dist/generated/services/ClientPortalSuperbillsService.js.map +0 -1
  49. package/dist/generated/services/CreditsService.d.ts +0 -82
  50. package/dist/generated/services/CreditsService.d.ts.map +0 -1
  51. package/dist/generated/services/CreditsService.js +0 -63
  52. package/dist/generated/services/CreditsService.js.map +0 -1
  53. package/dist/generated/services/SuperbillCodesService.d.ts +0 -84
  54. package/dist/generated/services/SuperbillCodesService.d.ts.map +0 -1
  55. package/dist/generated/services/SuperbillCodesService.js +0 -84
  56. package/dist/generated/services/SuperbillCodesService.js.map +0 -1
@@ -1,399 +1,102 @@
1
1
  import type { CancelablePromise } from '../core/CancelablePromise';
2
2
  export declare class SuperbillsService {
3
3
  /**
4
- * Get superbill
5
- * Get superbill by ID
4
+ * List insurance superbills (US-only)
6
5
  * @returns any Response for status 200
7
6
  * @throws ApiError
8
7
  */
9
- static getSuperbillsById({ id, }: {
10
- id: string;
11
- }): CancelablePromise<{
12
- success: boolean;
13
- data?: {
14
- id: string;
15
- client: {
16
- id: string;
17
- name: string;
18
- dateOfBirth: string;
19
- address?: {
20
- street: string;
21
- city: string;
22
- state: string;
23
- zipCode: string;
24
- };
25
- insurance?: {
26
- provider: string;
27
- memberId: string;
28
- };
29
- };
30
- provider: {
31
- id: string;
32
- name: string;
33
- credentials: string;
34
- npiNumber: string;
35
- licenseNumber?: string;
36
- licenseState?: string;
37
- taxId: string;
38
- taxIdType?: (string | null);
39
- taxIdDisplay?: 'superbills_only' | 'superbills_and_invoices' | 'none';
40
- organizationNpi?: string;
41
- logoUrl?: string;
42
- footerText?: string;
43
- address: {
44
- street: string;
45
- city: string;
46
- state: string;
47
- zipCode: string;
48
- };
49
- phone: string;
50
- email: string;
51
- };
52
- dateRange: {
53
- start: string;
54
- end: string;
55
- };
56
- billingEntries: Array<{
57
- id: string;
58
- sessionId: string;
59
- date: string;
60
- codeType: 'CPT4' | 'ICD10' | 'HCPCS';
61
- code: string;
62
- description: string;
63
- modifier: (string | null);
64
- modifiers?: Array<string>;
65
- units: number;
66
- fee: (number | null);
67
- diagnosisCodes: Array<string>;
68
- diagnosisPointers?: Array<number>;
69
- placeOfService?: (string | null);
70
- lockedBySuperbillId?: (string | null);
71
- aiMetadata?: {
72
- suggested: boolean;
73
- confidence: number;
74
- justification: string;
75
- therapistOverride: boolean;
76
- };
77
- }>;
78
- totals: {
79
- charges: number;
80
- paid: number;
81
- balance: number;
82
- };
83
- status: 'draft' | 'ready' | 'sent' | 'submitted' | 'partial' | 'paid' | 'void' | 'refunded';
84
- pdfUrl?: string;
85
- htmlContent?: string;
86
- generatedAt?: string;
87
- sentAt?: string;
88
- paidAt?: string;
89
- superbillNumber?: (string | null);
90
- diagnoses?: Array<{
91
- ordinal: number;
92
- code: string;
93
- description: string;
94
- }>;
95
- snapshotSource?: 'snapshot' | 'live';
96
- metadata?: Record<string, any>;
97
- aiMetadata?: ({
98
- totalSuggested: number;
99
- averageConfidence: number;
100
- overrideCount: number;
101
- } | null);
102
- createdAt?: string;
103
- updatedAt?: string;
104
- };
105
- error?: string;
106
- }>;
107
- /**
108
- * Delete superbill
109
- * Delete a superbill
110
- * @returns any Response for status 200
111
- * @throws ApiError
112
- */
113
- static deleteSuperbillsById({ id, }: {
114
- id: string;
115
- }): CancelablePromise<{
116
- success: boolean;
117
- message: string;
118
- }>;
119
- /**
120
- * List superbills
121
- * List superbills with filters
122
- * @returns any Response for status 200
123
- * @throws ApiError
124
- */
125
- static getSuperbills({ clientId, status, dateRangeStart, dateRangeEnd, limit, offset, }: {
8
+ static getSuperbills({ clientId, }: {
126
9
  clientId?: string;
127
- status?: 'draft' | 'ready' | 'sent' | 'submitted' | 'partial' | 'paid' | 'void' | 'refunded';
128
- dateRangeStart?: string;
129
- dateRangeEnd?: string;
130
- limit?: string;
131
- offset?: string;
132
10
  }): CancelablePromise<{
133
11
  success: boolean;
134
- data?: any;
135
- error?: string;
136
- total?: number;
137
- }>;
138
- /**
139
- * Create superbill
140
- * Create a new superbill for a client
141
- * @returns any Response for status 200
142
- * @throws ApiError
143
- */
144
- static postSuperbills({ requestBody, }: {
145
- requestBody: {
12
+ data?: Array<{
13
+ id: string;
14
+ tenantId: string;
146
15
  clientId: string;
16
+ therapistId: string;
17
+ invoiceIds: Array<string>;
147
18
  dateRangeStart: string;
148
19
  dateRangeEnd: string;
149
- };
150
- }): CancelablePromise<{
151
- success: boolean;
152
- data?: any;
153
- error?: string;
154
- }>;
155
- /**
156
- * Get AI code suggestions
157
- * Get AI-powered code suggestions for a session
158
- * @returns any Response for status 200
159
- * @throws ApiError
160
- */
161
- static getSuperbillsAiSuggestCodes({ sessionId, }: {
162
- sessionId: string;
163
- }): CancelablePromise<{
164
- success: boolean;
165
- data?: any;
166
- error?: string;
167
- }>;
168
- /**
169
- * List superbill payments
170
- * List all payment records for a superbill
171
- * @returns any Response for status 200
172
- * @throws ApiError
173
- */
174
- static getSuperbillsByIdPayments({ id, }: {
175
- id: string;
176
- }): CancelablePromise<{
177
- success: boolean;
178
- data?: {
179
- payments: Array<{
180
- id: string;
181
- superbillId: string;
182
- amount: number;
183
- paymentMethod: 'stripe' | 'cash' | 'check' | 'card_external' | 'insurance' | 'credit' | 'other';
184
- referenceNumber: (string | null);
185
- paymentDate: string;
186
- notes: (string | null);
187
- refundedAmount: (number | null);
188
- refundedAt: (string | null);
189
- refundReason: (string | null);
190
- recordedBy: string;
191
- createdAt: string;
20
+ status: string;
21
+ superbillNumber: (string | null) | null;
22
+ diagnosesList: Array<{
23
+ ordinal: (string | number);
24
+ code: string;
25
+ description: string;
192
26
  }>;
193
- };
27
+ pdfUrl: (string | null) | null;
28
+ createdAt: string;
29
+ updatedAt: string;
30
+ readyAt: (string | null) | null;
31
+ sentAt: (string | null) | null;
32
+ }>;
33
+ count?: number;
194
34
  error?: string;
195
35
  }>;
196
36
  /**
197
- * Record payment
198
- * Record a manual payment on a superbill
37
+ * Get a superbill
199
38
  * @returns any Response for status 200
200
39
  * @throws ApiError
201
40
  */
202
- static postSuperbillsByIdPayments({ id, requestBody, }: {
203
- id: string;
204
- requestBody: {
205
- amount: number;
206
- paymentMethod: 'stripe' | 'cash' | 'check' | 'card_external' | 'insurance' | 'credit' | 'other';
207
- referenceNumber?: string;
208
- paymentDate: string;
209
- notes?: string;
210
- };
211
- }): CancelablePromise<{
212
- success: boolean;
213
- data?: {
214
- paymentId: string;
215
- superbillStatus: string;
216
- balanceDue: number;
217
- };
218
- error?: string;
219
- }>;
220
- /**
221
- * Add billing entry
222
- * Add a billing entry to a superbill
223
- * @returns any Response for status 200
224
- * @throws ApiError
225
- */
226
- static postSuperbillsByIdBillingEntries({ id, requestBody, }: {
227
- id: string;
228
- requestBody: {
229
- sessionId: string;
230
- codeType: 'CPT4' | 'ICD10' | 'HCPCS';
231
- code: string;
232
- description: string;
233
- modifier?: string;
234
- units?: (string | number);
235
- fee?: number;
236
- diagnosisCodes?: Array<string>;
237
- placeOfService?: '02' | '10' | '11' | '12' | '49' | '53';
238
- };
239
- }): CancelablePromise<{
240
- success: boolean;
241
- data?: any;
242
- error?: string;
243
- }>;
244
- /**
245
- * Update billing entry
246
- * Update an existing billing entry
247
- * @returns any Response for status 200
248
- * @throws ApiError
249
- */
250
- static patchSuperbillsByIdBillingEntriesByEntryId({ id, entryId, requestBody, }: {
251
- id: string;
252
- entryId: string;
253
- requestBody: {
254
- fee?: number;
255
- units?: (string | number);
256
- diagnosisCodes?: Array<string>;
257
- modifier?: string;
258
- };
259
- }): CancelablePromise<{
260
- success: boolean;
261
- data?: any;
262
- error?: string;
263
- }>;
264
- /**
265
- * Remove billing entry
266
- * Remove a billing entry from a superbill
267
- * @returns any Response for status 200
268
- * @throws ApiError
269
- */
270
- static deleteSuperbillsByIdBillingEntriesByEntryId({ id, entryId, }: {
271
- id: string;
272
- entryId: string;
273
- }): CancelablePromise<{
274
- success: boolean;
275
- message: string;
276
- }>;
277
- /**
278
- * Generate HTML superbill
279
- * Generate HTML version of superbill
280
- * @returns any Response for status 200
281
- * @throws ApiError
282
- */
283
- static postSuperbillsByIdGenerateHtml({ id, }: {
284
- id: string;
285
- }): CancelablePromise<{
286
- success: boolean;
287
- data: {
288
- html: string;
289
- };
290
- }>;
291
- /**
292
- * Generate PDF superbill
293
- * Generate PDF version of superbill (BASIC tier)
294
- * @returns any Response for status 200
295
- * @throws ApiError
296
- */
297
- static postSuperbillsByIdGeneratePdf({ id, }: {
298
- id: string;
299
- }): CancelablePromise<{
300
- success: boolean;
301
- data: {
302
- pdfUrl: string;
303
- };
304
- }>;
305
- /**
306
- * Send superbill email
307
- * Send superbill to client via email
308
- * @returns any Response for status 200
309
- * @throws ApiError
310
- */
311
- static postSuperbillsByIdSendEmail({ id, }: {
312
- id: string;
313
- }): CancelablePromise<{
314
- success: boolean;
315
- message: string;
316
- }>;
317
- /**
318
- * Mark superbill ready
319
- * Mark a draft superbill as ready for billing
320
- * @returns any Response for status 200
321
- * @throws ApiError
322
- */
323
- static postSuperbillsByIdReady({ id, }: {
41
+ static getSuperbillsById({ id, }: {
324
42
  id: string;
325
43
  }): CancelablePromise<{
326
44
  success: boolean;
327
45
  data?: {
328
46
  id: string;
47
+ tenantId: string;
48
+ clientId: string;
49
+ therapistId: string;
50
+ invoiceIds: Array<string>;
51
+ dateRangeStart: string;
52
+ dateRangeEnd: string;
329
53
  status: string;
330
- superbillNumber: string;
54
+ superbillNumber: (string | null) | null;
55
+ diagnosesList: Array<{
56
+ ordinal: (string | number);
57
+ code: string;
58
+ description: string;
59
+ }>;
60
+ pdfUrl: (string | null) | null;
61
+ createdAt: string;
62
+ updatedAt: string;
63
+ readyAt: (string | null) | null;
64
+ sentAt: (string | null) | null;
331
65
  };
332
66
  error?: string;
333
67
  }>;
334
68
  /**
335
- * Void superbill
336
- * Void a superbill with a reason
69
+ * Create an insurance superbill from invoices (US-only)
337
70
  * @returns any Response for status 200
338
71
  * @throws ApiError
339
72
  */
340
- static postSuperbillsByIdVoid({ id, requestBody, }: {
341
- id: string;
73
+ static postSuperbillsFromInvoices({ requestBody, }: {
342
74
  requestBody: {
343
- reason: string;
75
+ clientId: string;
76
+ invoiceIds: Array<string>;
344
77
  };
345
78
  }): CancelablePromise<{
346
79
  success: boolean;
347
80
  data?: {
348
81
  id: string;
82
+ tenantId: string;
83
+ clientId: string;
84
+ therapistId: string;
85
+ invoiceIds: Array<string>;
86
+ dateRangeStart: string;
87
+ dateRangeEnd: string;
349
88
  status: string;
350
- voidedAt: string;
351
- voidReason: string;
352
- };
353
- error?: string;
354
- }>;
355
- /**
356
- * Process refund
357
- * Process a refund on a superbill payment
358
- * @returns any Response for status 200
359
- * @throws ApiError
360
- */
361
- static postSuperbillsByIdRefund({ id, requestBody, }: {
362
- id: string;
363
- requestBody: {
364
- amount: number;
365
- refundTo: 'original' | 'credit';
366
- reason: string;
367
- paymentId?: string;
368
- clientCreditId?: string;
369
- };
370
- }): CancelablePromise<{
371
- success: boolean;
372
- data?: {
373
- refundedAmount: number;
374
- superbillStatus: string;
375
- };
376
- error?: string;
377
- }>;
378
- /**
379
- * Set adjustment
380
- * Set an adjustment amount and reason on a superbill
381
- * @returns any Response for status 200
382
- * @throws ApiError
383
- */
384
- static postSuperbillsByIdAdjustment({ id, requestBody, }: {
385
- id: string;
386
- requestBody: {
387
- amount: number;
388
- reason: 'sliding_scale' | 'insurance_write_off' | 'courtesy_discount' | 'error_correction' | 'other';
389
- };
390
- }): CancelablePromise<{
391
- success: boolean;
392
- data?: {
393
- id: string;
394
- adjustmentAmount: number;
395
- adjustmentReason: string;
396
- balanceDue: number;
89
+ superbillNumber: (string | null) | null;
90
+ diagnosesList: Array<{
91
+ ordinal: (string | number);
92
+ code: string;
93
+ description: string;
94
+ }>;
95
+ pdfUrl: (string | null) | null;
96
+ createdAt: string;
97
+ updatedAt: string;
98
+ readyAt: (string | null) | null;
99
+ sentAt: (string | null) | null;
397
100
  };
398
101
  error?: string;
399
102
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"SuperbillsService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/SuperbillsService.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SuperbillsService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/SuperbillsService.ts"],"names":[],"mappings":"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"}