@tellescope/types-models 1.190.0 → 1.191.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 +8 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +8 -0
- 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 +8 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -420,6 +420,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
420
420
|
customPortalLoginEmailSubject?: string;
|
|
421
421
|
customPortalLoginEmailHTML?: string;
|
|
422
422
|
customerIOFields?: string[];
|
|
423
|
+
createEnduserForms?: string[];
|
|
423
424
|
}
|
|
424
425
|
export type OrganizationTheme = {
|
|
425
426
|
name: string;
|
|
@@ -1772,6 +1773,7 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1772
1773
|
dontPullCalendarEvent?: boolean;
|
|
1773
1774
|
pushAddedTags?: boolean;
|
|
1774
1775
|
pushRemovedTags?: boolean;
|
|
1776
|
+
overwriteAddress?: boolean;
|
|
1775
1777
|
}
|
|
1776
1778
|
export type BuildDatabaseRecordField<K extends string, V, O> = {
|
|
1777
1779
|
type: K;
|
|
@@ -3795,6 +3797,9 @@ export type AutomationTriggerActions = {
|
|
|
3795
3797
|
waitlistId: string;
|
|
3796
3798
|
count: number;
|
|
3797
3799
|
}>;
|
|
3800
|
+
"Reply to Chat": AutomationTriggerActionBuilder<'Reply to Chat', {
|
|
3801
|
+
message: string;
|
|
3802
|
+
}>;
|
|
3798
3803
|
};
|
|
3799
3804
|
export type AutomationTriggerActionType = keyof AutomationTriggerActions;
|
|
3800
3805
|
export type AutomationTriggerAction = AutomationTriggerActions[AutomationTriggerActionType];
|
|
@@ -3836,6 +3841,7 @@ export type AutomationTriggerEvents = {
|
|
|
3836
3841
|
'Appointment Created': AutomationTriggerEventBuilder<"Appointment Created", {
|
|
3837
3842
|
titles?: string[];
|
|
3838
3843
|
templateIds?: string[];
|
|
3844
|
+
excludeTemplateIds?: string[];
|
|
3839
3845
|
}, {}>;
|
|
3840
3846
|
'Appointment Completed': AutomationTriggerEventBuilder<"Appointment Completed", {
|
|
3841
3847
|
titles?: string[];
|
|
@@ -3844,6 +3850,7 @@ export type AutomationTriggerEvents = {
|
|
|
3844
3850
|
'Appointment Cancelled': AutomationTriggerEventBuilder<"Appointment Cancelled", {
|
|
3845
3851
|
titles?: string[];
|
|
3846
3852
|
templateIds?: string[];
|
|
3853
|
+
excludeTemplateIds?: string[];
|
|
3847
3854
|
by?: '' | 'enduser' | 'user';
|
|
3848
3855
|
}, {}>;
|
|
3849
3856
|
'Appointment Rescheduled': AutomationTriggerEventBuilder<"Appointment Rescheduled", {
|
|
@@ -5018,6 +5025,7 @@ export type JourneyContext = {
|
|
|
5018
5025
|
databaseRecordCreator?: string;
|
|
5019
5026
|
eligibilityResultId?: string;
|
|
5020
5027
|
fileId?: string;
|
|
5028
|
+
chatRoomId?: string;
|
|
5021
5029
|
};
|
|
5022
5030
|
export declare const TIMEZONE_MAP: {
|
|
5023
5031
|
readonly "Africa/Abidjan": "+00:00";
|