@tellescope/types-models 1.178.0 → 1.179.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 +19 -6
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +19 -6
- 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 +16 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -191,6 +191,7 @@ export type OrganizationSettings = {
|
|
|
191
191
|
showDiagnoses?: boolean;
|
|
192
192
|
showDeviceOrders?: boolean;
|
|
193
193
|
requireObservationInvalidationReason?: boolean;
|
|
194
|
+
defaultHideFilesFromPortal?: boolean;
|
|
194
195
|
};
|
|
195
196
|
tickets?: {
|
|
196
197
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -228,6 +229,9 @@ export type OrganizationSettings = {
|
|
|
228
229
|
users?: {
|
|
229
230
|
sessionDurationInHours?: number;
|
|
230
231
|
};
|
|
232
|
+
integrations?: {
|
|
233
|
+
vitalLabOrderPhysicianOptional?: boolean;
|
|
234
|
+
};
|
|
231
235
|
};
|
|
232
236
|
export type OrganizationLimits = {
|
|
233
237
|
[K in ModelName]?: number;
|
|
@@ -1201,6 +1205,7 @@ export interface MessageTemplate extends MessageTemplate_readonly, MessageTempla
|
|
|
1201
1205
|
hideFromCompose?: boolean;
|
|
1202
1206
|
tags?: string[];
|
|
1203
1207
|
archivedAt?: Date | '';
|
|
1208
|
+
mmsAttachmentURLs?: string[];
|
|
1204
1209
|
}
|
|
1205
1210
|
export interface MessageTemplateSnippet_readonly extends ClientRecord {
|
|
1206
1211
|
}
|
|
@@ -1397,6 +1402,7 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
|
|
|
1397
1402
|
discussionRoomId?: string;
|
|
1398
1403
|
source?: string;
|
|
1399
1404
|
externalId?: string;
|
|
1405
|
+
hiddenFromTimeline?: boolean;
|
|
1400
1406
|
}
|
|
1401
1407
|
export type FormFieldLiteralType = 'Rich Text' | 'description' | 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'dateString' | 'rating' | 'Time';
|
|
1402
1408
|
export type FormFieldComplexType = "Conditions" | "Allergies" | "Emotii" | "Hidden Value" | "Redirect" | "Height" | "Appointment Booking" | "multiple_choice" | "file" | 'files' | "signature" | 'ranking' | 'Question Group' | 'Table Input' | "Address" | "Chargebee" | "Stripe" | "Dropdown" | "Database Select" | "Medications" | "Related Contacts" | "Insurance";
|
|
@@ -1651,6 +1657,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1651
1657
|
allowPortalSubmission?: boolean;
|
|
1652
1658
|
canvasNoteCoding?: Partial<CanvasCoding>;
|
|
1653
1659
|
syncToCanvasAsDataImport?: boolean;
|
|
1660
|
+
matchCareTeamTagsForCanvasPractitionerResolution?: ListOfStringsWithQualifier;
|
|
1654
1661
|
}
|
|
1655
1662
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1656
1663
|
}
|
|
@@ -1984,6 +1991,7 @@ export interface FormResponse_updatesDisabled {
|
|
|
1984
1991
|
automationStepId?: string;
|
|
1985
1992
|
}
|
|
1986
1993
|
export interface FormResponse extends FormResponse_readonly, FormResponse_required, FormResponse_updatesDisabled, EnduserPortalVisibility {
|
|
1994
|
+
hiddenFromTimeline?: boolean;
|
|
1987
1995
|
draftSavedAt?: Date;
|
|
1988
1996
|
draftSavedBy?: string;
|
|
1989
1997
|
sharedVia?: CommunicationsChannel;
|
|
@@ -3340,6 +3348,12 @@ export type AnalyticsQueryInfoForType = {
|
|
|
3340
3348
|
export type AnalyticsQueryInfoType = keyof AnalyticsQueryInfoForType;
|
|
3341
3349
|
export type AnalyticsQueryInfo = AnalyticsQueryInfoForType[AnalyticsQueryInfoType];
|
|
3342
3350
|
export type ListQueryQualifier = 'All Of' | 'One Of';
|
|
3351
|
+
export type AnalyticsEnduserFilterField = {
|
|
3352
|
+
key: string;
|
|
3353
|
+
value: string;
|
|
3354
|
+
operator?: string;
|
|
3355
|
+
range?: DateRange | '';
|
|
3356
|
+
};
|
|
3343
3357
|
export type AnalyticsQueryFilterForType = {
|
|
3344
3358
|
"Endusers": {
|
|
3345
3359
|
activeSince?: Date | '';
|
|
@@ -3348,12 +3362,7 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3348
3362
|
formIds: string[];
|
|
3349
3363
|
formResponseCondition?: CompoundFilter<string>;
|
|
3350
3364
|
};
|
|
3351
|
-
fields?:
|
|
3352
|
-
key: string;
|
|
3353
|
-
value: string;
|
|
3354
|
-
operator?: string;
|
|
3355
|
-
range?: DateRange | '';
|
|
3356
|
-
}[];
|
|
3365
|
+
fields?: AnalyticsEnduserFilterField[];
|
|
3357
3366
|
gender?: TellescopeGender;
|
|
3358
3367
|
assignedTo?: {
|
|
3359
3368
|
qualifier: ListQueryQualifier;
|
|
@@ -3384,6 +3393,8 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3384
3393
|
"Tickets": {
|
|
3385
3394
|
titles?: string[];
|
|
3386
3395
|
closeReasons?: string[];
|
|
3396
|
+
userTags?: ListOfStringsWithQualifier;
|
|
3397
|
+
enduserFields?: AnalyticsEnduserFilterField[];
|
|
3387
3398
|
};
|
|
3388
3399
|
"Phone Calls": {};
|
|
3389
3400
|
"Meetings": {};
|
|
@@ -3414,6 +3425,7 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
3414
3425
|
"Calendar Events": {
|
|
3415
3426
|
Type: boolean;
|
|
3416
3427
|
"Scheduled By"?: boolean;
|
|
3428
|
+
alsoGroupByHost?: boolean;
|
|
3417
3429
|
} & EnduserGrouping & {
|
|
3418
3430
|
Enduser: string;
|
|
3419
3431
|
};
|
|
@@ -3513,6 +3525,7 @@ export declare const resource_to_modelName: {
|
|
|
3513
3525
|
};
|
|
3514
3526
|
export type AnalyticsQueryOptions = {
|
|
3515
3527
|
createdRange?: DateRange;
|
|
3528
|
+
createdAvailabilities?: WeeklyAvailability[];
|
|
3516
3529
|
updatedRange?: DateRange;
|
|
3517
3530
|
overrideGlobalRange?: boolean;
|
|
3518
3531
|
groupByCareTeam?: boolean;
|