@hipnation-truth/sdk 0.1.6 → 0.2.1
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 +342 -4
- package/dist/index.d.ts +342 -4
- package/dist/index.js +424 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +414 -10
- package/dist/index.mjs.map +1 -1
- package/dist/react.js +2 -1
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +2 -1
- package/dist/react.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -65,6 +65,7 @@ interface AppointmentListOptions {
|
|
|
65
65
|
declare const ENVIRONMENTS: {
|
|
66
66
|
readonly local: "local";
|
|
67
67
|
readonly staging: "staging";
|
|
68
|
+
readonly stg: "stg";
|
|
68
69
|
readonly sandbox: "sandbox";
|
|
69
70
|
readonly uat: "uat";
|
|
70
71
|
readonly production: "production";
|
|
@@ -127,6 +128,70 @@ declare class AppointmentResource {
|
|
|
127
128
|
list(options?: AppointmentListOptions): Promise<PaginatedResult<Appointment>>;
|
|
128
129
|
}
|
|
129
130
|
|
|
131
|
+
/**
|
|
132
|
+
* AttachmentsResource — presigned S3 upload/download + Convex metadata.
|
|
133
|
+
*
|
|
134
|
+
* Replaces CommHub's base64-in-Postgres attachment flow:
|
|
135
|
+
* 1. client.attachments.createUploadUrl(...) → presigned PUT URL
|
|
136
|
+
* 2. Client PUTs bytes directly to S3
|
|
137
|
+
* 3. client.attachments.record(...) → writes Convex metadata
|
|
138
|
+
* 4. client.attachments.getDownloadUrl(s3Key) → presigned GET URL
|
|
139
|
+
*/
|
|
140
|
+
|
|
141
|
+
interface CreateUploadUrlInput {
|
|
142
|
+
fileName: string;
|
|
143
|
+
mimeType: string;
|
|
144
|
+
size: number;
|
|
145
|
+
conversationId?: string;
|
|
146
|
+
}
|
|
147
|
+
interface CreateUploadUrlResult {
|
|
148
|
+
uploadUrl: string;
|
|
149
|
+
s3Key: string;
|
|
150
|
+
expiresIn: number;
|
|
151
|
+
applicationId: string | null;
|
|
152
|
+
}
|
|
153
|
+
interface GetDownloadUrlResult {
|
|
154
|
+
url: string;
|
|
155
|
+
expiresIn: number;
|
|
156
|
+
}
|
|
157
|
+
interface RecordAttachmentInput {
|
|
158
|
+
s3Key: string;
|
|
159
|
+
fileName: string;
|
|
160
|
+
mimeType: string;
|
|
161
|
+
size: number;
|
|
162
|
+
conversationId?: string;
|
|
163
|
+
uploadedBy: string;
|
|
164
|
+
}
|
|
165
|
+
interface Attachment {
|
|
166
|
+
_id: string;
|
|
167
|
+
s3Key: string;
|
|
168
|
+
fileName: string;
|
|
169
|
+
mimeType: string;
|
|
170
|
+
size: number;
|
|
171
|
+
conversationId?: string;
|
|
172
|
+
uploadedBy: string;
|
|
173
|
+
createdAt: string;
|
|
174
|
+
}
|
|
175
|
+
declare class AttachmentsError extends Error {
|
|
176
|
+
readonly status: number;
|
|
177
|
+
constructor(operation: string, status: number, message?: string);
|
|
178
|
+
}
|
|
179
|
+
declare class AttachmentsResource {
|
|
180
|
+
private readonly baseUrl;
|
|
181
|
+
private readonly apiKey;
|
|
182
|
+
private readonly convex;
|
|
183
|
+
constructor(apiBaseUrl: string, apiKey: string, convexClient: ConvexHttpClient);
|
|
184
|
+
private post;
|
|
185
|
+
createUploadUrl(input: CreateUploadUrlInput): Promise<CreateUploadUrlResult>;
|
|
186
|
+
getDownloadUrl(s3Key: string, expiresIn?: number): Promise<GetDownloadUrlResult>;
|
|
187
|
+
record(input: RecordAttachmentInput): Promise<{
|
|
188
|
+
attachmentId: string;
|
|
189
|
+
s3Key: string;
|
|
190
|
+
}>;
|
|
191
|
+
get(attachmentId: string): Promise<Attachment | null>;
|
|
192
|
+
listByConversation(conversationId: string): Promise<Attachment[]>;
|
|
193
|
+
}
|
|
194
|
+
|
|
130
195
|
/**
|
|
131
196
|
* Dialpad resource — typed access to Truth's Dialpad proxy endpoints.
|
|
132
197
|
*
|
|
@@ -142,7 +207,7 @@ interface SendSmsParams {
|
|
|
142
207
|
from_number: string;
|
|
143
208
|
to_number: string;
|
|
144
209
|
message?: string;
|
|
145
|
-
media?: string;
|
|
210
|
+
media?: string | string[];
|
|
146
211
|
}
|
|
147
212
|
interface SendSmsResponse {
|
|
148
213
|
id: string;
|
|
@@ -176,7 +241,8 @@ interface VoicemailAuthResponse {
|
|
|
176
241
|
}
|
|
177
242
|
declare class DialpadResource {
|
|
178
243
|
private readonly baseUrl;
|
|
179
|
-
|
|
244
|
+
private readonly apiKey;
|
|
245
|
+
constructor(apiBaseUrl: string, apiKey: string);
|
|
180
246
|
/**
|
|
181
247
|
* Send an SMS or MMS message via Dialpad.
|
|
182
248
|
*/
|
|
@@ -189,6 +255,25 @@ declare class DialpadResource {
|
|
|
189
255
|
* Hang up an active call.
|
|
190
256
|
*/
|
|
191
257
|
hangupCall(callId: number): Promise<void>;
|
|
258
|
+
/**
|
|
259
|
+
* Alias for `hangupCall` — mirrors the CommHub `endCall` action name so
|
|
260
|
+
* the SDK swap is a direct rename.
|
|
261
|
+
*/
|
|
262
|
+
endCall(callId: number): Promise<void>;
|
|
263
|
+
/**
|
|
264
|
+
* Send an MMS with a pre-uploaded attachment. Takes the S3 key returned
|
|
265
|
+
* by `client.attachments.createUploadUrl(...)` + PUT, fetches a short-
|
|
266
|
+
* lived download URL, and hands it to Dialpad as `media[]`.
|
|
267
|
+
*
|
|
268
|
+
* Replaces CommHub's `sendAttachment` Hasura Action (which stored bytes
|
|
269
|
+
* as base64 in Postgres and served them through a GET endpoint).
|
|
270
|
+
*/
|
|
271
|
+
sendAttachmentWithUrl(params: {
|
|
272
|
+
from_number: string;
|
|
273
|
+
to_number: string;
|
|
274
|
+
mediaUrl: string;
|
|
275
|
+
message?: string;
|
|
276
|
+
}): Promise<SendSmsResponse>;
|
|
192
277
|
/**
|
|
193
278
|
* Get the status of a call.
|
|
194
279
|
*/
|
|
@@ -220,7 +305,7 @@ declare class DialpadResource {
|
|
|
220
305
|
}
|
|
221
306
|
declare class MessagesResource {
|
|
222
307
|
readonly dialpad: DialpadResource;
|
|
223
|
-
constructor(apiBaseUrl: string);
|
|
308
|
+
constructor(apiBaseUrl: string, apiKey: string);
|
|
224
309
|
}
|
|
225
310
|
declare class DialpadProxyError extends Error {
|
|
226
311
|
readonly method: string;
|
|
@@ -284,6 +369,84 @@ declare class EhrProxyError extends Error {
|
|
|
284
369
|
constructor(provider: string, method: string, path: string, status: number);
|
|
285
370
|
}
|
|
286
371
|
|
|
372
|
+
/**
|
|
373
|
+
* NotesResource — push formatted notes to Elation.
|
|
374
|
+
*
|
|
375
|
+
* Caller assembles the note body (text + bullets). Truth owns the Elation
|
|
376
|
+
* OAuth token and the HTTP call so applications can drop Elation
|
|
377
|
+
* credentials from their own config.
|
|
378
|
+
*/
|
|
379
|
+
interface NonVisitNoteBullet {
|
|
380
|
+
text: string;
|
|
381
|
+
category?: string;
|
|
382
|
+
}
|
|
383
|
+
interface PushNoteToElationInput {
|
|
384
|
+
patient: number;
|
|
385
|
+
physician: number;
|
|
386
|
+
practice: number;
|
|
387
|
+
note: {
|
|
388
|
+
text: string;
|
|
389
|
+
type?: string;
|
|
390
|
+
};
|
|
391
|
+
document_date?: string;
|
|
392
|
+
chart_date?: string;
|
|
393
|
+
bullets?: NonVisitNoteBullet[];
|
|
394
|
+
}
|
|
395
|
+
interface PushNoteToElationResult {
|
|
396
|
+
success: boolean;
|
|
397
|
+
elationNoteId: number | null;
|
|
398
|
+
}
|
|
399
|
+
declare class NotesError extends Error {
|
|
400
|
+
readonly status: number;
|
|
401
|
+
constructor(operation: string, status: number, message?: string);
|
|
402
|
+
}
|
|
403
|
+
declare class NotesResource {
|
|
404
|
+
private readonly baseUrl;
|
|
405
|
+
private readonly apiKey;
|
|
406
|
+
constructor(apiBaseUrl: string, apiKey: string);
|
|
407
|
+
pushToElation(input: PushNoteToElationInput): Promise<PushNoteToElationResult>;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* PatientDetailsResource — merged Hint + Elation patient lookups.
|
|
412
|
+
*
|
|
413
|
+
* Backed by the Truth API at /api/patients/details/*, authenticated with
|
|
414
|
+
* X-API-Key. Replaces CommHub's getPatientDetails / getPatientBasicDetails
|
|
415
|
+
* / getPatientMedicalDetails actions.
|
|
416
|
+
*/
|
|
417
|
+
interface PatientDetailsInput {
|
|
418
|
+
hintId?: string;
|
|
419
|
+
elationId?: string;
|
|
420
|
+
}
|
|
421
|
+
interface PatientDetailsResult {
|
|
422
|
+
hint: unknown | null;
|
|
423
|
+
elation: unknown | null;
|
|
424
|
+
resolvedElationId: string | null;
|
|
425
|
+
}
|
|
426
|
+
interface PatientBasicDetailsResult {
|
|
427
|
+
hint: unknown | null;
|
|
428
|
+
elationId: string | null;
|
|
429
|
+
}
|
|
430
|
+
interface PatientMedicalDetailsResult {
|
|
431
|
+
problems: unknown | null;
|
|
432
|
+
medications: unknown | null;
|
|
433
|
+
allergies: unknown | null;
|
|
434
|
+
appointments: unknown | null;
|
|
435
|
+
}
|
|
436
|
+
declare class PatientDetailsError extends Error {
|
|
437
|
+
readonly status: number;
|
|
438
|
+
constructor(operation: string, status: number, message?: string);
|
|
439
|
+
}
|
|
440
|
+
declare class PatientDetailsResource {
|
|
441
|
+
private readonly baseUrl;
|
|
442
|
+
private readonly apiKey;
|
|
443
|
+
constructor(apiBaseUrl: string, apiKey: string);
|
|
444
|
+
private post;
|
|
445
|
+
get(input: PatientDetailsInput): Promise<PatientDetailsResult>;
|
|
446
|
+
getBasic(input: PatientDetailsInput): Promise<PatientBasicDetailsResult>;
|
|
447
|
+
getMedical(elationId: string): Promise<PatientMedicalDetailsResult>;
|
|
448
|
+
}
|
|
449
|
+
|
|
287
450
|
/**
|
|
288
451
|
* Patient interfaces for the Truth SDK.
|
|
289
452
|
*/
|
|
@@ -356,6 +519,169 @@ declare class PatientResource {
|
|
|
356
519
|
list(options?: PatientListOptions): Promise<PaginatedResult<Patient>>;
|
|
357
520
|
}
|
|
358
521
|
|
|
522
|
+
/**
|
|
523
|
+
* Reminder types — scheduled conversation reminders.
|
|
524
|
+
*/
|
|
525
|
+
type ReminderStatus = "pending" | "triggered" | "cancelled";
|
|
526
|
+
interface Reminder {
|
|
527
|
+
_id: string;
|
|
528
|
+
conversationId: string;
|
|
529
|
+
remindAt: string;
|
|
530
|
+
status: ReminderStatus;
|
|
531
|
+
note?: string;
|
|
532
|
+
createdBy: string;
|
|
533
|
+
createdAt: string;
|
|
534
|
+
triggeredAt?: string;
|
|
535
|
+
cancelledAt?: string;
|
|
536
|
+
}
|
|
537
|
+
interface ScheduleReminderInput {
|
|
538
|
+
conversationId: string;
|
|
539
|
+
remindAt: string | Date;
|
|
540
|
+
note?: string;
|
|
541
|
+
createdBy: string;
|
|
542
|
+
}
|
|
543
|
+
interface ScheduleReminderResult {
|
|
544
|
+
reminderId: string;
|
|
545
|
+
remindAt: string;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* RemindersResource — schedule, cancel, and list conversation reminders.
|
|
550
|
+
*
|
|
551
|
+
* Backed by Convex mutations/queries (durable scheduled functions) — replaces
|
|
552
|
+
* the in-memory setTimeout scheduler that used to live in CommHub's NestJS
|
|
553
|
+
* backend.
|
|
554
|
+
*/
|
|
555
|
+
|
|
556
|
+
declare class RemindersResource {
|
|
557
|
+
private readonly convex;
|
|
558
|
+
constructor(convexClient: ConvexHttpClient);
|
|
559
|
+
/**
|
|
560
|
+
* Schedule a reminder to fire at `remindAt`. Returns the reminder id,
|
|
561
|
+
* which callers should store if they may want to cancel it later.
|
|
562
|
+
*/
|
|
563
|
+
schedule(input: ScheduleReminderInput): Promise<ScheduleReminderResult>;
|
|
564
|
+
/**
|
|
565
|
+
* Cancel a pending reminder. No-op if the reminder has already fired or
|
|
566
|
+
* been cancelled.
|
|
567
|
+
*/
|
|
568
|
+
cancel(reminderId: string, cancelledBy: string): Promise<{
|
|
569
|
+
reminderId: string;
|
|
570
|
+
status: string;
|
|
571
|
+
}>;
|
|
572
|
+
/**
|
|
573
|
+
* List reminders for a conversation (most recent first).
|
|
574
|
+
*/
|
|
575
|
+
listByConversation(conversationId: string): Promise<Reminder[]>;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
type TaskStatus = "open" | "in_progress" | "resolved" | "cancelled";
|
|
579
|
+
interface Task {
|
|
580
|
+
_id: string;
|
|
581
|
+
eventId?: string;
|
|
582
|
+
assignedTo: string;
|
|
583
|
+
createdBy: string;
|
|
584
|
+
title: string;
|
|
585
|
+
description?: string;
|
|
586
|
+
data?: unknown;
|
|
587
|
+
status: TaskStatus;
|
|
588
|
+
resolvedBy?: string;
|
|
589
|
+
resolvedAt?: string;
|
|
590
|
+
createdAt: string;
|
|
591
|
+
updatedAt: string;
|
|
592
|
+
}
|
|
593
|
+
interface CreateTaskInput {
|
|
594
|
+
eventId?: string;
|
|
595
|
+
assignedTo: string;
|
|
596
|
+
createdBy: string;
|
|
597
|
+
title: string;
|
|
598
|
+
description?: string;
|
|
599
|
+
data?: unknown;
|
|
600
|
+
}
|
|
601
|
+
interface UpdateTaskStatusInput {
|
|
602
|
+
taskId: string;
|
|
603
|
+
status: TaskStatus;
|
|
604
|
+
resolvedBy?: string;
|
|
605
|
+
data?: unknown;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* TasksResource — create, update status, list, get tasks.
|
|
610
|
+
*
|
|
611
|
+
* Backed by Convex. Replaces CommHub's createTaskWithNotification +
|
|
612
|
+
* updateTaskStatusWithNotification actions. Push notification side-effect
|
|
613
|
+
* is emitted downstream via Kinesis.
|
|
614
|
+
*/
|
|
615
|
+
|
|
616
|
+
declare class TasksResource {
|
|
617
|
+
private readonly convex;
|
|
618
|
+
constructor(convexClient: ConvexHttpClient);
|
|
619
|
+
create(input: CreateTaskInput): Promise<{
|
|
620
|
+
taskId: string;
|
|
621
|
+
status: TaskStatus;
|
|
622
|
+
}>;
|
|
623
|
+
updateStatus(input: UpdateTaskStatusInput): Promise<{
|
|
624
|
+
taskId: string;
|
|
625
|
+
status: TaskStatus;
|
|
626
|
+
previousStatus: TaskStatus;
|
|
627
|
+
}>;
|
|
628
|
+
get(taskId: string): Promise<Task | null>;
|
|
629
|
+
listByAssignee(assignedTo: string, options?: {
|
|
630
|
+
status?: TaskStatus;
|
|
631
|
+
limit?: number;
|
|
632
|
+
}): Promise<Task[]>;
|
|
633
|
+
listOpen(limit?: number): Promise<Task[]>;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
interface TranslationResult {
|
|
637
|
+
translatedText: string;
|
|
638
|
+
detectedLanguage?: {
|
|
639
|
+
language: string;
|
|
640
|
+
score: number;
|
|
641
|
+
};
|
|
642
|
+
sourceLanguage: string;
|
|
643
|
+
targetLanguage: string;
|
|
644
|
+
}
|
|
645
|
+
interface DetectionResult {
|
|
646
|
+
language: string;
|
|
647
|
+
score: number;
|
|
648
|
+
isTranslationSupported: boolean;
|
|
649
|
+
isTransliterationSupported: boolean;
|
|
650
|
+
}
|
|
651
|
+
interface TranslateTextInput {
|
|
652
|
+
text: string;
|
|
653
|
+
targetLanguage: string;
|
|
654
|
+
sourceLanguage?: string;
|
|
655
|
+
}
|
|
656
|
+
interface TranslateBatchInput {
|
|
657
|
+
texts: string[];
|
|
658
|
+
targetLanguage: string;
|
|
659
|
+
sourceLanguage?: string;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
/**
|
|
663
|
+
* TranslationResource — Azure Translator proxy through Truth API.
|
|
664
|
+
*
|
|
665
|
+
* All three operations are HTTP calls to Truth's oRPC endpoints at
|
|
666
|
+
* `/api/translation/*`, authenticated with the same X-API-Key as the
|
|
667
|
+
* event tracker.
|
|
668
|
+
*/
|
|
669
|
+
|
|
670
|
+
declare class TranslationError extends Error {
|
|
671
|
+
readonly status: number;
|
|
672
|
+
readonly operation: string;
|
|
673
|
+
constructor(operation: string, status: number, message?: string);
|
|
674
|
+
}
|
|
675
|
+
declare class TranslationResource {
|
|
676
|
+
private readonly baseUrl;
|
|
677
|
+
private readonly apiKey;
|
|
678
|
+
constructor(apiBaseUrl: string, apiKey: string);
|
|
679
|
+
private post;
|
|
680
|
+
translate(input: TranslateTextInput): Promise<TranslationResult>;
|
|
681
|
+
translateBatch(input: TranslateBatchInput): Promise<TranslationResult[]>;
|
|
682
|
+
detect(text: string): Promise<DetectionResult>;
|
|
683
|
+
}
|
|
684
|
+
|
|
359
685
|
/**
|
|
360
686
|
* Typed event definitions for the Truth Platform event store.
|
|
361
687
|
*
|
|
@@ -729,6 +1055,18 @@ declare class TruthClient {
|
|
|
729
1055
|
readonly ehr: EhrResource;
|
|
730
1056
|
/** Messaging proxy — typed access to Dialpad APIs through Truth */
|
|
731
1057
|
readonly messages: MessagesResource;
|
|
1058
|
+
/** Conversation reminders (Convex-backed, durable scheduler) */
|
|
1059
|
+
readonly reminders: RemindersResource;
|
|
1060
|
+
/** Translation (Azure Translator proxy) */
|
|
1061
|
+
readonly translation: TranslationResource;
|
|
1062
|
+
/** Tasks (Convex-backed) */
|
|
1063
|
+
readonly tasks: TasksResource;
|
|
1064
|
+
/** Patient details — merged Hint + Elation lookups via Truth API */
|
|
1065
|
+
readonly patientDetails: PatientDetailsResource;
|
|
1066
|
+
/** Attachments — presigned S3 upload/download + Convex metadata */
|
|
1067
|
+
readonly attachments: AttachmentsResource;
|
|
1068
|
+
/** Notes — push formatted notes to Elation */
|
|
1069
|
+
readonly notes: NotesResource;
|
|
732
1070
|
private readonly convex;
|
|
733
1071
|
private readonly tracker;
|
|
734
1072
|
constructor(config: TruthClientConfig);
|
|
@@ -856,4 +1194,4 @@ declare class Tracker {
|
|
|
856
1194
|
private registerShutdownHooks;
|
|
857
1195
|
}
|
|
858
1196
|
|
|
859
|
-
export { AUTH_EVENTS, type ActorContext, type Appointment, type AppointmentListOptions, AppointmentResource, type AuthEventType, type AuthLoginFailedPayload, type AuthLoginSucceededPayload, CALL_EVENTS, CONVERSATION_EVENTS, type CallConnectedPayload, type CallEndedPayload, type CallEventType, type CallInitiatedPayload, type CallMissedPayload, type CallStatusResponse, type ConversationAttachmentDownloadedPayload, type ConversationAttachmentUploadedPayload, type ConversationCreatedPayload, type ConversationEventType, type ConversationMarkedReadPayload, type ConversationMessageReceivedPayload, type ConversationMessageSentPayload, type DialpadNumberInfo, DialpadProxyError, DialpadResource, type DialpadUser, ENVIRONMENTS, EVENT_TYPES, EhrProviderProxy, EhrProxyError, EhrResource, type Environment, type EventActor, type EventCompliance, type EventEnvelope, type EventPayloadMap, type EventSubject, type EventType, type InitiateCallResponse, MessagesResource, NOTIFICATION_EVENTS, type NotificationDeliveredPayload, type NotificationEventType, type NotificationOpenedPayload, type NotificationSentPayload, PROVIDER_EVENTS, type PaginatedResult, type Patient, type PatientListOptions, PatientResource, type ProviderEventType, type ProviderSyncFailedPayload, type ProviderSyncStartedPayload, type ProviderSyncSucceededPayload, REMINDER_EVENTS, type ReminderEventType, type ReminderScheduledPayload, type ReminderTriggeredPayload, SECURITY_EVENTS, type SecurityAccessDeniedPayload, type SecurityEventType, type SendSmsParams, type SendSmsResponse, TASK_EVENTS, TRANSLATION_EVENTS, type TaskAssignedPayload, type TaskCreatedPayload, type TaskEventType, type TaskStatusChangedPayload, type TrackOptions, Tracker, type TranslationCompletedPayload, type TranslationEventType, type TranslationRequestedPayload, TruthClient, type TruthClientConfig, type VoicemailAuthResponse, generateUuidV7 };
|
|
1197
|
+
export { AUTH_EVENTS, type ActorContext, type Appointment, type AppointmentListOptions, AppointmentResource, type Attachment, AttachmentsError, AttachmentsResource, type AuthEventType, type AuthLoginFailedPayload, type AuthLoginSucceededPayload, CALL_EVENTS, CONVERSATION_EVENTS, type CallConnectedPayload, type CallEndedPayload, type CallEventType, type CallInitiatedPayload, type CallMissedPayload, type CallStatusResponse, type ConversationAttachmentDownloadedPayload, type ConversationAttachmentUploadedPayload, type ConversationCreatedPayload, type ConversationEventType, type ConversationMarkedReadPayload, type ConversationMessageReceivedPayload, type ConversationMessageSentPayload, type CreateTaskInput, type CreateUploadUrlInput, type CreateUploadUrlResult, type DetectionResult, type DialpadNumberInfo, DialpadProxyError, DialpadResource, type DialpadUser, ENVIRONMENTS, EVENT_TYPES, EhrProviderProxy, EhrProxyError, EhrResource, type Environment, type EventActor, type EventCompliance, type EventEnvelope, type EventPayloadMap, type EventSubject, type EventType, type GetDownloadUrlResult, type InitiateCallResponse, MessagesResource, NOTIFICATION_EVENTS, type NonVisitNoteBullet, NotesError, NotesResource, type NotificationDeliveredPayload, type NotificationEventType, type NotificationOpenedPayload, type NotificationSentPayload, PROVIDER_EVENTS, type PaginatedResult, type Patient, type PatientBasicDetailsResult, PatientDetailsError, type PatientDetailsInput, PatientDetailsResource, type PatientDetailsResult, type PatientListOptions, type PatientMedicalDetailsResult, PatientResource, type ProviderEventType, type ProviderSyncFailedPayload, type ProviderSyncStartedPayload, type ProviderSyncSucceededPayload, type PushNoteToElationInput, type PushNoteToElationResult, REMINDER_EVENTS, type RecordAttachmentInput, type Reminder, type ReminderEventType, type ReminderScheduledPayload, type ReminderStatus, type ReminderTriggeredPayload, RemindersResource, SECURITY_EVENTS, type ScheduleReminderInput, type ScheduleReminderResult, type SecurityAccessDeniedPayload, type SecurityEventType, type SendSmsParams, type SendSmsResponse, TASK_EVENTS, TRANSLATION_EVENTS, type Task, type TaskAssignedPayload, type TaskCreatedPayload, type TaskEventType, type TaskStatus, type TaskStatusChangedPayload, TasksResource, type TrackOptions, Tracker, type TranslateBatchInput, type TranslateTextInput, type TranslationCompletedPayload, TranslationError, type TranslationEventType, type TranslationRequestedPayload, TranslationResource, type TranslationResult, TruthClient, type TruthClientConfig, type UpdateTaskStatusInput, type VoicemailAuthResponse, generateUuidV7 };
|