@tellescope/types-models 1.228.0 → 1.230.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 +31 -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 +31 -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 +3 -3
- package/src/index.ts +35 -4
package/lib/cjs/index.d.ts
CHANGED
|
@@ -215,6 +215,7 @@ export type OrganizationSettings = {
|
|
|
215
215
|
reverseTimeline?: boolean;
|
|
216
216
|
delayedReadingIntervalInMS?: number;
|
|
217
217
|
createChatRoomWithBlankUserIds?: boolean;
|
|
218
|
+
showAlternateEmailsEditor?: boolean;
|
|
218
219
|
};
|
|
219
220
|
tickets?: {
|
|
220
221
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -264,6 +265,9 @@ export type OrganizationSettings = {
|
|
|
264
265
|
showInboxV2?: boolean;
|
|
265
266
|
showDialerInTopbar?: boolean;
|
|
266
267
|
};
|
|
268
|
+
timeTracking?: {
|
|
269
|
+
enabled?: boolean;
|
|
270
|
+
};
|
|
267
271
|
};
|
|
268
272
|
export type OrganizationLimits = {
|
|
269
273
|
[K in ModelName]?: number;
|
|
@@ -1766,6 +1770,8 @@ export type FormCustomization = {
|
|
|
1766
1770
|
hideBg?: boolean;
|
|
1767
1771
|
portalShowThanksAfterSubmission?: boolean;
|
|
1768
1772
|
maxWidth?: number;
|
|
1773
|
+
primaryColor?: string;
|
|
1774
|
+
secondaryColor?: string;
|
|
1769
1775
|
};
|
|
1770
1776
|
export interface Form_readonly extends ClientRecord {
|
|
1771
1777
|
numFields: number;
|
|
@@ -1837,6 +1843,7 @@ export interface Form extends Form_readonly, Form_required, Form_updatesDisabled
|
|
|
1837
1843
|
dontSyncToCanvasOnSubmission?: boolean;
|
|
1838
1844
|
belugaVisitType?: string;
|
|
1839
1845
|
showByUserTags?: string[];
|
|
1846
|
+
version?: 'v1' | 'v2';
|
|
1840
1847
|
}
|
|
1841
1848
|
export interface FormGroup_readonly extends ClientRecord {
|
|
1842
1849
|
}
|
|
@@ -2562,6 +2569,7 @@ export interface CalendarEventTemplate extends CalendarEventTemplate_readonly, C
|
|
|
2562
2569
|
athenaTypeId?: string;
|
|
2563
2570
|
athenaBookingTypeId?: string;
|
|
2564
2571
|
healthieInsuranceBillingEnabled?: boolean;
|
|
2572
|
+
replaceHostOnReschedule?: boolean;
|
|
2565
2573
|
}
|
|
2566
2574
|
export interface AppointmentLocation_readonly extends ClientRecord {
|
|
2567
2575
|
}
|
|
@@ -4479,6 +4487,7 @@ export type PhoneTreeActions = {
|
|
|
4479
4487
|
}>;
|
|
4480
4488
|
'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
|
|
4481
4489
|
to: string;
|
|
4490
|
+
playback?: Partial<PhonePlayback>;
|
|
4482
4491
|
}>;
|
|
4483
4492
|
'Conditional Split': PhoneTreeActionBuilder<"Conditional Split", {
|
|
4484
4493
|
timezone?: Timezone;
|
|
@@ -4631,6 +4640,24 @@ export interface Configuration_required {
|
|
|
4631
4640
|
}
|
|
4632
4641
|
export interface Configuration extends Configuration_readonly, Configuration_required, Configuration_updatesDisabled {
|
|
4633
4642
|
}
|
|
4643
|
+
export type TimeTrackTimestamp = {
|
|
4644
|
+
type: 'start' | 'pause' | 'resume';
|
|
4645
|
+
timestamp: Date;
|
|
4646
|
+
};
|
|
4647
|
+
export interface TimeTrack_readonly extends ClientRecord {
|
|
4648
|
+
}
|
|
4649
|
+
export interface TimeTrack_updatesDisabled {
|
|
4650
|
+
}
|
|
4651
|
+
export interface TimeTrack_required {
|
|
4652
|
+
title: string;
|
|
4653
|
+
userId: string;
|
|
4654
|
+
}
|
|
4655
|
+
export interface TimeTrack extends TimeTrack_readonly, TimeTrack_required, TimeTrack_updatesDisabled {
|
|
4656
|
+
enduserId?: string;
|
|
4657
|
+
timestamps?: TimeTrackTimestamp[];
|
|
4658
|
+
closedAt?: Date | '';
|
|
4659
|
+
totalDurationInMS?: number;
|
|
4660
|
+
}
|
|
4634
4661
|
export interface TicketQueue_readonly extends ClientRecord {
|
|
4635
4662
|
count?: number;
|
|
4636
4663
|
}
|
|
@@ -5146,6 +5173,7 @@ export type ModelForName_required = {
|
|
|
5146
5173
|
table_views: TableView_required;
|
|
5147
5174
|
email_sync_denials: EmailSyncDenial_required;
|
|
5148
5175
|
configurations: Configuration_required;
|
|
5176
|
+
time_tracks: TimeTrack_required;
|
|
5149
5177
|
};
|
|
5150
5178
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
5151
5179
|
export interface ModelForName_readonly {
|
|
@@ -5237,6 +5265,7 @@ export interface ModelForName_readonly {
|
|
|
5237
5265
|
enduser_profile_views: EnduserProfileView_readonly;
|
|
5238
5266
|
table_views: TableView_readonly;
|
|
5239
5267
|
email_sync_denials: EmailSyncDenial_readonly;
|
|
5268
|
+
time_tracks: TimeTrack_readonly;
|
|
5240
5269
|
}
|
|
5241
5270
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
5242
5271
|
export interface ModelForName_updatesDisabled {
|
|
@@ -5328,6 +5357,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
5328
5357
|
enduser_profile_views: EnduserProfileView_updatesDisabled;
|
|
5329
5358
|
table_views: TableView_updatesDisabled;
|
|
5330
5359
|
email_sync_denials: EmailSyncDenial_updatesDisabled;
|
|
5360
|
+
time_tracks: TimeTrack_updatesDisabled;
|
|
5331
5361
|
}
|
|
5332
5362
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
5333
5363
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
@@ -5419,6 +5449,7 @@ export interface ModelForName extends ModelForName_required, ModelForName_readon
|
|
|
5419
5449
|
enduser_profile_views: EnduserProfileView;
|
|
5420
5450
|
table_views: TableView;
|
|
5421
5451
|
email_sync_denials: EmailSyncDenial;
|
|
5452
|
+
time_tracks: TimeTrack;
|
|
5422
5453
|
}
|
|
5423
5454
|
export type ModelName = keyof ModelForName;
|
|
5424
5455
|
export type Model = ModelForName[keyof ModelForName];
|