@tellescope/types-models 1.197.0 → 1.198.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 +11 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +11 -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 +6 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2835,6 +2835,9 @@ export type SwitchToRelatedContactAutomationAction = AutomationActionBuilder<'sw
|
|
|
2835
2835
|
otherTypes?: string[];
|
|
2836
2836
|
}>;
|
|
2837
2837
|
export type ElationSyncAutomationAction = AutomationActionBuilder<'elationSync', {}>;
|
|
2838
|
+
export type AthenaSyncAutomationAction = AutomationActionBuilder<'athenaSync', {
|
|
2839
|
+
departmentid: string;
|
|
2840
|
+
}>;
|
|
2838
2841
|
export type CanvasSyncAutomationAction = AutomationActionBuilder<'canvasSync', {}>;
|
|
2839
2842
|
export type CanvasCreateNoteAutomationAction = AutomationActionBuilder<'canvasCreateNote', {
|
|
2840
2843
|
formIds: string[];
|
|
@@ -2926,6 +2929,7 @@ export type AutomationActionForType = {
|
|
|
2926
2929
|
activeCampaignAddToLists: ActiveCampaignAddToListsAutomationAction;
|
|
2927
2930
|
switchToRelatedContact: SwitchToRelatedContactAutomationAction;
|
|
2928
2931
|
'elationSync': ElationSyncAutomationAction;
|
|
2932
|
+
'athenaSync': AthenaSyncAutomationAction;
|
|
2929
2933
|
canvasSync: CanvasSyncAutomationAction;
|
|
2930
2934
|
canvasCreateNote: CanvasCreateNoteAutomationAction;
|
|
2931
2935
|
pushFormsToPortal: PushFormsAutomationAction;
|
|
@@ -3927,6 +3931,7 @@ export type AutomationTriggerEvents = {
|
|
|
3927
3931
|
status: string;
|
|
3928
3932
|
fills?: string[];
|
|
3929
3933
|
skus?: string[];
|
|
3934
|
+
skuPartials?: string[];
|
|
3930
3935
|
}, {}>;
|
|
3931
3936
|
'Missed Call': AutomationTriggerEventBuilder<"Missed Call", {
|
|
3932
3937
|
phoneNumbers?: string[];
|
|
@@ -4159,6 +4164,12 @@ export type PhoneTreeActions = {
|
|
|
4159
4164
|
queueId: string;
|
|
4160
4165
|
playback?: Partial<PhonePlayback>;
|
|
4161
4166
|
}>;
|
|
4167
|
+
'Route Extensions': PhoneTreeActionBuilder<"Route Extensions", {
|
|
4168
|
+
extensions: {
|
|
4169
|
+
input: string;
|
|
4170
|
+
userId: string;
|
|
4171
|
+
}[];
|
|
4172
|
+
}>;
|
|
4162
4173
|
};
|
|
4163
4174
|
export type PhoneTreeActionType = keyof PhoneTreeActions;
|
|
4164
4175
|
export type PhoneTreeAction = PhoneTreeActions[PhoneTreeActionType];
|