@tellescope/types-models 1.253.0 → 1.253.1
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 +6 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +6 -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 +3 -3
- package/src/index.ts +6 -3
package/lib/cjs/index.d.ts
CHANGED
|
@@ -305,6 +305,7 @@ export type OrganizationSettings = {
|
|
|
305
305
|
};
|
|
306
306
|
timeTracking?: {
|
|
307
307
|
enabled?: boolean;
|
|
308
|
+
inactivityThresholdInSeconds?: number;
|
|
308
309
|
};
|
|
309
310
|
};
|
|
310
311
|
export type OrganizationLimits = {
|
|
@@ -410,7 +411,9 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
410
411
|
inboxThreadsBuiltTo?: Date | '';
|
|
411
412
|
bedrockAIAllowed?: boolean;
|
|
412
413
|
plan?: OrganizationPlan;
|
|
413
|
-
onboardingStatus?:
|
|
414
|
+
onboardingStatus?: {
|
|
415
|
+
[key: string]: string | boolean;
|
|
416
|
+
};
|
|
414
417
|
subdomains?: string[];
|
|
415
418
|
owner?: string;
|
|
416
419
|
timezone?: Timezone;
|
|
@@ -1565,6 +1568,7 @@ export interface File_updatesDisabled {
|
|
|
1565
1568
|
}
|
|
1566
1569
|
export interface File extends File_readonly, File_required, File_updatesDisabled, EnduserPortalVisibility {
|
|
1567
1570
|
enduserId?: string;
|
|
1571
|
+
formResponseId?: string;
|
|
1568
1572
|
pushedToClientPortal?: boolean;
|
|
1569
1573
|
hiddenFromEnduser?: boolean;
|
|
1570
1574
|
source?: string;
|
|
@@ -4668,6 +4672,7 @@ export type AutomationTriggerActions = {
|
|
|
4668
4672
|
tags: ListOfStringsWithQualifier;
|
|
4669
4673
|
limitToOneUser?: boolean;
|
|
4670
4674
|
setAsPrimary?: boolean;
|
|
4675
|
+
restrictByState?: boolean;
|
|
4671
4676
|
}>;
|
|
4672
4677
|
"Canvas: Add Patient": AutomationTriggerActionBuilder<'Canvas: Add Patient', {}>;
|
|
4673
4678
|
"Zus: Delete Enrollment": AutomationTriggerActionBuilder<'Zus: Delete Enrollment', {
|