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