oro-sdk-apis 1.46.0 → 1.49.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.
@@ -533,6 +533,7 @@ export interface Practice {
533
533
  txtRegistrationID?: string;
534
534
  txtLegalInfos?: string;
535
535
  txtDefaultTransmissionDriver?: string;
536
+ txtDefaultTransmissionAddress?: string;
536
537
  accounts?: PracticeAccount[];
537
538
  configs?: HydratedPracticeConfigs;
538
539
  }
@@ -66,9 +66,45 @@ export interface EntryData {
66
66
  summaryHidden?: boolean;
67
67
  className?: string;
68
68
  /**
69
- * This field represents a list of `selectedAnswers` that must be set for this entry to be displayed.
69
+ * This field represents a list of `selectedAnswers` that must be set for this entry to be displayed using the followng logical combination of rules:
70
+ *
71
+ * #### Single string
72
+ *
73
+ * ```
74
+ * // Required: rule1
75
+ * rules: rule1
76
+ * ```
77
+ *
78
+ * #### Array of strings (AND is applied between statements):
79
+ *
80
+ * ```
81
+ * // Required: rule1 AND rule2
82
+ * rules: [ rule1, rule2 ]
83
+ * ```
84
+ *
85
+ * #### Array of arrays of strings (OR is applied between inner arrays. AND is applied between inner arrays statements)
86
+ *
87
+ * ```
88
+ * // Required: rule1 OR rule2
89
+ * rules: [
90
+ * [ rule1 ],
91
+ * [ rule2 ]
92
+ * ]
93
+ *
94
+ * // Required: rule1 OR (rule2 AND rule3)
95
+ * rules: [
96
+ * [ rule1 ],
97
+ * [ rule2, rule3 ]
98
+ * ]
99
+ *
100
+ * // THIS IS FORBIDDEN
101
+ * rules: [
102
+ * rule1, // <-- THIS IS FORBIDDEN. Instead use [ rule1 ]
103
+ * [ rule2, rule3 ]
104
+ * ]
105
+ * ```
70
106
  */
71
- triggers?: string[];
107
+ triggers?: string[][] | string[] | string;
72
108
  /**
73
109
  * This field represents a list of `StateTrigger` that must be fulfilled for this entry to be displayed.
74
110
  */
@@ -170,6 +206,14 @@ export interface WorkflowData {
170
206
  summarySymptomsFieldName?: string;
171
207
  selectedAnswers?: SelectedAnswersData;
172
208
  walkthroughSlides?: SlideData[];
209
+ /**
210
+ * (optional) the service name this workflow provides
211
+ */
212
+ serviceName?: string;
213
+ /**
214
+ * (optional) the description of the service this workflow provides
215
+ */
216
+ serviceDescription?: string;
173
217
  }
174
218
  /**
175
219
  * This interface describes an upload of an image (could be a picture, a pdf, a text file, etc.)