@tellescope/types-models 1.114.0 → 1.116.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 +23 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +2 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +23 -1
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +2 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/index.ts +24 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -251,6 +251,7 @@ export interface Organization_updatesDisabled {
|
|
|
251
251
|
subdomain: string;
|
|
252
252
|
}
|
|
253
253
|
export interface Organization extends Organization_readonly, Organization_required, Organization_updatesDisabled {
|
|
254
|
+
subdomains?: string[];
|
|
254
255
|
owner?: string;
|
|
255
256
|
timezone?: Timezone;
|
|
256
257
|
roles?: string[];
|
|
@@ -1735,6 +1736,7 @@ export interface FormResponse_required {
|
|
|
1735
1736
|
responses: FormResponseValue[];
|
|
1736
1737
|
publicSubmit?: boolean;
|
|
1737
1738
|
submittedBy?: string;
|
|
1739
|
+
submittedByIsPlaceholder?: boolean;
|
|
1738
1740
|
submittedAt?: Date;
|
|
1739
1741
|
accessCode?: string;
|
|
1740
1742
|
userEmail?: string;
|
|
@@ -2576,7 +2578,7 @@ export interface ManagedContentRecordAssignment_updatesDisabled {
|
|
|
2576
2578
|
}
|
|
2577
2579
|
export interface ManagedContentRecordAssignment extends ManagedContentRecordAssignment_readonly, ManagedContentRecordAssignment_required, ManagedContentRecordAssignment_updatesDisabled {
|
|
2578
2580
|
}
|
|
2579
|
-
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking";
|
|
2581
|
+
export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking" | "Orders";
|
|
2580
2582
|
type BuildPortalBlockInfo<T, I> = {
|
|
2581
2583
|
type: T;
|
|
2582
2584
|
info: I;
|
|
@@ -3766,6 +3768,22 @@ export interface FlowchartNote extends FlowchartNote_readonly, FlowchartNote_req
|
|
|
3766
3768
|
note: string;
|
|
3767
3769
|
flowchartUI?: FlowchartUI;
|
|
3768
3770
|
}
|
|
3771
|
+
export interface PortalBranding_readonly extends ClientRecord {
|
|
3772
|
+
}
|
|
3773
|
+
export interface PortalBranding_required {
|
|
3774
|
+
title: string;
|
|
3775
|
+
enduserField: string;
|
|
3776
|
+
enduserValue: string;
|
|
3777
|
+
}
|
|
3778
|
+
export interface PortalBranding_updatesDisabled {
|
|
3779
|
+
}
|
|
3780
|
+
export interface PortalBranding extends PortalBranding_readonly, PortalBranding_required, PortalBranding_updatesDisabled {
|
|
3781
|
+
primary?: string;
|
|
3782
|
+
secondary?: string;
|
|
3783
|
+
logoURL?: string;
|
|
3784
|
+
subdomain?: string;
|
|
3785
|
+
customPortalURL?: string;
|
|
3786
|
+
}
|
|
3769
3787
|
export interface WebhookLog_readonly extends ClientRecord {
|
|
3770
3788
|
url: string;
|
|
3771
3789
|
payload: object;
|
|
@@ -3779,6 +3797,7 @@ export interface WebhookLog_updatesDisabled {
|
|
|
3779
3797
|
export interface WebhookLog extends WebhookLog_readonly, WebhookLog_required, WebhookLog_updatesDisabled {
|
|
3780
3798
|
}
|
|
3781
3799
|
export type ModelForName_required = {
|
|
3800
|
+
portal_brandings: PortalBranding_required;
|
|
3782
3801
|
form_groups: FormGroup_required;
|
|
3783
3802
|
webhook_logs: WebhookLog_required;
|
|
3784
3803
|
flowchart_notes: FlowchartNote_required;
|
|
@@ -3857,6 +3876,7 @@ export type ModelForName_required = {
|
|
|
3857
3876
|
};
|
|
3858
3877
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
3859
3878
|
export interface ModelForName_readonly {
|
|
3879
|
+
portal_brandings: PortalBranding_readonly;
|
|
3860
3880
|
form_groups: FormGroup_readonly;
|
|
3861
3881
|
webhook_logs: WebhookLog_readonly;
|
|
3862
3882
|
flowchart_notes: FlowchartNote_readonly;
|
|
@@ -3935,6 +3955,7 @@ export interface ModelForName_readonly {
|
|
|
3935
3955
|
}
|
|
3936
3956
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
3937
3957
|
export interface ModelForName_updatesDisabled {
|
|
3958
|
+
portal_brandings: PortalBranding_updatesDisabled;
|
|
3938
3959
|
form_groups: FormGroup_updatesDisabled;
|
|
3939
3960
|
webhook_logs: WebhookLog_updatesDisabled;
|
|
3940
3961
|
flowchart_notes: FlowchartNote_updatesDisabled;
|
|
@@ -4013,6 +4034,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4013
4034
|
}
|
|
4014
4035
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4015
4036
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4037
|
+
portal_brandings: PortalBranding;
|
|
4016
4038
|
form_groups: FormGroup;
|
|
4017
4039
|
webhook_logs: WebhookLog;
|
|
4018
4040
|
flowchart_notes: FlowchartNote;
|