@tellescope/types-models 1.194.0 → 1.196.0
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 +14 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -0
- 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 +14 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -315,6 +315,10 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
315
315
|
customProviderURL?: string;
|
|
316
316
|
customTermsOfService?: string;
|
|
317
317
|
customPrivacyPolicy?: string;
|
|
318
|
+
customPolicies?: {
|
|
319
|
+
url: string;
|
|
320
|
+
title: string;
|
|
321
|
+
}[];
|
|
318
322
|
customPoliciesVersion?: string;
|
|
319
323
|
requireCustomTermsOnMagicLink?: boolean;
|
|
320
324
|
settings?: OrganizationSettings;
|
|
@@ -442,6 +446,7 @@ export type OrganizationTheme = {
|
|
|
442
446
|
};
|
|
443
447
|
customTermsOfService?: string;
|
|
444
448
|
customPrivacyPolicy?: string;
|
|
449
|
+
customPolicies?: Organization['customPolicies'];
|
|
445
450
|
customPoliciesVersion?: string;
|
|
446
451
|
requireCustomTermsOnMagicLink?: boolean;
|
|
447
452
|
};
|
|
@@ -596,6 +601,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
596
601
|
drChronoId?: string;
|
|
597
602
|
canvasId?: string;
|
|
598
603
|
medplumId?: string;
|
|
604
|
+
athenaId?: string;
|
|
599
605
|
zoomId?: string;
|
|
600
606
|
zendeskId?: number;
|
|
601
607
|
tags?: string[];
|
|
@@ -1795,6 +1801,7 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1795
1801
|
pushRemovedTags?: boolean;
|
|
1796
1802
|
overwriteAddress?: boolean;
|
|
1797
1803
|
requirePhoneToPushEnduser?: boolean;
|
|
1804
|
+
syncAsActive?: boolean;
|
|
1798
1805
|
}
|
|
1799
1806
|
export type BuildDatabaseRecordField<K extends string, V, O> = {
|
|
1800
1807
|
type: K;
|
|
@@ -2120,6 +2127,7 @@ export type BaseAvailabilityBlock = {
|
|
|
2120
2127
|
userId: string;
|
|
2121
2128
|
startTimeInMS: number;
|
|
2122
2129
|
durationInMinutes: number;
|
|
2130
|
+
externalId?: string;
|
|
2123
2131
|
};
|
|
2124
2132
|
export interface AvailabilityBlock_readonly extends ClientRecord {
|
|
2125
2133
|
}
|
|
@@ -2190,6 +2198,8 @@ export interface CalendarEvent_updatesDisabled {
|
|
|
2190
2198
|
}
|
|
2191
2199
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
2192
2200
|
athenaDepartmentId?: string;
|
|
2201
|
+
generateAthenaTelehealthLink?: boolean;
|
|
2202
|
+
athenaTypeId?: string;
|
|
2193
2203
|
actualDuration?: number;
|
|
2194
2204
|
dontSyncToCanvas?: boolean;
|
|
2195
2205
|
reason?: string;
|
|
@@ -2404,6 +2414,8 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2404
2414
|
preventRescheduleMinutesInAdvance?: number;
|
|
2405
2415
|
preventCancelMinutesInAdvance?: number;
|
|
2406
2416
|
athenaDepartmentId?: string;
|
|
2417
|
+
generateAthenaTelehealthLink?: boolean;
|
|
2418
|
+
athenaTypeId?: string;
|
|
2407
2419
|
}
|
|
2408
2420
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2409
2421
|
}
|
|
@@ -3913,6 +3925,7 @@ export type AutomationTriggerEvents = {
|
|
|
3913
3925
|
source: string;
|
|
3914
3926
|
status: string;
|
|
3915
3927
|
fills?: string[];
|
|
3928
|
+
skus?: string[];
|
|
3916
3929
|
}, {}>;
|
|
3917
3930
|
'Missed Call': AutomationTriggerEventBuilder<"Missed Call", {
|
|
3918
3931
|
phoneNumbers?: string[];
|
|
@@ -4319,6 +4332,7 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
|
|
|
4319
4332
|
frequency?: string;
|
|
4320
4333
|
activateBy?: string;
|
|
4321
4334
|
fill?: string;
|
|
4335
|
+
sku?: string;
|
|
4322
4336
|
}
|
|
4323
4337
|
export interface EnduserProblem_readonly extends ClientRecord {
|
|
4324
4338
|
}
|