@tellescope/types-models 1.154.0 → 1.155.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 -4
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -4
- 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 +10 -4
package/lib/cjs/index.d.ts
CHANGED
|
@@ -191,6 +191,7 @@ export type OrganizationSettings = {
|
|
|
191
191
|
requireDueDate?: boolean;
|
|
192
192
|
allowArchival?: boolean;
|
|
193
193
|
returnToTicketsList?: boolean;
|
|
194
|
+
dontAddToCareTeamOnTicketAssignment?: boolean;
|
|
194
195
|
};
|
|
195
196
|
calendar?: {
|
|
196
197
|
dayStart?: {
|
|
@@ -795,6 +796,7 @@ export interface EnduserMedication extends EnduserMedication_readonly, EnduserMe
|
|
|
795
796
|
pharmacyName?: string;
|
|
796
797
|
pharmacyId?: string;
|
|
797
798
|
orderStatus?: string;
|
|
799
|
+
reasonForTaking?: string;
|
|
798
800
|
}
|
|
799
801
|
export interface APIKey_readonly extends ClientRecord {
|
|
800
802
|
hashedKey: string;
|
|
@@ -1524,6 +1526,7 @@ export type FormCustomization = {
|
|
|
1524
1526
|
hideLogo?: boolean;
|
|
1525
1527
|
multiPagePublicQuestions?: boolean;
|
|
1526
1528
|
hideBg?: boolean;
|
|
1529
|
+
portalShowThanksAfterSubmission?: boolean;
|
|
1527
1530
|
};
|
|
1528
1531
|
export interface Form_readonly extends ClientRecord {
|
|
1529
1532
|
numFields: number;
|
|
@@ -1995,6 +1998,10 @@ export type EnduserFormResponseForEvent = {
|
|
|
1995
1998
|
enduserId: string;
|
|
1996
1999
|
accessCode: string;
|
|
1997
2000
|
};
|
|
2001
|
+
export type GroupCancellation = {
|
|
2002
|
+
at: Date;
|
|
2003
|
+
id: string;
|
|
2004
|
+
};
|
|
1998
2005
|
export interface CalendarEventPortalSettings {
|
|
1999
2006
|
hideUsers?: boolean;
|
|
2000
2007
|
}
|
|
@@ -2069,10 +2076,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2069
2076
|
holdUntil?: Date;
|
|
2070
2077
|
holdFormResponseId?: string;
|
|
2071
2078
|
tags?: string[];
|
|
2072
|
-
cancelledGroupAttendees?:
|
|
2073
|
-
id: string;
|
|
2074
|
-
at: Date;
|
|
2075
|
-
}[];
|
|
2079
|
+
cancelledGroupAttendees?: GroupCancellation[];
|
|
2076
2080
|
useUserURL?: boolean;
|
|
2077
2081
|
healthieZoomStartURL?: string;
|
|
2078
2082
|
healthieZoomJoinURL?: string;
|
|
@@ -2087,6 +2091,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2087
2091
|
displayDescription?: string;
|
|
2088
2092
|
dontBlockAvailability?: boolean;
|
|
2089
2093
|
previousStartTimes?: (number | string)[];
|
|
2094
|
+
requirePortalCancelReason?: boolean;
|
|
2090
2095
|
}
|
|
2091
2096
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2092
2097
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2205,6 +2210,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2205
2210
|
displayTitle?: string;
|
|
2206
2211
|
displayDescription?: string;
|
|
2207
2212
|
requiresEnduser?: boolean;
|
|
2213
|
+
requirePortalCancelReason?: boolean;
|
|
2208
2214
|
}
|
|
2209
2215
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2210
2216
|
}
|
|
@@ -3332,6 +3338,7 @@ export declare const resource_to_modelName: {
|
|
|
3332
3338
|
export type AnalyticsQueryOptions = {
|
|
3333
3339
|
createdRange?: DateRange;
|
|
3334
3340
|
updatedRange?: DateRange;
|
|
3341
|
+
overrideGlobalRange?: boolean;
|
|
3335
3342
|
groupByCareTeam?: boolean;
|
|
3336
3343
|
};
|
|
3337
3344
|
export type AnalyticsFrameGroupingCategory = {
|
|
@@ -3621,6 +3628,9 @@ export type AutomationTriggerEvents = {
|
|
|
3621
3628
|
'Database Entry Added': AutomationTriggerEventBuilder<"Database Entry Added", {
|
|
3622
3629
|
databaseId: string;
|
|
3623
3630
|
}, {}>;
|
|
3631
|
+
'Form Started': AutomationTriggerEventBuilder<"Form Started", {
|
|
3632
|
+
formIds?: string[];
|
|
3633
|
+
}, {}>;
|
|
3624
3634
|
};
|
|
3625
3635
|
export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
|
|
3626
3636
|
export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
|