New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

docusign-maestro

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

docusign-maestro - npm Package Compare versions

Comparing version 1.0.0-rc2 to 1.0.0-rc3

src/model/CreateOrUpdateWorkflowDefinitionRequestBody.js

10

CHANGELOG.md

@@ -0,1 +1,11 @@

## [v1.0.0-rc3] - Maestro API v1.0.0-1.0.3 - 2024-04-03
### Changed
- Added support for version v1.0.0-1.0.3 of the DocuSign Maestro API.
- Updated the SDK release version.
## [v1.0.1-rc1] - Maestro API v1.0.0-1.0.1 - 2024-01-29
### Changed
- Added support for version v1.0.0-1.0.1 of the DocuSign Maestro API.
- Updated the SDK release version.
## [v1.0.0-rc2] - Maestro API v1.0.0-1.0.0 - 2024-01-05

@@ -2,0 +12,0 @@ ### Changed

12

package.json
{
"name": "docusign-maestro",
"version": "1.0.0-rc2",
"version": "1.0.0-rc3",
"description": "DocuSign Node.js API client.",

@@ -54,8 +54,8 @@ "license": "MIT",

"dependencies": {
"superagent": "3.8.2",
"superagent-proxy": "^2.0.0",
"csv-stringify": "^1.0.0",
"jsonwebtoken": "^9.0.0",
"passport-oauth2": "^1.6.1",
"safe-buffer": "^5.1.2",
"superagent": "3.8.2",
"superagent-proxy": "^2.0.0"
"jsonwebtoken": "^9.0.0",
"passport-oauth2": "^1.6.1",
"safe-buffer": "^5.1.2"
},

@@ -62,0 +62,0 @@ "devDependencies": {

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['Configuration', 'ApiClient', 'model/CancelResponse', 'model/ErrorResponse', 'model/WorkflowInstance', 'model/WorkflowInstancesList', 'model/WorkflowStepHistoryList'], factory);
define(['Configuration', 'ApiClient', 'model/CancelResponse', 'model/ErrorResponse', 'model/WorkflowInstance', 'model/WorkflowStepHistory'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../Configuration'), require('../ApiClient'), require('../model/CancelResponse'), require('../model/ErrorResponse'), require('../model/WorkflowInstance'), require('../model/WorkflowInstancesList'), require('../model/WorkflowStepHistoryList'));
module.exports = factory(require('../Configuration'), require('../ApiClient'), require('../model/CancelResponse'), require('../model/ErrorResponse'), require('../model/WorkflowInstance'), require('../model/WorkflowStepHistory'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.WorkflowInstanceManagementApi = factory(root.Docusign.Configuration, root.Docusign.ApiClient, root.Docusign.CancelResponse, root.Docusign.ErrorResponse, root.Docusign.WorkflowInstance, root.Docusign.WorkflowInstancesList, root.Docusign.WorkflowStepHistoryList);
root.Docusign.WorkflowInstanceManagementApi = factory(root.Docusign.Configuration, root.Docusign.ApiClient, root.Docusign.CancelResponse, root.Docusign.ErrorResponse, root.Docusign.WorkflowInstance, root.Docusign.WorkflowStepHistory);
}
}(this, function(Configuration, ApiClient, CancelResponse, ErrorResponse, WorkflowInstance, WorkflowInstancesList, WorkflowStepHistoryList) {
}(this, function(Configuration, ApiClient, CancelResponse, ErrorResponse, WorkflowInstance, WorkflowStepHistory) {
'use strict';

@@ -103,3 +103,3 @@

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -110,3 +110,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/instances/{instanceId}/cancel', 'POST',
'aow-manage/v1.0/management/accounts/{accountId}/instances/{instanceId}/cancel', 'POST',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -121,3 +121,3 @@ authNames, contentTypes, accepts, returnType, callback

* @param {String} error Error message, if any.
* @param {module:model/WorkflowStepHistoryList} data The data returned by the service call.
* @param {Array.<module:model/WorkflowStepHistory>} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.

@@ -132,3 +132,3 @@ */

* @param {module:api/WorkflowInstanceManagementApi~getWorkflowHistoryCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/WorkflowStepHistoryList}
* data is of type: {@link Array.<module:model/WorkflowStepHistory>}
*/

@@ -166,9 +166,9 @@ this.getWorkflowHistory = function(accountId, instanceId, callback) {

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = WorkflowStepHistoryList;
var returnType = [WorkflowStepHistory];
return this.apiClient.callApi(
'/management/accounts/{accountId}/instances/{instanceId}/history', 'GET',
'aow-manage/v1.0/management/accounts/{accountId}/instances/{instanceId}/history', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -233,3 +233,3 @@ authNames, contentTypes, accepts, returnType, callback

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -240,3 +240,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/instances/{instanceId}', 'GET',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/instances/{instanceId}', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -251,3 +251,3 @@ authNames, contentTypes, accepts, returnType, callback

* @param {String} error Error message, if any.
* @param {module:model/WorkflowInstancesList} data The data returned by the service call.
* @param {Array.<module:model/WorkflowInstance>} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.

@@ -262,3 +262,3 @@ */

* @param {module:api/WorkflowInstanceManagementApi~getWorkflowInstancesCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/WorkflowInstancesList}
* data is of type: {@link Array.<module:model/WorkflowInstance>}
*/

@@ -296,9 +296,9 @@ this.getWorkflowInstances = function(accountId, workflowDefinitionId, callback) {

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = WorkflowInstancesList;
var returnType = [WorkflowInstance];
return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/instances', 'GET',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/instances', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -305,0 +305,0 @@ authNames, contentTypes, accepts, returnType, callback

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['Configuration', 'ApiClient', 'model/DeployRequest', 'model/DeployResponse', 'model/ErrorResponse', 'model/GetConfigurationInstancesResponse', 'model/InvalidWorkflowResponse', 'model/NewOrUpdatedWorkflowDefinitionResponse', 'model/WorkflowDefinition', 'model/WorkflowDefinitionList', 'model/WorkflowDefinitionWithId', 'model/WorkflowDeleteResponse'], factory);
define(['Configuration', 'ApiClient', 'model/CreateOrUpdateWorkflowDefinitionRequestBody', 'model/DeployRequest', 'model/DeployResponse', 'model/ErrorResponse', 'model/GetConfigurationInstancesResponse', 'model/InvalidWorkflowResponse', 'model/NewOrUpdatedWorkflowDefinitionResponse', 'model/WorkflowDefinitionList', 'model/WorkflowDefinitionWithId', 'model/WorkflowDeleteResponse'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../Configuration'), require('../ApiClient'), require('../model/DeployRequest'), require('../model/DeployResponse'), require('../model/ErrorResponse'), require('../model/GetConfigurationInstancesResponse'), require('../model/InvalidWorkflowResponse'), require('../model/NewOrUpdatedWorkflowDefinitionResponse'), require('../model/WorkflowDefinition'), require('../model/WorkflowDefinitionList'), require('../model/WorkflowDefinitionWithId'), require('../model/WorkflowDeleteResponse'));
module.exports = factory(require('../Configuration'), require('../ApiClient'), require('../model/CreateOrUpdateWorkflowDefinitionRequestBody'), require('../model/DeployRequest'), require('../model/DeployResponse'), require('../model/ErrorResponse'), require('../model/GetConfigurationInstancesResponse'), require('../model/InvalidWorkflowResponse'), require('../model/NewOrUpdatedWorkflowDefinitionResponse'), require('../model/WorkflowDefinitionList'), require('../model/WorkflowDefinitionWithId'), require('../model/WorkflowDeleteResponse'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.WorkflowManagementApi = factory(root.Docusign.Configuration, root.Docusign.ApiClient, root.Docusign.DeployRequest, root.Docusign.DeployResponse, root.Docusign.ErrorResponse, root.Docusign.GetConfigurationInstancesResponse, root.Docusign.InvalidWorkflowResponse, root.Docusign.NewOrUpdatedWorkflowDefinitionResponse, root.Docusign.WorkflowDefinition, root.Docusign.WorkflowDefinitionList, root.Docusign.WorkflowDefinitionWithId, root.Docusign.WorkflowDeleteResponse);
root.Docusign.WorkflowManagementApi = factory(root.Docusign.Configuration, root.Docusign.ApiClient, root.Docusign.CreateOrUpdateWorkflowDefinitionRequestBody, root.Docusign.DeployRequest, root.Docusign.DeployResponse, root.Docusign.ErrorResponse, root.Docusign.GetConfigurationInstancesResponse, root.Docusign.InvalidWorkflowResponse, root.Docusign.NewOrUpdatedWorkflowDefinitionResponse, root.Docusign.WorkflowDefinitionList, root.Docusign.WorkflowDefinitionWithId, root.Docusign.WorkflowDeleteResponse);
}
}(this, function(Configuration, ApiClient, DeployRequest, DeployResponse, ErrorResponse, GetConfigurationInstancesResponse, InvalidWorkflowResponse, NewOrUpdatedWorkflowDefinitionResponse, WorkflowDefinition, WorkflowDefinitionList, WorkflowDefinitionWithId, WorkflowDeleteResponse) {
}(this, function(Configuration, ApiClient, CreateOrUpdateWorkflowDefinitionRequestBody, DeployRequest, DeployResponse, ErrorResponse, GetConfigurationInstancesResponse, InvalidWorkflowResponse, NewOrUpdatedWorkflowDefinitionResponse, WorkflowDefinitionList, WorkflowDefinitionWithId, WorkflowDeleteResponse) {
'use strict';

@@ -68,3 +68,3 @@

* @param {String} accountId Account ID
* @param {module:model/WorkflowDefinition} body Request Body to create a new workflow definition.
* @param {module:model/CreateOrUpdateWorkflowDefinitionRequestBody} body Request Body to create a new workflow definition.
* @param {module:api/WorkflowManagementApi~createWorkflowDefinitionCallback} callback The callback function, accepting three arguments: error, data, response

@@ -103,3 +103,3 @@ * data is of type: {@link module:model/NewOrUpdatedWorkflowDefinitionResponse}

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -110,3 +110,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions', 'POST',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions', 'POST',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -164,3 +164,3 @@ authNames, contentTypes, accepts, returnType, callback

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -171,3 +171,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}', 'DELETE',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}', 'DELETE',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -235,3 +235,3 @@ authNames, contentTypes, accepts, returnType, callback

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -242,3 +242,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}', 'GET',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -296,3 +296,3 @@ authNames, contentTypes, accepts, returnType, callback

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -303,3 +303,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/configInstances', 'GET',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/configInstances', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -360,3 +360,3 @@ authNames, contentTypes, accepts, returnType, callback

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -367,3 +367,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions', 'GET',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -427,3 +427,3 @@ authNames, contentTypes, accepts, returnType, callback

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -434,3 +434,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/publish', 'POST',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}/publish', 'POST',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -454,3 +454,3 @@ authNames, contentTypes, accepts, returnType, callback

* @param {String} workflowDefinitionId Workflow Definition ID
* @param {module:model/WorkflowDefinition} body Request Body to update a workflow definition.
* @param {module:model/CreateOrUpdateWorkflowDefinitionRequestBody} body Request Body to update a workflow definition.
* @param {module:api/WorkflowManagementApi~updateWorkflowDefinitionCallback} callback The callback function, accepting three arguments: error, data, response

@@ -495,3 +495,3 @@ * data is of type: {@link module:model/NewOrUpdatedWorkflowDefinitionResponse}

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -502,3 +502,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}', 'PUT',
'aow-manage/v1.0/management/accounts/{accountId}/workflowDefinitions/{workflowDefinitionId}', 'PUT',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -505,0 +505,0 @@ authNames, contentTypes, accepts, returnType, callback

@@ -112,3 +112,3 @@ /**

var authNames = [];
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];

@@ -119,3 +119,3 @@ var accepts = ['application/json'];

return this.apiClient.callApi(
'/accounts/{accountId}/workflows/trigger', 'POST',
'aow-auth/v1.0/accounts/{accountId}/workflows/trigger', 'POST',
pathParams, queryParams, headerParams, formParams, postBody,

@@ -122,0 +122,0 @@ authNames, contentTypes, accepts, returnType, callback

@@ -14,8 +14,8 @@ /**

// AMD. Register as an anonymous module.
define(['Configuration', 'ApiClient', 'model/AccessTokenResponse', 'model/AccessTokenTokenTypes', 'model/AccountId', 'model/AowUUID', 'model/AowUUIDString', 'model/CancelResponse', 'model/DSDoUntilStep', 'model/DSDocGenStep', 'model/DSDocGenStepInput', 'model/DSIdvStep', 'model/DSIdvStepInput', 'model/DSIfElseStep', 'model/DSLoopStep', 'model/DSParallelStep', 'model/DSServiceStep', 'model/DSSignStep', 'model/DSSignStepInput', 'model/DSTransformationStep', 'model/DSWebFormsStep', 'model/DSWebFormsStepConfig', 'model/DSWorkflowBooleanExpression', 'model/DSWorkflowComparisonExpression', 'model/DSWorkflowComparisonOperatorTypes', 'model/DSWorkflowConcatExpression', 'model/DSWorkflowDocGenDocOutputFormat', 'model/DSWorkflowExpressionTypesBooleanExpression', 'model/DSWorkflowExpressionTypesComparisonExpression', 'model/DSWorkflowExpressionTypesParallelExpression', 'model/DSWorkflowIndexOfExpression', 'model/DSWorkflowLane', 'model/DSWorkflowLanesRecord', 'model/DSWorkflowLastIndexOfExpression', 'model/DSWorkflowLogicalOperatorTypes', 'model/DSWorkflowParallelExpression', 'model/DSWorkflowParticipantRecord', 'model/DSWorkflowReplaceExpression', 'model/DSWorkflowStep', 'model/DSWorkflowStepTypesDSDocGen', 'model/DSWorkflowStepTypesDSIdv', 'model/DSWorkflowStepTypesDSIfElse', 'model/DSWorkflowStepTypesDSSign', 'model/DSWorkflowStepTypesDSTransformation', 'model/DSWorkflowStepTypesDSWebForms', 'model/DSWorkflowStepTypesDoUntil', 'model/DSWorkflowStepTypesLoop', 'model/DSWorkflowStepTypesParallel', 'model/DSWorkflowSubstringExpression', 'model/DSWorkflowToLowerExpression', 'model/DSWorkflowToUpperExpression', 'model/DSWorkflowTransformationExpression', 'model/DSWorkflowTransformationExpressionTypesConcatExpression', 'model/DSWorkflowTransformationExpressionTypesIndexOfExpression', 'model/DSWorkflowTransformationExpressionTypesLastIndexOfExpression', 'model/DSWorkflowTransformationExpressionTypesReplaceExpression', 'model/DSWorkflowTransformationExpressionTypesSubstringExpression', 'model/DSWorkflowTransformationExpressionTypesToLowerExpression', 'model/DSWorkflowTransformationExpressionTypesToUpperExpression', 'model/DSWorkflowTrigger', 'model/DSWorkflowTriggerTypes', 'model/DSWorkflowVariable', 'model/DSWorkflowVariableFromParticipant', 'model/DSWorkflowVariableFromStep', 'model/DSWorkflowVariableFromVariable', 'model/DSWorkflowVariableRecord', 'model/DSWorkflowVariableSourceTypesParticipant', 'model/DSWorkflowVariableSourceTypesStep', 'model/DSWorkflowVariableSourceTypesVariable', 'model/DeployRequest', 'model/DeployResponse', 'model/DeployStatus', 'model/DeploymentStatus', 'model/DsStepId', 'model/ESignDocumentFromESignTemplate', 'model/ESignDocumentFromPreviousStep', 'model/ESignDocumentTypesFromDSTemplate', 'model/ESignDocumentTypesFromPreviousStep', 'model/ESignDocuments', 'model/ESignLocalePolicy', 'model/ESignSigner', 'model/ESignTabs', 'model/ESignTabsRecord', 'model/ErrorCodes', 'model/ErrorResponse', 'model/EventTypes', 'model/GetConfigurationInstanceResponse', 'model/GetConfigurationInstancesResponse', 'model/GetConfigurationInstancesResponseConfigInstances', 'model/HttpTypes', 'model/InvalidWorkflowResponse', 'model/LastDeployedId', 'model/NewOrUpdatedWorkflowDefinitionResponse', 'model/NumberOrVariable', 'model/Participant', 'model/ParticipantKeys', 'model/ProgressInstance', 'model/RecordStringBoolean', 'model/RecordStringOrVariableOrTransformation', 'model/RecordToNever', 'model/ReplicationStatus', 'model/StartedByInstance', 'model/StringOrVariableOrTransformation', 'model/SuccessMessageResponse', 'model/TemplateId', 'model/TriggerPayload', 'model/TriggerWorkflowViaPostResponse', 'model/UserId', 'model/ValidationErrors', 'model/VersionString', 'model/WorkflowCreatorId', 'model/WorkflowDateTime', 'model/WorkflowDefinition', 'model/WorkflowDefinitionList', 'model/WorkflowDefinitionMetadata', 'model/WorkflowDefinitionWithId', 'model/WorkflowDeleteResponse', 'model/WorkflowInstance', 'model/WorkflowInstanceId', 'model/WorkflowInstanceMap', 'model/WorkflowInstanceState', 'model/WorkflowInstancesList', 'model/WorkflowMetadataStatus', 'model/WorkflowStepError', 'model/WorkflowStepErrorError', 'model/WorkflowStepHistory', 'model/WorkflowStepHistoryList', 'model/WorkflowStepHistoryState', 'api/WorkflowInstanceManagementApi', 'api/WorkflowManagementApi', 'api/WorkflowTriggerApi'], factory);
define(['Configuration', 'ApiClient', 'model/AccessTokenResponse', 'model/AccessTokenTokenTypes', 'model/CancelResponse', 'model/CreateOrUpdateWorkflowDefinitionRequestBody', 'model/DSDoUntilStep', 'model/DSDocGenStep', 'model/DSDocGenStepInput', 'model/DSIdvStep', 'model/DSIdvStepInput', 'model/DSIfElseStep', 'model/DSLoopStep', 'model/DSParallelStep', 'model/DSServiceStep', 'model/DSSignStep', 'model/DSSignStepInput', 'model/DSTransformationStep', 'model/DSWebFormsStep', 'model/DSWebFormsStepConfig', 'model/DSWorkflowBooleanExpression', 'model/DSWorkflowComparisonExpression', 'model/DSWorkflowComparisonOperatorTypes', 'model/DSWorkflowConcatExpression', 'model/DSWorkflowDocGenDocOutputFormat', 'model/DSWorkflowExpressionTypesBooleanExpression', 'model/DSWorkflowExpressionTypesComparisonExpression', 'model/DSWorkflowExpressionTypesParallelExpression', 'model/DSWorkflowIndexOfExpression', 'model/DSWorkflowLane', 'model/DSWorkflowLanesRecord', 'model/DSWorkflowLastIndexOfExpression', 'model/DSWorkflowLogicalOperatorTypes', 'model/DSWorkflowParallelExpression', 'model/DSWorkflowParticipantRecord', 'model/DSWorkflowReplaceExpression', 'model/DSWorkflowStep', 'model/DSWorkflowStepTypesDSDocGen', 'model/DSWorkflowStepTypesDSIdv', 'model/DSWorkflowStepTypesDSIfElse', 'model/DSWorkflowStepTypesDSSign', 'model/DSWorkflowStepTypesDSTransformation', 'model/DSWorkflowStepTypesDSWebForms', 'model/DSWorkflowStepTypesDoUntil', 'model/DSWorkflowStepTypesLoop', 'model/DSWorkflowStepTypesParallel', 'model/DSWorkflowSubstringExpression', 'model/DSWorkflowToLowerExpression', 'model/DSWorkflowToUpperExpression', 'model/DSWorkflowTransformationExpression', 'model/DSWorkflowTransformationExpressionTypesConcatExpression', 'model/DSWorkflowTransformationExpressionTypesIndexOfExpression', 'model/DSWorkflowTransformationExpressionTypesLastIndexOfExpression', 'model/DSWorkflowTransformationExpressionTypesReplaceExpression', 'model/DSWorkflowTransformationExpressionTypesSubstringExpression', 'model/DSWorkflowTransformationExpressionTypesToLowerExpression', 'model/DSWorkflowTransformationExpressionTypesToUpperExpression', 'model/DSWorkflowTrigger', 'model/DSWorkflowTriggerTypes', 'model/DSWorkflowVariable', 'model/DSWorkflowVariableFromParticipant', 'model/DSWorkflowVariableFromStep', 'model/DSWorkflowVariableFromVariable', 'model/DSWorkflowVariableRecord', 'model/DSWorkflowVariableSourceTypesParticipant', 'model/DSWorkflowVariableSourceTypesStep', 'model/DSWorkflowVariableSourceTypesVariable', 'model/DeployRequest', 'model/DeployResponse', 'model/DeployStatus', 'model/DeploymentStatus', 'model/ESignDocumentFromESignTemplate', 'model/ESignDocumentFromPreviousStep', 'model/ESignDocumentTypesFromDSTemplate', 'model/ESignDocumentTypesFromPreviousStep', 'model/ESignDocuments', 'model/ESignLocalePolicy', 'model/ESignSigner', 'model/ESignTabs', 'model/ESignTabsRecord', 'model/ErrorCodes', 'model/ErrorResponse', 'model/EventTypes', 'model/GetConfigurationInstanceResponse', 'model/GetConfigurationInstancesResponse', 'model/GetConfigurationInstancesResponseConfigInstances', 'model/HttpTypes', 'model/InvalidWorkflowResponse', 'model/NewOrUpdatedWorkflowDefinitionResponse', 'model/NumberOrVariable', 'model/Participant', 'model/ParticipantKeys', 'model/ProgressInstance', 'model/RecordStringBoolean', 'model/RecordStringOrVariableOrTransformation', 'model/RecordToNever', 'model/ReplicationStatus', 'model/StartedByInstance', 'model/StringOrVariableOrTransformation', 'model/SuccessMessageResponse', 'model/TriggerPayload', 'model/TriggerWorkflowViaPostResponse', 'model/ValidationErrors', 'model/WorkflowDefinition', 'model/WorkflowDefinitionList', 'model/WorkflowDefinitionMetadata', 'model/WorkflowDefinitionWithId', 'model/WorkflowDeleteResponse', 'model/WorkflowInstance', 'model/WorkflowInstanceMap', 'model/WorkflowInstanceState', 'model/WorkflowInstancesList', 'model/WorkflowMetadataStatus', 'model/WorkflowStepError', 'model/WorkflowStepErrorError', 'model/WorkflowStepHistory', 'model/WorkflowStepHistoryList', 'model/WorkflowStepHistoryState', 'api/WorkflowInstanceManagementApi', 'api/WorkflowManagementApi', 'api/WorkflowTriggerApi'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('./Configuration'), require('./ApiClient'), require('./model/AccessTokenResponse'), require('./model/AccessTokenTokenTypes'), require('./model/AccountId'), require('./model/AowUUID'), require('./model/AowUUIDString'), require('./model/CancelResponse'), require('./model/DSDoUntilStep'), require('./model/DSDocGenStep'), require('./model/DSDocGenStepInput'), require('./model/DSIdvStep'), require('./model/DSIdvStepInput'), require('./model/DSIfElseStep'), require('./model/DSLoopStep'), require('./model/DSParallelStep'), require('./model/DSServiceStep'), require('./model/DSSignStep'), require('./model/DSSignStepInput'), require('./model/DSTransformationStep'), require('./model/DSWebFormsStep'), require('./model/DSWebFormsStepConfig'), require('./model/DSWorkflowBooleanExpression'), require('./model/DSWorkflowComparisonExpression'), require('./model/DSWorkflowComparisonOperatorTypes'), require('./model/DSWorkflowConcatExpression'), require('./model/DSWorkflowDocGenDocOutputFormat'), require('./model/DSWorkflowExpressionTypesBooleanExpression'), require('./model/DSWorkflowExpressionTypesComparisonExpression'), require('./model/DSWorkflowExpressionTypesParallelExpression'), require('./model/DSWorkflowIndexOfExpression'), require('./model/DSWorkflowLane'), require('./model/DSWorkflowLanesRecord'), require('./model/DSWorkflowLastIndexOfExpression'), require('./model/DSWorkflowLogicalOperatorTypes'), require('./model/DSWorkflowParallelExpression'), require('./model/DSWorkflowParticipantRecord'), require('./model/DSWorkflowReplaceExpression'), require('./model/DSWorkflowStep'), require('./model/DSWorkflowStepTypesDSDocGen'), require('./model/DSWorkflowStepTypesDSIdv'), require('./model/DSWorkflowStepTypesDSIfElse'), require('./model/DSWorkflowStepTypesDSSign'), require('./model/DSWorkflowStepTypesDSTransformation'), require('./model/DSWorkflowStepTypesDSWebForms'), require('./model/DSWorkflowStepTypesDoUntil'), require('./model/DSWorkflowStepTypesLoop'), require('./model/DSWorkflowStepTypesParallel'), require('./model/DSWorkflowSubstringExpression'), require('./model/DSWorkflowToLowerExpression'), require('./model/DSWorkflowToUpperExpression'), require('./model/DSWorkflowTransformationExpression'), require('./model/DSWorkflowTransformationExpressionTypesConcatExpression'), require('./model/DSWorkflowTransformationExpressionTypesIndexOfExpression'), require('./model/DSWorkflowTransformationExpressionTypesLastIndexOfExpression'), require('./model/DSWorkflowTransformationExpressionTypesReplaceExpression'), require('./model/DSWorkflowTransformationExpressionTypesSubstringExpression'), require('./model/DSWorkflowTransformationExpressionTypesToLowerExpression'), require('./model/DSWorkflowTransformationExpressionTypesToUpperExpression'), require('./model/DSWorkflowTrigger'), require('./model/DSWorkflowTriggerTypes'), require('./model/DSWorkflowVariable'), require('./model/DSWorkflowVariableFromParticipant'), require('./model/DSWorkflowVariableFromStep'), require('./model/DSWorkflowVariableFromVariable'), require('./model/DSWorkflowVariableRecord'), require('./model/DSWorkflowVariableSourceTypesParticipant'), require('./model/DSWorkflowVariableSourceTypesStep'), require('./model/DSWorkflowVariableSourceTypesVariable'), require('./model/DeployRequest'), require('./model/DeployResponse'), require('./model/DeployStatus'), require('./model/DeploymentStatus'), require('./model/DsStepId'), require('./model/ESignDocumentFromESignTemplate'), require('./model/ESignDocumentFromPreviousStep'), require('./model/ESignDocumentTypesFromDSTemplate'), require('./model/ESignDocumentTypesFromPreviousStep'), require('./model/ESignDocuments'), require('./model/ESignLocalePolicy'), require('./model/ESignSigner'), require('./model/ESignTabs'), require('./model/ESignTabsRecord'), require('./model/ErrorCodes'), require('./model/ErrorResponse'), require('./model/EventTypes'), require('./model/GetConfigurationInstanceResponse'), require('./model/GetConfigurationInstancesResponse'), require('./model/GetConfigurationInstancesResponseConfigInstances'), require('./model/HttpTypes'), require('./model/InvalidWorkflowResponse'), require('./model/LastDeployedId'), require('./model/NewOrUpdatedWorkflowDefinitionResponse'), require('./model/NumberOrVariable'), require('./model/Participant'), require('./model/ParticipantKeys'), require('./model/ProgressInstance'), require('./model/RecordStringBoolean'), require('./model/RecordStringOrVariableOrTransformation'), require('./model/RecordToNever'), require('./model/ReplicationStatus'), require('./model/StartedByInstance'), require('./model/StringOrVariableOrTransformation'), require('./model/SuccessMessageResponse'), require('./model/TemplateId'), require('./model/TriggerPayload'), require('./model/TriggerWorkflowViaPostResponse'), require('./model/UserId'), require('./model/ValidationErrors'), require('./model/VersionString'), require('./model/WorkflowCreatorId'), require('./model/WorkflowDateTime'), require('./model/WorkflowDefinition'), require('./model/WorkflowDefinitionList'), require('./model/WorkflowDefinitionMetadata'), require('./model/WorkflowDefinitionWithId'), require('./model/WorkflowDeleteResponse'), require('./model/WorkflowInstance'), require('./model/WorkflowInstanceId'), require('./model/WorkflowInstanceMap'), require('./model/WorkflowInstanceState'), require('./model/WorkflowInstancesList'), require('./model/WorkflowMetadataStatus'), require('./model/WorkflowStepError'), require('./model/WorkflowStepErrorError'), require('./model/WorkflowStepHistory'), require('./model/WorkflowStepHistoryList'), require('./model/WorkflowStepHistoryState'), require('./api/WorkflowInstanceManagementApi'), require('./api/WorkflowManagementApi'), require('./api/WorkflowTriggerApi'));
module.exports = factory(require('./Configuration'), require('./ApiClient'), require('./model/AccessTokenResponse'), require('./model/AccessTokenTokenTypes'), require('./model/CancelResponse'), require('./model/CreateOrUpdateWorkflowDefinitionRequestBody'), require('./model/DSDoUntilStep'), require('./model/DSDocGenStep'), require('./model/DSDocGenStepInput'), require('./model/DSIdvStep'), require('./model/DSIdvStepInput'), require('./model/DSIfElseStep'), require('./model/DSLoopStep'), require('./model/DSParallelStep'), require('./model/DSServiceStep'), require('./model/DSSignStep'), require('./model/DSSignStepInput'), require('./model/DSTransformationStep'), require('./model/DSWebFormsStep'), require('./model/DSWebFormsStepConfig'), require('./model/DSWorkflowBooleanExpression'), require('./model/DSWorkflowComparisonExpression'), require('./model/DSWorkflowComparisonOperatorTypes'), require('./model/DSWorkflowConcatExpression'), require('./model/DSWorkflowDocGenDocOutputFormat'), require('./model/DSWorkflowExpressionTypesBooleanExpression'), require('./model/DSWorkflowExpressionTypesComparisonExpression'), require('./model/DSWorkflowExpressionTypesParallelExpression'), require('./model/DSWorkflowIndexOfExpression'), require('./model/DSWorkflowLane'), require('./model/DSWorkflowLanesRecord'), require('./model/DSWorkflowLastIndexOfExpression'), require('./model/DSWorkflowLogicalOperatorTypes'), require('./model/DSWorkflowParallelExpression'), require('./model/DSWorkflowParticipantRecord'), require('./model/DSWorkflowReplaceExpression'), require('./model/DSWorkflowStep'), require('./model/DSWorkflowStepTypesDSDocGen'), require('./model/DSWorkflowStepTypesDSIdv'), require('./model/DSWorkflowStepTypesDSIfElse'), require('./model/DSWorkflowStepTypesDSSign'), require('./model/DSWorkflowStepTypesDSTransformation'), require('./model/DSWorkflowStepTypesDSWebForms'), require('./model/DSWorkflowStepTypesDoUntil'), require('./model/DSWorkflowStepTypesLoop'), require('./model/DSWorkflowStepTypesParallel'), require('./model/DSWorkflowSubstringExpression'), require('./model/DSWorkflowToLowerExpression'), require('./model/DSWorkflowToUpperExpression'), require('./model/DSWorkflowTransformationExpression'), require('./model/DSWorkflowTransformationExpressionTypesConcatExpression'), require('./model/DSWorkflowTransformationExpressionTypesIndexOfExpression'), require('./model/DSWorkflowTransformationExpressionTypesLastIndexOfExpression'), require('./model/DSWorkflowTransformationExpressionTypesReplaceExpression'), require('./model/DSWorkflowTransformationExpressionTypesSubstringExpression'), require('./model/DSWorkflowTransformationExpressionTypesToLowerExpression'), require('./model/DSWorkflowTransformationExpressionTypesToUpperExpression'), require('./model/DSWorkflowTrigger'), require('./model/DSWorkflowTriggerTypes'), require('./model/DSWorkflowVariable'), require('./model/DSWorkflowVariableFromParticipant'), require('./model/DSWorkflowVariableFromStep'), require('./model/DSWorkflowVariableFromVariable'), require('./model/DSWorkflowVariableRecord'), require('./model/DSWorkflowVariableSourceTypesParticipant'), require('./model/DSWorkflowVariableSourceTypesStep'), require('./model/DSWorkflowVariableSourceTypesVariable'), require('./model/DeployRequest'), require('./model/DeployResponse'), require('./model/DeployStatus'), require('./model/DeploymentStatus'), require('./model/ESignDocumentFromESignTemplate'), require('./model/ESignDocumentFromPreviousStep'), require('./model/ESignDocumentTypesFromDSTemplate'), require('./model/ESignDocumentTypesFromPreviousStep'), require('./model/ESignDocuments'), require('./model/ESignLocalePolicy'), require('./model/ESignSigner'), require('./model/ESignTabs'), require('./model/ESignTabsRecord'), require('./model/ErrorCodes'), require('./model/ErrorResponse'), require('./model/EventTypes'), require('./model/GetConfigurationInstanceResponse'), require('./model/GetConfigurationInstancesResponse'), require('./model/GetConfigurationInstancesResponseConfigInstances'), require('./model/HttpTypes'), require('./model/InvalidWorkflowResponse'), require('./model/NewOrUpdatedWorkflowDefinitionResponse'), require('./model/NumberOrVariable'), require('./model/Participant'), require('./model/ParticipantKeys'), require('./model/ProgressInstance'), require('./model/RecordStringBoolean'), require('./model/RecordStringOrVariableOrTransformation'), require('./model/RecordToNever'), require('./model/ReplicationStatus'), require('./model/StartedByInstance'), require('./model/StringOrVariableOrTransformation'), require('./model/SuccessMessageResponse'), require('./model/TriggerPayload'), require('./model/TriggerWorkflowViaPostResponse'), require('./model/ValidationErrors'), require('./model/WorkflowDefinition'), require('./model/WorkflowDefinitionList'), require('./model/WorkflowDefinitionMetadata'), require('./model/WorkflowDefinitionWithId'), require('./model/WorkflowDeleteResponse'), require('./model/WorkflowInstance'), require('./model/WorkflowInstanceMap'), require('./model/WorkflowInstanceState'), require('./model/WorkflowInstancesList'), require('./model/WorkflowMetadataStatus'), require('./model/WorkflowStepError'), require('./model/WorkflowStepErrorError'), require('./model/WorkflowStepHistory'), require('./model/WorkflowStepHistoryList'), require('./model/WorkflowStepHistoryState'), require('./api/WorkflowInstanceManagementApi'), require('./api/WorkflowManagementApi'), require('./api/WorkflowTriggerApi'));
}
}(function(Configuration, ApiClient, AccessTokenResponse, AccessTokenTokenTypes, AccountId, AowUUID, AowUUIDString, CancelResponse, DSDoUntilStep, DSDocGenStep, DSDocGenStepInput, DSIdvStep, DSIdvStepInput, DSIfElseStep, DSLoopStep, DSParallelStep, DSServiceStep, DSSignStep, DSSignStepInput, DSTransformationStep, DSWebFormsStep, DSWebFormsStepConfig, DSWorkflowBooleanExpression, DSWorkflowComparisonExpression, DSWorkflowComparisonOperatorTypes, DSWorkflowConcatExpression, DSWorkflowDocGenDocOutputFormat, DSWorkflowExpressionTypesBooleanExpression, DSWorkflowExpressionTypesComparisonExpression, DSWorkflowExpressionTypesParallelExpression, DSWorkflowIndexOfExpression, DSWorkflowLane, DSWorkflowLanesRecord, DSWorkflowLastIndexOfExpression, DSWorkflowLogicalOperatorTypes, DSWorkflowParallelExpression, DSWorkflowParticipantRecord, DSWorkflowReplaceExpression, DSWorkflowStep, DSWorkflowStepTypesDSDocGen, DSWorkflowStepTypesDSIdv, DSWorkflowStepTypesDSIfElse, DSWorkflowStepTypesDSSign, DSWorkflowStepTypesDSTransformation, DSWorkflowStepTypesDSWebForms, DSWorkflowStepTypesDoUntil, DSWorkflowStepTypesLoop, DSWorkflowStepTypesParallel, DSWorkflowSubstringExpression, DSWorkflowToLowerExpression, DSWorkflowToUpperExpression, DSWorkflowTransformationExpression, DSWorkflowTransformationExpressionTypesConcatExpression, DSWorkflowTransformationExpressionTypesIndexOfExpression, DSWorkflowTransformationExpressionTypesLastIndexOfExpression, DSWorkflowTransformationExpressionTypesReplaceExpression, DSWorkflowTransformationExpressionTypesSubstringExpression, DSWorkflowTransformationExpressionTypesToLowerExpression, DSWorkflowTransformationExpressionTypesToUpperExpression, DSWorkflowTrigger, DSWorkflowTriggerTypes, DSWorkflowVariable, DSWorkflowVariableFromParticipant, DSWorkflowVariableFromStep, DSWorkflowVariableFromVariable, DSWorkflowVariableRecord, DSWorkflowVariableSourceTypesParticipant, DSWorkflowVariableSourceTypesStep, DSWorkflowVariableSourceTypesVariable, DeployRequest, DeployResponse, DeployStatus, DeploymentStatus, DsStepId, ESignDocumentFromESignTemplate, ESignDocumentFromPreviousStep, ESignDocumentTypesFromDSTemplate, ESignDocumentTypesFromPreviousStep, ESignDocuments, ESignLocalePolicy, ESignSigner, ESignTabs, ESignTabsRecord, ErrorCodes, ErrorResponse, EventTypes, GetConfigurationInstanceResponse, GetConfigurationInstancesResponse, GetConfigurationInstancesResponseConfigInstances, HttpTypes, InvalidWorkflowResponse, LastDeployedId, NewOrUpdatedWorkflowDefinitionResponse, NumberOrVariable, Participant, ParticipantKeys, ProgressInstance, RecordStringBoolean, RecordStringOrVariableOrTransformation, RecordToNever, ReplicationStatus, StartedByInstance, StringOrVariableOrTransformation, SuccessMessageResponse, TemplateId, TriggerPayload, TriggerWorkflowViaPostResponse, UserId, ValidationErrors, VersionString, WorkflowCreatorId, WorkflowDateTime, WorkflowDefinition, WorkflowDefinitionList, WorkflowDefinitionMetadata, WorkflowDefinitionWithId, WorkflowDeleteResponse, WorkflowInstance, WorkflowInstanceId, WorkflowInstanceMap, WorkflowInstanceState, WorkflowInstancesList, WorkflowMetadataStatus, WorkflowStepError, WorkflowStepErrorError, WorkflowStepHistory, WorkflowStepHistoryList, WorkflowStepHistoryState, WorkflowInstanceManagementApi, WorkflowManagementApi, WorkflowTriggerApi) {
}(function(Configuration, ApiClient, AccessTokenResponse, AccessTokenTokenTypes, CancelResponse, CreateOrUpdateWorkflowDefinitionRequestBody, DSDoUntilStep, DSDocGenStep, DSDocGenStepInput, DSIdvStep, DSIdvStepInput, DSIfElseStep, DSLoopStep, DSParallelStep, DSServiceStep, DSSignStep, DSSignStepInput, DSTransformationStep, DSWebFormsStep, DSWebFormsStepConfig, DSWorkflowBooleanExpression, DSWorkflowComparisonExpression, DSWorkflowComparisonOperatorTypes, DSWorkflowConcatExpression, DSWorkflowDocGenDocOutputFormat, DSWorkflowExpressionTypesBooleanExpression, DSWorkflowExpressionTypesComparisonExpression, DSWorkflowExpressionTypesParallelExpression, DSWorkflowIndexOfExpression, DSWorkflowLane, DSWorkflowLanesRecord, DSWorkflowLastIndexOfExpression, DSWorkflowLogicalOperatorTypes, DSWorkflowParallelExpression, DSWorkflowParticipantRecord, DSWorkflowReplaceExpression, DSWorkflowStep, DSWorkflowStepTypesDSDocGen, DSWorkflowStepTypesDSIdv, DSWorkflowStepTypesDSIfElse, DSWorkflowStepTypesDSSign, DSWorkflowStepTypesDSTransformation, DSWorkflowStepTypesDSWebForms, DSWorkflowStepTypesDoUntil, DSWorkflowStepTypesLoop, DSWorkflowStepTypesParallel, DSWorkflowSubstringExpression, DSWorkflowToLowerExpression, DSWorkflowToUpperExpression, DSWorkflowTransformationExpression, DSWorkflowTransformationExpressionTypesConcatExpression, DSWorkflowTransformationExpressionTypesIndexOfExpression, DSWorkflowTransformationExpressionTypesLastIndexOfExpression, DSWorkflowTransformationExpressionTypesReplaceExpression, DSWorkflowTransformationExpressionTypesSubstringExpression, DSWorkflowTransformationExpressionTypesToLowerExpression, DSWorkflowTransformationExpressionTypesToUpperExpression, DSWorkflowTrigger, DSWorkflowTriggerTypes, DSWorkflowVariable, DSWorkflowVariableFromParticipant, DSWorkflowVariableFromStep, DSWorkflowVariableFromVariable, DSWorkflowVariableRecord, DSWorkflowVariableSourceTypesParticipant, DSWorkflowVariableSourceTypesStep, DSWorkflowVariableSourceTypesVariable, DeployRequest, DeployResponse, DeployStatus, DeploymentStatus, ESignDocumentFromESignTemplate, ESignDocumentFromPreviousStep, ESignDocumentTypesFromDSTemplate, ESignDocumentTypesFromPreviousStep, ESignDocuments, ESignLocalePolicy, ESignSigner, ESignTabs, ESignTabsRecord, ErrorCodes, ErrorResponse, EventTypes, GetConfigurationInstanceResponse, GetConfigurationInstancesResponse, GetConfigurationInstancesResponseConfigInstances, HttpTypes, InvalidWorkflowResponse, NewOrUpdatedWorkflowDefinitionResponse, NumberOrVariable, Participant, ParticipantKeys, ProgressInstance, RecordStringBoolean, RecordStringOrVariableOrTransformation, RecordToNever, ReplicationStatus, StartedByInstance, StringOrVariableOrTransformation, SuccessMessageResponse, TriggerPayload, TriggerWorkflowViaPostResponse, ValidationErrors, WorkflowDefinition, WorkflowDefinitionList, WorkflowDefinitionMetadata, WorkflowDefinitionWithId, WorkflowDeleteResponse, WorkflowInstance, WorkflowInstanceMap, WorkflowInstanceState, WorkflowInstancesList, WorkflowMetadataStatus, WorkflowStepError, WorkflowStepErrorError, WorkflowStepHistory, WorkflowStepHistoryList, WorkflowStepHistoryState, WorkflowInstanceManagementApi, WorkflowManagementApi, WorkflowTriggerApi) {
'use strict';

@@ -75,17 +75,2 @@

/**
* The AccountId model constructor.
* @property {module:model/AccountId}
*/
AccountId: AccountId,
/**
* The AowUUID model constructor.
* @property {module:model/AowUUID}
*/
AowUUID: AowUUID,
/**
* The AowUUIDString model constructor.
* @property {module:model/AowUUIDString}
*/
AowUUIDString: AowUUIDString,
/**
* The CancelResponse model constructor.

@@ -96,2 +81,7 @@ * @property {module:model/CancelResponse}

/**
* The CreateOrUpdateWorkflowDefinitionRequestBody model constructor.
* @property {module:model/CreateOrUpdateWorkflowDefinitionRequestBody}
*/
CreateOrUpdateWorkflowDefinitionRequestBody: CreateOrUpdateWorkflowDefinitionRequestBody,
/**
* The DSDoUntilStep model constructor.

@@ -422,7 +412,2 @@ * @property {module:model/DSDoUntilStep}

/**
* The DsStepId model constructor.
* @property {module:model/DsStepId}
*/
DsStepId: DsStepId,
/**
* The ESignDocumentFromESignTemplate model constructor.

@@ -513,7 +498,2 @@ * @property {module:model/ESignDocumentFromESignTemplate}

/**
* The LastDeployedId model constructor.
* @property {module:model/LastDeployedId}
*/
LastDeployedId: LastDeployedId,
/**
* The NewOrUpdatedWorkflowDefinitionResponse model constructor.

@@ -579,7 +559,2 @@ * @property {module:model/NewOrUpdatedWorkflowDefinitionResponse}

/**
* The TemplateId model constructor.
* @property {module:model/TemplateId}
*/
TemplateId: TemplateId,
/**
* The TriggerPayload model constructor.

@@ -595,7 +570,2 @@ * @property {module:model/TriggerPayload}

/**
* The UserId model constructor.
* @property {module:model/UserId}
*/
UserId: UserId,
/**
* The ValidationErrors model constructor.

@@ -606,17 +576,2 @@ * @property {module:model/ValidationErrors}

/**
* The VersionString model constructor.
* @property {module:model/VersionString}
*/
VersionString: VersionString,
/**
* The WorkflowCreatorId model constructor.
* @property {module:model/WorkflowCreatorId}
*/
WorkflowCreatorId: WorkflowCreatorId,
/**
* The WorkflowDateTime model constructor.
* @property {module:model/WorkflowDateTime}
*/
WorkflowDateTime: WorkflowDateTime,
/**
* The WorkflowDefinition model constructor.

@@ -652,7 +607,2 @@ * @property {module:model/WorkflowDefinition}

/**
* The WorkflowInstanceId model constructor.
* @property {module:model/WorkflowInstanceId}
*/
WorkflowInstanceId: WorkflowInstanceId,
/**
* The WorkflowInstanceMap model constructor.

@@ -659,0 +609,0 @@ * @property {module:model/WorkflowInstanceMap}

@@ -39,9 +39,8 @@ /**

* @class
* @param code {String}
* @param message {String}
*/
var exports = function(code, message) {
var exports = function(message) {
var _this = this;
_this['code'] = code; _this['message'] = message;
_this['message'] = message;
};

@@ -48,0 +47,0 @@

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSDocGenStepInput', 'model/DSWorkflowStepTypesDSDocGen', 'model/RecordStringOrVariableOrTransformation', 'model/RecordToNever'], factory);
define(['ApiClient', 'model/DSDocGenStepInput', 'model/DSWorkflowStepTypesDSDocGen', 'model/RecordToNever'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSDocGenStepInput'), require('./DSWorkflowStepTypesDSDocGen'), require('./RecordStringOrVariableOrTransformation'), require('./RecordToNever'));
module.exports = factory(require('../ApiClient'), require('./DSDocGenStepInput'), require('./DSWorkflowStepTypesDSDocGen'), require('./RecordToNever'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.DSDocGenStep = factory(root.Docusign.ApiClient, root.Docusign.DSDocGenStepInput, root.Docusign.DSWorkflowStepTypesDSDocGen, root.Docusign.RecordStringOrVariableOrTransformation, root.Docusign.RecordToNever);
root.Docusign.DSDocGenStep = factory(root.Docusign.ApiClient, root.Docusign.DSDocGenStepInput, root.Docusign.DSWorkflowStepTypesDSDocGen, root.Docusign.RecordToNever);
}
}(this, function(ApiClient, DSDocGenStepInput, DSWorkflowStepTypesDSDocGen, RecordStringOrVariableOrTransformation, RecordToNever) {
}(this, function(ApiClient, DSDocGenStepInput, DSWorkflowStepTypesDSDocGen, RecordToNever) {
'use strict';

@@ -45,3 +45,3 @@

* @param name {String}
* @param output {module:model/RecordStringOrVariableOrTransformation}
* @param output {Object.<String, Object>} A Record of strings to Strings, Variables, or Transformation Expressions
* @param type {module:model/DSWorkflowStepTypesDSDocGen}

@@ -79,3 +79,3 @@ */

if (data.hasOwnProperty('output')) {
obj['output'] = RecordStringOrVariableOrTransformation.constructFromObject(data['output']);
obj['output'] = ApiClient.convertToType(data['output'], {'String': Object});
}

@@ -106,3 +106,4 @@ if (data.hasOwnProperty('type')) {

/**
* @member {module:model/RecordStringOrVariableOrTransformation} output
* A Record of strings to Strings, Variables, or Transformation Expressions
* @member {Object.<String, Object>} output
*/

@@ -109,0 +110,0 @@ exports.prototype['output'] = undefined;

@@ -40,6 +40,6 @@ /**

* @param dataJson {module:model/RecordStringOrVariableOrTransformation}
* @param outputFileName {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param outputFileName {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param outputFileNameIsUnique {Boolean}
* @param outputFormat {module:model/DSWorkflowDocGenDocOutputFormat}
* @param templateId {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param templateId {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
*/

@@ -87,3 +87,3 @@ var exports = function(dataJson, outputFileName, outputFileNameIsUnique, outputFormat, templateId) {

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} outputFileName

@@ -101,3 +101,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} templateId

@@ -104,0 +104,0 @@ */

@@ -39,3 +39,3 @@ /**

* @class
* @param doSteps {Array.<Object>} A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param doSteps {Array.<Object>} A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param expression {module:model/DSWorkflowComparisonExpression}

@@ -83,3 +83,3 @@ * @param id {String}

/**
* A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @member {Array.<Object>} doSteps

@@ -86,0 +86,0 @@ */

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSIdvStepInput', 'model/DSWorkflowStepTypesDSIdv', 'model/RecordStringOrVariableOrTransformation', 'model/RecordToNever'], factory);
define(['ApiClient', 'model/DSIdvStepInput', 'model/DSWorkflowStepTypesDSIdv', 'model/RecordToNever'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSIdvStepInput'), require('./DSWorkflowStepTypesDSIdv'), require('./RecordStringOrVariableOrTransformation'), require('./RecordToNever'));
module.exports = factory(require('../ApiClient'), require('./DSIdvStepInput'), require('./DSWorkflowStepTypesDSIdv'), require('./RecordToNever'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.DSIdvStep = factory(root.Docusign.ApiClient, root.Docusign.DSIdvStepInput, root.Docusign.DSWorkflowStepTypesDSIdv, root.Docusign.RecordStringOrVariableOrTransformation, root.Docusign.RecordToNever);
root.Docusign.DSIdvStep = factory(root.Docusign.ApiClient, root.Docusign.DSIdvStepInput, root.Docusign.DSWorkflowStepTypesDSIdv, root.Docusign.RecordToNever);
}
}(this, function(ApiClient, DSIdvStepInput, DSWorkflowStepTypesDSIdv, RecordStringOrVariableOrTransformation, RecordToNever) {
}(this, function(ApiClient, DSIdvStepInput, DSWorkflowStepTypesDSIdv, RecordToNever) {
'use strict';

@@ -45,3 +45,3 @@

* @param name {String}
* @param output {module:model/RecordStringOrVariableOrTransformation}
* @param output {Object.<String, Object>} A Record of strings to Strings, Variables, or Transformation Expressions
* @param type {module:model/DSWorkflowStepTypesDSIdv}

@@ -79,3 +79,3 @@ */

if (data.hasOwnProperty('output')) {
obj['output'] = RecordStringOrVariableOrTransformation.constructFromObject(data['output']);
obj['output'] = ApiClient.convertToType(data['output'], {'String': Object});
}

@@ -106,3 +106,4 @@ if (data.hasOwnProperty('type')) {

/**
* @member {module:model/RecordStringOrVariableOrTransformation} output
* A Record of strings to Strings, Variables, or Transformation Expressions
* @member {Object.<String, Object>} output
*/

@@ -109,0 +110,0 @@ exports.prototype['output'] = undefined;

@@ -39,6 +39,6 @@ /**

* @class
* @param backgroundColorBranding {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param expectedFullName {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param backgroundColorBranding {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param expectedFullName {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param retryLimit {Object} This object should be any of the following object models or types: [number, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param textColorBranding {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param textColorBranding {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
*/

@@ -79,3 +79,3 @@ var exports = function(backgroundColorBranding, expectedFullName, retryLimit, textColorBranding) {

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} backgroundColorBranding

@@ -85,3 +85,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} expectedFullName

@@ -96,3 +96,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} textColorBranding

@@ -99,0 +99,0 @@ */

@@ -39,6 +39,6 @@ /**

* @class
* @param elseSteps {Array.<Object>} A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param elseSteps {Array.<Object>} A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param expression {module:model/DSWorkflowBooleanExpression}
* @param id {String}
* @param ifSteps {Array.<Object>} A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param ifSteps {Array.<Object>} A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param name {String}

@@ -87,3 +87,3 @@ * @param type {module:model/DSWorkflowStepTypesDSIfElse}

/**
* A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @member {Array.<Object>} elseSteps

@@ -101,3 +101,3 @@ */

/**
* A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @member {Array.<Object>} ifSteps

@@ -104,0 +104,0 @@ */

@@ -41,3 +41,3 @@ /**

* @param id {String}
* @param loopSteps {Array.<Object>} A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param loopSteps {Array.<Object>} A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param name {String}

@@ -91,3 +91,3 @@ * @param type {module:model/DSWorkflowStepTypesLoop}

/**
* A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @member {Array.<Object>} loopSteps

@@ -94,0 +94,0 @@ */

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSWorkflowLanesRecord', 'model/DSWorkflowParallelExpression', 'model/DSWorkflowStepTypesParallel'], factory);
define(['ApiClient', 'model/DSWorkflowLane', 'model/DSWorkflowParallelExpression', 'model/DSWorkflowStepTypesParallel'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSWorkflowLanesRecord'), require('./DSWorkflowParallelExpression'), require('./DSWorkflowStepTypesParallel'));
module.exports = factory(require('../ApiClient'), require('./DSWorkflowLane'), require('./DSWorkflowParallelExpression'), require('./DSWorkflowStepTypesParallel'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.DSParallelStep = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowLanesRecord, root.Docusign.DSWorkflowParallelExpression, root.Docusign.DSWorkflowStepTypesParallel);
root.Docusign.DSParallelStep = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowLane, root.Docusign.DSWorkflowParallelExpression, root.Docusign.DSWorkflowStepTypesParallel);
}
}(this, function(ApiClient, DSWorkflowLanesRecord, DSWorkflowParallelExpression, DSWorkflowStepTypesParallel) {
}(this, function(ApiClient, DSWorkflowLane, DSWorkflowParallelExpression, DSWorkflowStepTypesParallel) {
'use strict';

@@ -43,3 +43,3 @@

* @param id {String}
* @param lanes {module:model/DSWorkflowLanesRecord}
* @param lanes {Object.<String, module:model/DSWorkflowLane>}
* @param name {String}

@@ -72,3 +72,3 @@ * @param type {module:model/DSWorkflowStepTypesParallel}

if (data.hasOwnProperty('lanes')) {
obj['lanes'] = DSWorkflowLanesRecord.constructFromObject(data['lanes']);
obj['lanes'] = ApiClient.convertToType(data['lanes'], {'String': DSWorkflowLane});
}

@@ -94,3 +94,3 @@ if (data.hasOwnProperty('name')) {

/**
* @member {module:model/DSWorkflowLanesRecord} lanes
* @member {Object.<String, module:model/DSWorkflowLane>} lanes
*/

@@ -97,0 +97,0 @@ exports.prototype['lanes'] = undefined;

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSSignStepInput', 'model/DSWorkflowStepTypesDSSign', 'model/RecordStringOrVariableOrTransformation', 'model/RecordToNever'], factory);
define(['ApiClient', 'model/DSSignStepInput', 'model/DSWorkflowStepTypesDSSign', 'model/RecordToNever'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSSignStepInput'), require('./DSWorkflowStepTypesDSSign'), require('./RecordStringOrVariableOrTransformation'), require('./RecordToNever'));
module.exports = factory(require('../ApiClient'), require('./DSSignStepInput'), require('./DSWorkflowStepTypesDSSign'), require('./RecordToNever'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.DSSignStep = factory(root.Docusign.ApiClient, root.Docusign.DSSignStepInput, root.Docusign.DSWorkflowStepTypesDSSign, root.Docusign.RecordStringOrVariableOrTransformation, root.Docusign.RecordToNever);
root.Docusign.DSSignStep = factory(root.Docusign.ApiClient, root.Docusign.DSSignStepInput, root.Docusign.DSWorkflowStepTypesDSSign, root.Docusign.RecordToNever);
}
}(this, function(ApiClient, DSSignStepInput, DSWorkflowStepTypesDSSign, RecordStringOrVariableOrTransformation, RecordToNever) {
}(this, function(ApiClient, DSSignStepInput, DSWorkflowStepTypesDSSign, RecordToNever) {
'use strict';

@@ -45,3 +45,3 @@

* @param name {String}
* @param output {module:model/RecordStringOrVariableOrTransformation}
* @param output {Object.<String, Object>} A Record of strings to Strings, Variables, or Transformation Expressions
* @param type {module:model/DSWorkflowStepTypesDSSign}

@@ -79,3 +79,3 @@ */

if (data.hasOwnProperty('output')) {
obj['output'] = RecordStringOrVariableOrTransformation.constructFromObject(data['output']);
obj['output'] = ApiClient.convertToType(data['output'], {'String': Object});
}

@@ -106,3 +106,4 @@ if (data.hasOwnProperty('type')) {

/**
* @member {module:model/RecordStringOrVariableOrTransformation} output
* A Record of strings to Strings, Variables, or Transformation Expressions
* @member {Object.<String, Object>} output
*/

@@ -109,0 +110,0 @@ exports.prototype['output'] = undefined;

@@ -39,3 +39,3 @@ /**

* @class
* @param documents {Array.<Object>} ESignDocuments Object list. Each element within the list should be any of the following object models: [#/definitions/ESignDocumentFromPreviousStep, #/definitions/ESignDocumentFromESignTemplate]
* @param documents {Array.<Object>} A list of #/definitions/ESignDocuments. Each element is: ESignDocument Object. This object should be any of the following object models: [#/definitions/ESignDocumentFromPreviousStep, #/definitions/ESignDocumentFromESignTemplate]
* @param isEmbeddedSign {Boolean}

@@ -81,3 +81,3 @@ * @param signers {Array.<module:model/ESignSigner>}

/**
* ESignDocuments Object list. Each element within the list should be any of the following object models: [#/definitions/ESignDocumentFromPreviousStep, #/definitions/ESignDocumentFromESignTemplate]
* A list of #/definitions/ESignDocuments. Each element is: ESignDocument Object. This object should be any of the following object models: [#/definitions/ESignDocumentFromPreviousStep, #/definitions/ESignDocumentFromESignTemplate]
* @member {Array.<Object>} documents

@@ -87,3 +87,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} emailBlurb

@@ -93,3 +93,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} emailSubject

@@ -96,0 +96,0 @@ */

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSWorkflowStepTypesDSTransformation', 'model/RecordStringOrVariableOrTransformation', 'model/RecordToNever'], factory);
define(['ApiClient', 'model/DSWorkflowStepTypesDSTransformation', 'model/RecordToNever'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSWorkflowStepTypesDSTransformation'), require('./RecordStringOrVariableOrTransformation'), require('./RecordToNever'));
module.exports = factory(require('../ApiClient'), require('./DSWorkflowStepTypesDSTransformation'), require('./RecordToNever'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.DSTransformationStep = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowStepTypesDSTransformation, root.Docusign.RecordStringOrVariableOrTransformation, root.Docusign.RecordToNever);
root.Docusign.DSTransformationStep = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowStepTypesDSTransformation, root.Docusign.RecordToNever);
}
}(this, function(ApiClient, DSWorkflowStepTypesDSTransformation, RecordStringOrVariableOrTransformation, RecordToNever) {
}(this, function(ApiClient, DSWorkflowStepTypesDSTransformation, RecordToNever) {
'use strict';

@@ -42,7 +42,7 @@

* @param config {module:model/RecordToNever}
* @param expression {Object} DS Workflow Transformation Expression object. This object should be any of the following object models: [#/definitions/DSWorkflowReplaceExpression, #/definitions/DSWorkflowToLowerExpression, #/definitions/DSWorkflowToUpperExpression, #/components/schemas/DSWorkflowLastIndexOfExpression, #/components/schemas/DSWorkflowIndexOfExpression, #/components/schemas/DSWorkflowSubstringExpression, #/components/schemas/DSWorkflowConcatExpression]
* @param expression {Object} Reference of #/definitions/DSWorkflowTransformationExpression. Transformation Expression object. This object should be any of the following object models: [#/definitions/DSWorkflowReplaceExpression, #/definitions/DSWorkflowToLowerExpression, #/definitions/DSWorkflowToUpperExpression, #/components/schemas/DSWorkflowLastIndexOfExpression, #/components/schemas/DSWorkflowIndexOfExpression, #/components/schemas/DSWorkflowSubstringExpression, #/components/schemas/DSWorkflowConcatExpression]
* @param id {String}
* @param input {module:model/RecordStringOrVariableOrTransformation}
* @param input {Object.<String, Object>} A Record of strings to Strings, Variables, or Transformation Expressions
* @param name {String}
* @param output {module:model/RecordStringOrVariableOrTransformation}
* @param output {Object.<String, Object>} A Record of strings to Strings, Variables, or Transformation Expressions
* @param type {module:model/DSWorkflowStepTypesDSTransformation}

@@ -77,3 +77,3 @@ */

if (data.hasOwnProperty('input')) {
obj['input'] = RecordStringOrVariableOrTransformation.constructFromObject(data['input']);
obj['input'] = ApiClient.convertToType(data['input'], {'String': Object});
}

@@ -84,3 +84,3 @@ if (data.hasOwnProperty('name')) {

if (data.hasOwnProperty('output')) {
obj['output'] = RecordStringOrVariableOrTransformation.constructFromObject(data['output']);
obj['output'] = ApiClient.convertToType(data['output'], {'String': Object});
}

@@ -99,3 +99,3 @@ if (data.hasOwnProperty('type')) {

/**
* DS Workflow Transformation Expression object. This object should be any of the following object models: [#/definitions/DSWorkflowReplaceExpression, #/definitions/DSWorkflowToLowerExpression, #/definitions/DSWorkflowToUpperExpression, #/components/schemas/DSWorkflowLastIndexOfExpression, #/components/schemas/DSWorkflowIndexOfExpression, #/components/schemas/DSWorkflowSubstringExpression, #/components/schemas/DSWorkflowConcatExpression]
* Reference of #/definitions/DSWorkflowTransformationExpression. Transformation Expression object. This object should be any of the following object models: [#/definitions/DSWorkflowReplaceExpression, #/definitions/DSWorkflowToLowerExpression, #/definitions/DSWorkflowToUpperExpression, #/components/schemas/DSWorkflowLastIndexOfExpression, #/components/schemas/DSWorkflowIndexOfExpression, #/components/schemas/DSWorkflowSubstringExpression, #/components/schemas/DSWorkflowConcatExpression]
* @member {Object} expression

@@ -109,3 +109,4 @@ */

/**
* @member {module:model/RecordStringOrVariableOrTransformation} input
* A Record of strings to Strings, Variables, or Transformation Expressions
* @member {Object.<String, Object>} input
*/

@@ -118,3 +119,4 @@ exports.prototype['input'] = undefined;

/**
* @member {module:model/RecordStringOrVariableOrTransformation} output
* A Record of strings to Strings, Variables, or Transformation Expressions
* @member {Object.<String, Object>} output
*/

@@ -121,0 +123,0 @@ exports.prototype['output'] = undefined;

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSWebFormsStepConfig', 'model/DSWorkflowStepTypesDSWebForms', 'model/RecordStringOrVariableOrTransformation'], factory);
define(['ApiClient', 'model/DSWebFormsStepConfig', 'model/DSWorkflowStepTypesDSWebForms'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSWebFormsStepConfig'), require('./DSWorkflowStepTypesDSWebForms'), require('./RecordStringOrVariableOrTransformation'));
module.exports = factory(require('../ApiClient'), require('./DSWebFormsStepConfig'), require('./DSWorkflowStepTypesDSWebForms'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.DSWebFormsStep = factory(root.Docusign.ApiClient, root.Docusign.DSWebFormsStepConfig, root.Docusign.DSWorkflowStepTypesDSWebForms, root.Docusign.RecordStringOrVariableOrTransformation);
root.Docusign.DSWebFormsStep = factory(root.Docusign.ApiClient, root.Docusign.DSWebFormsStepConfig, root.Docusign.DSWorkflowStepTypesDSWebForms);
}
}(this, function(ApiClient, DSWebFormsStepConfig, DSWorkflowStepTypesDSWebForms, RecordStringOrVariableOrTransformation) {
}(this, function(ApiClient, DSWebFormsStepConfig, DSWorkflowStepTypesDSWebForms) {
'use strict';

@@ -44,5 +44,5 @@

* @param id {String}
* @param input {module:model/RecordStringOrVariableOrTransformation}
* @param input {Object.<String, Object>} A Record of strings to Strings, Variables, or Transformation Expressions
* @param name {String}
* @param output {module:model/RecordStringOrVariableOrTransformation}
* @param output {Object.<String, Object>} A Record of strings to Strings, Variables, or Transformation Expressions
* @param type {module:model/DSWorkflowStepTypesDSWebForms}

@@ -74,3 +74,3 @@ */

if (data.hasOwnProperty('input')) {
obj['input'] = RecordStringOrVariableOrTransformation.constructFromObject(data['input']);
obj['input'] = ApiClient.convertToType(data['input'], {'String': Object});
}

@@ -81,3 +81,3 @@ if (data.hasOwnProperty('name')) {

if (data.hasOwnProperty('output')) {
obj['output'] = RecordStringOrVariableOrTransformation.constructFromObject(data['output']);
obj['output'] = ApiClient.convertToType(data['output'], {'String': Object});
}

@@ -100,3 +100,4 @@ if (data.hasOwnProperty('type')) {

/**
* @member {module:model/RecordStringOrVariableOrTransformation} input
* A Record of strings to Strings, Variables, or Transformation Expressions
* @member {Object.<String, Object>} input
*/

@@ -109,3 +110,4 @@ exports.prototype['input'] = undefined;

/**
* @member {module:model/RecordStringOrVariableOrTransformation} output
* A Record of strings to Strings, Variables, or Transformation Expressions
* @member {Object.<String, Object>} output
*/

@@ -112,0 +114,0 @@ exports.prototype['output'] = undefined;

@@ -39,3 +39,3 @@ /**

* @class
* @param expressions {Array.<Object>} A list wherein each element should be any of the following object models: [#/definitions/DSWorkflowBooleanExpression, #/definitions/DSWorkflowComparisonExpression]
* @param expressions {Array.<Object>} A list of objects. Each object should contain any of the following object models: [#/definitions/DSWorkflowBooleanExpression, #/definitions/DSWorkflowComparisonExpression]
* @param logicalOperator {module:model/DSWorkflowLogicalOperatorTypes}

@@ -75,3 +75,3 @@ * @param type {module:model/DSWorkflowExpressionTypesBooleanExpression}

/**
* A list wherein each element should be any of the following object models: [#/definitions/DSWorkflowBooleanExpression, #/definitions/DSWorkflowComparisonExpression]
* A list of objects. Each object should contain any of the following object models: [#/definitions/DSWorkflowBooleanExpression, #/definitions/DSWorkflowComparisonExpression]
* @member {Array.<Object>} expressions

@@ -78,0 +78,0 @@ */

@@ -69,3 +69,3 @@ /**

/**
* A list of StringOrVariableOrTransformation. Each element in the list should be any of the following object models: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* A list of #/definitions/StringOrVariableOrTransformation. Each element is: Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Array.<Object>} inputs

@@ -72,0 +72,0 @@ */

@@ -39,4 +39,4 @@ /**

* @class
* @param searchText {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param text {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param searchText {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param text {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param type {module:model/DSWorkflowTransformationExpressionTypesIndexOfExpression}

@@ -75,3 +75,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} searchText

@@ -81,3 +81,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} text

@@ -84,0 +84,0 @@ */

@@ -40,3 +40,3 @@ /**

* @param laneId {String}
* @param laneSteps {Array.<Object>} A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param laneSteps {Array.<Object>} A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
*/

@@ -75,3 +75,3 @@ var exports = function(laneId, laneSteps) {

/**
* A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @member {Array.<Object>} laneSteps

@@ -78,0 +78,0 @@ */

@@ -39,4 +39,4 @@ /**

* @class
* @param searchText {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param text {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param searchText {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param text {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param type {module:model/DSWorkflowTransformationExpressionTypesLastIndexOfExpression}

@@ -75,3 +75,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} searchText

@@ -81,3 +81,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} text

@@ -84,0 +84,0 @@ */

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSWorkflowExpressionTypesParallelExpression', 'model/RecordStringBoolean'], factory);
define(['ApiClient', 'model/DSWorkflowExpressionTypesParallelExpression'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSWorkflowExpressionTypesParallelExpression'), require('./RecordStringBoolean'));
module.exports = factory(require('../ApiClient'), require('./DSWorkflowExpressionTypesParallelExpression'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.DSWorkflowParallelExpression = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowExpressionTypesParallelExpression, root.Docusign.RecordStringBoolean);
root.Docusign.DSWorkflowParallelExpression = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowExpressionTypesParallelExpression);
}
}(this, function(ApiClient, DSWorkflowExpressionTypesParallelExpression, RecordStringBoolean) {
}(this, function(ApiClient, DSWorkflowExpressionTypesParallelExpression) {
'use strict';

@@ -41,3 +41,3 @@

* @class
* @param parallelCompletionSettings {module:model/RecordStringBoolean}
* @param parallelCompletionSettings {Object.<String, Boolean>}
* @param type {module:model/DSWorkflowExpressionTypesParallelExpression}

@@ -63,3 +63,3 @@ */

if (data.hasOwnProperty('parallelCompletionSettings')) {
obj['parallelCompletionSettings'] = RecordStringBoolean.constructFromObject(data['parallelCompletionSettings']);
obj['parallelCompletionSettings'] = ApiClient.convertToType(data['parallelCompletionSettings'], {'String': 'Boolean'});
}

@@ -74,3 +74,3 @@ if (data.hasOwnProperty('type')) {

/**
* @member {module:model/RecordStringBoolean} parallelCompletionSettings
* @member {Object.<String, Boolean>} parallelCompletionSettings
*/

@@ -77,0 +77,0 @@ exports.prototype['parallelCompletionSettings'] = undefined;

@@ -39,5 +39,5 @@ /**

* @class
* @param newText {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param oldText {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param text {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param newText {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param oldText {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param text {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param type {module:model/DSWorkflowTransformationExpressionTypesReplaceExpression}

@@ -79,3 +79,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} newText

@@ -85,3 +85,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} oldText

@@ -91,3 +91,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} text

@@ -94,0 +94,0 @@ */

@@ -39,4 +39,4 @@ /**

* @class
* @param startIndex {Object} Object stands for a number or a Variable. This object should be any of the following object models or types: [number, #/definitions/DSWorkflowVariable]
* @param text {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param startIndex {Object} Reference of #/definitions/NumberOrVariable. Object stands for a number or a Variable. This object should be any of the following object models or types: [number, #/definitions/DSWorkflowVariable]
* @param text {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param type {module:model/DSWorkflowTransformationExpressionTypesSubstringExpression}

@@ -78,3 +78,3 @@ */

/**
* Object stands for a number or a Variable. This object should be any of the following object models or types: [number, #/definitions/DSWorkflowVariable]
* Reference of #/definitions/NumberOrVariable. Object stands for a number or a Variable. This object should be any of the following object models or types: [number, #/definitions/DSWorkflowVariable]
* @member {Object} length

@@ -84,3 +84,3 @@ */

/**
* Object stands for a number or a Variable. This object should be any of the following object models or types: [number, #/definitions/DSWorkflowVariable]
* Reference of #/definitions/NumberOrVariable. Object stands for a number or a Variable. This object should be any of the following object models or types: [number, #/definitions/DSWorkflowVariable]
* @member {Object} startIndex

@@ -90,3 +90,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} text

@@ -93,0 +93,0 @@ */

@@ -39,3 +39,3 @@ /**

* @class
* @param text {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param text {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param type {module:model/DSWorkflowTransformationExpressionTypesToLowerExpression}

@@ -71,3 +71,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} text

@@ -74,0 +74,0 @@ */

@@ -39,3 +39,3 @@ /**

* @class
* @param text {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param text {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param type {module:model/DSWorkflowTransformationExpressionTypesToUpperExpression}

@@ -71,3 +71,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} text

@@ -74,0 +74,0 @@ */

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSWorkflowTriggerTypes', 'model/DSWorkflowVariableRecord', 'model/EventTypes', 'model/HttpTypes'], factory);
define(['ApiClient', 'model/DSWorkflowTriggerTypes', 'model/EventTypes', 'model/HttpTypes'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSWorkflowTriggerTypes'), require('./DSWorkflowVariableRecord'), require('./EventTypes'), require('./HttpTypes'));
module.exports = factory(require('../ApiClient'), require('./DSWorkflowTriggerTypes'), require('./EventTypes'), require('./HttpTypes'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.DSWorkflowTrigger = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowTriggerTypes, root.Docusign.DSWorkflowVariableRecord, root.Docusign.EventTypes, root.Docusign.HttpTypes);
root.Docusign.DSWorkflowTrigger = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowTriggerTypes, root.Docusign.EventTypes, root.Docusign.HttpTypes);
}
}(this, function(ApiClient, DSWorkflowTriggerTypes, DSWorkflowVariableRecord, EventTypes, HttpTypes) {
}(this, function(ApiClient, DSWorkflowTriggerTypes, EventTypes, HttpTypes) {
'use strict';

@@ -44,5 +44,5 @@

* @param id {String}
* @param input {module:model/DSWorkflowVariableRecord}
* @param input {Object.<String, Object>} A DS Workflow variable record
* @param name {String}
* @param output {module:model/DSWorkflowVariableRecord}
* @param output {Object.<String, Object>} A DS Workflow variable record
* @param type {module:model/DSWorkflowTriggerTypes}

@@ -77,3 +77,3 @@ */

if (data.hasOwnProperty('input')) {
obj['input'] = DSWorkflowVariableRecord.constructFromObject(data['input']);
obj['input'] = ApiClient.convertToType(data['input'], {'String': Object});
}

@@ -84,3 +84,3 @@ if (data.hasOwnProperty('name')) {

if (data.hasOwnProperty('output')) {
obj['output'] = DSWorkflowVariableRecord.constructFromObject(data['output']);
obj['output'] = ApiClient.convertToType(data['output'], {'String': Object});
}

@@ -107,3 +107,4 @@ if (data.hasOwnProperty('type')) {

/**
* @member {module:model/DSWorkflowVariableRecord} input
* A DS Workflow variable record
* @member {Object.<String, Object>} input
*/

@@ -116,3 +117,4 @@ exports.prototype['input'] = undefined;

/**
* @member {module:model/DSWorkflowVariableRecord} output
* A DS Workflow variable record
* @member {Object.<String, Object>} output
*/

@@ -119,0 +121,0 @@ exports.prototype['output'] = undefined;

@@ -41,3 +41,3 @@ /**

* @param fileExtension {module:model/DSWorkflowDocGenDocOutputFormat}
* @param name {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param name {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param type {module:model/ESignDocumentTypesFromDSTemplate}

@@ -87,3 +87,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} name

@@ -90,0 +90,0 @@ */

@@ -39,5 +39,5 @@ /**

* @class
* @param documentFromPreviousStep {Object} DS Workflow Variables
* @param documentFromPreviousStep {Object} Reference of #/definitions/DSWorkflowVariable. DS Workflow Variables
* @param fileExtension {module:model/DSWorkflowDocGenDocOutputFormat}
* @param name {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param name {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param type {module:model/ESignDocumentTypesFromPreviousStep}

@@ -79,3 +79,3 @@ */

/**
* DS Workflow Variables
* Reference of #/definitions/DSWorkflowVariable. DS Workflow Variables
* @member {Object} documentFromPreviousStep

@@ -89,3 +89,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} name

@@ -92,0 +92,0 @@ */

@@ -39,7 +39,7 @@ /**

* @class
* @param email {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param note {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param email {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param note {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param routingOrder {String}
* @param tabs {module:model/ESignTabsRecord}
* @param userName {Object} Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @param userName {Object} Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
*/

@@ -83,3 +83,3 @@ var exports = function(email, note, routingOrder, tabs, userName) {

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} email

@@ -89,3 +89,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} note

@@ -103,3 +103,3 @@ */

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} userName

@@ -106,0 +106,0 @@ */

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/ESignLocalePolicy'], factory);
define(['ApiClient'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./ESignLocalePolicy'));
module.exports = factory(require('../ApiClient'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.ESignTabs = factory(root.Docusign.ApiClient, root.Docusign.ESignLocalePolicy);
root.Docusign.ESignTabs = factory(root.Docusign.ApiClient);
}
}(this, function(ApiClient, ESignLocalePolicy) {
}(this, function(ApiClient) {
'use strict';

@@ -85,3 +85,3 @@

if (data.hasOwnProperty('localePolicy')) {
obj['localePolicy'] = ESignLocalePolicy.constructFromObject(data['localePolicy']);
obj['localePolicy'] = ApiClient.convertToType(data['localePolicy'], {'String': Object});
}

@@ -176,3 +176,3 @@ if (data.hasOwnProperty('name')) {

/**
* @member {module:model/ESignLocalePolicy} localePolicy
* @member {Object.<String, Object>} localePolicy
*/

@@ -233,3 +233,3 @@ exports.prototype['localePolicy'] = undefined;

/**
* Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* Reference of #/definitions/StringOrVariableOrTransformation. Object stands for a String or a Variable or a Transformation. This object should be any of the following object models or types: [string, #/definitions/DSWorkflowVariable, #/definitions/DSWorkflowTransformationExpression]
* @member {Object} value

@@ -236,0 +236,0 @@ */

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/DSWorkflowParticipantRecord', 'model/DSWorkflowTrigger', 'model/DSWorkflowVariableRecord', 'model/VersionString'], factory);
define(['ApiClient', 'model/DSWorkflowTrigger', 'model/Participant'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./DSWorkflowParticipantRecord'), require('./DSWorkflowTrigger'), require('./DSWorkflowVariableRecord'), require('./VersionString'));
module.exports = factory(require('../ApiClient'), require('./DSWorkflowTrigger'), require('./Participant'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.WorkflowDefinition = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowParticipantRecord, root.Docusign.DSWorkflowTrigger, root.Docusign.DSWorkflowVariableRecord, root.Docusign.VersionString);
root.Docusign.WorkflowDefinition = factory(root.Docusign.ApiClient, root.Docusign.DSWorkflowTrigger, root.Docusign.Participant);
}
}(this, function(ApiClient, DSWorkflowParticipantRecord, DSWorkflowTrigger, DSWorkflowVariableRecord, VersionString) {
}(this, function(ApiClient, DSWorkflowTrigger, Participant) {
'use strict';

@@ -43,7 +43,7 @@

* @param accountId {String}
* @param documentVersion {module:model/VersionString}
* @param schemaVersion {module:model/VersionString}
* @param steps {Array.<Object>} A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param documentVersion {String}
* @param schemaVersion {String}
* @param steps {Array.<Object>} A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @param trigger {module:model/DSWorkflowTrigger}
* @param variables {module:model/DSWorkflowVariableRecord}
* @param variables {Object.<String, Object>} A DS Workflow variable record
* @param workflowDescription {String}

@@ -76,9 +76,9 @@ * @param workflowName {String}

if (data.hasOwnProperty('documentVersion')) {
obj['documentVersion'] = VersionString.constructFromObject(data['documentVersion']);
obj['documentVersion'] = ApiClient.convertToType(data['documentVersion'], 'String');
}
if (data.hasOwnProperty('participants')) {
obj['participants'] = DSWorkflowParticipantRecord.constructFromObject(data['participants']);
obj['participants'] = ApiClient.convertToType(data['participants'], {'String': Participant});
}
if (data.hasOwnProperty('schemaVersion')) {
obj['schemaVersion'] = VersionString.constructFromObject(data['schemaVersion']);
obj['schemaVersion'] = ApiClient.convertToType(data['schemaVersion'], 'String');
}

@@ -92,3 +92,3 @@ if (data.hasOwnProperty('steps')) {

if (data.hasOwnProperty('variables')) {
obj['variables'] = DSWorkflowVariableRecord.constructFromObject(data['variables']);
obj['variables'] = ApiClient.convertToType(data['variables'], {'String': Object});
}

@@ -115,15 +115,16 @@ if (data.hasOwnProperty('workflowDescription')) {

/**
* @member {module:model/VersionString} documentVersion
* @member {String} documentVersion
*/
exports.prototype['documentVersion'] = undefined;
/**
* @member {module:model/DSWorkflowParticipantRecord} participants
* A DS Workflow participant record
* @member {Object.<String, module:model/Participant>} participants
*/
exports.prototype['participants'] = undefined;
/**
* @member {module:model/VersionString} schemaVersion
* @member {String} schemaVersion
*/
exports.prototype['schemaVersion'] = undefined;
/**
* A list of DS Workflow Steps. Each element in the list should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* A list of #/definitions/DSWorkflowStep. Each element is: A DS Workflow Step. This object should be any of the following object models: [#/definitions/DSServiceStep, #/definitions/DSTransformationStep, #/definitions/DSDocGenStep, #/definitions/DSSignStep]
* @member {Array.<Object>} steps

@@ -137,3 +138,4 @@ */

/**
* @member {module:model/DSWorkflowVariableRecord} variables
* A DS Workflow variable record
* @member {Object.<String, Object>} variables
*/

@@ -140,0 +142,0 @@ exports.prototype['variables'] = undefined;

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/AowUUID', 'model/LastDeployedId', 'model/WorkflowMetadataStatus'], factory);
define(['ApiClient', 'model/WorkflowMetadataStatus'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./AowUUID'), require('./LastDeployedId'), require('./WorkflowMetadataStatus'));
module.exports = factory(require('../ApiClient'), require('./WorkflowMetadataStatus'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.WorkflowDefinitionMetadata = factory(root.Docusign.ApiClient, root.Docusign.AowUUID, root.Docusign.LastDeployedId, root.Docusign.WorkflowMetadataStatus);
root.Docusign.WorkflowDefinitionMetadata = factory(root.Docusign.ApiClient, root.Docusign.WorkflowMetadataStatus);
}
}(this, function(ApiClient, AowUUID, LastDeployedId, WorkflowMetadataStatus) {
}(this, function(ApiClient, WorkflowMetadataStatus) {
'use strict';

@@ -42,3 +42,3 @@

* @class
* @param id {module:model/AowUUID}
* @param id {String}
*/

@@ -69,3 +69,3 @@ var exports = function(id) {

if (data.hasOwnProperty('id')) {
obj['id'] = AowUUID.constructFromObject(data['id']);
obj['id'] = ApiClient.convertToType(data['id'], 'String');
}

@@ -76,3 +76,3 @@ if (data.hasOwnProperty('isDraft')) {

if (data.hasOwnProperty('lastDeployedId')) {
obj['lastDeployedId'] = LastDeployedId.constructFromObject(data['lastDeployedId']);
obj['lastDeployedId'] = ApiClient.convertToType(data['lastDeployedId'], 'String');
}

@@ -108,3 +108,3 @@ if (data.hasOwnProperty('lastDeployedVersion')) {

/**
* @member {module:model/AowUUID} id
* @member {String} id
*/

@@ -117,3 +117,3 @@ exports.prototype['id'] = undefined;

/**
* @member {module:model/LastDeployedId} lastDeployedId
* @member {String} lastDeployedId
*/

@@ -120,0 +120,0 @@ exports.prototype['lastDeployedId'] = undefined;

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/AowUUID', 'model/LastDeployedId', 'model/ValidationErrors', 'model/WorkflowDefinition', 'model/WorkflowMetadataStatus'], factory);
define(['ApiClient', 'model/ValidationErrors', 'model/WorkflowDefinition', 'model/WorkflowMetadataStatus'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./AowUUID'), require('./LastDeployedId'), require('./ValidationErrors'), require('./WorkflowDefinition'), require('./WorkflowMetadataStatus'));
module.exports = factory(require('../ApiClient'), require('./ValidationErrors'), require('./WorkflowDefinition'), require('./WorkflowMetadataStatus'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.WorkflowDefinitionWithId = factory(root.Docusign.ApiClient, root.Docusign.AowUUID, root.Docusign.LastDeployedId, root.Docusign.ValidationErrors, root.Docusign.WorkflowDefinition, root.Docusign.WorkflowMetadataStatus);
root.Docusign.WorkflowDefinitionWithId = factory(root.Docusign.ApiClient, root.Docusign.ValidationErrors, root.Docusign.WorkflowDefinition, root.Docusign.WorkflowMetadataStatus);
}
}(this, function(ApiClient, AowUUID, LastDeployedId, ValidationErrors, WorkflowDefinition, WorkflowMetadataStatus) {
}(this, function(ApiClient, ValidationErrors, WorkflowDefinition, WorkflowMetadataStatus) {
'use strict';

@@ -42,3 +42,3 @@

* @class
* @param id {module:model/AowUUID}
* @param id {String}
*/

@@ -69,3 +69,3 @@ var exports = function(id) {

if (data.hasOwnProperty('id')) {
obj['id'] = AowUUID.constructFromObject(data['id']);
obj['id'] = ApiClient.convertToType(data['id'], 'String');
}

@@ -76,3 +76,3 @@ if (data.hasOwnProperty('isDraft')) {

if (data.hasOwnProperty('lastDeployedId')) {
obj['lastDeployedId'] = LastDeployedId.constructFromObject(data['lastDeployedId']);
obj['lastDeployedId'] = ApiClient.convertToType(data['lastDeployedId'], 'String');
}

@@ -114,3 +114,3 @@ if (data.hasOwnProperty('lastDeployedVersion')) {

/**
* @member {module:model/AowUUID} id
* @member {String} id
*/

@@ -123,3 +123,3 @@ exports.prototype['id'] = undefined;

/**
* @member {module:model/LastDeployedId} lastDeployedId
* @member {String} lastDeployedId
*/

@@ -126,0 +126,0 @@ exports.prototype['lastDeployedId'] = undefined;

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/AccountId', 'model/ProgressInstance', 'model/StartedByInstance', 'model/TemplateId', 'model/WorkflowCreatorId', 'model/WorkflowDateTime', 'model/WorkflowInstanceMap', 'model/WorkflowInstanceState'], factory);
define(['ApiClient', 'model/ProgressInstance', 'model/StartedByInstance', 'model/WorkflowInstanceState'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./AccountId'), require('./ProgressInstance'), require('./StartedByInstance'), require('./TemplateId'), require('./WorkflowCreatorId'), require('./WorkflowDateTime'), require('./WorkflowInstanceMap'), require('./WorkflowInstanceState'));
module.exports = factory(require('../ApiClient'), require('./ProgressInstance'), require('./StartedByInstance'), require('./WorkflowInstanceState'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.WorkflowInstance = factory(root.Docusign.ApiClient, root.Docusign.AccountId, root.Docusign.ProgressInstance, root.Docusign.StartedByInstance, root.Docusign.TemplateId, root.Docusign.WorkflowCreatorId, root.Docusign.WorkflowDateTime, root.Docusign.WorkflowInstanceMap, root.Docusign.WorkflowInstanceState);
root.Docusign.WorkflowInstance = factory(root.Docusign.ApiClient, root.Docusign.ProgressInstance, root.Docusign.StartedByInstance, root.Docusign.WorkflowInstanceState);
}
}(this, function(ApiClient, AccountId, ProgressInstance, StartedByInstance, TemplateId, WorkflowCreatorId, WorkflowDateTime, WorkflowInstanceMap, WorkflowInstanceState) {
}(this, function(ApiClient, ProgressInstance, StartedByInstance, WorkflowInstanceState) {
'use strict';

@@ -42,7 +42,7 @@

* @class
* @param creatorId {module:model/WorkflowCreatorId}
* @param creatorId {String}
* @param dacId {String}
* @param instanceState {module:model/WorkflowInstanceState}
* @param templateId {module:model/TemplateId}
* @param users {module:model/WorkflowInstanceMap} Contains the list of Users and Steps mapping
* @param templateId {String}
* @param users {Object.<String, String>}
*/

@@ -67,6 +67,6 @@ var exports = function(creatorId, dacId, instanceState, templateId, users) {

if (data.hasOwnProperty('accountId')) {
obj['accountId'] = AccountId.constructFromObject(data['accountId']);
obj['accountId'] = ApiClient.convertToType(data['accountId'], 'String');
}
if (data.hasOwnProperty('creatorId')) {
obj['creatorId'] = WorkflowCreatorId.constructFromObject(data['creatorId']);
obj['creatorId'] = ApiClient.convertToType(data['creatorId'], 'String');
}

@@ -77,3 +77,3 @@ if (data.hasOwnProperty('dacId')) {

if (data.hasOwnProperty('endDate')) {
obj['endDate'] = WorkflowDateTime.constructFromObject(data['endDate']);
obj['endDate'] = ApiClient.convertToType(data['endDate'], 'String');
}

@@ -90,3 +90,3 @@ if (data.hasOwnProperty('instanceName')) {

if (data.hasOwnProperty('startDate')) {
obj['startDate'] = WorkflowDateTime.constructFromObject(data['startDate']);
obj['startDate'] = ApiClient.convertToType(data['startDate'], 'String');
}

@@ -97,6 +97,6 @@ if (data.hasOwnProperty('startedBy')) {

if (data.hasOwnProperty('templateId')) {
obj['templateId'] = TemplateId.constructFromObject(data['templateId']);
obj['templateId'] = ApiClient.convertToType(data['templateId'], 'String');
}
if (data.hasOwnProperty('users')) {
obj['users'] = WorkflowInstanceMap.constructFromObject(data['users']);
obj['users'] = ApiClient.convertToType(data['users'], {'String': 'String'});
}

@@ -108,7 +108,7 @@ }

/**
* @member {module:model/AccountId} accountId
* @member {String} accountId
*/
exports.prototype['accountId'] = undefined;
/**
* @member {module:model/WorkflowCreatorId} creatorId
* @member {String} creatorId
*/

@@ -122,3 +122,3 @@ exports.prototype['creatorId'] = undefined;

* Track the End time of the Workflow Instance
* @member {module:model/WorkflowDateTime} endDate
* @member {String} endDate
*/

@@ -141,3 +141,3 @@ exports.prototype['endDate'] = undefined;

* Track the Start time of the Workflow Instance
* @member {module:model/WorkflowDateTime} startDate
* @member {String} startDate
*/

@@ -150,8 +150,7 @@ exports.prototype['startDate'] = undefined;

/**
* @member {module:model/TemplateId} templateId
* @member {String} templateId
*/
exports.prototype['templateId'] = undefined;
/**
* Contains the list of Users and Steps mapping
* @member {module:model/WorkflowInstanceMap} users
* @member {Object.<String, String>} users
*/

@@ -158,0 +157,0 @@ exports.prototype['users'] = undefined;

@@ -37,10 +37,15 @@ /**

* Constructs a new <code>WorkflowInstancesList</code>.
* Returns a list of workflow instances (0 or more).
* A list of workflow instances (0 or more).
* @alias module:model/WorkflowInstancesList
* @class
* @extends Array
*/
var exports = function() {
var _this = this;
_this = new Array();
Object.setPrototypeOf(_this, exports);
return _this;
};

@@ -58,9 +63,4 @@

obj = obj || new exports();
ApiClient.constructFromObject(data, obj, 'WorkflowInstance');
if (data.hasOwnProperty('instances')) {
obj['instances'] = ApiClient.convertToType(data['instances'], [WorkflowInstance]);
}
if (data.hasOwnProperty('resultSize')) {
obj['resultSize'] = ApiClient.convertToType(data['resultSize'], 'Number');
}
}

@@ -70,12 +70,2 @@ return obj;

/**
* Array of Workflow Instances
* @member {Array.<module:model/WorkflowInstance>} instances
*/
exports.prototype['instances'] = undefined;
/**
* Total number of instances returned
* @member {Number} resultSize
*/
exports.prototype['resultSize'] = undefined;

@@ -82,0 +72,0 @@

@@ -44,3 +44,23 @@ /**

*/
"inactive": "inactive" };
"inactive": "inactive",
/**
* value: "publishing"
* @const
*/
"publishing": "publishing",
/**
* value: "unpublishing"
* @const
*/
"unpublishing": "unpublishing",
/**
* value: "archived"
* @const
*/
"archived": "archived",
/**
* value: "archiving"
* @const
*/
"archiving": "archiving" };

@@ -47,0 +67,0 @@ /**

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/WorkflowDateTime', 'model/WorkflowStepErrorError'], factory);
define(['ApiClient', 'model/WorkflowStepErrorError'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./WorkflowDateTime'), require('./WorkflowStepErrorError'));
module.exports = factory(require('../ApiClient'), require('./WorkflowStepErrorError'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.WorkflowStepError = factory(root.Docusign.ApiClient, root.Docusign.WorkflowDateTime, root.Docusign.WorkflowStepErrorError);
root.Docusign.WorkflowStepError = factory(root.Docusign.ApiClient, root.Docusign.WorkflowStepErrorError);
}
}(this, function(ApiClient, WorkflowDateTime, WorkflowStepErrorError) {
}(this, function(ApiClient, WorkflowStepErrorError) {
'use strict';

@@ -64,3 +64,3 @@

if (data.hasOwnProperty('endTime')) {
obj['endTime'] = WorkflowDateTime.constructFromObject(data['endTime']);
obj['endTime'] = ApiClient.convertToType(data['endTime'], 'String');
}

@@ -74,3 +74,3 @@ if (data.hasOwnProperty('error')) {

if (data.hasOwnProperty('startTime')) {
obj['startTime'] = WorkflowDateTime.constructFromObject(data['startTime']);
obj['startTime'] = ApiClient.convertToType(data['startTime'], 'String');
}

@@ -88,3 +88,3 @@ }

* Track the End time of the error retry/processed
* @member {module:model/WorkflowDateTime} endTime
* @member {String} endTime
*/

@@ -103,3 +103,3 @@ exports.prototype['endTime'] = undefined;

* Track Start time of the error occurred
* @member {module:model/WorkflowDateTime} startTime
* @member {String} startTime
*/

@@ -106,0 +106,0 @@ exports.prototype['startTime'] = undefined;

@@ -15,6 +15,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/AccountId', 'model/AowUUID', 'model/DsStepId', 'model/UserId', 'model/WorkflowDateTime', 'model/WorkflowStepError', 'model/WorkflowStepHistoryState'], factory);
define(['ApiClient', 'model/WorkflowStepError', 'model/WorkflowStepHistoryState'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('./AccountId'), require('./AowUUID'), require('./DsStepId'), require('./UserId'), require('./WorkflowDateTime'), require('./WorkflowStepError'), require('./WorkflowStepHistoryState'));
module.exports = factory(require('../ApiClient'), require('./WorkflowStepError'), require('./WorkflowStepHistoryState'));
} else {

@@ -25,5 +25,5 @@ // Browser globals (root is window)

}
root.Docusign.WorkflowStepHistory = factory(root.Docusign.ApiClient, root.Docusign.AccountId, root.Docusign.AowUUID, root.Docusign.DsStepId, root.Docusign.UserId, root.Docusign.WorkflowDateTime, root.Docusign.WorkflowStepError, root.Docusign.WorkflowStepHistoryState);
root.Docusign.WorkflowStepHistory = factory(root.Docusign.ApiClient, root.Docusign.WorkflowStepError, root.Docusign.WorkflowStepHistoryState);
}
}(this, function(ApiClient, AccountId, AowUUID, DsStepId, UserId, WorkflowDateTime, WorkflowStepError, WorkflowStepHistoryState) {
}(this, function(ApiClient, WorkflowStepError, WorkflowStepHistoryState) {
'use strict';

@@ -45,3 +45,3 @@

* @param stepState {module:model/WorkflowStepHistoryState}
* @param userId {module:model/UserId}
* @param userId {String}
*/

@@ -66,3 +66,3 @@ var exports = function(dacId, stepName, stepState, userId) {

if (data.hasOwnProperty('accountId')) {
obj['accountId'] = AccountId.constructFromObject(data['accountId']);
obj['accountId'] = ApiClient.convertToType(data['accountId'], 'String');
}

@@ -73,6 +73,6 @@ if (data.hasOwnProperty('dacId')) {

if (data.hasOwnProperty('dsStepId')) {
obj['dsStepId'] = DsStepId.constructFromObject(data['dsStepId']);
obj['dsStepId'] = ApiClient.convertToType(data['dsStepId'], 'String');
}
if (data.hasOwnProperty('endDate')) {
obj['endDate'] = WorkflowDateTime.constructFromObject(data['endDate']);
obj['endDate'] = ApiClient.convertToType(data['endDate'], 'String');
}

@@ -86,6 +86,6 @@ if (data.hasOwnProperty('error')) {

if (data.hasOwnProperty('startDate')) {
obj['startDate'] = WorkflowDateTime.constructFromObject(data['startDate']);
obj['startDate'] = ApiClient.convertToType(data['startDate'], 'String');
}
if (data.hasOwnProperty('stepId')) {
obj['stepId'] = AowUUID.constructFromObject(data['stepId']);
obj['stepId'] = ApiClient.convertToType(data['stepId'], 'String');
}

@@ -99,3 +99,3 @@ if (data.hasOwnProperty('stepName')) {

if (data.hasOwnProperty('userId')) {
obj['userId'] = UserId.constructFromObject(data['userId']);
obj['userId'] = ApiClient.convertToType(data['userId'], 'String');
}

@@ -107,3 +107,3 @@ }

/**
* @member {module:model/AccountId} accountId
* @member {String} accountId
*/

@@ -116,3 +116,3 @@ exports.prototype['accountId'] = undefined;

/**
* @member {module:model/DsStepId} dsStepId
* @member {String} dsStepId
*/

@@ -122,3 +122,3 @@ exports.prototype['dsStepId'] = undefined;

* Track the End time of the Workflow Step
* @member {module:model/WorkflowDateTime} endDate
* @member {String} endDate
*/

@@ -136,3 +136,3 @@ exports.prototype['endDate'] = undefined;

* Track the Start time of the Workflow Step
* @member {module:model/WorkflowDateTime} startDate
* @member {String} startDate
*/

@@ -142,3 +142,3 @@ exports.prototype['startDate'] = undefined;

* The Step Id of the workflow step in the workflow instance
* @member {module:model/AowUUID} stepId
* @member {String} stepId
*/

@@ -156,3 +156,3 @@ exports.prototype['stepId'] = undefined;

/**
* @member {module:model/UserId} userId
* @member {String} userId
*/

@@ -159,0 +159,0 @@ exports.prototype['userId'] = undefined;

@@ -37,10 +37,15 @@ /**

* Constructs a new <code>WorkflowStepHistoryList</code>.
* Returns the history of the workflow instance steps.
* Returns Array of Workflow Step History.
* @alias module:model/WorkflowStepHistoryList
* @class
* @extends Array
*/
var exports = function() {
var _this = this;
_this = new Array();
Object.setPrototypeOf(_this, exports);
return _this;
};

@@ -58,9 +63,4 @@

obj = obj || new exports();
ApiClient.constructFromObject(data, obj, 'WorkflowStepHistory');
if (data.hasOwnProperty('resultSize')) {
obj['resultSize'] = ApiClient.convertToType(data['resultSize'], 'Number');
}
if (data.hasOwnProperty('stepHistory')) {
obj['stepHistory'] = ApiClient.convertToType(data['stepHistory'], [WorkflowStepHistory]);
}
}

@@ -70,12 +70,2 @@ return obj;

/**
* Total number of workflow step history returned
* @member {Number} resultSize
*/
exports.prototype['resultSize'] = undefined;
/**
* Array of Workflow Step History
* @member {Array.<module:model/WorkflowStepHistory>} stepHistory
*/
exports.prototype['stepHistory'] = undefined;

@@ -82,0 +72,0 @@

const PRODUCTION_BASE_PATH = 'https://www.docusign.net/restapi';
const DEMO_BASE_PATH = 'https://demo.services.docusign.net/aow-manage/v1.0';
const DEMO_BASE_PATH = 'https://demo.services.docusign.net';
const STAGE_BASE_PATH = 'https://stage.docusign.net/restapi';

@@ -4,0 +4,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc