@tellescope/types-models 1.192.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.
@@ -315,6 +315,7 @@ export interface Organization extends Organization_readonly, Organization_requir
315
315
  customProviderURL?: string;
316
316
  customTermsOfService?: string;
317
317
  customPrivacyPolicy?: string;
318
+ customPoliciesVersion?: string;
318
319
  requireCustomTermsOnMagicLink?: boolean;
319
320
  settings?: OrganizationSettings;
320
321
  portalSettings?: PortalSettings;
@@ -440,6 +441,7 @@ export type OrganizationTheme = {
440
441
  };
441
442
  customTermsOfService?: string;
442
443
  customPrivacyPolicy?: string;
444
+ customPoliciesVersion?: string;
443
445
  requireCustomTermsOnMagicLink?: boolean;
444
446
  };
445
447
  export interface RecordInfo {
@@ -1066,6 +1068,7 @@ export interface Email extends Email_required, Email_readonly, Email_updatesDisa
1066
1068
  markedUnreadForAll?: boolean;
1067
1069
  inboxStatus?: string;
1068
1070
  relatedContactId?: string;
1071
+ copyOf?: string;
1069
1072
  }
1070
1073
  export interface SMSMessage_readonly extends ClientRecord {
1071
1074
  delivered: boolean;
@@ -1124,6 +1127,7 @@ export interface SMSMessage extends SMSMessage_readonly, SMSMessage_required, SM
1124
1127
  markedUnreadForAll?: boolean;
1125
1128
  inboxStatus?: string;
1126
1129
  relatedContactId?: string;
1130
+ copyOf?: string;
1127
1131
  }
1128
1132
  export type ChatRoomType = 'internal' | 'external' | 'Group Chat';
1129
1133
  export interface ChatRoom_readonly extends ClientRecord {
@@ -1702,6 +1706,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
1702
1706
  }[];
1703
1707
  hideAfterUnsubmittedInMS?: number;
1704
1708
  hideFromCompose?: boolean;
1709
+ hideFromBulkSubmission?: boolean;
1705
1710
  enduserFieldsToAppendForSync?: string[];
1706
1711
  allowPortalSubmission?: boolean;
1707
1712
  canvasNoteCoding?: Partial<CanvasCoding>;