@tellescope/types-models 1.210.0 → 1.212.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 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +20 -1
- 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 +4 -6
- package/src/index.ts +19 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -447,6 +447,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
447
447
|
createEnduserForms?: string[];
|
|
448
448
|
creditCount?: number;
|
|
449
449
|
creditTrialStartedAt?: Date;
|
|
450
|
+
hasIntegrations?: string[];
|
|
450
451
|
}
|
|
451
452
|
export type OrganizationTheme = {
|
|
452
453
|
name: string;
|
|
@@ -717,6 +718,7 @@ export type EnduserDevice = {
|
|
|
717
718
|
id: string;
|
|
718
719
|
gatewayId?: string;
|
|
719
720
|
disabled?: boolean;
|
|
721
|
+
archivedAt?: Date | '';
|
|
720
722
|
};
|
|
721
723
|
export type EnduserDiagnosis = {
|
|
722
724
|
id?: string;
|
|
@@ -2203,6 +2205,7 @@ export interface AvailabilityBlock extends WeeklyAvailability, AvailabilityBlock
|
|
|
2203
2205
|
export type CalendarEventReminderNotificationInfo = {
|
|
2204
2206
|
templateId?: string;
|
|
2205
2207
|
channel?: 'Email' | 'SMS';
|
|
2208
|
+
useTemplateForSMS?: boolean;
|
|
2206
2209
|
};
|
|
2207
2210
|
type BuildCalendarEventReminderInfo<T, I> = {
|
|
2208
2211
|
type: T;
|
|
@@ -2567,6 +2570,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
|
|
|
2567
2570
|
includeRelatedContactTypes?: string[];
|
|
2568
2571
|
archivedAt?: Date | '';
|
|
2569
2572
|
gtmTag?: string;
|
|
2573
|
+
dontRestrictRescheduleToOriginalHost?: boolean;
|
|
2570
2574
|
}
|
|
2571
2575
|
export interface CalendarEventRSVP_readonly extends ClientRecord {
|
|
2572
2576
|
creatorType: SessionType;
|
|
@@ -2754,6 +2758,7 @@ interface AutomationActionBuilder<T extends string, V extends object> {
|
|
|
2754
2758
|
type: T;
|
|
2755
2759
|
info: V;
|
|
2756
2760
|
continueOnError?: boolean;
|
|
2761
|
+
isBrandedWebhook?: boolean;
|
|
2757
2762
|
}
|
|
2758
2763
|
export type AssignToQueueInfo = {
|
|
2759
2764
|
queueId: string;
|
|
@@ -3046,6 +3051,7 @@ export type AutomationActionForType = {
|
|
|
3046
3051
|
};
|
|
3047
3052
|
export type AutomationActionType = keyof AutomationActionForType;
|
|
3048
3053
|
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
3054
|
+
export type BrandedWebhookActions = "Puppeteer: Start Agent";
|
|
3049
3055
|
export interface AutomationStep_readonly extends ClientRecord {
|
|
3050
3056
|
}
|
|
3051
3057
|
export interface AutomationStep_required {
|
|
@@ -3617,7 +3623,9 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3617
3623
|
formResponseCondition?: CompoundFilter<string>;
|
|
3618
3624
|
tags?: ListOfStringsWithQualifier;
|
|
3619
3625
|
};
|
|
3620
|
-
"Purchases": {
|
|
3626
|
+
"Purchases": {
|
|
3627
|
+
titles?: string[];
|
|
3628
|
+
};
|
|
3621
3629
|
"Purchase Credits": {};
|
|
3622
3630
|
"Tickets": {
|
|
3623
3631
|
titles?: string[];
|
|
@@ -3674,6 +3682,7 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
3674
3682
|
Enduser: string;
|
|
3675
3683
|
};
|
|
3676
3684
|
"Purchases": {
|
|
3685
|
+
Title?: boolean;
|
|
3677
3686
|
Cost?: boolean;
|
|
3678
3687
|
} & EnduserGrouping & {
|
|
3679
3688
|
Enduser: string;
|
|
@@ -4066,6 +4075,7 @@ export type AutomationTriggerEvents = {
|
|
|
4066
4075
|
fills?: string[];
|
|
4067
4076
|
skus?: string[];
|
|
4068
4077
|
skuPartials?: string[];
|
|
4078
|
+
titlePartials?: string[];
|
|
4069
4079
|
}, {}>;
|
|
4070
4080
|
'Missed Call': AutomationTriggerEventBuilder<"Missed Call", {
|
|
4071
4081
|
phoneNumbers?: string[];
|
|
@@ -5920,4 +5930,13 @@ export type KendraSearchResult = {
|
|
|
5920
5930
|
};
|
|
5921
5931
|
}[];
|
|
5922
5932
|
};
|
|
5933
|
+
export type HealthieWebhookEvent = {
|
|
5934
|
+
event_type: string;
|
|
5935
|
+
};
|
|
5936
|
+
export type HealthieWebhook = {
|
|
5937
|
+
id: string;
|
|
5938
|
+
url: string;
|
|
5939
|
+
is_enabled: boolean;
|
|
5940
|
+
webhook_events: HealthieWebhookEvent[];
|
|
5941
|
+
};
|
|
5923
5942
|
//# sourceMappingURL=index.d.ts.map
|