@tellescope/types-models 1.244.3 → 1.244.4
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/lib/cjs/index.d.ts +7 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +7 -1
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +5 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -285,6 +285,7 @@ export type OrganizationSettings = {
|
|
|
285
285
|
};
|
|
286
286
|
integrations?: {
|
|
287
287
|
vitalLabOrderPhysicianOptional?: boolean;
|
|
288
|
+
syncLabResultObservations?: boolean;
|
|
288
289
|
athenaAppointmentSyncJITSeconds?: number;
|
|
289
290
|
};
|
|
290
291
|
interface?: {
|
|
@@ -488,6 +489,10 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
488
489
|
number: string;
|
|
489
490
|
label: string;
|
|
490
491
|
}[];
|
|
492
|
+
faxDestinations?: {
|
|
493
|
+
label: string;
|
|
494
|
+
number: string;
|
|
495
|
+
}[];
|
|
491
496
|
mfaxAccountId?: string;
|
|
492
497
|
athenaFieldsSync?: AthenaFieldSync[];
|
|
493
498
|
athenaSubscriptions?: AthenaSubscription[];
|
|
@@ -3511,7 +3516,7 @@ export type ObservationValue = {
|
|
|
3511
3516
|
unit: string;
|
|
3512
3517
|
};
|
|
3513
3518
|
export type ObservationStatusCode = ('registered' | 'preliminary' | 'final' | 'amended' | 'corrected' | 'cancelled' | 'entered-in-error' | 'unknown');
|
|
3514
|
-
export type ObservationCategory = 'vital-signs';
|
|
3519
|
+
export type ObservationCategory = 'vital-signs' | 'laboratory';
|
|
3515
3520
|
export interface EnduserObservation_readonly extends ClientRecord {
|
|
3516
3521
|
}
|
|
3517
3522
|
export interface EnduserObservation_required {
|
|
@@ -5391,6 +5396,7 @@ export interface IntegrationLog_readonly extends ClientRecord {
|
|
|
5391
5396
|
url?: string;
|
|
5392
5397
|
payload?: string;
|
|
5393
5398
|
response?: string;
|
|
5399
|
+
enduserId?: string;
|
|
5394
5400
|
}
|
|
5395
5401
|
export interface IntegrationLog_required {
|
|
5396
5402
|
}
|