purecloud-flow-scripting-api-sdk-javascript 0.67.1 → 0.67.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "purecloud-flow-scripting-api-sdk-javascript",
3
- "version": "0.67.1",
3
+ "version": "0.67.2",
4
4
  "description": "JavaScript library for creating, editing, and managing Genesys Cloud Architect flows",
5
5
  "main": "build-scripting/release/scripting.bundle.js",
6
6
  "author": "Genesys",
package/types.d.ts CHANGED
@@ -3703,7 +3703,7 @@ export class ArchFactoryTasks extends ArchBaseFactory {
3703
3703
  * @param archBaseFlow - the flow where the task will be added.
3704
3704
  * @param [name] - the name of the new task. If undefined, null or a blank string, a default name will be assigned
3705
3705
  * by Architect Scripting to the new task.
3706
- * @param [setAsStartingTask = false] - whether or not the newly created task should be set as the [startup object]{@link ArchBaseFlow#startUpObject} on the flow.
3706
+ * @param [setAsStartingTask = false] - whether the newly created task should be set as the [startup object]{@link ArchBaseFlow#startUpObject} on the flow.
3707
3707
  */
3708
3708
  addTask(archBaseFlow: ArchBaseFlowInboundOutboundSecureCall | ArchBaseFlowWorkflow, name?: string, setAsStartingTask?: boolean): ArchTask;
3709
3709
  }