@tellescope/types-models 1.242.7 → 1.242.9
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 +14 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +14 -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 +14 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -467,6 +467,9 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
467
467
|
};
|
|
468
468
|
canvasSyncEmailConsent?: boolean;
|
|
469
469
|
canvasSyncPhoneConsent?: boolean;
|
|
470
|
+
canvasStateToLocationId?: {
|
|
471
|
+
[state: string]: string;
|
|
472
|
+
};
|
|
470
473
|
dosespotClinics?: {
|
|
471
474
|
id: string;
|
|
472
475
|
name: string;
|
|
@@ -1875,6 +1878,7 @@ export type FormType = 'note' | 'enduserFacing';
|
|
|
1875
1878
|
export type FormCustomization = {
|
|
1876
1879
|
publicFormHTMLDescription?: string;
|
|
1877
1880
|
publicFormSubmitHTMLDescription?: string;
|
|
1881
|
+
logoURL?: string;
|
|
1878
1882
|
logoHeight?: number;
|
|
1879
1883
|
publicLabelPrefix?: string;
|
|
1880
1884
|
publicFnameLabel?: string;
|
|
@@ -2354,6 +2358,8 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
2354
2358
|
lockedAt?: Date | '';
|
|
2355
2359
|
carePlanId?: string;
|
|
2356
2360
|
context?: string;
|
|
2361
|
+
logoURL?: string;
|
|
2362
|
+
logoHeight?: number;
|
|
2357
2363
|
calendarEventId?: string;
|
|
2358
2364
|
copiedFrom?: string;
|
|
2359
2365
|
copiedFromEnduserId?: string;
|
|
@@ -2642,6 +2648,7 @@ export interface Purchase extends Purchase_readonly, Purchase_required, Purchase
|
|
|
2642
2648
|
cptCode?: BillingCode;
|
|
2643
2649
|
notes?: string;
|
|
2644
2650
|
references?: RelatedRecord[];
|
|
2651
|
+
stripeProductName?: string;
|
|
2645
2652
|
}
|
|
2646
2653
|
type BuildPurchaseCreditInfo<T, I> = {
|
|
2647
2654
|
type: T;
|
|
@@ -3089,6 +3096,7 @@ export type CreateTicketActionInfo = {
|
|
|
3089
3096
|
export type SendEmailAutomationAction = AutomationActionBuilder<'sendEmail', AutomationForMessage & {
|
|
3090
3097
|
fromEmailOverride?: string;
|
|
3091
3098
|
ccRelatedContactTypes?: string[];
|
|
3099
|
+
customEmailField?: string;
|
|
3092
3100
|
}>;
|
|
3093
3101
|
export type NotifyTeamAutomationAction = AutomationActionBuilder<'notifyTeam', {
|
|
3094
3102
|
templateId: string;
|
|
@@ -3411,6 +3419,9 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
3411
3419
|
type?: string;
|
|
3412
3420
|
source?: string;
|
|
3413
3421
|
notes?: string;
|
|
3422
|
+
qualitativeResult?: string;
|
|
3423
|
+
refRange?: string;
|
|
3424
|
+
statusIndicator?: string;
|
|
3414
3425
|
externalId?: string;
|
|
3415
3426
|
deviceId?: string;
|
|
3416
3427
|
references?: RelatedRecord[];
|
|
@@ -4947,12 +4958,14 @@ export interface EnduserOrder extends EnduserOrder_readonly, EnduserOrder_requir
|
|
|
4947
4958
|
tracking?: string;
|
|
4948
4959
|
}[];
|
|
4949
4960
|
tracking?: string;
|
|
4961
|
+
carrier?: string;
|
|
4950
4962
|
instructions?: string;
|
|
4951
4963
|
shippedDate?: string;
|
|
4952
4964
|
frequency?: string;
|
|
4953
4965
|
activateBy?: string;
|
|
4954
4966
|
fill?: string;
|
|
4955
4967
|
sku?: string;
|
|
4968
|
+
bookingLink?: string;
|
|
4956
4969
|
}
|
|
4957
4970
|
export interface EnduserProblem_readonly extends ClientRecord {
|
|
4958
4971
|
}
|
|
@@ -5341,6 +5354,7 @@ export interface AIConversation extends AIConversation_readonly, AIConversation_
|
|
|
5341
5354
|
orchestrationId?: string;
|
|
5342
5355
|
}
|
|
5343
5356
|
export interface InboxThread_readonly extends ClientRecord {
|
|
5357
|
+
searchKeywords?: string[];
|
|
5344
5358
|
}
|
|
5345
5359
|
export interface InboxThread_required {
|
|
5346
5360
|
type: "Email" | "SMS" | "Chat" | "GroupMMS" | "Phone";
|