oro-sdk-apis 6.3.0 → 7.0.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.
@@ -260,7 +260,11 @@ export interface WorkflowData {
|
|
260
260
|
*/
|
261
261
|
serviceDescription?: string;
|
262
262
|
/**
|
263
|
-
*
|
263
|
+
* These are the plan uuids that will be defaulted and shown at payment plan selection
|
264
|
+
*/
|
265
|
+
startingPlanIds: number[];
|
266
|
+
/**
|
267
|
+
* (optional) rules to hide certain payment plans (`startingPlanIds`) depending on the workflow answers
|
264
268
|
*/
|
265
269
|
hidePlanRules?: HidePlanRule[];
|
266
270
|
/**
|
@@ -289,6 +293,10 @@ export interface WorkflowExtendingRules {
|
|
289
293
|
* Whether the field should be removed altogether in the extended workflow
|
290
294
|
*/
|
291
295
|
remove?: boolean;
|
296
|
+
/**
|
297
|
+
* Overrides the label of the original question
|
298
|
+
*/
|
299
|
+
label?: string;
|
292
300
|
}
|
293
301
|
export interface HidePlanRule {
|
294
302
|
/**
|