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.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.1.0",
2
+ "version": "6.4.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -320,6 +320,11 @@ export interface WorkflowData {
320
320
  */
321
321
  extendingWorkflow?: string
322
322
 
323
+ /**
324
+ * (optional) the extending referenced workflows `createdAt` timestamp
325
+ */
326
+ extendingWorkflowTimestamp?: string
327
+
323
328
  /**
324
329
  * (optional) rules for the extension of another workflow
325
330
  */
@@ -339,6 +344,10 @@ export interface WorkflowExtendingRules {
339
344
  * Whether the field should be removed altogether in the extended workflow
340
345
  */
341
346
  remove?: boolean,
347
+ /**
348
+ * Overrides the label of the original question
349
+ */
350
+ label?: string
342
351
  }
343
352
 
344
353
  export interface HidePlanRule {