@tellescope/types-models 1.235.0 → 1.235.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 +15 -3
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +15 -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 +7 -7
- package/src/index.ts +12 -4
package/lib/cjs/index.d.ts
CHANGED
|
@@ -382,6 +382,7 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
382
382
|
canvasURL?: string;
|
|
383
383
|
hasConnectedCandid?: boolean;
|
|
384
384
|
hasConnectedGoGoMeds?: boolean;
|
|
385
|
+
hasScriptSure?: boolean;
|
|
385
386
|
hasConnectedPagerDuty?: boolean;
|
|
386
387
|
hasConnectedSmartMeter?: boolean;
|
|
387
388
|
hasConnectedAthena?: boolean;
|
|
@@ -467,6 +468,12 @@ export interface Organization extends Organization_readonly, Organization_requir
|
|
|
467
468
|
id: string;
|
|
468
469
|
name: string;
|
|
469
470
|
}[];
|
|
471
|
+
scriptSurePractices?: {
|
|
472
|
+
id: string;
|
|
473
|
+
name: string;
|
|
474
|
+
}[];
|
|
475
|
+
scriptSureEnvironment?: 'Sandbox' | 'Production';
|
|
476
|
+
scriptSureEmail?: string;
|
|
470
477
|
groups?: string[];
|
|
471
478
|
observationInvalidationReasons?: string[];
|
|
472
479
|
chargebeeEnvironments?: string[];
|
|
@@ -691,6 +698,7 @@ export interface User extends User_required, User_readonly, User_updatesDisabled
|
|
|
691
698
|
elationUserId?: number;
|
|
692
699
|
iOSBadgeCount?: number;
|
|
693
700
|
doseSpotUserId?: string;
|
|
701
|
+
scriptSurePrescriberId?: string;
|
|
694
702
|
url?: string;
|
|
695
703
|
requiresMFAConfiguration?: boolean;
|
|
696
704
|
templateFields?: LabeledField[];
|
|
@@ -1671,7 +1679,7 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1671
1679
|
userTags?: string[];
|
|
1672
1680
|
userFilterTags?: string[];
|
|
1673
1681
|
requirePredefinedInsurer?: boolean;
|
|
1674
|
-
|
|
1682
|
+
bridgeServiceTypeIds?: string[];
|
|
1675
1683
|
bridgeEligibilityType?: 'Soft' | 'Hard';
|
|
1676
1684
|
useBridgeEligibilityResult?: boolean;
|
|
1677
1685
|
addressFields?: string[];
|
|
@@ -2089,6 +2097,7 @@ export type FormResponseAnswerRelatedContacts = FormResponseValueAnswerBuilder<'
|
|
|
2089
2097
|
export type FormResponseAnswerAppointmentBooking = FormResponseValueAnswerBuilder<'Appointment Booking', string>;
|
|
2090
2098
|
export type FormResponseAnswerInsurance = FormResponseValueAnswerBuilder<'Insurance', Partial<EnduserInsurance>>;
|
|
2091
2099
|
export type FormResponseAnswerBridgeEligibility = FormResponseValueAnswerBuilder<'Bridge Eligibility', {
|
|
2100
|
+
payerId?: string;
|
|
2092
2101
|
status?: string;
|
|
2093
2102
|
userIds?: string[];
|
|
2094
2103
|
}>;
|
|
@@ -3295,7 +3304,7 @@ export interface EnduserObservation extends EnduserObservation_readonly, Enduser
|
|
|
3295
3304
|
invalidationReason?: string;
|
|
3296
3305
|
excludeFromVitalCountLookback?: boolean;
|
|
3297
3306
|
}
|
|
3298
|
-
export type BlockType = 'h1' | 'h2' | 'html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
|
|
3307
|
+
export type BlockType = 'h1' | 'h2' | 'html' | 'raw-html' | 'image' | 'youtube' | 'pdf' | 'iframe' | 'content-link';
|
|
3299
3308
|
export type BlockStyle = {
|
|
3300
3309
|
width?: number;
|
|
3301
3310
|
height?: number;
|
|
@@ -3326,6 +3335,9 @@ export type BlockContentH2 = ContentBlockBuilder<'h2', BlockContentText>;
|
|
|
3326
3335
|
export type BlockContentHTML = ContentBlockBuilder<'html', {
|
|
3327
3336
|
html: string;
|
|
3328
3337
|
}>;
|
|
3338
|
+
export type BlockContentRawHTML = ContentBlockBuilder<'raw-html', {
|
|
3339
|
+
html: string;
|
|
3340
|
+
}>;
|
|
3329
3341
|
export type BlockContentImage = ContentBlockBuilder<'image', BlockContentMedia>;
|
|
3330
3342
|
export type BlockContentPDF = ContentBlockBuilder<'pdf', BlockContentMedia>;
|
|
3331
3343
|
export type BlockContentYoutube = ContentBlockBuilder<'youtube', BlockContentMedia>;
|
|
@@ -3333,7 +3345,7 @@ export type BlockContentIFrame = ContentBlockBuilder<'iframe', BlockContentMedia
|
|
|
3333
3345
|
export type BlockContentLink = ContentBlockBuilder<'content-link', {
|
|
3334
3346
|
recordId: string;
|
|
3335
3347
|
}>;
|
|
3336
|
-
export type Block = (BlockContentYoutube | BlockContentPDF | BlockContentImage | BlockContentHTML | BlockContentH1 | BlockContentH2 | BlockContentIFrame | BlockContentLink);
|
|
3348
|
+
export type Block = (BlockContentYoutube | BlockContentPDF | BlockContentImage | BlockContentHTML | BlockContentRawHTML | BlockContentH1 | BlockContentH2 | BlockContentIFrame | BlockContentLink);
|
|
3337
3349
|
export declare const TEXT_EMBEDDING_ADA_002 = "text-embedding-ada-002";
|
|
3338
3350
|
export declare const EmbeddingInfo: {
|
|
3339
3351
|
"text-embedding-ada-002": {
|