@tellescope/types-models 1.151.0 → 1.152.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 +11 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +11 -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 +15 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -626,6 +626,8 @@ export type EnduserInsurance = {
|
|
|
626
626
|
};
|
|
627
627
|
payerType?: string;
|
|
628
628
|
groupNumber?: string;
|
|
629
|
+
planName?: string;
|
|
630
|
+
startDate?: string;
|
|
629
631
|
};
|
|
630
632
|
export type EnduserDiagnosis = {
|
|
631
633
|
id?: string;
|
|
@@ -1835,6 +1837,11 @@ export type AnswerForType = {
|
|
|
1835
1837
|
'Hidden Value': FormResponseAnswerHiddenValue['value'];
|
|
1836
1838
|
'Emotii': FormResponseAnswerEmotii['value'];
|
|
1837
1839
|
};
|
|
1840
|
+
export type Addendum = {
|
|
1841
|
+
timestamp: Date;
|
|
1842
|
+
userId: string;
|
|
1843
|
+
text: string;
|
|
1844
|
+
};
|
|
1838
1845
|
export interface FormResponse_readonly extends ClientRecord {
|
|
1839
1846
|
openedAt?: Date;
|
|
1840
1847
|
references?: RelatedRecord[];
|
|
@@ -1907,6 +1914,7 @@ export interface FormResponse extends FormResponse_readonly, FormResponse_requir
|
|
|
1907
1914
|
discussionRoomId?: string;
|
|
1908
1915
|
formsort?: string;
|
|
1909
1916
|
hideAfterUnsubmittedInMS?: number;
|
|
1917
|
+
addenda?: Addendum[];
|
|
1910
1918
|
}
|
|
1911
1919
|
export interface WebHook_readonly extends ClientRecord {
|
|
1912
1920
|
}
|
|
@@ -2351,6 +2359,9 @@ export interface AutomationForMessage extends AutomationForTemplate, AutomationF
|
|
|
2351
2359
|
}
|
|
2352
2360
|
export interface AutomationForWebhook {
|
|
2353
2361
|
message: string;
|
|
2362
|
+
url?: string;
|
|
2363
|
+
secret?: string;
|
|
2364
|
+
fields?: LabeledField[];
|
|
2354
2365
|
}
|
|
2355
2366
|
export type FormResponseAutomationEvent = AutomationEventBuilder<'formResponse', {
|
|
2356
2367
|
automationStepId: string;
|