@tellescope/types-models 1.129.1 → 1.130.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 +7 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +7 -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 +2 -2
- package/src/index.ts +8 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1266,6 +1266,8 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1266
1266
|
restrictByTags?: string[];
|
|
1267
1267
|
restrictByTagsQualifier?: ListQueryQualifier;
|
|
1268
1268
|
archiveReason?: string;
|
|
1269
|
+
contextFormIds?: string[];
|
|
1270
|
+
contextEnduserFields?: string[];
|
|
1269
1271
|
}
|
|
1270
1272
|
export type AttendeeInfo = {
|
|
1271
1273
|
ExternalUserId: string;
|
|
@@ -1524,6 +1526,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1524
1526
|
canvasId?: string;
|
|
1525
1527
|
canvasQuestionId?: string;
|
|
1526
1528
|
syncToOLH?: boolean;
|
|
1529
|
+
syncWithResponsesFromFormIds?: string[];
|
|
1527
1530
|
}
|
|
1528
1531
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1529
1532
|
}
|
|
@@ -2002,6 +2005,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2002
2005
|
source: string;
|
|
2003
2006
|
identifier: string;
|
|
2004
2007
|
};
|
|
2008
|
+
dontAutoSyncPatientToHealthie?: boolean;
|
|
2005
2009
|
}
|
|
2006
2010
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2007
2011
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2114,6 +2118,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2114
2118
|
matchToHealthieTemplate?: boolean;
|
|
2115
2119
|
useUserURL?: boolean;
|
|
2116
2120
|
instructions?: string;
|
|
2121
|
+
dontAutoSyncPatientToHealthie?: boolean;
|
|
2117
2122
|
}
|
|
2118
2123
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2119
2124
|
}
|
|
@@ -2423,6 +2428,8 @@ export type CreateTicketActionInfo = {
|
|
|
2423
2428
|
priority?: number;
|
|
2424
2429
|
preserveContext?: boolean;
|
|
2425
2430
|
tags?: string[];
|
|
2431
|
+
contextFormIds?: string[];
|
|
2432
|
+
contextEnduserFields?: string[];
|
|
2426
2433
|
};
|
|
2427
2434
|
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage & {
|
|
2428
2435
|
fromEmailOverride?: string;
|