@tellescope/types-models 1.131.2 → 1.133.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 +10 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +10 -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 +2 -2
- package/src/index.ts +8 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2520,6 +2520,7 @@ export type SwitchToRelatedContactAutomationAction = AutomationActionBuilder<'sw
|
|
|
2520
2520
|
type: string;
|
|
2521
2521
|
otherTypes?: string[];
|
|
2522
2522
|
}>;
|
|
2523
|
+
export type ElationSyncAutomationAction = AutomationActionBuilder<'elationSync', {}>;
|
|
2523
2524
|
export type IterableFieldsMapping = {
|
|
2524
2525
|
iterable: string;
|
|
2525
2526
|
tellescope: string;
|
|
@@ -2575,6 +2576,7 @@ export type AutomationActionForType = {
|
|
|
2575
2576
|
'changeContactType': ChangeContactTypeAutomationAction;
|
|
2576
2577
|
activeCampaignSync: ActiveCampaignSyncAutomationAction;
|
|
2577
2578
|
switchToRelatedContact: SwitchToRelatedContactAutomationAction;
|
|
2579
|
+
'elationSync': ElationSyncAutomationAction;
|
|
2578
2580
|
};
|
|
2579
2581
|
export type AutomationActionType = keyof AutomationActionForType;
|
|
2580
2582
|
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
@@ -2888,6 +2890,7 @@ export interface UserLog_updatesDisabled {
|
|
|
2888
2890
|
export interface UserLog extends UserLog_readonly, UserLog_required, UserLog_updatesDisabled {
|
|
2889
2891
|
info?: Indexable;
|
|
2890
2892
|
enduserId?: string;
|
|
2893
|
+
note?: string;
|
|
2891
2894
|
}
|
|
2892
2895
|
export interface EnduserTask_readonly extends ClientRecord {
|
|
2893
2896
|
}
|
|
@@ -2957,6 +2960,7 @@ export type UserUIRestrictions = {
|
|
|
2957
2960
|
hideMergeEndusers?: boolean;
|
|
2958
2961
|
hideQueuedTicketsViewer?: boolean;
|
|
2959
2962
|
hideIncomingFaxesIcon?: boolean;
|
|
2963
|
+
hideBulkEnduserActions?: boolean;
|
|
2960
2964
|
};
|
|
2961
2965
|
export interface RoleBasedAccessPermission_readonly extends ClientRecord {
|
|
2962
2966
|
}
|
|
@@ -3102,6 +3106,7 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3102
3106
|
wasCancelled?: boolean;
|
|
3103
3107
|
wasRescheduled?: boolean;
|
|
3104
3108
|
wasNoShowed?: boolean;
|
|
3109
|
+
scheduledBy?: string;
|
|
3105
3110
|
};
|
|
3106
3111
|
"Form Responses": {
|
|
3107
3112
|
formIds?: string[];
|
|
@@ -3137,6 +3142,7 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
3137
3142
|
"Endusers": EnduserGrouping;
|
|
3138
3143
|
"Calendar Events": {
|
|
3139
3144
|
Type: boolean;
|
|
3145
|
+
"Scheduled By"?: boolean;
|
|
3140
3146
|
} & EnduserGrouping & {
|
|
3141
3147
|
Enduser: string;
|
|
3142
3148
|
};
|
|
@@ -3356,6 +3362,9 @@ export type AutomationTriggerActions = {
|
|
|
3356
3362
|
"Add Access Tags": AutomationTriggerActionBuilder<'Add Access Tags', {
|
|
3357
3363
|
tags: string[];
|
|
3358
3364
|
}>;
|
|
3365
|
+
"Set Fields": AutomationTriggerActionBuilder<'Set Fields', {
|
|
3366
|
+
fields: EnduserFieldSetter[];
|
|
3367
|
+
}>;
|
|
3359
3368
|
"Move To Step": AutomationTriggerActionBuilder<'Move To Step', {}>;
|
|
3360
3369
|
"Assign Care Team": AutomationTriggerActionBuilder<'Assign Care Team', {
|
|
3361
3370
|
tags: ListOfStringsWithQualifier;
|
|
@@ -3385,6 +3394,7 @@ export type AutomationTriggerEvents = {
|
|
|
3385
3394
|
intervalInMS: number;
|
|
3386
3395
|
}, {}>;
|
|
3387
3396
|
'Purchase Made': AutomationTriggerEventBuilder<"Purchase Made", {}, {}>;
|
|
3397
|
+
'Refund Issued': AutomationTriggerEventBuilder<"Refund Issued", {}, {}>;
|
|
3388
3398
|
'Appointment No-Showed': AutomationTriggerEventBuilder<"Appointment No-Showed", {
|
|
3389
3399
|
titles?: string[];
|
|
3390
3400
|
templateIds?: string[];
|