@tellescope/types-models 1.107.0 → 1.109.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 +20 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +20 -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 +2 -2
- package/src/index.ts +21 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -793,6 +793,7 @@ export type ReportQuery = {
|
|
|
793
793
|
range?: DateRange;
|
|
794
794
|
groupBy?: string;
|
|
795
795
|
createdAtBuckets?: Date[];
|
|
796
|
+
mmddyyyyRangeField?: string;
|
|
796
797
|
};
|
|
797
798
|
export type ReportQueries = Record<string, ReportQuery>;
|
|
798
799
|
export type Report = Record<string, {
|
|
@@ -820,6 +821,7 @@ export type EnduserReportQuery = ReportQuery & {
|
|
|
820
821
|
field: string;
|
|
821
822
|
value: string;
|
|
822
823
|
}[];
|
|
824
|
+
filter?: any;
|
|
823
825
|
};
|
|
824
826
|
export type EndusersReportQueries = Record<string, EnduserReportQuery>;
|
|
825
827
|
export type EndusersReport = Report;
|
|
@@ -1084,6 +1086,7 @@ export interface File_readonly extends ClientRecord {
|
|
|
1084
1086
|
source?: string;
|
|
1085
1087
|
externalId?: string;
|
|
1086
1088
|
timestamp?: Date;
|
|
1089
|
+
confirmedAt?: Date;
|
|
1087
1090
|
}
|
|
1088
1091
|
export interface File_required {
|
|
1089
1092
|
name: string;
|
|
@@ -1494,6 +1497,7 @@ export interface Integration extends Integration_readonly, Integration_required,
|
|
|
1494
1497
|
shouldCreateNotifications?: boolean;
|
|
1495
1498
|
disableEnduserAutoSync?: boolean;
|
|
1496
1499
|
disableTicketAutoSync?: boolean;
|
|
1500
|
+
syncEnduserFiles?: boolean;
|
|
1497
1501
|
pushCalendarDetails?: boolean;
|
|
1498
1502
|
redactExternalEvents?: boolean;
|
|
1499
1503
|
fhirClientId?: string;
|
|
@@ -1852,6 +1856,7 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
1852
1856
|
isEphemeral?: boolean;
|
|
1853
1857
|
videoIntegration?: VideoIntegrationType;
|
|
1854
1858
|
videoURL?: string;
|
|
1859
|
+
externalVideoURL?: string;
|
|
1855
1860
|
videoHostUserId?: string;
|
|
1856
1861
|
timezone?: Timezone;
|
|
1857
1862
|
copiedFrom?: string;
|
|
@@ -1868,6 +1873,10 @@ export interface CalendarEvent extends CalendarEvent_readonly, CalendarEvent_req
|
|
|
1868
1873
|
holdUntil?: Date;
|
|
1869
1874
|
holdFormResponseId?: string;
|
|
1870
1875
|
tags?: string[];
|
|
1876
|
+
cancelledGroupAttendees?: {
|
|
1877
|
+
id: string;
|
|
1878
|
+
at: Date;
|
|
1879
|
+
}[];
|
|
1871
1880
|
}
|
|
1872
1881
|
export type PaymentProcessor = 'Square' | 'Stripe';
|
|
1873
1882
|
export interface Product_readonly extends ClientRecord {
|
|
@@ -2013,6 +2022,9 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
|
|
|
2013
2022
|
primaryColor?: string;
|
|
2014
2023
|
secondaryColor?: string;
|
|
2015
2024
|
backgroundColor?: string;
|
|
2025
|
+
fontFamily?: string;
|
|
2026
|
+
fontFace?: string;
|
|
2027
|
+
fontURL?: string;
|
|
2016
2028
|
terms?: AppointmentTerm[];
|
|
2017
2029
|
topLogo?: string;
|
|
2018
2030
|
intakeTitle?: string;
|
|
@@ -3312,6 +3324,8 @@ export type PhoneTreeEvents = {
|
|
|
3312
3324
|
transcription?: string;
|
|
3313
3325
|
handleNoInput?: boolean;
|
|
3314
3326
|
}>;
|
|
3327
|
+
'If True': PhoneTreeEventBuilder<'If True', {}>;
|
|
3328
|
+
'If False': PhoneTreeEventBuilder<'If False', {}>;
|
|
3315
3329
|
};
|
|
3316
3330
|
export type PhoneTreeEventType = keyof PhoneTreeEvents;
|
|
3317
3331
|
export type PhoneTreeEvent = PhoneTreeEvents[PhoneTreeEventType];
|
|
@@ -3364,6 +3378,10 @@ export type PhoneTreeActions = {
|
|
|
3364
3378
|
'Forward Call': PhoneTreeActionBuilder<"Forward Call", {
|
|
3365
3379
|
to: string;
|
|
3366
3380
|
}>;
|
|
3381
|
+
'Conditional Split': PhoneTreeActionBuilder<"Conditional Split", {
|
|
3382
|
+
timezone?: Timezone;
|
|
3383
|
+
weeklyAvailabilities?: WeeklyAvailability[];
|
|
3384
|
+
}>;
|
|
3367
3385
|
};
|
|
3368
3386
|
export type PhoneTreeActionType = keyof PhoneTreeActions;
|
|
3369
3387
|
export type PhoneTreeAction = PhoneTreeActions[PhoneTreeActionType];
|
|
@@ -3521,6 +3539,8 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
|
|
|
3521
3539
|
tracking?: string;
|
|
3522
3540
|
}[];
|
|
3523
3541
|
tracking?: string;
|
|
3542
|
+
instructions?: string;
|
|
3543
|
+
shippedDate?: string;
|
|
3524
3544
|
}
|
|
3525
3545
|
export interface EnduserProblem_readonly extends ClientRecord {
|
|
3526
3546
|
}
|