@tellescope/types-models 1.256.2 → 1.256.3
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 +23 -3
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +23 -3
- 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 +3 -3
- package/src/index.ts +17 -4
package/lib/cjs/index.d.ts
CHANGED
|
@@ -473,6 +473,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
473
473
|
hasScriptSure?: boolean;
|
|
474
474
|
hasConnectedPagerDuty?: boolean;
|
|
475
475
|
hasConnectedSeason?: boolean;
|
|
476
|
+
hasConnectedWelle?: boolean;
|
|
476
477
|
hasConnectedSmartMeter?: boolean;
|
|
477
478
|
hasConnectedAthena?: boolean;
|
|
478
479
|
hasConnectedActiveCampaign?: boolean;
|
|
@@ -3448,6 +3449,10 @@ export type MetriportSyncAutomationAction = AutomationActionBuilder<'metriportSy
|
|
|
3448
3449
|
facilityId: string;
|
|
3449
3450
|
integrationTitle?: string;
|
|
3450
3451
|
}>;
|
|
3452
|
+
export type MetriportPushFormResponseAutomationAction = AutomationActionBuilder<'metriportPushFormResponse', {
|
|
3453
|
+
formId?: string;
|
|
3454
|
+
integrationTitle?: string;
|
|
3455
|
+
}>;
|
|
3451
3456
|
export type ZusSubscribeAutomationAction = AutomationActionBuilder<'zusSubscribe', {
|
|
3452
3457
|
practitionerId: string;
|
|
3453
3458
|
packageIds: string[];
|
|
@@ -3706,6 +3711,7 @@ export type AutomationActionForType = {
|
|
|
3706
3711
|
'zusSync': ZusSyncAutomationAction;
|
|
3707
3712
|
'zusPull': ZusPullAutomationAction;
|
|
3708
3713
|
'metriportSync': MetriportSyncAutomationAction;
|
|
3714
|
+
'metriportPushFormResponse': MetriportPushFormResponseAutomationAction;
|
|
3709
3715
|
'zusSubscribe': ZusSubscribeAutomationAction;
|
|
3710
3716
|
'pagerDutyCreateIncident': PagerDutyCreateIncidentAutomationAction;
|
|
3711
3717
|
'smartMeterPlaceOrder': SmartMeterPlaceOrderAutomationAction;
|
|
@@ -4453,7 +4459,10 @@ export type AnalyticsQueryFilterForType = {
|
|
|
4453
4459
|
enduserFields?: AnalyticsEnduserFilterField[];
|
|
4454
4460
|
closedAtRange?: DateRange;
|
|
4455
4461
|
};
|
|
4456
|
-
"Phone Calls": {
|
|
4462
|
+
"Phone Calls": {
|
|
4463
|
+
direction?: string;
|
|
4464
|
+
"Phone Call Tags"?: ListOfStringsWithQualifier;
|
|
4465
|
+
};
|
|
4457
4466
|
"Meetings": {};
|
|
4458
4467
|
"SMS Messages": {
|
|
4459
4468
|
direction?: string;
|
|
@@ -4525,7 +4534,9 @@ export type AnalyticsQueryGroupingForType = {
|
|
|
4525
4534
|
} & EnduserGrouping & {
|
|
4526
4535
|
Enduser: string;
|
|
4527
4536
|
};
|
|
4528
|
-
"Phone Calls": {
|
|
4537
|
+
"Phone Calls": {
|
|
4538
|
+
"Phone Call Tags"?: boolean;
|
|
4539
|
+
} & EnduserGrouping & {
|
|
4529
4540
|
Enduser: string;
|
|
4530
4541
|
};
|
|
4531
4542
|
"SMS Messages": {
|
|
@@ -4745,6 +4756,7 @@ export type EnduserProfileViewBlocks = {
|
|
|
4745
4756
|
}>;
|
|
4746
4757
|
"Timeline": EnduserProfileViewBlockBuilder<"Timeline", {
|
|
4747
4758
|
title: string;
|
|
4759
|
+
filterTo?: string[];
|
|
4748
4760
|
}>;
|
|
4749
4761
|
"Shared Content": EnduserProfileViewBlockBuilder<"Shared Content", {
|
|
4750
4762
|
title: string;
|
|
@@ -4889,7 +4901,15 @@ export type AutomationTriggerEvents = {
|
|
|
4889
4901
|
'Subscription Ended': AutomationTriggerEventBuilder<"Subscription Ended", {
|
|
4890
4902
|
productIds?: string[];
|
|
4891
4903
|
}, {}>;
|
|
4892
|
-
'Subscription Payment Failed': AutomationTriggerEventBuilder<"Subscription Payment Failed", {
|
|
4904
|
+
'Subscription Payment Failed': AutomationTriggerEventBuilder<"Subscription Payment Failed", {
|
|
4905
|
+
productIds?: string[];
|
|
4906
|
+
}, {}>;
|
|
4907
|
+
'Subscription Paused': AutomationTriggerEventBuilder<"Subscription Paused", {
|
|
4908
|
+
productIds?: string[];
|
|
4909
|
+
}, {}>;
|
|
4910
|
+
'Subscription Resumed': AutomationTriggerEventBuilder<"Subscription Resumed", {
|
|
4911
|
+
productIds?: string[];
|
|
4912
|
+
}, {}>;
|
|
4893
4913
|
'Stripe: Payment Intent Failed': AutomationTriggerEventBuilder<"Stripe: Payment Intent Failed", {}, {}>;
|
|
4894
4914
|
'Appointment No-Showed': AutomationTriggerEventBuilder<"Appointment No-Showed", {
|
|
4895
4915
|
titles?: string[];
|