oro-sdk-apis 6.1.0 → 6.4.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.
@@ -267,6 +267,10 @@ export interface WorkflowData {
|
|
267
267
|
* (optional) extension of another workflow referenced by uuid
|
268
268
|
*/
|
269
269
|
extendingWorkflow?: string;
|
270
|
+
/**
|
271
|
+
* (optional) the extending referenced workflows `createdAt` timestamp
|
272
|
+
*/
|
273
|
+
extendingWorkflowTimestamp?: string;
|
270
274
|
/**
|
271
275
|
* (optional) rules for the extension of another workflow
|
272
276
|
*/
|
@@ -285,6 +289,10 @@ export interface WorkflowExtendingRules {
|
|
285
289
|
* Whether the field should be removed altogether in the extended workflow
|
286
290
|
*/
|
287
291
|
remove?: boolean;
|
292
|
+
/**
|
293
|
+
* Overrides the label of the original question
|
294
|
+
*/
|
295
|
+
label?: string;
|
288
296
|
}
|
289
297
|
export interface HidePlanRule {
|
290
298
|
/**
|