@tellescope/types-models 1.114.0 → 1.115.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.
@@ -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[];
@@ -2576,7 +2577,7 @@ export interface ManagedContentRecordAssignment_updatesDisabled {
2576
2577
  }
2577
2578
  export interface ManagedContentRecordAssignment extends ManagedContentRecordAssignment_readonly, ManagedContentRecordAssignment_required, ManagedContentRecordAssignment_updatesDisabled {
2578
2579
  }
2579
- export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking";
2580
+ export type PortalPage = "Home" | "Care Plan" | "Documents" | "Education" | "My Events" | "Community" | "Communications" | "Appointment Booking" | "Orders";
2580
2581
  type BuildPortalBlockInfo<T, I> = {
2581
2582
  type: T;
2582
2583
  info: I;
@@ -3766,6 +3767,22 @@ export interface FlowchartNote extends FlowchartNote_readonly, FlowchartNote_req
3766
3767
  note: string;
3767
3768
  flowchartUI?: FlowchartUI;
3768
3769
  }
3770
+ export interface PortalBranding_readonly extends ClientRecord {
3771
+ }
3772
+ export interface PortalBranding_required {
3773
+ title: string;
3774
+ enduserField: string;
3775
+ enduserValue: string;
3776
+ }
3777
+ export interface PortalBranding_updatesDisabled {
3778
+ }
3779
+ export interface PortalBranding extends PortalBranding_readonly, PortalBranding_required, PortalBranding_updatesDisabled {
3780
+ primary?: string;
3781
+ secondary?: string;
3782
+ logoURL?: string;
3783
+ subdomain?: string;
3784
+ customPortalURL?: string;
3785
+ }
3769
3786
  export interface WebhookLog_readonly extends ClientRecord {
3770
3787
  url: string;
3771
3788
  payload: object;
@@ -3779,6 +3796,7 @@ export interface WebhookLog_updatesDisabled {
3779
3796
  export interface WebhookLog extends WebhookLog_readonly, WebhookLog_required, WebhookLog_updatesDisabled {
3780
3797
  }
3781
3798
  export type ModelForName_required = {
3799
+ portal_brandings: PortalBranding_required;
3782
3800
  form_groups: FormGroup_required;
3783
3801
  webhook_logs: WebhookLog_required;
3784
3802
  flowchart_notes: FlowchartNote_required;
@@ -3857,6 +3875,7 @@ export type ModelForName_required = {
3857
3875
  };
3858
3876
  export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
3859
3877
  export interface ModelForName_readonly {
3878
+ portal_brandings: PortalBranding_readonly;
3860
3879
  form_groups: FormGroup_readonly;
3861
3880
  webhook_logs: WebhookLog_readonly;
3862
3881
  flowchart_notes: FlowchartNote_readonly;
@@ -3935,6 +3954,7 @@ export interface ModelForName_readonly {
3935
3954
  }
3936
3955
  export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
3937
3956
  export interface ModelForName_updatesDisabled {
3957
+ portal_brandings: PortalBranding_updatesDisabled;
3938
3958
  form_groups: FormGroup_updatesDisabled;
3939
3959
  webhook_logs: WebhookLog_updatesDisabled;
3940
3960
  flowchart_notes: FlowchartNote_updatesDisabled;
@@ -4013,6 +4033,7 @@ export interface ModelForName_updatesDisabled {
4013
4033
  }
4014
4034
  export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
4015
4035
  export interface ModelForName extends ModelForName_required, ModelForName_readonly {
4036
+ portal_brandings: PortalBranding;
4016
4037
  form_groups: FormGroup;
4017
4038
  webhook_logs: WebhookLog;
4018
4039
  flowchart_notes: FlowchartNote;