@tellescope/types-models 1.169.0 → 1.170.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 +4 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +4 -0
- 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 +9 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -379,6 +379,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
379
379
|
iframeURL: string;
|
|
380
380
|
}[];
|
|
381
381
|
stripePublicKeys?: string[];
|
|
382
|
+
additionalIterableKeys?: string[];
|
|
382
383
|
defaultDoseSpotPharmacies?: {
|
|
383
384
|
id: string;
|
|
384
385
|
name: string;
|
|
@@ -1314,6 +1315,7 @@ export interface Ticket extends Ticket_readonly, Ticket_required, Ticket_updates
|
|
|
1314
1315
|
preserveContext?: boolean;
|
|
1315
1316
|
phoneCallId?: string;
|
|
1316
1317
|
smsId?: string;
|
|
1318
|
+
emailId?: string;
|
|
1317
1319
|
calendarEventId?: string;
|
|
1318
1320
|
observationId?: string;
|
|
1319
1321
|
tags?: string[];
|
|
@@ -2661,6 +2663,7 @@ export type SendChatAutomationAction = AutomationActionBuilder<'sendChat', {
|
|
|
2661
2663
|
templateId: string;
|
|
2662
2664
|
identifier: string;
|
|
2663
2665
|
includeCareTeam?: boolean;
|
|
2666
|
+
userIds?: string[];
|
|
2664
2667
|
}>;
|
|
2665
2668
|
export type HealthieSyncAutomationAction = AutomationActionBuilder<'healthieSync', {}>;
|
|
2666
2669
|
export type HealthieAddToCourseAutomationAction = AutomationActionBuilder<'healthieAddToCourse', {
|
|
@@ -2695,6 +2698,7 @@ export type IterableCustomEventAutomationAction = AutomationActionBuilder<'itera
|
|
|
2695
2698
|
eventName: string;
|
|
2696
2699
|
description: string;
|
|
2697
2700
|
dataFieldsMapping?: IterableFieldsMapping[];
|
|
2701
|
+
environment?: string;
|
|
2698
2702
|
}>;
|
|
2699
2703
|
export type EnduserFieldSetterType = 'Custom Value' | 'Current Timestamp' | 'Current Date' | "Increment Number";
|
|
2700
2704
|
export type EnduserFieldSetter = {
|