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