@tellescope/types-models 1.181.1 → 1.182.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 +12 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +12 -1
- 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 +5 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -536,6 +536,7 @@ export interface User_updatesDisabled {
|
|
|
536
536
|
verifiedEmail: boolean;
|
|
537
537
|
}
|
|
538
538
|
export interface User extends User_required, User_readonly, User_updatesDisabled {
|
|
539
|
+
defaultLocationId?: string;
|
|
539
540
|
termsSigned?: Date;
|
|
540
541
|
termsVersion?: string;
|
|
541
542
|
externalId?: string;
|
|
@@ -1281,6 +1282,11 @@ export type TicketActions = {
|
|
|
1281
1282
|
templateId: string;
|
|
1282
1283
|
emailId?: string;
|
|
1283
1284
|
}>;
|
|
1285
|
+
"Send Chat": TicketActionBuilder<'Send Chat', {
|
|
1286
|
+
templateId: string;
|
|
1287
|
+
chatId?: string;
|
|
1288
|
+
chatRoomId?: string;
|
|
1289
|
+
}>;
|
|
1284
1290
|
};
|
|
1285
1291
|
export type TicketActionType = keyof TicketActions;
|
|
1286
1292
|
export type TicketAction = TicketActions[TicketActionType];
|
|
@@ -1544,6 +1550,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1544
1550
|
autoUploadFiles?: boolean;
|
|
1545
1551
|
chargebeeEnvironment?: string;
|
|
1546
1552
|
chargebeePlanId?: string;
|
|
1553
|
+
relatedContactTypes?: string[];
|
|
1547
1554
|
};
|
|
1548
1555
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1549
1556
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
@@ -3011,6 +3018,7 @@ export type PortalBlockForType = {
|
|
|
3011
3018
|
careTeam: BuildPortalBlockInfo<'careTeam', {
|
|
3012
3019
|
title: string;
|
|
3013
3020
|
roles?: string[];
|
|
3021
|
+
showAll?: boolean;
|
|
3014
3022
|
}>;
|
|
3015
3023
|
carePlan: BuildPortalBlockInfo<'carePlan', {}>;
|
|
3016
3024
|
education: BuildPortalBlockInfo<'education', {}>;
|
|
@@ -3756,7 +3764,10 @@ export type AutomationTriggerEvents = {
|
|
|
3756
3764
|
formId: string;
|
|
3757
3765
|
intervalInMS: number;
|
|
3758
3766
|
}, {}>;
|
|
3759
|
-
'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {
|
|
3767
|
+
'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {
|
|
3768
|
+
titles?: string[];
|
|
3769
|
+
productIds?: string[];
|
|
3770
|
+
}, {}>;
|
|
3760
3771
|
'Refund Issued': AutomationTriggerEventBuilder<"Refund Issued", {}, {}>;
|
|
3761
3772
|
'Subscription Ended': AutomationTriggerEventBuilder<"Subscription Ended", {}, {}>;
|
|
3762
3773
|
'Appointment No-Showed': AutomationTriggerEventBuilder<"Appointment No-Showed", {
|