oro-sdk-apis 5.15.3 → 5.15.4

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.
@@ -179,6 +179,16 @@ export interface GenericQuestionData<T, A = IndexedData<ChoiceInputData>, O = un
179
179
  */
180
180
  options?: O;
181
181
  messages?: string;
182
+ /**
183
+ * Overrides the read only ability of the question's answer
184
+ * populated by extended workflow feature
185
+ */
186
+ readOnly?: boolean;
187
+ /**
188
+ * Overrides the fillable default of the question's answer
189
+ * populated by extended workflow feature
190
+ */
191
+ defaultEmpty?: boolean;
182
192
  }
183
193
  export interface GroupedGenericQuestionData<T, A = IndexedData<ChoiceInputData>> extends GenericQuestionData<T, A> {
184
194
  inline?: boolean;
@@ -234,6 +244,28 @@ export interface WorkflowData {
234
244
  * (optional) rules to hide certain payment plans depending on the workflow answers
235
245
  */
236
246
  hidePlanRules?: HidePlanRule[];
247
+ /**
248
+ * (optional) extension of another workflow referenced by uuid
249
+ */
250
+ extendingWorkflow?: string;
251
+ /**
252
+ * (optional) rules for the extension of another workflow
253
+ */
254
+ extendingRules?: IndexedData<WorkflowExtendingRules>;
255
+ }
256
+ export interface WorkflowExtendingRules {
257
+ /**
258
+ * Whether the field becomes read only in the extended workflow
259
+ */
260
+ readOnly?: boolean;
261
+ /**
262
+ * Whether the field becomes deselected/empty by default in the extended workflow
263
+ */
264
+ defaultEmpty?: boolean;
265
+ /**
266
+ * Whether the field should be removed altogether in the extended workflow
267
+ */
268
+ remove?: boolean;
237
269
  }
238
270
  export interface HidePlanRule {
239
271
  /**