@tellescope/types-models 1.211.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 +18 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +18 -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 +17 -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;
|
|
@@ -2756,6 +2758,7 @@ interface AutomationActionBuilder<T extends string, V extends object> {
|
|
|
2756
2758
|
type: T;
|
|
2757
2759
|
info: V;
|
|
2758
2760
|
continueOnError?: boolean;
|
|
2761
|
+
isBrandedWebhook?: boolean;
|
|
2759
2762
|
}
|
|
2760
2763
|
export type AssignToQueueInfo = {
|
|
2761
2764
|
queueId: string;
|
|
@@ -3048,6 +3051,7 @@ export type AutomationActionForType = {
|
|
|
3048
3051
|
};
|
|
3049
3052
|
export type AutomationActionType = keyof AutomationActionForType;
|
|
3050
3053
|
export type AutomationAction = AutomationActionForType[AutomationActionType];
|
|
3054
|
+
export type BrandedWebhookActions = "Puppeteer: Start Agent";
|
|
3051
3055
|
export interface AutomationStep_readonly extends ClientRecord {
|
|
3052
3056
|
}
|
|
3053
3057
|
export interface AutomationStep_required {
|
|
@@ -3619,7 +3623,9 @@ export type AnalyticsQueryFilterForType = {
|
|
|
3619
3623
|
formResponseCondition?: CompoundFilter<string>;
|
|
3620
3624
|
tags?: ListOfStringsWithQualifier;
|
|
3621
3625
|
};
|
|
3622
|
-
"Purchases": {
|
|
3626
|
+
"Purchases": {
|
|
3627
|
+
titles?: string[];
|
|
3628
|
+
};
|
|
3623
3629
|
"Purchase Credits": {};
|
|
3624
3630
|
"Tickets": {
|
|
3625
3631
|
titles?: string[];
|
|
@@ -3676,6 +3682,7 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
3676
3682
|
Enduser: string;
|
|
3677
3683
|
};
|
|
3678
3684
|
"Purchases": {
|
|
3685
|
+
Title?: boolean;
|
|
3679
3686
|
Cost?: boolean;
|
|
3680
3687
|
} & EnduserGrouping & {
|
|
3681
3688
|
Enduser: string;
|
|
@@ -4068,6 +4075,7 @@ export type AutomationTriggerEvents = {
|
|
|
4068
4075
|
fills?: string[];
|
|
4069
4076
|
skus?: string[];
|
|
4070
4077
|
skuPartials?: string[];
|
|
4078
|
+
titlePartials?: string[];
|
|
4071
4079
|
}, {}>;
|
|
4072
4080
|
'Missed Call': AutomationTriggerEventBuilder<"Missed Call", {
|
|
4073
4081
|
phoneNumbers?: string[];
|
|
@@ -5922,4 +5930,13 @@ export type KendraSearchResult = {
|
|
|
5922
5930
|
};
|
|
5923
5931
|
}[];
|
|
5924
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
|
+
};
|
|
5925
5942
|
//# sourceMappingURL=index.d.ts.map
|