@tellescope/types-models 1.176.0 → 1.178.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 +16 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +16 -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 +16 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
323
323
|
hasConnectedDocsumo?: boolean;
|
|
324
324
|
hasConnectedEmotii?: boolean;
|
|
325
325
|
hasConnectedDevelopHealth?: boolean;
|
|
326
|
+
hasConnectedCustomerIO?: boolean;
|
|
326
327
|
hasConfiguredZoom?: boolean;
|
|
327
328
|
hasTicketQueues?: boolean;
|
|
328
329
|
vitalTeamId?: string;
|
|
@@ -963,6 +964,7 @@ export interface Journey extends Journey_readonly, Journey_required, Journey_upd
|
|
|
963
964
|
description?: string;
|
|
964
965
|
onIncomingEnduserCommunication?: 'Remove' | '';
|
|
965
966
|
tags?: string[];
|
|
967
|
+
archivedAt?: Date | '';
|
|
966
968
|
}
|
|
967
969
|
export interface TextCommunication extends WithLinkOpenTrackingIds {
|
|
968
970
|
automationStepId?: string;
|
|
@@ -1198,6 +1200,7 @@ export interface MessageTemplate extends MessageTemplate_readonly, MessageTempla
|
|
|
1198
1200
|
forEntityTypes?: string[];
|
|
1199
1201
|
hideFromCompose?: boolean;
|
|
1200
1202
|
tags?: string[];
|
|
1203
|
+
archivedAt?: Date | '';
|
|
1201
1204
|
}
|
|
1202
1205
|
export interface MessageTemplateSnippet_readonly extends ClientRecord {
|
|
1203
1206
|
}
|
|
@@ -1392,6 +1395,8 @@ export interface Note extends Note_readonly, Note_required, Note_updatesDisabled
|
|
|
1392
1395
|
pinnedAt?: Date | '';
|
|
1393
1396
|
tags?: string[];
|
|
1394
1397
|
discussionRoomId?: string;
|
|
1398
|
+
source?: string;
|
|
1399
|
+
externalId?: string;
|
|
1395
1400
|
}
|
|
1396
1401
|
export type FormFieldLiteralType = 'Rich Text' | 'description' | 'string' | 'stringLong' | 'number' | 'email' | 'phone' | 'date' | 'dateString' | 'rating' | 'Time';
|
|
1397
1402
|
export type FormFieldComplexType = "Conditions" | "Allergies" | "Emotii" | "Hidden Value" | "Redirect" | "Height" | "Appointment Booking" | "multiple_choice" | "file" | 'files' | "signature" | 'ranking' | 'Question Group' | 'Table Input' | "Address" | "Chargebee" | "Stripe" | "Dropdown" | "Database Select" | "Medications" | "Related Contacts" | "Insurance";
|
|
@@ -1596,6 +1601,7 @@ export interface Form_required {
|
|
|
1596
1601
|
export interface Form_updatesDisabled {
|
|
1597
1602
|
}
|
|
1598
1603
|
export interface Form extends Form_readonly, Form_required, Form_updatesDisabled {
|
|
1604
|
+
archivedAt?: Date | '';
|
|
1599
1605
|
displayTitle?: string;
|
|
1600
1606
|
description?: string;
|
|
1601
1607
|
customSubject?: string;
|
|
@@ -2278,6 +2284,7 @@ export interface CalendarEventTemplate_required {
|
|
|
2278
2284
|
export interface CalendarEventTemplate_updatesDisabled {
|
|
2279
2285
|
}
|
|
2280
2286
|
export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, CalendarEventTemplate_required, CalendarEventTemplate_updatesDisabled {
|
|
2287
|
+
archivedAt?: Date | '';
|
|
2281
2288
|
type?: string;
|
|
2282
2289
|
enableVideoCall?: boolean;
|
|
2283
2290
|
videoIntegration?: VideoIntegrationType;
|
|
@@ -2392,6 +2399,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
|
|
|
2392
2399
|
publicUserFilterTags?: string[];
|
|
2393
2400
|
appointmentSlotsMaxHeight?: number;
|
|
2394
2401
|
includeRelatedContactTypes?: string[];
|
|
2402
|
+
archivedAt?: Date | '';
|
|
2395
2403
|
}
|
|
2396
2404
|
export interface CalendarEventRSVP_readonly extends ClientRecord {
|
|
2397
2405
|
creatorType: SessionType;
|
|
@@ -2756,6 +2764,11 @@ export type EnduserFieldSetter = {
|
|
|
2756
2764
|
export type SetEnduserFieldsAutomationAction = AutomationActionBuilder<'setEnduserFields', {
|
|
2757
2765
|
fields: EnduserFieldSetter[];
|
|
2758
2766
|
}>;
|
|
2767
|
+
export type CustomerIOIdentifyAction = AutomationActionBuilder<'customerIOIdentify', {}>;
|
|
2768
|
+
export type CustomerIOTrackAction = AutomationActionBuilder<'customerIOTrack', {
|
|
2769
|
+
event: string;
|
|
2770
|
+
trackProperties?: string[];
|
|
2771
|
+
}>;
|
|
2759
2772
|
export type AutomationConditionType = 'atJourneyState';
|
|
2760
2773
|
export type AutomationConditionBuilder<T extends AutomationConditionType, V extends object> = {
|
|
2761
2774
|
type: T;
|
|
@@ -2801,6 +2814,8 @@ export type AutomationActionForType = {
|
|
|
2801
2814
|
pushFormsToPortal: PushFormsAutomationAction;
|
|
2802
2815
|
developHealthMedEligibility: DevelopHealthMedicationEligibilityAutomationAction;
|
|
2803
2816
|
cancelFutureAppointments: CancelFutureAppointmentsAutomationAction;
|
|
2817
|
+
customerIOIdentify: CustomerIOIdentifyAction;
|
|
2818
|
+
customerIOTrack: CustomerIOTrackAction;
|
|
2804
2819
|
};
|
|
2805
2820
|
export type AutomationActionType = keyof AutomationActionForType;
|
|
2806
2821
|
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
@@ -3843,6 +3858,7 @@ export interface AutomationTrigger extends AutomationTrigger_readonly, Automatio
|
|
|
3843
3858
|
tags?: string[];
|
|
3844
3859
|
availabilityTimezone?: Timezone;
|
|
3845
3860
|
weeklyAvailabilities?: WeeklyAvailability[];
|
|
3861
|
+
archivedAt?: Date | '';
|
|
3846
3862
|
}
|
|
3847
3863
|
export type Address = {
|
|
3848
3864
|
lineOne: string;
|