oro-sdk-apis 1.48.0 → 1.51.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.48.0",
2
+ "version": "1.51.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -54,4 +54,4 @@
54
54
  "buffer": "^6.0.3",
55
55
  "hash.js": "^1.1.7"
56
56
  }
57
- }
57
+ }
@@ -214,7 +214,6 @@ export type PracticeConfigPracticeConsultTabs = PracticeConfig<
214
214
  { hideDxTx?: boolean }
215
215
  >
216
216
 
217
-
218
217
  /**
219
218
  * This type is for test (do not remove without updating the integration tests)
220
219
  */
@@ -609,6 +608,7 @@ export interface HydratedPracticeConfigs {
609
608
  export interface Practice {
610
609
  uuid: string
611
610
  name: string
611
+ shortName: string
612
612
  countryOperating: string
613
613
  urlPractice: string
614
614
  urlLinkedPage?: string
@@ -632,6 +632,7 @@ export interface Practice {
632
632
  txtRegistrationID?: string
633
633
  txtLegalInfos?: string
634
634
  txtDefaultTransmissionDriver?: string
635
+ txtDefaultTransmissionAddress?: string
635
636
  accounts?: PracticeAccount[]
636
637
  configs?: HydratedPracticeConfigs
637
638
  }
@@ -683,4 +684,4 @@ export interface PracticeSecret {
683
684
  * It's decrypted on the fly when returned by the api.
684
685
  */
685
686
  payload: string
686
- }
687
+ }
@@ -69,6 +69,12 @@ export interface LanguagePickerData extends ChoiceInputData {
69
69
  locale: string
70
70
  }
71
71
 
72
+ export interface TileRadioData extends ChoiceInputData {
73
+ fullText?: string
74
+ image?: string
75
+ description?: string
76
+ }
77
+
72
78
  export interface EntryData {
73
79
  id?: number
74
80
  label?: string
@@ -181,6 +187,7 @@ export interface GenericQuestionData<T, A = IndexedData<ChoiceInputData>, O = un
181
187
  * Options to forward to the workflow component
182
188
  */
183
189
  options?: O
190
+ messages?: string
184
191
  }
185
192
 
186
193
  export interface GroupedGenericQuestionData<T, A = IndexedData<ChoiceInputData>> extends GenericQuestionData<T, A> {
@@ -213,6 +220,7 @@ export declare type QuestionData =
213
220
  >
214
221
  | GroupedGenericQuestionData<'radio-card' | 'profile-selector', IndexedData<RadioCardInputData>>
215
222
  | GroupedGenericQuestionData<'language-picker', IndexedData<LanguagePickerData>>
223
+ | GroupedGenericQuestionData<'tile-radio', IndexedData<TileRadioData>>
216
224
 
217
225
  export interface FieldData {
218
226
  type: 'field'