purecloud-flow-scripting-api-sdk-javascript 0.64.1 → 0.64.3

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.64.1",
3
+ "version": "0.64.3",
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
@@ -2972,11 +2972,11 @@ declare type NameAndIdType = {
2972
2972
  /**
2973
2973
  * The type definition for stub flow creation information
2974
2974
  * @property division - The name of the division to create the stub flow
2975
- * @property defaultLanguage - The default language for the stub flow
2975
+ * @property [defaultLanguage] - The default language for the stub flow
2976
2976
  */
2977
2977
  declare type StubCreationInfoType = {
2978
2978
  division: string;
2979
- defaultLanguage: string;
2979
+ defaultLanguage?: string;
2980
2980
  };
2981
2981
 
2982
2982
  /**