@tellescope/types-models 1.147.0 → 1.149.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 +15 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +15 -2
- 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 +15 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -177,6 +177,8 @@ export type OrganizationSettings = {
|
|
|
177
177
|
hideNotesFromComposeForm?: boolean;
|
|
178
178
|
showSalesforceId?: boolean;
|
|
179
179
|
loopQueueCallSound?: boolean;
|
|
180
|
+
showOrdersInSidebar?: boolean;
|
|
181
|
+
showDiagnoses?: boolean;
|
|
180
182
|
};
|
|
181
183
|
tickets?: {
|
|
182
184
|
defaultJourneyDueDateOffsetInMS?: number | '';
|
|
@@ -623,6 +625,7 @@ export type EnduserInsurance = {
|
|
|
623
625
|
groupNumber?: string;
|
|
624
626
|
};
|
|
625
627
|
export type EnduserDiagnosis = {
|
|
628
|
+
id?: string;
|
|
626
629
|
externalId?: string;
|
|
627
630
|
active?: boolean;
|
|
628
631
|
start?: string;
|
|
@@ -630,6 +633,7 @@ export type EnduserDiagnosis = {
|
|
|
630
633
|
code?: string;
|
|
631
634
|
display?: string;
|
|
632
635
|
source?: string;
|
|
636
|
+
references?: RelatedRecord[];
|
|
633
637
|
};
|
|
634
638
|
export type TellescopeGender = "Male" | "Female" | "Other" | "Unknown";
|
|
635
639
|
export interface Enduser_readonly extends UserActivityInfo, ClientRecord, EnduserEngagementTimestamps {
|
|
@@ -1451,6 +1455,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1451
1455
|
redirectExternalUrl?: string;
|
|
1452
1456
|
groupPadding?: number;
|
|
1453
1457
|
saveIntakeOnPartial?: boolean;
|
|
1458
|
+
stripeKey?: string;
|
|
1454
1459
|
};
|
|
1455
1460
|
export type MultipleChoiceOptions = Pick<FormFieldOptions, 'choices' | 'radio' | 'other'>;
|
|
1456
1461
|
export type FormFieldCalloutConditionComparison = 'Equals';
|
|
@@ -2073,6 +2078,8 @@ export interface Product extends Product_readonly, Product_required, Product_upd
|
|
|
2073
2078
|
showInPortal?: boolean;
|
|
2074
2079
|
categories?: string[];
|
|
2075
2080
|
maxCheckoutCount?: number | '';
|
|
2081
|
+
stripeSubscriptionId?: string;
|
|
2082
|
+
stripeProductId?: string;
|
|
2076
2083
|
}
|
|
2077
2084
|
export interface Purchase_readonly extends ClientRecord {
|
|
2078
2085
|
}
|
|
@@ -3367,8 +3374,9 @@ export type EnduserProfileViewBlocks = {
|
|
|
3367
3374
|
}>;
|
|
3368
3375
|
"Form Responses": EnduserProfileViewBlockBuilder<"Form Responses", {
|
|
3369
3376
|
title: string;
|
|
3370
|
-
formId
|
|
3371
|
-
fieldIds
|
|
3377
|
+
formId?: string;
|
|
3378
|
+
fieldIds?: string[];
|
|
3379
|
+
showAllForms?: boolean;
|
|
3372
3380
|
}>;
|
|
3373
3381
|
"Zus Encounters": EnduserProfileViewBlockBuilder<"Zus Encounters", {
|
|
3374
3382
|
title: string;
|
|
@@ -3404,6 +3412,8 @@ export interface EnduserProfileView_updatesDisabled {
|
|
|
3404
3412
|
}
|
|
3405
3413
|
export interface EnduserProfileView extends EnduserProfileView_readonly, EnduserProfileView_required, EnduserProfileView_updatesDisabled {
|
|
3406
3414
|
showCompose?: boolean;
|
|
3415
|
+
defaultForUserIds?: string[];
|
|
3416
|
+
defaultForRoles?: string[];
|
|
3407
3417
|
}
|
|
3408
3418
|
export type ListOfStringsWithQualifier = {
|
|
3409
3419
|
qualifier: ListQueryQualifier;
|
|
@@ -3443,6 +3453,9 @@ export type AutomationTriggerActions = {
|
|
|
3443
3453
|
"Zus: Delete Enrollment": AutomationTriggerActionBuilder<'Zus: Delete Enrollment', {
|
|
3444
3454
|
packageId: string;
|
|
3445
3455
|
}>;
|
|
3456
|
+
"Remove Care Team": AutomationTriggerActionBuilder<'Remove Care Team', {
|
|
3457
|
+
tags: ListOfStringsWithQualifier;
|
|
3458
|
+
}>;
|
|
3446
3459
|
};
|
|
3447
3460
|
export type AutomationTriggerActionType = keyof AutomationTriggerActions;
|
|
3448
3461
|
export type AutomationTriggerAction = AutomationTriggerActions[AutomationTriggerActionType];
|