@tellescope/types-models 1.153.1 → 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 +30 -4
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +30 -4
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +25 -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;
|
|
@@ -1577,6 +1580,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1577
1580
|
}[];
|
|
1578
1581
|
hideAfterUnsubmittedInMS?: number;
|
|
1579
1582
|
hideFromCompose?: boolean;
|
|
1583
|
+
enduserFieldsToAppendForSync?: string[];
|
|
1580
1584
|
}
|
|
1581
1585
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1582
1586
|
}
|
|
@@ -1994,6 +1998,10 @@ export type EnduserFormResponseForEvent = {
|
|
|
1994
1998
|
enduserId: string;
|
|
1995
1999
|
accessCode: string;
|
|
1996
2000
|
};
|
|
2001
|
+
export type GroupCancellation = {
|
|
2002
|
+
at: Date;
|
|
2003
|
+
id: string;
|
|
2004
|
+
};
|
|
1997
2005
|
export interface CalendarEventPortalSettings {
|
|
1998
2006
|
hideUsers?: boolean;
|
|
1999
2007
|
}
|
|
@@ -2068,10 +2076,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2068
2076
|
holdUntil?: Date;
|
|
2069
2077
|
holdFormResponseId?: string;
|
|
2070
2078
|
tags?: string[];
|
|
2071
|
-
cancelledGroupAttendees?:
|
|
2072
|
-
id: string;
|
|
2073
|
-
at: Date;
|
|
2074
|
-
}[];
|
|
2079
|
+
cancelledGroupAttendees?: GroupCancellation[];
|
|
2075
2080
|
useUserURL?: boolean;
|
|
2076
2081
|
healthieZoomStartURL?: string;
|
|
2077
2082
|
healthieZoomJoinURL?: string;
|
|
@@ -2086,6 +2091,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2086
2091
|
displayDescription?: string;
|
|
2087
2092
|
dontBlockAvailability?: boolean;
|
|
2088
2093
|
previousStartTimes?: (number | string)[];
|
|
2094
|
+
requirePortalCancelReason?: boolean;
|
|
2089
2095
|
}
|
|
2090
2096
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2091
2097
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2204,6 +2210,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2204
2210
|
displayTitle?: string;
|
|
2205
2211
|
displayDescription?: string;
|
|
2206
2212
|
requiresEnduser?: boolean;
|
|
2213
|
+
requirePortalCancelReason?: boolean;
|
|
2207
2214
|
}
|
|
2208
2215
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2209
2216
|
}
|
|
@@ -3331,6 +3338,7 @@ export declare const resource_to_modelName: {
|
|
|
3331
3338
|
export type AnalyticsQueryOptions = {
|
|
3332
3339
|
createdRange?: DateRange;
|
|
3333
3340
|
updatedRange?: DateRange;
|
|
3341
|
+
overrideGlobalRange?: boolean;
|
|
3334
3342
|
groupByCareTeam?: boolean;
|
|
3335
3343
|
};
|
|
3336
3344
|
export type AnalyticsFrameGroupingCategory = {
|
|
@@ -3620,6 +3628,9 @@ export type AutomationTriggerEvents = {
|
|
|
3620
3628
|
'Database Entry Added': AutomationTriggerEventBuilder<"Database Entry Added", {
|
|
3621
3629
|
databaseId: string;
|
|
3622
3630
|
}, {}>;
|
|
3631
|
+
'Form Started': AutomationTriggerEventBuilder<"Form Started", {
|
|
3632
|
+
formIds?: string[];
|
|
3633
|
+
}, {}>;
|
|
3623
3634
|
};
|
|
3624
3635
|
export type AutomationTriggerEventType = keyof AutomationTriggerEvents;
|
|
3625
3636
|
export type AutomationTriggerEvent = AutomationTriggerEvents[AutomationTriggerEventType];
|
|
@@ -4208,7 +4219,19 @@ export interface DiagnosisCode_updatesDisabled {
|
|
|
4208
4219
|
}
|
|
4209
4220
|
export interface DiagnosisCode extends DiagnosisCode_readonly, DiagnosisCode_required, DiagnosisCode_updatesDisabled {
|
|
4210
4221
|
}
|
|
4222
|
+
export interface AllergyCode_readonly extends ClientRecord {
|
|
4223
|
+
}
|
|
4224
|
+
export interface AllergyCode_required {
|
|
4225
|
+
code: string;
|
|
4226
|
+
display: string;
|
|
4227
|
+
system: string;
|
|
4228
|
+
}
|
|
4229
|
+
export interface AllergyCode_updatesDisabled {
|
|
4230
|
+
}
|
|
4231
|
+
export interface AllergyCode extends AllergyCode_readonly, AllergyCode_required, AllergyCode_updatesDisabled {
|
|
4232
|
+
}
|
|
4211
4233
|
export type ModelForName_required = {
|
|
4234
|
+
allergy_codes: AllergyCode_required;
|
|
4212
4235
|
diagnosis_codes: DiagnosisCode_required;
|
|
4213
4236
|
suggested_contacts: SuggestedContact_required;
|
|
4214
4237
|
call_hold_queues: CallHoldQueue_required;
|
|
@@ -4293,6 +4316,7 @@ export type ModelForName_required = {
|
|
|
4293
4316
|
};
|
|
4294
4317
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4295
4318
|
export interface ModelForName_readonly {
|
|
4319
|
+
allergy_codes: AllergyCode_readonly;
|
|
4296
4320
|
diagnosis_codes: DiagnosisCode_readonly;
|
|
4297
4321
|
suggested_contacts: SuggestedContact_readonly;
|
|
4298
4322
|
call_hold_queues: CallHoldQueue_readonly;
|
|
@@ -4377,6 +4401,7 @@ export interface ModelForName_readonly {
|
|
|
4377
4401
|
}
|
|
4378
4402
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4379
4403
|
export interface ModelForName_updatesDisabled {
|
|
4404
|
+
allergy_codes: AllergyCode_updatesDisabled;
|
|
4380
4405
|
diagnosis_codes: DiagnosisCode_updatesDisabled;
|
|
4381
4406
|
suggested_contacts: SuggestedContact_updatesDisabled;
|
|
4382
4407
|
call_hold_queues: CallHoldQueue_updatesDisabled;
|
|
@@ -4461,6 +4486,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4461
4486
|
}
|
|
4462
4487
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4463
4488
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4489
|
+
allergy_codes: AllergyCode;
|
|
4464
4490
|
diagnosis_codes: DiagnosisCode;
|
|
4465
4491
|
suggested_contacts: SuggestedContact;
|
|
4466
4492
|
call_hold_queues: CallHoldQueue;
|