oro-sdk-apis 1.6.0-dev1 → 1.6.0-dev2

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.
@@ -81,8 +81,6 @@ export interface TreatmentPlan {
81
81
  uuidTreatment?: string;
82
82
  notes?: string;
83
83
  status: PlanStatus;
84
- decidedAt: string;
85
- createdAt: string;
86
84
  }
87
85
  export interface DrugPrescription {
88
86
  prescription: Prescription;
@@ -94,8 +92,6 @@ export interface TreatmentAndDrugPrescription {
94
92
  notes?: string;
95
93
  status: PlanStatus;
96
94
  uuidTreatmentPlan: string;
97
- decidedAt: string;
98
- createdAt: string;
99
95
  }
100
96
  export interface TreatmentPlans {
101
97
  uuidConsult: string;
@@ -30,6 +30,53 @@ export interface EntryData {
30
30
  className?: string;
31
31
  triggers?: string[];
32
32
  }
33
+ export interface SlidesData {
34
+ 1: {
35
+ header: string;
36
+ body: string;
37
+ image?: {
38
+ src: string;
39
+ alt: string;
40
+ };
41
+ icon?: string;
42
+ };
43
+ 2: {
44
+ header: string;
45
+ body: string;
46
+ image?: {
47
+ src: string;
48
+ alt: string;
49
+ };
50
+ icon?: string;
51
+ };
52
+ 3: {
53
+ header: string;
54
+ body: string;
55
+ image?: {
56
+ src: string;
57
+ alt: string;
58
+ };
59
+ icon?: string;
60
+ };
61
+ 4: {
62
+ header: string;
63
+ body: string;
64
+ image?: {
65
+ src: string;
66
+ alt: string;
67
+ };
68
+ icon?: string;
69
+ };
70
+ 5: {
71
+ header: string;
72
+ body: string;
73
+ image?: {
74
+ src: string;
75
+ alt: string;
76
+ };
77
+ icon?: string;
78
+ };
79
+ }
33
80
  export declare enum MetadataCategory {
34
81
  ChildPersonal = "ChildPersonal",
35
82
  Consultation = "Consultation",
@@ -81,6 +128,7 @@ export interface WorkflowPageData {
81
128
  }
82
129
  export interface WorkflowData {
83
130
  createdAt: string;
131
+ carouselSlides: SlidesData;
84
132
  culDeSacs: EntryData[];
85
133
  id: string;
86
134
  locale?: string;