@tellescope/types-models 1.211.0 → 1.213.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;
|
|
@@ -585,6 +586,7 @@ export interface User_updatesDisabled {
|
|
|
585
586
|
verifiedEmail: boolean;
|
|
586
587
|
}
|
|
587
588
|
export interface User extends User_required, User_readonly, User_updatesDisabled {
|
|
589
|
+
billingTags?: LabeledField[];
|
|
588
590
|
defaultLocationId?: string;
|
|
589
591
|
termsSigned?: Date;
|
|
590
592
|
termsVersion?: string;
|
|
@@ -619,6 +621,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
619
621
|
availableFromEmails?: string[];
|
|
620
622
|
hashedPass?: string;
|
|
621
623
|
pushNotificationIosTokens?: string[];
|
|
624
|
+
pushNotificationFirebaseTokens?: string[];
|
|
622
625
|
pushNotificationDestinations?: string[];
|
|
623
626
|
drChronoId?: string;
|
|
624
627
|
canvasId?: string;
|
|
@@ -717,6 +720,7 @@ export type EnduserDevice = {
|
|
|
717
720
|
id: string;
|
|
718
721
|
gatewayId?: string;
|
|
719
722
|
disabled?: boolean;
|
|
723
|
+
archivedAt?: Date | '';
|
|
720
724
|
};
|
|
721
725
|
export type EnduserDiagnosis = {
|
|
722
726
|
id?: string;
|
|
@@ -2756,6 +2760,7 @@ interface AutomationActionBuilder<T extends string, V extends object> {
|
|
|
2756
2760
|
type: T;
|
|
2757
2761
|
info: V;
|
|
2758
2762
|
continueOnError?: boolean;
|
|
2763
|
+
isBrandedWebhook?: boolean;
|
|
2759
2764
|
}
|
|
2760
2765
|
export type AssignToQueueInfo = {
|
|
2761
2766
|
queueId: string;
|
|
@@ -3048,6 +3053,7 @@ export type AutomationActionForType = {
|
|
|
3048
3053
|
};
|
|
3049
3054
|
export type AutomationActionType = keyof AutomationActionForType;
|
|
3050
3055
|
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
3056
|
+
export type BrandedWebhookActions = "Puppeteer: Start Agent";
|
|
3051
3057
|
export interface AutomationStep_readonly extends ClientRecord {
|
|
3052
3058
|
}
|
|
3053
3059
|
export interface AutomationStep_required {
|
|
@@ -3619,7 +3625,9 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3619
3625
|
formResponseCondition?: CompoundFilter<string>;
|
|
3620
3626
|
tags?: ListOfStringsWithQualifier;
|
|
3621
3627
|
};
|
|
3622
|
-
"Purchases": {
|
|
3628
|
+
"Purchases": {
|
|
3629
|
+
titles?: string[];
|
|
3630
|
+
};
|
|
3623
3631
|
"Purchase Credits": {};
|
|
3624
3632
|
"Tickets": {
|
|
3625
3633
|
titles?: string[];
|
|
@@ -3676,6 +3684,7 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
3676
3684
|
Enduser: string;
|
|
3677
3685
|
};
|
|
3678
3686
|
"Purchases": {
|
|
3687
|
+
Title?: boolean;
|
|
3679
3688
|
Cost?: boolean;
|
|
3680
3689
|
} & EnduserGrouping & {
|
|
3681
3690
|
Enduser: string;
|
|
@@ -4068,6 +4077,7 @@ export type AutomationTriggerEvents = {
|
|
|
4068
4077
|
fills?: string[];
|
|
4069
4078
|
skus?: string[];
|
|
4070
4079
|
skuPartials?: string[];
|
|
4080
|
+
titlePartials?: string[];
|
|
4071
4081
|
}, {}>;
|
|
4072
4082
|
'Missed Call': AutomationTriggerEventBuilder<"Missed Call", {
|
|
4073
4083
|
phoneNumbers?: string[];
|
|
@@ -5922,4 +5932,13 @@ export type KendraSearchResult = {
|
|
|
5922
5932
|
};
|
|
5923
5933
|
}[];
|
|
5924
5934
|
};
|
|
5935
|
+
export type HealthieWebhookEvent = {
|
|
5936
|
+
event_type: string;
|
|
5937
|
+
};
|
|
5938
|
+
export type HealthieWebhook = {
|
|
5939
|
+
id: string;
|
|
5940
|
+
url: string;
|
|
5941
|
+
is_enabled: boolean;
|
|
5942
|
+
webhook_events: HealthieWebhookEvent[];
|
|
5943
|
+
};
|
|
5925
5944
|
//# sourceMappingURL=index.d.ts.map
|