@tellescope/types-models 1.174.0 → 1.175.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 +6 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +6 -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 +8 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -96,6 +96,9 @@ export type PortalSettings = {
|
|
|
96
96
|
orders?: {
|
|
97
97
|
customOrderTrackingURL?: string;
|
|
98
98
|
};
|
|
99
|
+
documents?: {
|
|
100
|
+
hideMissingAnswers?: boolean;
|
|
101
|
+
};
|
|
99
102
|
};
|
|
100
103
|
export type WithLinkOpenTrackingIds = {
|
|
101
104
|
linkOpenTrackingIds: string[];
|
|
@@ -1501,6 +1504,9 @@ export type FormFieldOptions = FormFieldValidation & {
|
|
|
1501
1504
|
stripeKey?: string;
|
|
1502
1505
|
dataSource?: string;
|
|
1503
1506
|
canvasDocumentCoding?: Pick<CanvasCoding, 'system' | 'code'>;
|
|
1507
|
+
canvasDocumentType?: CanvasCoding;
|
|
1508
|
+
canvasDocumentComment?: string;
|
|
1509
|
+
canvasReviewMode?: string;
|
|
1504
1510
|
esignatureTermsCompanyName?: string;
|
|
1505
1511
|
observationCode?: string;
|
|
1506
1512
|
observationDisplay?: string;
|