@tellescope/types-models 1.191.0 → 1.193.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 +18 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +18 -2
- 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 +16 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -292,6 +292,7 @@ export interface Organization_readonly extends ClientRecord {
|
|
|
292
292
|
fromEmails?: string[];
|
|
293
293
|
twilioSID?: string;
|
|
294
294
|
twilioCustomerId?: string;
|
|
295
|
+
customPortalScriptTags?: string[];
|
|
295
296
|
}
|
|
296
297
|
export interface Organization_required {
|
|
297
298
|
}
|
|
@@ -314,6 +315,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
314
315
|
customProviderURL?: string;
|
|
315
316
|
customTermsOfService?: string;
|
|
316
317
|
customPrivacyPolicy?: string;
|
|
318
|
+
customPoliciesVersion?: string;
|
|
317
319
|
requireCustomTermsOnMagicLink?: boolean;
|
|
318
320
|
settings?: OrganizationSettings;
|
|
319
321
|
portalSettings?: PortalSettings;
|
|
@@ -432,9 +434,14 @@ export type OrganizationTheme = {
|
|
|
432
434
|
logoURL?: string;
|
|
433
435
|
customPortalURL?: string;
|
|
434
436
|
faviconURL?: string;
|
|
435
|
-
portalSettings?: PortalSettings
|
|
437
|
+
portalSettings?: PortalSettings & {
|
|
438
|
+
html: {
|
|
439
|
+
scripts?: string[];
|
|
440
|
+
};
|
|
441
|
+
};
|
|
436
442
|
customTermsOfService?: string;
|
|
437
443
|
customPrivacyPolicy?: string;
|
|
444
|
+
customPoliciesVersion?: string;
|
|
438
445
|
requireCustomTermsOnMagicLink?: boolean;
|
|
439
446
|
};
|
|
440
447
|
export interface RecordInfo {
|
|
@@ -1061,6 +1068,7 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
|
|
|
1061
1068
|
markedUnreadForAll?: boolean;
|
|
1062
1069
|
inboxStatus?: string;
|
|
1063
1070
|
relatedContactId?: string;
|
|
1071
|
+
copyOf?: string;
|
|
1064
1072
|
}
|
|
1065
1073
|
export interface SMSMessage_readonly extends ClientRecord {
|
|
1066
1074
|
delivered: boolean;
|
|
@@ -1119,6 +1127,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
|
|
|
1119
1127
|
markedUnreadForAll?: boolean;
|
|
1120
1128
|
inboxStatus?: string;
|
|
1121
1129
|
relatedContactId?: string;
|
|
1130
|
+
copyOf?: string;
|
|
1122
1131
|
}
|
|
1123
1132
|
export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
|
|
1124
1133
|
export interface ChatRoom_readonly extends ClientRecord {
|
|
@@ -1650,6 +1659,7 @@ export interface Form_required {
|
|
|
1650
1659
|
export interface Form_updatesDisabled {
|
|
1651
1660
|
}
|
|
1652
1661
|
export interface Form extends Form_readonly, Form_required, Form_updatesDisabled {
|
|
1662
|
+
ipAddressCustomField: string;
|
|
1653
1663
|
archivedAt?: Date | '';
|
|
1654
1664
|
displayTitle?: string;
|
|
1655
1665
|
description?: string;
|
|
@@ -1696,6 +1706,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1696
1706
|
}[];
|
|
1697
1707
|
hideAfterUnsubmittedInMS?: number;
|
|
1698
1708
|
hideFromCompose?: boolean;
|
|
1709
|
+
hideFromBulkSubmission?: boolean;
|
|
1699
1710
|
enduserFieldsToAppendForSync?: string[];
|
|
1700
1711
|
allowPortalSubmission?: boolean;
|
|
1701
1712
|
canvasNoteCoding?: Partial<CanvasCoding>;
|
|
@@ -1774,6 +1785,7 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1774
1785
|
pushAddedTags?: boolean;
|
|
1775
1786
|
pushRemovedTags?: boolean;
|
|
1776
1787
|
overwriteAddress?: boolean;
|
|
1788
|
+
requirePhoneToPushEnduser?: boolean;
|
|
1777
1789
|
}
|
|
1778
1790
|
export type BuildDatabaseRecordField<K extends string, V, O> = {
|
|
1779
1791
|
type: K;
|
|
@@ -2168,6 +2180,7 @@ export interface CalendarEvent_required {
|
|
|
2168
2180
|
export interface CalendarEvent_updatesDisabled {
|
|
2169
2181
|
}
|
|
2170
2182
|
export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_required, CalendarEvent_updatesDisabled {
|
|
2183
|
+
athenaDepartmentId?: string;
|
|
2171
2184
|
actualDuration?: number;
|
|
2172
2185
|
dontSyncToCanvas?: boolean;
|
|
2173
2186
|
reason?: string;
|
|
@@ -2381,6 +2394,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2381
2394
|
allowGroupReschedule?: boolean;
|
|
2382
2395
|
preventRescheduleMinutesInAdvance?: number;
|
|
2383
2396
|
preventCancelMinutesInAdvance?: number;
|
|
2397
|
+
athenaDepartmentId?: string;
|
|
2384
2398
|
}
|
|
2385
2399
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2386
2400
|
}
|
|
@@ -3837,7 +3851,9 @@ export type AutomationTriggerEvents = {
|
|
|
3837
3851
|
'Tag Added': AutomationTriggerEventBuilder<"Tag Added", {
|
|
3838
3852
|
tag: string;
|
|
3839
3853
|
}, {}>;
|
|
3840
|
-
'Contact Created': AutomationTriggerEventBuilder<"Contact Created", {
|
|
3854
|
+
'Contact Created': AutomationTriggerEventBuilder<"Contact Created", {
|
|
3855
|
+
entityTypes?: string[];
|
|
3856
|
+
}, {}>;
|
|
3841
3857
|
'Appointment Created': AutomationTriggerEventBuilder<"Appointment Created", {
|
|
3842
3858
|
titles?: string[];
|
|
3843
3859
|
templateIds?: string[];
|