@tellescope/types-models 1.139.0 → 1.141.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 +22 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +22 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/index.ts +21 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -91,6 +91,7 @@ export type PortalSettings = {
|
|
|
91
91
|
allowEnduserInitiatedChat?: boolean;
|
|
92
92
|
enduserInitiatedChatDefaultSubject?: string;
|
|
93
93
|
sendEmailNotificationsToEnduser?: boolean;
|
|
94
|
+
sendSMSNotificationsToEnduser?: boolean;
|
|
94
95
|
};
|
|
95
96
|
};
|
|
96
97
|
export type WithLinkOpenTrackingIds = {
|
|
@@ -173,6 +174,7 @@ export type OrganizationSettings = {
|
|
|
173
174
|
defaultToOutboundConferenceCall?: boolean;
|
|
174
175
|
sharedInboxReadStatus?: boolean;
|
|
175
176
|
matchEmailAndNames?: boolean;
|
|
177
|
+
hideNotesFromComposeForm?: boolean;
|
|
176
178
|
};
|
|
177
179
|
tickets?: {
|
|
178
180
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -204,6 +206,7 @@ export type OrganizationSettings = {
|
|
|
204
206
|
};
|
|
205
207
|
templateRequired?: boolean;
|
|
206
208
|
locationRequired?: boolean;
|
|
209
|
+
cancelReasons?: string[];
|
|
207
210
|
};
|
|
208
211
|
users?: {
|
|
209
212
|
sessionDurationInHours?: number;
|
|
@@ -1201,6 +1204,7 @@ export type TicketAction = TicketActions[TicketActionType];
|
|
|
1201
1204
|
export type TicketSnooze = {
|
|
1202
1205
|
at: Date;
|
|
1203
1206
|
until: Date;
|
|
1207
|
+
reason?: string;
|
|
1204
1208
|
};
|
|
1205
1209
|
export type RoundRobinAssignmentInfo = {
|
|
1206
1210
|
id: string;
|
|
@@ -1543,6 +1547,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1543
1547
|
externalId: string;
|
|
1544
1548
|
}[];
|
|
1545
1549
|
hideAfterUnsubmittedInMS?: number;
|
|
1550
|
+
hideFromCompose?: boolean;
|
|
1546
1551
|
}
|
|
1547
1552
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1548
1553
|
}
|
|
@@ -2030,6 +2035,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
2030
2035
|
displayTitle?: string;
|
|
2031
2036
|
displayDescription?: string;
|
|
2032
2037
|
dontBlockAvailability?: boolean;
|
|
2038
|
+
previousStartTimes?: number[];
|
|
2033
2039
|
}
|
|
2034
2040
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
2035
2041
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2981,6 +2987,7 @@ export type UserUIRestrictions = {
|
|
|
2981
2987
|
hideQueuedTicketsViewer?: boolean;
|
|
2982
2988
|
hideIncomingFaxesIcon?: boolean;
|
|
2983
2989
|
hideBulkEnduserActions?: boolean;
|
|
2990
|
+
visibleIntegrations?: string[];
|
|
2984
2991
|
};
|
|
2985
2992
|
export interface RoleBasedAccessPermission_readonly extends ClientRecord {
|
|
2986
2993
|
}
|
|
@@ -4077,7 +4084,19 @@ export interface WebhookLog_updatesDisabled {
|
|
|
4077
4084
|
}
|
|
4078
4085
|
export interface WebhookLog extends WebhookLog_readonly, WebhookLog_required, WebhookLog_updatesDisabled {
|
|
4079
4086
|
}
|
|
4087
|
+
export interface SuggestedContact_readonly extends ClientRecord {
|
|
4088
|
+
}
|
|
4089
|
+
export interface SuggestedContact_required {
|
|
4090
|
+
title: string;
|
|
4091
|
+
phone?: string;
|
|
4092
|
+
email?: string;
|
|
4093
|
+
}
|
|
4094
|
+
export interface SuggestedContact_updatesDisabled {
|
|
4095
|
+
}
|
|
4096
|
+
export interface SuggestedContact extends SuggestedContact_readonly, SuggestedContact_required, SuggestedContact_updatesDisabled {
|
|
4097
|
+
}
|
|
4080
4098
|
export type ModelForName_required = {
|
|
4099
|
+
suggested_contacts: SuggestedContact_required;
|
|
4081
4100
|
call_hold_queues: CallHoldQueue_required;
|
|
4082
4101
|
fax_logs: FaxLog_required;
|
|
4083
4102
|
message_template_snippets: MessageTemplateSnippet_required;
|
|
@@ -4160,6 +4179,7 @@ export type ModelForName_required = {
|
|
|
4160
4179
|
};
|
|
4161
4180
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4162
4181
|
export interface ModelForName_readonly {
|
|
4182
|
+
suggested_contacts: SuggestedContact_readonly;
|
|
4163
4183
|
call_hold_queues: CallHoldQueue_readonly;
|
|
4164
4184
|
fax_logs: FaxLog_readonly;
|
|
4165
4185
|
message_template_snippets: MessageTemplateSnippet_readonly;
|
|
@@ -4242,6 +4262,7 @@ export interface ModelForName_readonly {
|
|
|
4242
4262
|
}
|
|
4243
4263
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4244
4264
|
export interface ModelForName_updatesDisabled {
|
|
4265
|
+
suggested_contacts: SuggestedContact_updatesDisabled;
|
|
4245
4266
|
call_hold_queues: CallHoldQueue_updatesDisabled;
|
|
4246
4267
|
fax_logs: FaxLog_updatesDisabled;
|
|
4247
4268
|
message_template_snippets: MessageTemplateSnippet_updatesDisabled;
|
|
@@ -4324,6 +4345,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4324
4345
|
}
|
|
4325
4346
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4326
4347
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4348
|
+
suggested_contacts: SuggestedContact;
|
|
4327
4349
|
call_hold_queues: CallHoldQueue;
|
|
4328
4350
|
fax_logs: FaxLog;
|
|
4329
4351
|
message_template_snippets: MessageTemplateSnippet;
|