@tellescope/types-models 1.235.2 → 1.236.1
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 +8 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +8 -2
- 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 +12 -7
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;
|
|
@@ -2993,7 +2994,8 @@ export type SendSMSAutomationAction = AutomationActionBuilder<'sendSMS', Automat
|
|
|
2993
2994
|
}>;
|
|
2994
2995
|
export type SendFormAutomationAction = AutomationActionBuilder<'sendForm', AutomationForFormRequest>;
|
|
2995
2996
|
export type PushFormsAutomationAction = AutomationActionBuilder<'pushFormsToPortal', {
|
|
2996
|
-
formIds
|
|
2997
|
+
formIds?: string[];
|
|
2998
|
+
formGroupIds?: string[];
|
|
2997
2999
|
}>;
|
|
2998
3000
|
export type SetEnduserStatusAutomationAction = AutomationActionBuilder<'setEnduserStatus', SetEnduserStatusInfo>;
|
|
2999
3001
|
export type CreateTicketAutomationAction = AutomationActionBuilder<'createTicket', CreateTicketActionInfo>;
|
|
@@ -3153,7 +3155,10 @@ export type RemoveCareTeamAutomationAction = AutomationActionBuilder<'removeCare
|
|
|
3153
3155
|
export type AssignCareTeamAutomationAction = AutomationActionBuilder<'assignCareTeam', AutomationTriggerActions['Assign Care Team']['info']>;
|
|
3154
3156
|
export type CallUserAutomationAction = AutomationActionBuilder<'callUser', {
|
|
3155
3157
|
message: string;
|
|
3156
|
-
routeBy: "Appointment Host";
|
|
3158
|
+
routeBy: "Appointment Host" | "Match Users";
|
|
3159
|
+
restrictToCareTeam?: boolean;
|
|
3160
|
+
tags?: ListOfStringsWithQualifier;
|
|
3161
|
+
limit?: number;
|
|
3157
3162
|
}>;
|
|
3158
3163
|
export type StripeChargeCardOnFileAutomationAction = AutomationActionBuilder<'stripeChargeCardOnFile', {
|
|
3159
3164
|
stripeKey?: string;
|
|
@@ -4333,6 +4338,7 @@ export type AutomationTriggerEvents = {
|
|
|
4333
4338
|
excludeTemplateIds?: string[];
|
|
4334
4339
|
excludeCancelUpcomingEventsJourney?: boolean;
|
|
4335
4340
|
by?: '' | 'enduser' | 'user';
|
|
4341
|
+
cancelReasons?: string[];
|
|
4336
4342
|
}, {}>;
|
|
4337
4343
|
'Appointment Rescheduled': AutomationTriggerEventBuilder<"Appointment Rescheduled", {
|
|
4338
4344
|
titles?: string[];
|