@tellescope/types-models 1.236.0 → 1.236.2
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 -2
- 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 -2
- 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 +35 -8
package/lib/cjs/index.d.ts
CHANGED
|
@@ -418,6 +418,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
418
418
|
_groupChatsEnabled?: boolean;
|
|
419
419
|
allowCreateSuborganizations?: boolean;
|
|
420
420
|
allowCallerId?: boolean;
|
|
421
|
+
enableChimePhoneDialOut?: boolean;
|
|
421
422
|
billingOrganizationName?: string;
|
|
422
423
|
billingOrganizationNPI?: string;
|
|
423
424
|
billingOrganizationTaxId?: string;
|
|
@@ -904,6 +905,7 @@ export interface Enduser extends Enduser_readonly, Enduser_required, Enduser_upd
|
|
|
904
905
|
healthieSyncError?: string;
|
|
905
906
|
lastSuperdialEligibilityCheckAt?: Date;
|
|
906
907
|
superdialEligibilityResponse?: string;
|
|
908
|
+
eligibleForAutoMerge?: boolean;
|
|
907
909
|
}
|
|
908
910
|
export interface EnduserCustomType_readonly extends ClientRecord {
|
|
909
911
|
}
|
|
@@ -1519,6 +1521,22 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1519
1521
|
isTodo?: boolean;
|
|
1520
1522
|
databaseRecordId?: string;
|
|
1521
1523
|
databaseRecordCreator?: string;
|
|
1524
|
+
templateId?: string;
|
|
1525
|
+
}
|
|
1526
|
+
export interface TicketTemplate_readonly extends ClientRecord {
|
|
1527
|
+
}
|
|
1528
|
+
export interface TicketTemplate_required {
|
|
1529
|
+
title: string;
|
|
1530
|
+
}
|
|
1531
|
+
export interface TicketTemplate_updatesDisabled {
|
|
1532
|
+
}
|
|
1533
|
+
export interface TicketTemplate extends TicketTemplate_readonly, TicketTemplate_required, TicketTemplate_updatesDisabled {
|
|
1534
|
+
title: string;
|
|
1535
|
+
type?: string;
|
|
1536
|
+
stage?: string;
|
|
1537
|
+
priority?: number;
|
|
1538
|
+
tags?: string[];
|
|
1539
|
+
archivedAt?: Date | '';
|
|
1522
1540
|
}
|
|
1523
1541
|
export type AttendeeInfo = {
|
|
1524
1542
|
ExternalUserId: string;
|
|
@@ -1870,6 +1888,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1870
1888
|
mdiCaseOfferings?: {
|
|
1871
1889
|
offering_id: string;
|
|
1872
1890
|
}[];
|
|
1891
|
+
autoMergeOnSubmission?: boolean;
|
|
1873
1892
|
}
|
|
1874
1893
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1875
1894
|
}
|
|
@@ -2993,7 +3012,8 @@ export type SendSMSAutomationAction = AutomationActionBuilder<'sendSMS', Automat
|
|
|
2993
3012
|
}>;
|
|
2994
3013
|
export type SendFormAutomationAction = AutomationActionBuilder<'sendForm', AutomationForFormRequest>;
|
|
2995
3014
|
export type PushFormsAutomationAction = AutomationActionBuilder<'pushFormsToPortal', {
|
|
2996
|
-
formIds
|
|
3015
|
+
formIds?: string[];
|
|
3016
|
+
formGroupIds?: string[];
|
|
2997
3017
|
}>;
|
|
2998
3018
|
export type SetEnduserStatusAutomationAction = AutomationActionBuilder<'setEnduserStatus', SetEnduserStatusInfo>;
|
|
2999
3019
|
export type CreateTicketAutomationAction = AutomationActionBuilder<'createTicket', CreateTicketActionInfo>;
|
|
@@ -3153,7 +3173,10 @@ export type RemoveCareTeamAutomationAction = AutomationActionBuilder<'removeCare
|
|
|
3153
3173
|
export type AssignCareTeamAutomationAction = AutomationActionBuilder<'assignCareTeam', AutomationTriggerActions['Assign Care Team']['info']>;
|
|
3154
3174
|
export type CallUserAutomationAction = AutomationActionBuilder<'callUser', {
|
|
3155
3175
|
message: string;
|
|
3156
|
-
routeBy: "Appointment Host";
|
|
3176
|
+
routeBy: "Appointment Host" | "Match Users";
|
|
3177
|
+
restrictToCareTeam?: boolean;
|
|
3178
|
+
tags?: ListOfStringsWithQualifier;
|
|
3179
|
+
limit?: number;
|
|
3157
3180
|
}>;
|
|
3158
3181
|
export type StripeChargeCardOnFileAutomationAction = AutomationActionBuilder<'stripeChargeCardOnFile', {
|
|
3159
3182
|
stripeKey?: string;
|
|
@@ -4333,6 +4356,7 @@ export type AutomationTriggerEvents = {
|
|
|
4333
4356
|
excludeTemplateIds?: string[];
|
|
4334
4357
|
excludeCancelUpcomingEventsJourney?: boolean;
|
|
4335
4358
|
by?: '' | 'enduser' | 'user';
|
|
4359
|
+
cancelReasons?: string[];
|
|
4336
4360
|
}, {}>;
|
|
4337
4361
|
'Appointment Rescheduled': AutomationTriggerEventBuilder<"Appointment Rescheduled", {
|
|
4338
4362
|
titles?: string[];
|
|
@@ -5252,6 +5276,7 @@ export type ModelForName_required = {
|
|
|
5252
5276
|
templates: MessageTemplate_required;
|
|
5253
5277
|
files: File_required;
|
|
5254
5278
|
tickets: Ticket_required;
|
|
5279
|
+
ticket_templates: TicketTemplate_required;
|
|
5255
5280
|
meetings: Meeting_required;
|
|
5256
5281
|
notes: Note_required;
|
|
5257
5282
|
forms: Form_required;
|
|
@@ -5345,6 +5370,7 @@ export interface ModelForName_readonly {
|
|
|
5345
5370
|
templates: MessageTemplate_readonly;
|
|
5346
5371
|
files: File_readonly;
|
|
5347
5372
|
tickets: Ticket_readonly;
|
|
5373
|
+
ticket_templates: TicketTemplate_readonly;
|
|
5348
5374
|
meetings: Meeting_readonly;
|
|
5349
5375
|
notes: Note_readonly;
|
|
5350
5376
|
forms: Form_readonly;
|
|
@@ -5437,6 +5463,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
5437
5463
|
templates: MessageTemplate_updatesDisabled;
|
|
5438
5464
|
files: File_updatesDisabled;
|
|
5439
5465
|
tickets: Ticket_updatesDisabled;
|
|
5466
|
+
ticket_templates: TicketTemplate_updatesDisabled;
|
|
5440
5467
|
meetings: Meeting_updatesDisabled;
|
|
5441
5468
|
notes: Note_updatesDisabled;
|
|
5442
5469
|
forms: Form_updatesDisabled;
|
|
@@ -5529,6 +5556,7 @@ export interface ModelForName extends ModelForName_required, ModelForName_readon
|
|
|
5529
5556
|
templates: MessageTemplate;
|
|
5530
5557
|
files: File;
|
|
5531
5558
|
tickets: Ticket;
|
|
5559
|
+
ticket_templates: TicketTemplate;
|
|
5532
5560
|
meetings: Meeting;
|
|
5533
5561
|
notes: Note;
|
|
5534
5562
|
forms: Form;
|