diff --git a/README.md b/README.md index 611fc4f7..403adad9 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ JavaScript client library for Asana. - API version: 1.0 -- Package version: 2.0.4 +- Package version: 2.0.5 ## Installation @@ -20,7 +20,7 @@ npm install asana --save Include the latest release directly from GitHub: ```html - + ``` Example usage: diff --git a/docs/TasksApi.md b/docs/TasksApi.md index cc25084b..04780254 100644 --- a/docs/TasksApi.md +++ b/docs/TasksApi.md @@ -1323,6 +1323,8 @@ let opts = { 'sort_ascending': false, // Boolean | Default `false` 'opt_fields': ["actual_time_minutes","approval_status","assignee","assignee.name","assignee_section","assignee_section.name","assignee_status","completed","completed_at","completed_by","completed_by.name","created_at","created_by","custom_fields","custom_fields.asana_created_field","custom_fields.created_by","custom_fields.created_by.name","custom_fields.currency_code","custom_fields.custom_label","custom_fields.custom_label_position","custom_fields.date_value","custom_fields.date_value.date","custom_fields.date_value.date_time","custom_fields.description","custom_fields.display_value","custom_fields.enabled","custom_fields.enum_options","custom_fields.enum_options.color","custom_fields.enum_options.enabled","custom_fields.enum_options.name","custom_fields.enum_value","custom_fields.enum_value.color","custom_fields.enum_value.enabled","custom_fields.enum_value.name","custom_fields.format","custom_fields.has_notifications_enabled","custom_fields.is_formula_field","custom_fields.is_global_to_workspace","custom_fields.is_value_read_only","custom_fields.multi_enum_values","custom_fields.multi_enum_values.color","custom_fields.multi_enum_values.enabled","custom_fields.multi_enum_values.name","custom_fields.name","custom_fields.number_value","custom_fields.people_value","custom_fields.people_value.name","custom_fields.precision","custom_fields.resource_subtype","custom_fields.text_value","custom_fields.type","dependencies","dependents","due_at","due_on","external","external.data","followers","followers.name","hearted","hearts","hearts.user","hearts.user.name","html_notes","is_rendered_as_separator","liked","likes","likes.user","likes.user.name","memberships","memberships.project","memberships.project.name","memberships.section","memberships.section.name","modified_at","name","notes","num_hearts","num_likes","num_subtasks","parent","parent.created_by","parent.name","parent.resource_subtype","permalink_url","projects","projects.name","resource_subtype","start_at","start_on","tags","tags.name","workspace","workspace.name"] // [String] | This endpoint returns a compact resource, which excludes some properties by default. To include those optional properties, set this query parameter to a comma-separated list of the properties you wish to include. }; +// Custom fields query +opts['custom_fields_123_value'] = '456'; // The format of this query parameter should be custom_fields__value. NOTE: searching for multiple exact matches of a custom field, searching for multi-enum custom field apiInstance.searchTasksForWorkspace(workspace_gid, opts, (error, data, response) => { if (error) { console.error(error); diff --git a/docs/TasksApi.yaml b/docs/TasksApi.yaml index b6e73b77..e16a68ec 100644 --- a/docs/TasksApi.yaml +++ b/docs/TasksApi.yaml @@ -542,6 +542,8 @@ TasksApi: 'sort_ascending': false, // Boolean | Default `false` 'opt_fields': ["actual_time_minutes","approval_status","assignee","assignee.name","assignee_section","assignee_section.name","assignee_status","completed","completed_at","completed_by","completed_by.name","created_at","created_by","custom_fields","custom_fields.asana_created_field","custom_fields.created_by","custom_fields.created_by.name","custom_fields.currency_code","custom_fields.custom_label","custom_fields.custom_label_position","custom_fields.date_value","custom_fields.date_value.date","custom_fields.date_value.date_time","custom_fields.description","custom_fields.display_value","custom_fields.enabled","custom_fields.enum_options","custom_fields.enum_options.color","custom_fields.enum_options.enabled","custom_fields.enum_options.name","custom_fields.enum_value","custom_fields.enum_value.color","custom_fields.enum_value.enabled","custom_fields.enum_value.name","custom_fields.format","custom_fields.has_notifications_enabled","custom_fields.is_formula_field","custom_fields.is_global_to_workspace","custom_fields.is_value_read_only","custom_fields.multi_enum_values","custom_fields.multi_enum_values.color","custom_fields.multi_enum_values.enabled","custom_fields.multi_enum_values.name","custom_fields.name","custom_fields.number_value","custom_fields.people_value","custom_fields.people_value.name","custom_fields.precision","custom_fields.resource_subtype","custom_fields.text_value","custom_fields.type","dependencies","dependents","due_at","due_on","external","external.data","followers","followers.name","hearted","hearts","hearts.user","hearts.user.name","html_notes","is_rendered_as_separator","liked","likes","likes.user","likes.user.name","memberships","memberships.project","memberships.project.name","memberships.section","memberships.section.name","modified_at","name","notes","num_hearts","num_likes","num_subtasks","parent","parent.created_by","parent.name","parent.resource_subtype","permalink_url","projects","projects.name","resource_subtype","start_at","start_on","tags","tags.name","workspace","workspace.name"] // [String] | This endpoint returns a compact resource, which excludes some properties by default. To include those optional properties, set this query parameter to a comma-separated list of the properties you wish to include. }; + // Custom fields query + opts['custom_fields_123_value'] = '456'; // The format of this query parameter should be custom_fields__value. NOTE: searching for multiple exact matches of a custom field, searching for multi-enum custom field apiInstance.searchTasksForWorkspace(workspace_gid, opts, (error, data, response) => { if (error) { console.error(error); diff --git a/package.json b/package.json index 83f06b4e..7f6cabf5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "asana", - "version": "2.0.4", + "version": "2.0.5", "description": "This_is_the_interface_for_interacting_with_the__Asana_Platform_httpsdevelopers_asana_com__Our_API_reference_is_generated_from_our__OpenAPI_spec__httpsraw_githubusercontent_comAsanaopenapimasterdefsasana_oas_yaml_", "license": "Apache 2.0", "main": "src/index.js", diff --git a/src/ApiClient.js b/src/ApiClient.js index e0f01293..5ca803e1 100644 --- a/src/ApiClient.js +++ b/src/ApiClient.js @@ -17,7 +17,7 @@ import querystring from "querystring"; /** * @module ApiClient -* @version 2.0.4 +* @version 2.0.5 */ /** @@ -401,7 +401,7 @@ export class ApiClient { // set header parameters headerParams['X-Asana-Client-Lib'] = querystring.stringify( { - 'version': "2.0.4", + 'version': "2.0.5", 'language': 'NodeJS', 'language_version': process.version, 'os': process.platform diff --git a/src/api/AttachmentsApi.js b/src/api/AttachmentsApi.js index 4aaddd28..ef2aeb34 100644 --- a/src/api/AttachmentsApi.js +++ b/src/api/AttachmentsApi.js @@ -21,7 +21,7 @@ import {ErrorResponse} from '../model/ErrorResponse'; /** * Attachments service. * @module api/AttachmentsApi -* @version 2.0.4 +* @version 2.0.5 */ export class AttachmentsApi { @@ -60,32 +60,32 @@ export class AttachmentsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createAttachmentForObject(opts, callback) { - opts = opts || {}; - let postBody = null; - - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - 'resource_subtype': opts['resource_subtype'],'file': opts['file'],'parent': opts['parent'],'url': opts['url'],'name': opts['name'],'connect_to_app': opts['connect_to_app'] - }; - - let authNames = ['oauth2']; - let contentTypes = ['multipart/form-data']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = AttachmentResponseData; - - return this.apiClient.callApi( - '/attachments', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + 'resource_subtype': opts['resource_subtype'],'file': opts['file'],'parent': opts['parent'],'url': opts['url'],'name': opts['name'],'connect_to_app': opts['connect_to_app'] + }; + + let authNames = ['oauth2']; + let contentTypes = ['multipart/form-data']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = AttachmentResponseData; + + return this.apiClient.callApi( + '/attachments', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteAttachment operation. @@ -103,36 +103,36 @@ export class AttachmentsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteAttachment(attachment_gid, callback) { - - let postBody = null; - // verify the required parameter 'attachment_gid' is set - if (attachment_gid === undefined || attachment_gid === null) { - throw new Error("Missing the required parameter 'attachment_gid' when calling deleteAttachment"); - } - - let pathParams = { - 'attachment_gid': attachment_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/attachments/{attachment_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'attachment_gid' is set + if (attachment_gid === undefined || attachment_gid === null) { + throw new Error("Missing the required parameter 'attachment_gid' when calling deleteAttachment"); + } + + let pathParams = { + 'attachment_gid': attachment_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/attachments/{attachment_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getAttachment operation. @@ -152,36 +152,36 @@ export class AttachmentsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getAttachment(attachment_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'attachment_gid' is set - if (attachment_gid === undefined || attachment_gid === null) { - throw new Error("Missing the required parameter 'attachment_gid' when calling getAttachment"); - } - - let pathParams = { - 'attachment_gid': attachment_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = AttachmentResponseData; - - return this.apiClient.callApi( - '/attachments/{attachment_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'attachment_gid' is set + if (attachment_gid === undefined || attachment_gid === null) { + throw new Error("Missing the required parameter 'attachment_gid' when calling getAttachment"); + } + + let pathParams = { + 'attachment_gid': attachment_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = AttachmentResponseData; + + return this.apiClient.callApi( + '/attachments/{attachment_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getAttachmentsForObject operation. @@ -203,36 +203,36 @@ export class AttachmentsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getAttachmentsForObject(parent, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'parent' is set - if (parent === undefined || parent === null) { - throw new Error("Missing the required parameter 'parent' when calling getAttachmentsForObject"); - } - - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'parent': parent,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = AttachmentResponseArray; - - return this.apiClient.callApi( - '/attachments', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'parent' is set + if (parent === undefined || parent === null) { + throw new Error("Missing the required parameter 'parent' when calling getAttachmentsForObject"); + } + + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'parent': parent,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = AttachmentResponseArray; + + return this.apiClient.callApi( + '/attachments', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/AuditLogAPIApi.js b/src/api/AuditLogAPIApi.js index c16cd226..da34d376 100644 --- a/src/api/AuditLogAPIApi.js +++ b/src/api/AuditLogAPIApi.js @@ -19,7 +19,7 @@ import {ErrorResponse} from '../model/ErrorResponse'; /** * AuditLogAPI service. * @module api/AuditLogAPIApi -* @version 2.0.4 +* @version 2.0.5 */ export class AuditLogAPIApi { @@ -60,36 +60,36 @@ export class AuditLogAPIApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getAuditLogEvents(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling getAuditLogEvents"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling getAuditLogEvents"); + } - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'start_at': opts['start_at'],'end_at': opts['end_at'],'event_type': opts['event_type'],'actor_type': opts['actor_type'],'actor_gid': opts['actor_gid'],'resource_gid': opts['resource_gid'],'limit': opts['limit'],'offset': opts['offset'] - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'start_at': opts['start_at'],'end_at': opts['end_at'],'event_type': opts['event_type'],'actor_type': opts['actor_type'],'actor_gid': opts['actor_gid'],'resource_gid': opts['resource_gid'],'limit': opts['limit'],'offset': opts['offset'] + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = AuditLogEventArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = AuditLogEventArray; - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/audit_log_events', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/audit_log_events', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/BatchAPIApi.js b/src/api/BatchAPIApi.js index b87fcf3d..849b9c0f 100644 --- a/src/api/BatchAPIApi.js +++ b/src/api/BatchAPIApi.js @@ -20,7 +20,7 @@ import {ErrorResponse} from '../model/ErrorResponse'; /** * BatchAPI service. * @module api/BatchAPIApi -* @version 2.0.4 +* @version 2.0.5 */ export class BatchAPIApi { @@ -54,36 +54,36 @@ export class BatchAPIApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createBatchRequest(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createBatchRequest"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createBatchRequest"); + } - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = BatchResponseArray; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = BatchResponseArray; - return this.apiClient.callApi( - '/batch', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/batch', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/CustomFieldSettingsApi.js b/src/api/CustomFieldSettingsApi.js index 40fd8498..9b5e9192 100644 --- a/src/api/CustomFieldSettingsApi.js +++ b/src/api/CustomFieldSettingsApi.js @@ -19,7 +19,7 @@ import {ErrorResponse} from '../model/ErrorResponse'; /** * CustomFieldSettings service. * @module api/CustomFieldSettingsApi -* @version 2.0.4 +* @version 2.0.5 */ export class CustomFieldSettingsApi { @@ -55,36 +55,36 @@ export class CustomFieldSettingsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getCustomFieldSettingsForPortfolio(portfolio_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling getCustomFieldSettingsForPortfolio"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling getCustomFieldSettingsForPortfolio"); + } - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = CustomFieldSettingResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = CustomFieldSettingResponseArray; - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/custom_field_settings', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/custom_field_settings', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getCustomFieldSettingsForProject operation. @@ -106,36 +106,36 @@ export class CustomFieldSettingsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getCustomFieldSettingsForProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling getCustomFieldSettingsForProject"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling getCustomFieldSettingsForProject"); + } - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = CustomFieldSettingResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = CustomFieldSettingResponseArray; - return this.apiClient.callApi( - '/projects/{project_gid}/custom_field_settings', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/projects/{project_gid}/custom_field_settings', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/CustomFieldsApi.js b/src/api/CustomFieldsApi.js index 5bdf6660..92d8b0f7 100644 --- a/src/api/CustomFieldsApi.js +++ b/src/api/CustomFieldsApi.js @@ -27,7 +27,7 @@ import {ErrorResponse} from '../model/ErrorResponse'; /** * CustomFields service. * @module api/CustomFieldsApi -* @version 2.0.4 +* @version 2.0.5 */ export class CustomFieldsApi { @@ -61,36 +61,36 @@ export class CustomFieldsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createCustomField(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createCustomField"); - } - - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = CustomFieldResponseData; - - return this.apiClient.callApi( - '/custom_fields', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createCustomField"); + } + + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = CustomFieldResponseData; + + return this.apiClient.callApi( + '/custom_fields', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createEnumOptionForCustomField operation. @@ -111,36 +111,36 @@ export class CustomFieldsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createEnumOptionForCustomField(custom_field_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'custom_field_gid' is set - if (custom_field_gid === undefined || custom_field_gid === null) { - throw new Error("Missing the required parameter 'custom_field_gid' when calling createEnumOptionForCustomField"); - } - - let pathParams = { - 'custom_field_gid': custom_field_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EnumOptionData; - - return this.apiClient.callApi( - '/custom_fields/{custom_field_gid}/enum_options', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'custom_field_gid' is set + if (custom_field_gid === undefined || custom_field_gid === null) { + throw new Error("Missing the required parameter 'custom_field_gid' when calling createEnumOptionForCustomField"); + } + + let pathParams = { + 'custom_field_gid': custom_field_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EnumOptionData; + + return this.apiClient.callApi( + '/custom_fields/{custom_field_gid}/enum_options', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteCustomField operation. @@ -158,36 +158,36 @@ export class CustomFieldsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteCustomField(custom_field_gid, callback) { - - let postBody = null; - // verify the required parameter 'custom_field_gid' is set - if (custom_field_gid === undefined || custom_field_gid === null) { - throw new Error("Missing the required parameter 'custom_field_gid' when calling deleteCustomField"); - } - - let pathParams = { - 'custom_field_gid': custom_field_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/custom_fields/{custom_field_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'custom_field_gid' is set + if (custom_field_gid === undefined || custom_field_gid === null) { + throw new Error("Missing the required parameter 'custom_field_gid' when calling deleteCustomField"); + } + + let pathParams = { + 'custom_field_gid': custom_field_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/custom_fields/{custom_field_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getCustomField operation. @@ -207,36 +207,36 @@ export class CustomFieldsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getCustomField(custom_field_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'custom_field_gid' is set - if (custom_field_gid === undefined || custom_field_gid === null) { - throw new Error("Missing the required parameter 'custom_field_gid' when calling getCustomField"); - } - - let pathParams = { - 'custom_field_gid': custom_field_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = CustomFieldResponseData; - - return this.apiClient.callApi( - '/custom_fields/{custom_field_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'custom_field_gid' is set + if (custom_field_gid === undefined || custom_field_gid === null) { + throw new Error("Missing the required parameter 'custom_field_gid' when calling getCustomField"); + } + + let pathParams = { + 'custom_field_gid': custom_field_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = CustomFieldResponseData; + + return this.apiClient.callApi( + '/custom_fields/{custom_field_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getCustomFieldsForWorkspace operation. @@ -258,36 +258,36 @@ export class CustomFieldsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getCustomFieldsForWorkspace(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling getCustomFieldsForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = CustomFieldResponseArray; - - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/custom_fields', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling getCustomFieldsForWorkspace"); + } + + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = CustomFieldResponseArray; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/custom_fields', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the insertEnumOptionForCustomField operation. @@ -308,36 +308,36 @@ export class CustomFieldsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ insertEnumOptionForCustomField(custom_field_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'custom_field_gid' is set - if (custom_field_gid === undefined || custom_field_gid === null) { - throw new Error("Missing the required parameter 'custom_field_gid' when calling insertEnumOptionForCustomField"); - } - - let pathParams = { - 'custom_field_gid': custom_field_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EnumOptionData; - - return this.apiClient.callApi( - '/custom_fields/{custom_field_gid}/enum_options/insert', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'custom_field_gid' is set + if (custom_field_gid === undefined || custom_field_gid === null) { + throw new Error("Missing the required parameter 'custom_field_gid' when calling insertEnumOptionForCustomField"); + } + + let pathParams = { + 'custom_field_gid': custom_field_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EnumOptionData; + + return this.apiClient.callApi( + '/custom_fields/{custom_field_gid}/enum_options/insert', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateCustomField operation. @@ -358,36 +358,36 @@ export class CustomFieldsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateCustomField(custom_field_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'custom_field_gid' is set - if (custom_field_gid === undefined || custom_field_gid === null) { - throw new Error("Missing the required parameter 'custom_field_gid' when calling updateCustomField"); - } - - let pathParams = { - 'custom_field_gid': custom_field_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = CustomFieldResponseData; - - return this.apiClient.callApi( - '/custom_fields/{custom_field_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'custom_field_gid' is set + if (custom_field_gid === undefined || custom_field_gid === null) { + throw new Error("Missing the required parameter 'custom_field_gid' when calling updateCustomField"); + } + + let pathParams = { + 'custom_field_gid': custom_field_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = CustomFieldResponseData; + + return this.apiClient.callApi( + '/custom_fields/{custom_field_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateEnumOption operation. @@ -408,36 +408,36 @@ export class CustomFieldsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateEnumOption(enum_option_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'enum_option_gid' is set - if (enum_option_gid === undefined || enum_option_gid === null) { - throw new Error("Missing the required parameter 'enum_option_gid' when calling updateEnumOption"); - } - - let pathParams = { - 'enum_option_gid': enum_option_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EnumOptionData; - - return this.apiClient.callApi( - '/enum_options/{enum_option_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'enum_option_gid' is set + if (enum_option_gid === undefined || enum_option_gid === null) { + throw new Error("Missing the required parameter 'enum_option_gid' when calling updateEnumOption"); + } + + let pathParams = { + 'enum_option_gid': enum_option_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EnumOptionData; + + return this.apiClient.callApi( + '/enum_options/{enum_option_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/EventsApi.js b/src/api/EventsApi.js index 95561f64..cc5e77bf 100644 --- a/src/api/EventsApi.js +++ b/src/api/EventsApi.js @@ -20,7 +20,7 @@ import {InlineResponse412} from '../model/InlineResponse412'; /** * Events service. * @module api/EventsApi -* @version 2.0.4 +* @version 2.0.5 */ export class EventsApi { @@ -55,36 +55,36 @@ export class EventsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getEvents(resource, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'resource' is set - if (resource === undefined || resource === null) { - throw new Error("Missing the required parameter 'resource' when calling getEvents"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'resource' is set + if (resource === undefined || resource === null) { + throw new Error("Missing the required parameter 'resource' when calling getEvents"); + } - let pathParams = { - - }; - let queryParams = { - 'resource': resource,'sync': opts['sync'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'resource': resource,'sync': opts['sync'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EventResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EventResponseArray; - return this.apiClient.callApi( - '/events', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/events', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/GoalRelationshipsApi.js b/src/api/GoalRelationshipsApi.js index 391609fb..cd8581c5 100644 --- a/src/api/GoalRelationshipsApi.js +++ b/src/api/GoalRelationshipsApi.js @@ -24,7 +24,7 @@ import {GoalRelationshipsGoalRelationshipGidBody} from '../model/GoalRelationshi /** * GoalRelationships service. * @module api/GoalRelationshipsApi -* @version 2.0.4 +* @version 2.0.5 */ export class GoalRelationshipsApi { @@ -59,40 +59,40 @@ export class GoalRelationshipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addSupportingRelationship(body, goal_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addSupportingRelationship"); - } - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling addSupportingRelationship"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addSupportingRelationship"); + } + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling addSupportingRelationship"); + } - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalRelationshipResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalRelationshipResponseData; - return this.apiClient.callApi( - '/goals/{goal_gid}/addSupportingRelationship', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/goals/{goal_gid}/addSupportingRelationship', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getGoalRelationship operation. @@ -112,36 +112,36 @@ export class GoalRelationshipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getGoalRelationship(goal_relationship_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'goal_relationship_gid' is set - if (goal_relationship_gid === undefined || goal_relationship_gid === null) { - throw new Error("Missing the required parameter 'goal_relationship_gid' when calling getGoalRelationship"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'goal_relationship_gid' is set + if (goal_relationship_gid === undefined || goal_relationship_gid === null) { + throw new Error("Missing the required parameter 'goal_relationship_gid' when calling getGoalRelationship"); + } - let pathParams = { - 'goal_relationship_gid': goal_relationship_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'goal_relationship_gid': goal_relationship_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalRelationshipResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalRelationshipResponseData; - return this.apiClient.callApi( - '/goal_relationships/{goal_relationship_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/goal_relationships/{goal_relationship_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getGoalRelationships operation. @@ -164,36 +164,36 @@ export class GoalRelationshipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getGoalRelationships(supported_goal, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'supported_goal' is set - if (supported_goal === undefined || supported_goal === null) { - throw new Error("Missing the required parameter 'supported_goal' when calling getGoalRelationships"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'supported_goal' is set + if (supported_goal === undefined || supported_goal === null) { + throw new Error("Missing the required parameter 'supported_goal' when calling getGoalRelationships"); + } - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'supported_goal': supported_goal,'resource_subtype': opts['resource_subtype'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'supported_goal': supported_goal,'resource_subtype': opts['resource_subtype'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalRelationshipResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalRelationshipResponseArray; - return this.apiClient.callApi( - '/goal_relationships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/goal_relationships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeSupportingRelationship operation. @@ -212,40 +212,40 @@ export class GoalRelationshipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeSupportingRelationship(body, goal_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeSupportingRelationship"); - } - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling removeSupportingRelationship"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeSupportingRelationship"); + } + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling removeSupportingRelationship"); + } - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; - return this.apiClient.callApi( - '/goals/{goal_gid}/removeSupportingRelationship', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/goals/{goal_gid}/removeSupportingRelationship', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateGoalRelationship operation. @@ -266,40 +266,40 @@ export class GoalRelationshipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateGoalRelationship(body, goal_relationship_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateGoalRelationship"); - } - // verify the required parameter 'goal_relationship_gid' is set - if (goal_relationship_gid === undefined || goal_relationship_gid === null) { - throw new Error("Missing the required parameter 'goal_relationship_gid' when calling updateGoalRelationship"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateGoalRelationship"); + } + // verify the required parameter 'goal_relationship_gid' is set + if (goal_relationship_gid === undefined || goal_relationship_gid === null) { + throw new Error("Missing the required parameter 'goal_relationship_gid' when calling updateGoalRelationship"); + } - let pathParams = { - 'goal_relationship_gid': goal_relationship_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'goal_relationship_gid': goal_relationship_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalRelationshipResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalRelationshipResponseData; - return this.apiClient.callApi( - '/goal_relationships/{goal_relationship_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/goal_relationships/{goal_relationship_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/GoalsApi.js b/src/api/GoalsApi.js index 16c58e98..3f5ed9d1 100644 --- a/src/api/GoalsApi.js +++ b/src/api/GoalsApi.js @@ -27,7 +27,7 @@ import {GoalsGoalGidBody} from '../model/GoalsGoalGidBody'; /** * Goals service. * @module api/GoalsApi -* @version 2.0.4 +* @version 2.0.5 */ export class GoalsApi { @@ -62,40 +62,40 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addFollowers(body, goal_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addFollowers"); - } - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling addFollowers"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseData; - - return this.apiClient.callApi( - '/goals/{goal_gid}/addFollowers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addFollowers"); + } + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling addFollowers"); + } + + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseData; + + return this.apiClient.callApi( + '/goals/{goal_gid}/addFollowers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createGoal operation. @@ -115,36 +115,36 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createGoal(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createGoal"); - } - - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseData; - - return this.apiClient.callApi( - '/goals', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createGoal"); + } + + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseData; + + return this.apiClient.callApi( + '/goals', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createGoalMetric operation. @@ -165,40 +165,40 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createGoalMetric(body, goal_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createGoalMetric"); - } - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling createGoalMetric"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseData; - - return this.apiClient.callApi( - '/goals/{goal_gid}/setMetric', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createGoalMetric"); + } + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling createGoalMetric"); + } + + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseData; + + return this.apiClient.callApi( + '/goals/{goal_gid}/setMetric', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteGoal operation. @@ -216,36 +216,36 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteGoal(goal_gid, callback) { - - let postBody = null; - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling deleteGoal"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/goals/{goal_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling deleteGoal"); + } + + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/goals/{goal_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getGoal operation. @@ -265,36 +265,36 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getGoal(goal_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling getGoal"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseData; - - return this.apiClient.callApi( - '/goals/{goal_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling getGoal"); + } + + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseData; + + return this.apiClient.callApi( + '/goals/{goal_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getGoals operation. @@ -321,32 +321,32 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getGoals(opts, callback) { - opts = opts || {}; - let postBody = null; - - let pathParams = { - - }; - let queryParams = { - 'portfolio': opts['portfolio'],'project': opts['project'],'is_workspace_level': opts['is_workspace_level'],'team': opts['team'],'workspace': opts['workspace'],'time_periods': this.apiClient.buildCollectionParam(opts['time_periods'], 'multi'),'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseArray; - - return this.apiClient.callApi( - '/goals', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + + let pathParams = { + + }; + let queryParams = { + 'portfolio': opts['portfolio'],'project': opts['project'],'is_workspace_level': opts['is_workspace_level'],'team': opts['team'],'workspace': opts['workspace'],'time_periods': this.apiClient.buildCollectionParam(opts['time_periods'], 'multi'),'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseArray; + + return this.apiClient.callApi( + '/goals', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getParentGoalsForGoal operation. @@ -366,36 +366,36 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getParentGoalsForGoal(goal_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling getParentGoalsForGoal"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseArray; - - return this.apiClient.callApi( - '/goals/{goal_gid}/parentGoals', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling getParentGoalsForGoal"); + } + + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseArray; + + return this.apiClient.callApi( + '/goals/{goal_gid}/parentGoals', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeFollowers operation. @@ -416,40 +416,40 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeFollowers(body, goal_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeFollowers"); - } - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling removeFollowers"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseData; - - return this.apiClient.callApi( - '/goals/{goal_gid}/removeFollowers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeFollowers"); + } + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling removeFollowers"); + } + + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseData; + + return this.apiClient.callApi( + '/goals/{goal_gid}/removeFollowers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateGoal operation. @@ -470,40 +470,40 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateGoal(body, goal_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateGoal"); - } - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling updateGoal"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseData; - - return this.apiClient.callApi( - '/goals/{goal_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateGoal"); + } + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling updateGoal"); + } + + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseData; + + return this.apiClient.callApi( + '/goals/{goal_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateGoalMetric operation. @@ -524,40 +524,40 @@ export class GoalsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateGoalMetric(body, goal_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateGoalMetric"); - } - // verify the required parameter 'goal_gid' is set - if (goal_gid === undefined || goal_gid === null) { - throw new Error("Missing the required parameter 'goal_gid' when calling updateGoalMetric"); - } - - let pathParams = { - 'goal_gid': goal_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = GoalResponseData; - - return this.apiClient.callApi( - '/goals/{goal_gid}/setMetricCurrentValue', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateGoalMetric"); + } + // verify the required parameter 'goal_gid' is set + if (goal_gid === undefined || goal_gid === null) { + throw new Error("Missing the required parameter 'goal_gid' when calling updateGoalMetric"); + } + + let pathParams = { + 'goal_gid': goal_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = GoalResponseData; + + return this.apiClient.callApi( + '/goals/{goal_gid}/setMetricCurrentValue', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/JobsApi.js b/src/api/JobsApi.js index 9cf1e647..49d7d9f9 100644 --- a/src/api/JobsApi.js +++ b/src/api/JobsApi.js @@ -19,7 +19,7 @@ import {JobResponseData} from '../model/JobResponseData'; /** * Jobs service. * @module api/JobsApi -* @version 2.0.4 +* @version 2.0.5 */ export class JobsApi { @@ -53,36 +53,36 @@ export class JobsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getJob(job_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'job_gid' is set - if (job_gid === undefined || job_gid === null) { - throw new Error("Missing the required parameter 'job_gid' when calling getJob"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'job_gid' is set + if (job_gid === undefined || job_gid === null) { + throw new Error("Missing the required parameter 'job_gid' when calling getJob"); + } - let pathParams = { - 'job_gid': job_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'job_gid': job_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = JobResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = JobResponseData; - return this.apiClient.callApi( - '/jobs/{job_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/jobs/{job_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/MembershipsApi.js b/src/api/MembershipsApi.js index acdac93d..7ac33cd0 100644 --- a/src/api/MembershipsApi.js +++ b/src/api/MembershipsApi.js @@ -23,7 +23,7 @@ import {ProjectMembershipCompactResponseData} from '../model/ProjectMembershipCo /** * Memberships service. * @module api/MembershipsApi -* @version 2.0.4 +* @version 2.0.5 */ export class MembershipsApi { @@ -56,32 +56,32 @@ export class MembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createMembership(opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - - let pathParams = { - - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = MembershipResponseData; - - return this.apiClient.callApi( - '/memberships', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + + let pathParams = { + + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = MembershipResponseData; + + return this.apiClient.callApi( + '/memberships', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteMembership operation. @@ -99,36 +99,36 @@ export class MembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteMembership(membership_gid, callback) { - - let postBody = null; - // verify the required parameter 'membership_gid' is set - if (membership_gid === undefined || membership_gid === null) { - throw new Error("Missing the required parameter 'membership_gid' when calling deleteMembership"); - } - - let pathParams = { - 'membership_gid': membership_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/memberships/{membership_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'membership_gid' is set + if (membership_gid === undefined || membership_gid === null) { + throw new Error("Missing the required parameter 'membership_gid' when calling deleteMembership"); + } + + let pathParams = { + 'membership_gid': membership_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/memberships/{membership_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getMembership operation. @@ -148,36 +148,36 @@ export class MembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getMembership(membership_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'membership_gid' is set - if (membership_gid === undefined || membership_gid === null) { - throw new Error("Missing the required parameter 'membership_gid' when calling getMembership"); - } - - let pathParams = { - 'membership_gid': membership_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectMembershipCompactResponseData; - - return this.apiClient.callApi( - '/memberships/{membership_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'membership_gid' is set + if (membership_gid === undefined || membership_gid === null) { + throw new Error("Missing the required parameter 'membership_gid' when calling getMembership"); + } + + let pathParams = { + 'membership_gid': membership_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectMembershipCompactResponseData; + + return this.apiClient.callApi( + '/memberships/{membership_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getMemberships operation. @@ -200,32 +200,32 @@ export class MembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getMemberships(opts, callback) { - opts = opts || {}; - let postBody = null; - - let pathParams = { - - }; - let queryParams = { - 'parent': opts['parent'],'member': opts['member'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = MembershipResponseArray; - - return this.apiClient.callApi( - '/memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + + let pathParams = { + + }; + let queryParams = { + 'parent': opts['parent'],'member': opts['member'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = MembershipResponseArray; + + return this.apiClient.callApi( + '/memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/OrganizationExportsApi.js b/src/api/OrganizationExportsApi.js index 1e23eb82..4085d8f1 100644 --- a/src/api/OrganizationExportsApi.js +++ b/src/api/OrganizationExportsApi.js @@ -20,7 +20,7 @@ import {OrganizationExportsBody} from '../model/OrganizationExportsBody'; /** * OrganizationExports service. * @module api/OrganizationExportsApi -* @version 2.0.4 +* @version 2.0.5 */ export class OrganizationExportsApi { @@ -54,36 +54,36 @@ export class OrganizationExportsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createOrganizationExport(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createOrganizationExport"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createOrganizationExport"); + } - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = OrganizationExportResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = OrganizationExportResponseData; - return this.apiClient.callApi( - '/organization_exports', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/organization_exports', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getOrganizationExport operation. @@ -103,36 +103,36 @@ export class OrganizationExportsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getOrganizationExport(organization_export_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'organization_export_gid' is set - if (organization_export_gid === undefined || organization_export_gid === null) { - throw new Error("Missing the required parameter 'organization_export_gid' when calling getOrganizationExport"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'organization_export_gid' is set + if (organization_export_gid === undefined || organization_export_gid === null) { + throw new Error("Missing the required parameter 'organization_export_gid' when calling getOrganizationExport"); + } - let pathParams = { - 'organization_export_gid': organization_export_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'organization_export_gid': organization_export_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = OrganizationExportResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = OrganizationExportResponseData; - return this.apiClient.callApi( - '/organization_exports/{organization_export_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/organization_exports/{organization_export_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/PortfolioMembershipsApi.js b/src/api/PortfolioMembershipsApi.js index c1842123..c2466bb5 100644 --- a/src/api/PortfolioMembershipsApi.js +++ b/src/api/PortfolioMembershipsApi.js @@ -20,7 +20,7 @@ import {PortfolioMembershipResponseData} from '../model/PortfolioMembershipRespo /** * PortfolioMemberships service. * @module api/PortfolioMembershipsApi -* @version 2.0.4 +* @version 2.0.5 */ export class PortfolioMembershipsApi { @@ -54,36 +54,36 @@ export class PortfolioMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getPortfolioMembership(portfolio_membership_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'portfolio_membership_gid' is set - if (portfolio_membership_gid === undefined || portfolio_membership_gid === null) { - throw new Error("Missing the required parameter 'portfolio_membership_gid' when calling getPortfolioMembership"); - } - - let pathParams = { - 'portfolio_membership_gid': portfolio_membership_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioMembershipResponseData; - - return this.apiClient.callApi( - '/portfolio_memberships/{portfolio_membership_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'portfolio_membership_gid' is set + if (portfolio_membership_gid === undefined || portfolio_membership_gid === null) { + throw new Error("Missing the required parameter 'portfolio_membership_gid' when calling getPortfolioMembership"); + } + + let pathParams = { + 'portfolio_membership_gid': portfolio_membership_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioMembershipResponseData; + + return this.apiClient.callApi( + '/portfolio_memberships/{portfolio_membership_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getPortfolioMemberships operation. @@ -107,32 +107,32 @@ export class PortfolioMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getPortfolioMemberships(opts, callback) { - opts = opts || {}; - let postBody = null; - - let pathParams = { - - }; - let queryParams = { - 'portfolio': opts['portfolio'],'workspace': opts['workspace'],'user': opts['user'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioMembershipResponseArray; - - return this.apiClient.callApi( - '/portfolio_memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + + let pathParams = { + + }; + let queryParams = { + 'portfolio': opts['portfolio'],'workspace': opts['workspace'],'user': opts['user'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioMembershipResponseArray; + + return this.apiClient.callApi( + '/portfolio_memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getPortfolioMembershipsForPortfolio operation. @@ -155,36 +155,36 @@ export class PortfolioMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getPortfolioMembershipsForPortfolio(portfolio_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling getPortfolioMembershipsForPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - 'user': opts['user'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioMembershipResponseArray; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/portfolio_memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling getPortfolioMembershipsForPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + 'user': opts['user'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioMembershipResponseArray; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/portfolio_memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/PortfoliosApi.js b/src/api/PortfoliosApi.js index 87af110c..b4c34c4f 100644 --- a/src/api/PortfoliosApi.js +++ b/src/api/PortfoliosApi.js @@ -31,7 +31,7 @@ import {ProjectResponseArray} from '../model/ProjectResponseArray'; /** * Portfolios service. * @module api/PortfoliosApi -* @version 2.0.4 +* @version 2.0.5 */ export class PortfoliosApi { @@ -64,40 +64,40 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addCustomFieldSettingForPortfolio(body, portfolio_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addCustomFieldSettingForPortfolio"); - } - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling addCustomFieldSettingForPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = CustomFieldSettingResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/addCustomFieldSetting', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addCustomFieldSettingForPortfolio"); + } + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling addCustomFieldSettingForPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = CustomFieldSettingResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/addCustomFieldSetting', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the addItemForPortfolio operation. @@ -116,40 +116,40 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addItemForPortfolio(body, portfolio_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addItemForPortfolio"); - } - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling addItemForPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/addItem', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addItemForPortfolio"); + } + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling addItemForPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/addItem', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the addMembersForPortfolio operation. @@ -170,40 +170,40 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addMembersForPortfolio(body, portfolio_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addMembersForPortfolio"); - } - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling addMembersForPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/addMembers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addMembersForPortfolio"); + } + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling addMembersForPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/addMembers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createPortfolio operation. @@ -223,36 +223,36 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createPortfolio(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createPortfolio"); - } - - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioResponseData; - - return this.apiClient.callApi( - '/portfolios', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createPortfolio"); + } + + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioResponseData; + + return this.apiClient.callApi( + '/portfolios', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deletePortfolio operation. @@ -270,36 +270,36 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deletePortfolio(portfolio_gid, callback) { - - let postBody = null; - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling deletePortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling deletePortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getItemsForPortfolio operation. @@ -321,36 +321,36 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getItemsForPortfolio(portfolio_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling getItemsForPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseArray; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/items', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling getItemsForPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseArray; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/items', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getPortfolio operation. @@ -370,36 +370,36 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getPortfolio(portfolio_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling getPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling getPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getPortfolios operation. @@ -422,36 +422,36 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getPortfolios(workspace, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace' is set - if (workspace === undefined || workspace === null) { - throw new Error("Missing the required parameter 'workspace' when calling getPortfolios"); - } - - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'workspace': workspace,'owner': opts['owner'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioResponseArray; - - return this.apiClient.callApi( - '/portfolios', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace' is set + if (workspace === undefined || workspace === null) { + throw new Error("Missing the required parameter 'workspace' when calling getPortfolios"); + } + + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'workspace': workspace,'owner': opts['owner'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioResponseArray; + + return this.apiClient.callApi( + '/portfolios', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeCustomFieldSettingForPortfolio operation. @@ -470,40 +470,40 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeCustomFieldSettingForPortfolio(body, portfolio_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeCustomFieldSettingForPortfolio"); - } - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling removeCustomFieldSettingForPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/removeCustomFieldSetting', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeCustomFieldSettingForPortfolio"); + } + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling removeCustomFieldSettingForPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/removeCustomFieldSetting', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeItemForPortfolio operation. @@ -522,40 +522,40 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeItemForPortfolio(body, portfolio_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeItemForPortfolio"); - } - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling removeItemForPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/removeItem', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeItemForPortfolio"); + } + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling removeItemForPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/removeItem', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeMembersForPortfolio operation. @@ -576,40 +576,40 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeMembersForPortfolio(body, portfolio_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeMembersForPortfolio"); - } - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling removeMembersForPortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}/removeMembers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeMembersForPortfolio"); + } + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling removeMembersForPortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}/removeMembers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updatePortfolio operation. @@ -630,40 +630,40 @@ export class PortfoliosApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updatePortfolio(body, portfolio_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updatePortfolio"); - } - // verify the required parameter 'portfolio_gid' is set - if (portfolio_gid === undefined || portfolio_gid === null) { - throw new Error("Missing the required parameter 'portfolio_gid' when calling updatePortfolio"); - } - - let pathParams = { - 'portfolio_gid': portfolio_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = PortfolioResponseData; - - return this.apiClient.callApi( - '/portfolios/{portfolio_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updatePortfolio"); + } + // verify the required parameter 'portfolio_gid' is set + if (portfolio_gid === undefined || portfolio_gid === null) { + throw new Error("Missing the required parameter 'portfolio_gid' when calling updatePortfolio"); + } + + let pathParams = { + 'portfolio_gid': portfolio_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = PortfolioResponseData; + + return this.apiClient.callApi( + '/portfolios/{portfolio_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/ProjectBriefsApi.js b/src/api/ProjectBriefsApi.js index bcc9c405..c49308c5 100644 --- a/src/api/ProjectBriefsApi.js +++ b/src/api/ProjectBriefsApi.js @@ -22,7 +22,7 @@ import {ProjectGidProjectBriefsBody} from '../model/ProjectGidProjectBriefsBody' /** * ProjectBriefs service. * @module api/ProjectBriefsApi -* @version 2.0.4 +* @version 2.0.5 */ export class ProjectBriefsApi { @@ -57,40 +57,40 @@ export class ProjectBriefsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createProjectBrief(body, project_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createProjectBrief"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling createProjectBrief"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectBriefResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/project_briefs', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createProjectBrief"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling createProjectBrief"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectBriefResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/project_briefs', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteProjectBrief operation. @@ -108,36 +108,36 @@ export class ProjectBriefsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteProjectBrief(project_brief_gid, callback) { - - let postBody = null; - // verify the required parameter 'project_brief_gid' is set - if (project_brief_gid === undefined || project_brief_gid === null) { - throw new Error("Missing the required parameter 'project_brief_gid' when calling deleteProjectBrief"); - } - - let pathParams = { - 'project_brief_gid': project_brief_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/project_briefs/{project_brief_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'project_brief_gid' is set + if (project_brief_gid === undefined || project_brief_gid === null) { + throw new Error("Missing the required parameter 'project_brief_gid' when calling deleteProjectBrief"); + } + + let pathParams = { + 'project_brief_gid': project_brief_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/project_briefs/{project_brief_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectBrief operation. @@ -157,36 +157,36 @@ export class ProjectBriefsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectBrief(project_brief_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_brief_gid' is set - if (project_brief_gid === undefined || project_brief_gid === null) { - throw new Error("Missing the required parameter 'project_brief_gid' when calling getProjectBrief"); - } - - let pathParams = { - 'project_brief_gid': project_brief_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectBriefResponseData; - - return this.apiClient.callApi( - '/project_briefs/{project_brief_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_brief_gid' is set + if (project_brief_gid === undefined || project_brief_gid === null) { + throw new Error("Missing the required parameter 'project_brief_gid' when calling getProjectBrief"); + } + + let pathParams = { + 'project_brief_gid': project_brief_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectBriefResponseData; + + return this.apiClient.callApi( + '/project_briefs/{project_brief_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateProjectBrief operation. @@ -207,40 +207,40 @@ export class ProjectBriefsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateProjectBrief(body, project_brief_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateProjectBrief"); - } - // verify the required parameter 'project_brief_gid' is set - if (project_brief_gid === undefined || project_brief_gid === null) { - throw new Error("Missing the required parameter 'project_brief_gid' when calling updateProjectBrief"); - } - - let pathParams = { - 'project_brief_gid': project_brief_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectBriefResponseData; - - return this.apiClient.callApi( - '/project_briefs/{project_brief_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateProjectBrief"); + } + // verify the required parameter 'project_brief_gid' is set + if (project_brief_gid === undefined || project_brief_gid === null) { + throw new Error("Missing the required parameter 'project_brief_gid' when calling updateProjectBrief"); + } + + let pathParams = { + 'project_brief_gid': project_brief_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectBriefResponseData; + + return this.apiClient.callApi( + '/project_briefs/{project_brief_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/ProjectMembershipsApi.js b/src/api/ProjectMembershipsApi.js index 15da6b0d..8f3d903f 100644 --- a/src/api/ProjectMembershipsApi.js +++ b/src/api/ProjectMembershipsApi.js @@ -20,7 +20,7 @@ import {ProjectMembershipNormalResponseData} from '../model/ProjectMembershipNor /** * ProjectMemberships service. * @module api/ProjectMembershipsApi -* @version 2.0.4 +* @version 2.0.5 */ export class ProjectMembershipsApi { @@ -54,36 +54,36 @@ export class ProjectMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectMembership(project_membership_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_membership_gid' is set - if (project_membership_gid === undefined || project_membership_gid === null) { - throw new Error("Missing the required parameter 'project_membership_gid' when calling getProjectMembership"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_membership_gid' is set + if (project_membership_gid === undefined || project_membership_gid === null) { + throw new Error("Missing the required parameter 'project_membership_gid' when calling getProjectMembership"); + } - let pathParams = { - 'project_membership_gid': project_membership_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'project_membership_gid': project_membership_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectMembershipNormalResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectMembershipNormalResponseData; - return this.apiClient.callApi( - '/project_memberships/{project_membership_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/project_memberships/{project_membership_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectMembershipsForProject operation. @@ -106,36 +106,36 @@ export class ProjectMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectMembershipsForProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling getProjectMembershipsForProject"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling getProjectMembershipsForProject"); + } - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'user': opts['user'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'user': opts['user'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectMembershipCompactArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectMembershipCompactArray; - return this.apiClient.callApi( - '/projects/{project_gid}/project_memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/projects/{project_gid}/project_memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/ProjectStatusesApi.js b/src/api/ProjectStatusesApi.js index d5d9deb4..f4055881 100644 --- a/src/api/ProjectStatusesApi.js +++ b/src/api/ProjectStatusesApi.js @@ -22,7 +22,7 @@ import {ProjectStatusResponseData} from '../model/ProjectStatusResponseData'; /** * ProjectStatuses service. * @module api/ProjectStatusesApi -* @version 2.0.4 +* @version 2.0.5 */ export class ProjectStatusesApi { @@ -57,40 +57,40 @@ export class ProjectStatusesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createProjectStatusForProject(body, project_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createProjectStatusForProject"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling createProjectStatusForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectStatusResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/project_statuses', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createProjectStatusForProject"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling createProjectStatusForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectStatusResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/project_statuses', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteProjectStatus operation. @@ -108,36 +108,36 @@ export class ProjectStatusesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteProjectStatus(project_status_gid, callback) { - - let postBody = null; - // verify the required parameter 'project_status_gid' is set - if (project_status_gid === undefined || project_status_gid === null) { - throw new Error("Missing the required parameter 'project_status_gid' when calling deleteProjectStatus"); - } - - let pathParams = { - 'project_status_gid': project_status_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/project_statuses/{project_status_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'project_status_gid' is set + if (project_status_gid === undefined || project_status_gid === null) { + throw new Error("Missing the required parameter 'project_status_gid' when calling deleteProjectStatus"); + } + + let pathParams = { + 'project_status_gid': project_status_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/project_statuses/{project_status_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectStatus operation. @@ -157,36 +157,36 @@ export class ProjectStatusesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectStatus(project_status_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_status_gid' is set - if (project_status_gid === undefined || project_status_gid === null) { - throw new Error("Missing the required parameter 'project_status_gid' when calling getProjectStatus"); - } - - let pathParams = { - 'project_status_gid': project_status_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectStatusResponseData; - - return this.apiClient.callApi( - '/project_statuses/{project_status_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_status_gid' is set + if (project_status_gid === undefined || project_status_gid === null) { + throw new Error("Missing the required parameter 'project_status_gid' when calling getProjectStatus"); + } + + let pathParams = { + 'project_status_gid': project_status_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectStatusResponseData; + + return this.apiClient.callApi( + '/project_statuses/{project_status_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectStatusesForProject operation. @@ -208,36 +208,36 @@ export class ProjectStatusesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectStatusesForProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling getProjectStatusesForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectStatusResponseArray; - - return this.apiClient.callApi( - '/projects/{project_gid}/project_statuses', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling getProjectStatusesForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectStatusResponseArray; + + return this.apiClient.callApi( + '/projects/{project_gid}/project_statuses', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/ProjectTemplatesApi.js b/src/api/ProjectTemplatesApi.js index bbe3523b..c1e4a817 100644 --- a/src/api/ProjectTemplatesApi.js +++ b/src/api/ProjectTemplatesApi.js @@ -23,7 +23,7 @@ import {ProjectTemplateResponseData} from '../model/ProjectTemplateResponseData' /** * ProjectTemplates service. * @module api/ProjectTemplatesApi -* @version 2.0.4 +* @version 2.0.5 */ export class ProjectTemplatesApi { @@ -55,36 +55,36 @@ export class ProjectTemplatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteProjectTemplate(project_template_gid, callback) { - - let postBody = null; - // verify the required parameter 'project_template_gid' is set - if (project_template_gid === undefined || project_template_gid === null) { - throw new Error("Missing the required parameter 'project_template_gid' when calling deleteProjectTemplate"); - } - - let pathParams = { - 'project_template_gid': project_template_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; + let postBody = null; + // verify the required parameter 'project_template_gid' is set + if (project_template_gid === undefined || project_template_gid === null) { + throw new Error("Missing the required parameter 'project_template_gid' when calling deleteProjectTemplate"); + } + + let pathParams = { + 'project_template_gid': project_template_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; - return this.apiClient.callApi( - '/project_templates/{project_template_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/project_templates/{project_template_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectTemplate operation. @@ -104,36 +104,36 @@ export class ProjectTemplatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectTemplate(project_template_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_template_gid' is set - if (project_template_gid === undefined || project_template_gid === null) { - throw new Error("Missing the required parameter 'project_template_gid' when calling getProjectTemplate"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_template_gid' is set + if (project_template_gid === undefined || project_template_gid === null) { + throw new Error("Missing the required parameter 'project_template_gid' when calling getProjectTemplate"); + } - let pathParams = { - 'project_template_gid': project_template_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'project_template_gid': project_template_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectTemplateResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectTemplateResponseData; - return this.apiClient.callApi( - '/project_templates/{project_template_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/project_templates/{project_template_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectTemplates operation. @@ -156,32 +156,32 @@ export class ProjectTemplatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectTemplates(opts, callback) { - opts = opts || {}; - let postBody = null; + opts = opts || {}; + let postBody = null; - let pathParams = { - - }; - let queryParams = { - 'workspace': opts['workspace'],'team': opts['team'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'workspace': opts['workspace'],'team': opts['team'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectTemplateResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectTemplateResponseArray; - return this.apiClient.callApi( - '/project_templates', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/project_templates', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectTemplatesForTeam operation. @@ -203,36 +203,36 @@ export class ProjectTemplatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectTemplatesForTeam(team_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling getProjectTemplatesForTeam"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling getProjectTemplatesForTeam"); + } - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectTemplateResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectTemplateResponseArray; - return this.apiClient.callApi( - '/teams/{team_gid}/project_templates', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/teams/{team_gid}/project_templates', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the instantiateProject operation. @@ -253,36 +253,36 @@ export class ProjectTemplatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ instantiateProject(project_template_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'project_template_gid' is set - if (project_template_gid === undefined || project_template_gid === null) { - throw new Error("Missing the required parameter 'project_template_gid' when calling instantiateProject"); - } + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'project_template_gid' is set + if (project_template_gid === undefined || project_template_gid === null) { + throw new Error("Missing the required parameter 'project_template_gid' when calling instantiateProject"); + } - let pathParams = { - 'project_template_gid': project_template_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'project_template_gid': project_template_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = JobResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = JobResponseData; - return this.apiClient.callApi( - '/project_templates/{project_template_gid}/instantiateProject', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/project_templates/{project_template_gid}/instantiateProject', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/ProjectsApi.js b/src/api/ProjectsApi.js index 86dc0ee7..010fe712 100644 --- a/src/api/ProjectsApi.js +++ b/src/api/ProjectsApi.js @@ -36,7 +36,7 @@ import {WorkspaceGidProjectsBody} from '../model/WorkspaceGidProjectsBody'; /** * Projects service. * @module api/ProjectsApi -* @version 2.0.4 +* @version 2.0.5 */ export class ProjectsApi { @@ -69,40 +69,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addCustomFieldSettingForProject(body, project_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addCustomFieldSettingForProject"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling addCustomFieldSettingForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = CustomFieldSettingResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/addCustomFieldSetting', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addCustomFieldSettingForProject"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling addCustomFieldSettingForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = CustomFieldSettingResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/addCustomFieldSetting', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the addFollowersForProject operation. @@ -123,40 +123,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addFollowersForProject(body, project_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addFollowersForProject"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling addFollowersForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/addFollowers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addFollowersForProject"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling addFollowersForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/addFollowers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the addMembersForProject operation. @@ -177,40 +177,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addMembersForProject(body, project_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addMembersForProject"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling addMembersForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/addMembers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addMembersForProject"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling addMembersForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/addMembers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createProject operation. @@ -230,36 +230,36 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createProject(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createProject"); - } - - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/projects', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createProject"); + } + + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/projects', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createProjectForTeam operation. @@ -280,40 +280,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createProjectForTeam(body, team_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createProjectForTeam"); - } - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling createProjectForTeam"); - } - - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/teams/{team_gid}/projects', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createProjectForTeam"); + } + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling createProjectForTeam"); + } + + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/teams/{team_gid}/projects', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createProjectForWorkspace operation. @@ -334,40 +334,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createProjectForWorkspace(body, workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createProjectForWorkspace"); - } - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling createProjectForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/projects', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createProjectForWorkspace"); + } + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling createProjectForWorkspace"); + } + + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/projects', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteProject operation. @@ -385,36 +385,36 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteProject(project_gid, callback) { - - let postBody = null; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling deleteProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling deleteProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the duplicateProject operation. @@ -435,36 +435,36 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ duplicateProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling duplicateProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = JobResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/duplicate', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling duplicateProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = JobResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/duplicate', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProject operation. @@ -484,36 +484,36 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling getProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling getProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjects operation. @@ -537,32 +537,32 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjects(opts, callback) { - opts = opts || {}; - let postBody = null; - - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'workspace': opts['workspace'],'team': opts['team'],'archived': opts['archived'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseArray; - - return this.apiClient.callApi( - '/projects', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'workspace': opts['workspace'],'team': opts['team'],'archived': opts['archived'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseArray; + + return this.apiClient.callApi( + '/projects', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectsForTask operation. @@ -584,36 +584,36 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectsForTask(task_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling getProjectsForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseArray; - - return this.apiClient.callApi( - '/tasks/{task_gid}/projects', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling getProjectsForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseArray; + + return this.apiClient.callApi( + '/tasks/{task_gid}/projects', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectsForTeam operation. @@ -636,36 +636,36 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectsForTeam(team_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling getProjectsForTeam"); - } - - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'archived': opts['archived'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseArray; - - return this.apiClient.callApi( - '/teams/{team_gid}/projects', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling getProjectsForTeam"); + } + + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'archived': opts['archived'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseArray; + + return this.apiClient.callApi( + '/teams/{team_gid}/projects', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getProjectsForWorkspace operation. @@ -688,36 +688,36 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getProjectsForWorkspace(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling getProjectsForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'archived': opts['archived'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseArray; - - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/projects', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling getProjectsForWorkspace"); + } + + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'archived': opts['archived'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseArray; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/projects', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTaskCountsForProject operation. @@ -737,36 +737,36 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTaskCountsForProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling getTaskCountsForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskCountResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/task_counts', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling getTaskCountsForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskCountResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/task_counts', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the projectSaveAsTemplate operation. @@ -787,40 +787,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ projectSaveAsTemplate(body, project_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling projectSaveAsTemplate"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling projectSaveAsTemplate"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = JobResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/saveAsTemplate', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling projectSaveAsTemplate"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling projectSaveAsTemplate"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = JobResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/saveAsTemplate', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeCustomFieldSettingForProject operation. @@ -839,40 +839,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeCustomFieldSettingForProject(body, project_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeCustomFieldSettingForProject"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling removeCustomFieldSettingForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/removeCustomFieldSetting', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeCustomFieldSettingForProject"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling removeCustomFieldSettingForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/removeCustomFieldSetting', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeFollowersForProject operation. @@ -893,40 +893,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeFollowersForProject(body, project_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeFollowersForProject"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling removeFollowersForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/removeFollowers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeFollowersForProject"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling removeFollowersForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/removeFollowers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeMembersForProject operation. @@ -947,40 +947,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeMembersForProject(body, project_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeMembersForProject"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling removeMembersForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/removeMembers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeMembersForProject"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling removeMembersForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/removeMembers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateProject operation. @@ -1001,40 +1001,40 @@ export class ProjectsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateProject(body, project_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateProject"); - } - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling updateProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = ProjectResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateProject"); + } + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling updateProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = ProjectResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/RulesApi.js b/src/api/RulesApi.js index fef6d9b6..e5f60835 100644 --- a/src/api/RulesApi.js +++ b/src/api/RulesApi.js @@ -20,7 +20,7 @@ import {RuleTriggerResponseData} from '../model/RuleTriggerResponseData'; /** * Rules service. * @module api/RulesApi -* @version 2.0.4 +* @version 2.0.5 */ export class RulesApi { @@ -53,40 +53,40 @@ export class RulesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ triggerRule(body, rule_trigger_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling triggerRule"); - } - // verify the required parameter 'rule_trigger_gid' is set - if (rule_trigger_gid === undefined || rule_trigger_gid === null) { - throw new Error("Missing the required parameter 'rule_trigger_gid' when calling triggerRule"); - } - - let pathParams = { - 'rule_trigger_gid': rule_trigger_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling triggerRule"); + } + // verify the required parameter 'rule_trigger_gid' is set + if (rule_trigger_gid === undefined || rule_trigger_gid === null) { + throw new Error("Missing the required parameter 'rule_trigger_gid' when calling triggerRule"); + } + + let pathParams = { + 'rule_trigger_gid': rule_trigger_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = RuleTriggerResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = RuleTriggerResponseData; - return this.apiClient.callApi( - '/rule_triggers/{rule_trigger_gid}/run', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/rule_triggers/{rule_trigger_gid}/run', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/SectionsApi.js b/src/api/SectionsApi.js index 1752b4e4..eeae406e 100644 --- a/src/api/SectionsApi.js +++ b/src/api/SectionsApi.js @@ -25,7 +25,7 @@ import {SectionsSectionGidBody} from '../model/SectionsSectionGidBody'; /** * Sections service. * @module api/SectionsApi -* @version 2.0.4 +* @version 2.0.5 */ export class SectionsApi { @@ -59,36 +59,36 @@ export class SectionsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addTaskForSection(section_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'section_gid' is set - if (section_gid === undefined || section_gid === null) { - throw new Error("Missing the required parameter 'section_gid' when calling addTaskForSection"); - } - - let pathParams = { - 'section_gid': section_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/sections/{section_gid}/addTask', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'section_gid' is set + if (section_gid === undefined || section_gid === null) { + throw new Error("Missing the required parameter 'section_gid' when calling addTaskForSection"); + } + + let pathParams = { + 'section_gid': section_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/sections/{section_gid}/addTask', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createSectionForProject operation. @@ -109,36 +109,36 @@ export class SectionsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createSectionForProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling createSectionForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = SectionResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/sections', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling createSectionForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = SectionResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/sections', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteSection operation. @@ -156,36 +156,36 @@ export class SectionsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteSection(section_gid, callback) { - - let postBody = null; - // verify the required parameter 'section_gid' is set - if (section_gid === undefined || section_gid === null) { - throw new Error("Missing the required parameter 'section_gid' when calling deleteSection"); - } - - let pathParams = { - 'section_gid': section_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/sections/{section_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'section_gid' is set + if (section_gid === undefined || section_gid === null) { + throw new Error("Missing the required parameter 'section_gid' when calling deleteSection"); + } + + let pathParams = { + 'section_gid': section_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/sections/{section_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getSection operation. @@ -205,36 +205,36 @@ export class SectionsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getSection(section_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'section_gid' is set - if (section_gid === undefined || section_gid === null) { - throw new Error("Missing the required parameter 'section_gid' when calling getSection"); - } - - let pathParams = { - 'section_gid': section_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = SectionResponseData; - - return this.apiClient.callApi( - '/sections/{section_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'section_gid' is set + if (section_gid === undefined || section_gid === null) { + throw new Error("Missing the required parameter 'section_gid' when calling getSection"); + } + + let pathParams = { + 'section_gid': section_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = SectionResponseData; + + return this.apiClient.callApi( + '/sections/{section_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getSectionsForProject operation. @@ -256,36 +256,36 @@ export class SectionsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getSectionsForProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling getSectionsForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = SectionResponseArray; - - return this.apiClient.callApi( - '/projects/{project_gid}/sections', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling getSectionsForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = SectionResponseArray; + + return this.apiClient.callApi( + '/projects/{project_gid}/sections', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the insertSectionForProject operation. @@ -305,36 +305,36 @@ export class SectionsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ insertSectionForProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling insertSectionForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/projects/{project_gid}/sections/insert', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling insertSectionForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/projects/{project_gid}/sections/insert', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateSection operation. @@ -355,36 +355,36 @@ export class SectionsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateSection(section_gid, opts, callback) { - opts = opts || {}; - let postBody = opts['body']; - // verify the required parameter 'section_gid' is set - if (section_gid === undefined || section_gid === null) { - throw new Error("Missing the required parameter 'section_gid' when calling updateSection"); - } - - let pathParams = { - 'section_gid': section_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = SectionResponseData; - - return this.apiClient.callApi( - '/sections/{section_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = opts['body']; + // verify the required parameter 'section_gid' is set + if (section_gid === undefined || section_gid === null) { + throw new Error("Missing the required parameter 'section_gid' when calling updateSection"); + } + + let pathParams = { + 'section_gid': section_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = SectionResponseData; + + return this.apiClient.callApi( + '/sections/{section_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/StatusUpdatesApi.js b/src/api/StatusUpdatesApi.js index 06d9739a..fff69ee2 100644 --- a/src/api/StatusUpdatesApi.js +++ b/src/api/StatusUpdatesApi.js @@ -22,7 +22,7 @@ import {StatusUpdatesBody} from '../model/StatusUpdatesBody'; /** * StatusUpdates service. * @module api/StatusUpdatesApi -* @version 2.0.4 +* @version 2.0.5 */ export class StatusUpdatesApi { @@ -58,36 +58,36 @@ export class StatusUpdatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createStatusForObject(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createStatusForObject"); - } - - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = StatusUpdateResponseData; - - return this.apiClient.callApi( - '/status_updates', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createStatusForObject"); + } + + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = StatusUpdateResponseData; + + return this.apiClient.callApi( + '/status_updates', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteStatus operation. @@ -105,36 +105,36 @@ export class StatusUpdatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteStatus(status_update_gid, callback) { - - let postBody = null; - // verify the required parameter 'status_update_gid' is set - if (status_update_gid === undefined || status_update_gid === null) { - throw new Error("Missing the required parameter 'status_update_gid' when calling deleteStatus"); - } - - let pathParams = { - 'status_update_gid': status_update_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/status_updates/{status_update_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'status_update_gid' is set + if (status_update_gid === undefined || status_update_gid === null) { + throw new Error("Missing the required parameter 'status_update_gid' when calling deleteStatus"); + } + + let pathParams = { + 'status_update_gid': status_update_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/status_updates/{status_update_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getStatus operation. @@ -154,36 +154,36 @@ export class StatusUpdatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getStatus(status_update_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'status_update_gid' is set - if (status_update_gid === undefined || status_update_gid === null) { - throw new Error("Missing the required parameter 'status_update_gid' when calling getStatus"); - } - - let pathParams = { - 'status_update_gid': status_update_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = StatusUpdateResponseData; - - return this.apiClient.callApi( - '/status_updates/{status_update_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'status_update_gid' is set + if (status_update_gid === undefined || status_update_gid === null) { + throw new Error("Missing the required parameter 'status_update_gid' when calling getStatus"); + } + + let pathParams = { + 'status_update_gid': status_update_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = StatusUpdateResponseData; + + return this.apiClient.callApi( + '/status_updates/{status_update_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getStatusesForObject operation. @@ -206,36 +206,36 @@ export class StatusUpdatesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getStatusesForObject(parent, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'parent' is set - if (parent === undefined || parent === null) { - throw new Error("Missing the required parameter 'parent' when calling getStatusesForObject"); - } - - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'parent': parent,'created_since': opts['created_since'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = StatusUpdateResponseArray; - - return this.apiClient.callApi( - '/status_updates', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'parent' is set + if (parent === undefined || parent === null) { + throw new Error("Missing the required parameter 'parent' when calling getStatusesForObject"); + } + + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'parent': parent,'created_since': opts['created_since'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = StatusUpdateResponseArray; + + return this.apiClient.callApi( + '/status_updates', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/StoriesApi.js b/src/api/StoriesApi.js index e459b12d..722b0edc 100644 --- a/src/api/StoriesApi.js +++ b/src/api/StoriesApi.js @@ -23,7 +23,7 @@ import {TaskGidStoriesBody} from '../model/TaskGidStoriesBody'; /** * Stories service. * @module api/StoriesApi -* @version 2.0.4 +* @version 2.0.5 */ export class StoriesApi { @@ -58,40 +58,40 @@ export class StoriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createStoryForTask(body, task_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createStoryForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling createStoryForTask"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createStoryForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling createStoryForTask"); + } - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = StoryResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = StoryResponseData; - return this.apiClient.callApi( - '/tasks/{task_gid}/stories', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/tasks/{task_gid}/stories', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteStory operation. @@ -109,36 +109,36 @@ export class StoriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteStory(story_gid, callback) { - - let postBody = null; - // verify the required parameter 'story_gid' is set - if (story_gid === undefined || story_gid === null) { - throw new Error("Missing the required parameter 'story_gid' when calling deleteStory"); - } - - let pathParams = { - 'story_gid': story_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; + let postBody = null; + // verify the required parameter 'story_gid' is set + if (story_gid === undefined || story_gid === null) { + throw new Error("Missing the required parameter 'story_gid' when calling deleteStory"); + } + + let pathParams = { + 'story_gid': story_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; - return this.apiClient.callApi( - '/stories/{story_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/stories/{story_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getStoriesForTask operation. @@ -160,36 +160,36 @@ export class StoriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getStoriesForTask(task_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling getStoriesForTask"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling getStoriesForTask"); + } - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = StoryResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = StoryResponseArray; - return this.apiClient.callApi( - '/tasks/{task_gid}/stories', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/tasks/{task_gid}/stories', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getStory operation. @@ -209,36 +209,36 @@ export class StoriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getStory(story_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'story_gid' is set - if (story_gid === undefined || story_gid === null) { - throw new Error("Missing the required parameter 'story_gid' when calling getStory"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'story_gid' is set + if (story_gid === undefined || story_gid === null) { + throw new Error("Missing the required parameter 'story_gid' when calling getStory"); + } - let pathParams = { - 'story_gid': story_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'story_gid': story_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = StoryResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = StoryResponseData; - return this.apiClient.callApi( - '/stories/{story_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/stories/{story_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateStory operation. @@ -259,40 +259,40 @@ export class StoriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateStory(body, story_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateStory"); - } - // verify the required parameter 'story_gid' is set - if (story_gid === undefined || story_gid === null) { - throw new Error("Missing the required parameter 'story_gid' when calling updateStory"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateStory"); + } + // verify the required parameter 'story_gid' is set + if (story_gid === undefined || story_gid === null) { + throw new Error("Missing the required parameter 'story_gid' when calling updateStory"); + } - let pathParams = { - 'story_gid': story_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'story_gid': story_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = StoryResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = StoryResponseData; - return this.apiClient.callApi( - '/stories/{story_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/stories/{story_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/TagsApi.js b/src/api/TagsApi.js index af1a3464..c1475a42 100644 --- a/src/api/TagsApi.js +++ b/src/api/TagsApi.js @@ -23,7 +23,7 @@ import {WorkspaceGidTagsBody} from '../model/WorkspaceGidTagsBody'; /** * Tags service. * @module api/TagsApi -* @version 2.0.4 +* @version 2.0.5 */ export class TagsApi { @@ -57,36 +57,36 @@ export class TagsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createTag(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createTag"); - } - - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TagResponseData; - - return this.apiClient.callApi( - '/tags', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createTag"); + } + + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TagResponseData; + + return this.apiClient.callApi( + '/tags', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createTagForWorkspace operation. @@ -107,40 +107,40 @@ export class TagsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createTagForWorkspace(body, workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createTagForWorkspace"); - } - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling createTagForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TagResponseData; - - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/tags', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createTagForWorkspace"); + } + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling createTagForWorkspace"); + } + + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TagResponseData; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/tags', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteTag operation. @@ -158,36 +158,36 @@ export class TagsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteTag(tag_gid, callback) { - - let postBody = null; - // verify the required parameter 'tag_gid' is set - if (tag_gid === undefined || tag_gid === null) { - throw new Error("Missing the required parameter 'tag_gid' when calling deleteTag"); - } - - let pathParams = { - 'tag_gid': tag_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tags/{tag_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'tag_gid' is set + if (tag_gid === undefined || tag_gid === null) { + throw new Error("Missing the required parameter 'tag_gid' when calling deleteTag"); + } + + let pathParams = { + 'tag_gid': tag_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tags/{tag_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTag operation. @@ -207,36 +207,36 @@ export class TagsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTag(tag_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'tag_gid' is set - if (tag_gid === undefined || tag_gid === null) { - throw new Error("Missing the required parameter 'tag_gid' when calling getTag"); - } - - let pathParams = { - 'tag_gid': tag_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TagResponseData; - - return this.apiClient.callApi( - '/tags/{tag_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'tag_gid' is set + if (tag_gid === undefined || tag_gid === null) { + throw new Error("Missing the required parameter 'tag_gid' when calling getTag"); + } + + let pathParams = { + 'tag_gid': tag_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TagResponseData; + + return this.apiClient.callApi( + '/tags/{tag_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTags operation. @@ -258,32 +258,32 @@ export class TagsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTags(opts, callback) { - opts = opts || {}; - let postBody = null; - - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'workspace': opts['workspace'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TagResponseArray; - - return this.apiClient.callApi( - '/tags', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'workspace': opts['workspace'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TagResponseArray; + + return this.apiClient.callApi( + '/tags', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTagsForTask operation. @@ -305,36 +305,36 @@ export class TagsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTagsForTask(task_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling getTagsForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TagResponseArray; - - return this.apiClient.callApi( - '/tasks/{task_gid}/tags', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling getTagsForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TagResponseArray; + + return this.apiClient.callApi( + '/tasks/{task_gid}/tags', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTagsForWorkspace operation. @@ -356,36 +356,36 @@ export class TagsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTagsForWorkspace(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling getTagsForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TagResponseArray; - - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/tags', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling getTagsForWorkspace"); + } + + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TagResponseArray; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/tags', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateTag operation. @@ -405,36 +405,36 @@ export class TagsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateTag(tag_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'tag_gid' is set - if (tag_gid === undefined || tag_gid === null) { - throw new Error("Missing the required parameter 'tag_gid' when calling updateTag"); - } - - let pathParams = { - 'tag_gid': tag_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TagResponseData; - - return this.apiClient.callApi( - '/tags/{tag_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'tag_gid' is set + if (tag_gid === undefined || tag_gid === null) { + throw new Error("Missing the required parameter 'tag_gid' when calling updateTag"); + } + + let pathParams = { + 'tag_gid': tag_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TagResponseData; + + return this.apiClient.callApi( + '/tags/{tag_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/TasksApi.js b/src/api/TasksApi.js index f63806b9..8c88bc72 100644 --- a/src/api/TasksApi.js +++ b/src/api/TasksApi.js @@ -37,7 +37,7 @@ import {TasksTaskGidBody} from '../model/TasksTaskGidBody'; /** * Tasks service. * @module api/TasksApi -* @version 2.0.4 +* @version 2.0.5 */ export class TasksApi { @@ -70,40 +70,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addDependenciesForTask(body, task_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addDependenciesForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling addDependenciesForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/addDependencies', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addDependenciesForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling addDependenciesForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/addDependencies', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the addDependentsForTask operation. @@ -122,40 +122,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addDependentsForTask(body, task_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addDependentsForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling addDependentsForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/addDependents', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addDependentsForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling addDependentsForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/addDependents', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the addFollowersForTask operation. @@ -176,40 +176,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addFollowersForTask(body, task_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addFollowersForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling addFollowersForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/addFollowers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addFollowersForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling addFollowersForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/addFollowers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the addProjectForTask operation. @@ -228,40 +228,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addProjectForTask(body, task_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addProjectForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling addProjectForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/addProject', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addProjectForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling addProjectForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/addProject', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the addTagForTask operation. @@ -280,40 +280,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addTagForTask(body, task_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addTagForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling addTagForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/addTag', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addTagForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling addTagForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/addTag', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createSubtaskForTask operation. @@ -334,40 +334,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createSubtaskForTask(body, task_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createSubtaskForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling createSubtaskForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/subtasks', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createSubtaskForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling createSubtaskForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/subtasks', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createTask operation. @@ -387,36 +387,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createTask(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createTask"); - } - - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseData; - - return this.apiClient.callApi( - '/tasks', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createTask"); + } + + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseData; + + return this.apiClient.callApi( + '/tasks', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteTask operation. @@ -434,36 +434,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteTask(task_gid, callback) { - - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling deleteTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling deleteTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the duplicateTask operation. @@ -484,40 +484,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ duplicateTask(body, task_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling duplicateTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling duplicateTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = JobResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/duplicate', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling duplicateTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling duplicateTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = JobResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/duplicate', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getDependenciesForTask operation. @@ -539,36 +539,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getDependenciesForTask(task_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling getDependenciesForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/tasks/{task_gid}/dependencies', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling getDependenciesForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/tasks/{task_gid}/dependencies', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getDependentsForTask operation. @@ -590,36 +590,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getDependentsForTask(task_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling getDependentsForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/tasks/{task_gid}/dependents', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling getDependentsForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/tasks/{task_gid}/dependents', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getSubtasksForTask operation. @@ -641,36 +641,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getSubtasksForTask(task_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling getSubtasksForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/tasks/{task_gid}/subtasks', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling getSubtasksForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/tasks/{task_gid}/subtasks', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTask operation. @@ -690,36 +690,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTask(task_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling getTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling getTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTasks operation. @@ -746,32 +746,32 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTasks(opts, callback) { - opts = opts || {}; - let postBody = null; - - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'assignee': opts['assignee'],'project': opts['project'],'section': opts['section'],'workspace': opts['workspace'],'completed_since': opts['completed_since'],'modified_since': opts['modified_since'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/tasks', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'assignee': opts['assignee'],'project': opts['project'],'section': opts['section'],'workspace': opts['workspace'],'completed_since': opts['completed_since'],'modified_since': opts['modified_since'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/tasks', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTasksForProject operation. @@ -794,36 +794,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTasksForProject(project_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'project_gid' is set - if (project_gid === undefined || project_gid === null) { - throw new Error("Missing the required parameter 'project_gid' when calling getTasksForProject"); - } - - let pathParams = { - 'project_gid': project_gid - }; - let queryParams = { - 'completed_since': opts['completed_since'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/projects/{project_gid}/tasks', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'project_gid' is set + if (project_gid === undefined || project_gid === null) { + throw new Error("Missing the required parameter 'project_gid' when calling getTasksForProject"); + } + + let pathParams = { + 'project_gid': project_gid + }; + let queryParams = { + 'completed_since': opts['completed_since'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/projects/{project_gid}/tasks', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTasksForSection operation. @@ -846,36 +846,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTasksForSection(section_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'section_gid' is set - if (section_gid === undefined || section_gid === null) { - throw new Error("Missing the required parameter 'section_gid' when calling getTasksForSection"); - } - - let pathParams = { - 'section_gid': section_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'completed_since': opts['completed_since'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/sections/{section_gid}/tasks', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'section_gid' is set + if (section_gid === undefined || section_gid === null) { + throw new Error("Missing the required parameter 'section_gid' when calling getTasksForSection"); + } + + let pathParams = { + 'section_gid': section_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'completed_since': opts['completed_since'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/sections/{section_gid}/tasks', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTasksForTag operation. @@ -897,36 +897,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTasksForTag(tag_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'tag_gid' is set - if (tag_gid === undefined || tag_gid === null) { - throw new Error("Missing the required parameter 'tag_gid' when calling getTasksForTag"); - } - - let pathParams = { - 'tag_gid': tag_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/tags/{tag_gid}/tasks', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'tag_gid' is set + if (tag_gid === undefined || tag_gid === null) { + throw new Error("Missing the required parameter 'tag_gid' when calling getTasksForTag"); + } + + let pathParams = { + 'tag_gid': tag_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/tags/{tag_gid}/tasks', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTasksForUserTaskList operation. @@ -949,36 +949,36 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTasksForUserTaskList(user_task_list_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'user_task_list_gid' is set - if (user_task_list_gid === undefined || user_task_list_gid === null) { - throw new Error("Missing the required parameter 'user_task_list_gid' when calling getTasksForUserTaskList"); - } - - let pathParams = { - 'user_task_list_gid': user_task_list_gid - }; - let queryParams = { - 'completed_since': opts['completed_since'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/user_task_lists/{user_task_list_gid}/tasks', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'user_task_list_gid' is set + if (user_task_list_gid === undefined || user_task_list_gid === null) { + throw new Error("Missing the required parameter 'user_task_list_gid' when calling getTasksForUserTaskList"); + } + + let pathParams = { + 'user_task_list_gid': user_task_list_gid + }; + let queryParams = { + 'completed_since': opts['completed_since'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/user_task_lists/{user_task_list_gid}/tasks', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeDependenciesForTask operation. @@ -997,40 +997,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeDependenciesForTask(body, task_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeDependenciesForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling removeDependenciesForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/removeDependencies', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeDependenciesForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling removeDependenciesForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/removeDependencies', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeDependentsForTask operation. @@ -1049,40 +1049,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeDependentsForTask(body, task_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeDependentsForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling removeDependentsForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/removeDependents', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeDependentsForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling removeDependentsForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/removeDependents', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeFollowerForTask operation. @@ -1103,40 +1103,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeFollowerForTask(body, task_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeFollowerForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling removeFollowerForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/removeFollowers', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeFollowerForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling removeFollowerForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/removeFollowers', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeProjectForTask operation. @@ -1155,40 +1155,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeProjectForTask(body, task_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeProjectForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling removeProjectForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/removeProject', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeProjectForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling removeProjectForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/removeProject', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeTagForTask operation. @@ -1207,40 +1207,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeTagForTask(body, task_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeTagForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling removeTagForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/removeTag', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeTagForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling removeTagForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/removeTag', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the searchTasksForWorkspace operation. @@ -1312,36 +1312,48 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ searchTasksForWorkspace(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling searchTasksForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'text': opts['text'],'resource_subtype': opts['resource_subtype'],'assignee.any': opts['assignee_any'],'assignee.not': opts['assignee_not'],'portfolios.any': opts['portfolios_any'],'projects.any': opts['projects_any'],'projects.not': opts['projects_not'],'projects.all': opts['projects_all'],'sections.any': opts['sections_any'],'sections.not': opts['sections_not'],'sections.all': opts['sections_all'],'tags.any': opts['tags_any'],'tags.not': opts['tags_not'],'tags.all': opts['tags_all'],'teams.any': opts['teams_any'],'followers.not': opts['followers_not'],'created_by.any': opts['created_by_any'],'created_by.not': opts['created_by_not'],'assigned_by.any': opts['assigned_by_any'],'assigned_by.not': opts['assigned_by_not'],'liked_by.not': opts['liked_by_not'],'commented_on_by.not': opts['commented_on_by_not'],'due_on.before': opts['due_on_before'],'due_on.after': opts['due_on_after'],'due_on': opts['due_on'],'due_at.before': opts['due_at_before'],'due_at.after': opts['due_at_after'],'start_on.before': opts['start_on_before'],'start_on.after': opts['start_on_after'],'start_on': opts['start_on'],'created_on.before': opts['created_on_before'],'created_on.after': opts['created_on_after'],'created_on': opts['created_on'],'created_at.before': opts['created_at_before'],'created_at.after': opts['created_at_after'],'completed_on.before': opts['completed_on_before'],'completed_on.after': opts['completed_on_after'],'completed_on': opts['completed_on'],'completed_at.before': opts['completed_at_before'],'completed_at.after': opts['completed_at_after'],'modified_on.before': opts['modified_on_before'],'modified_on.after': opts['modified_on_after'],'modified_on': opts['modified_on'],'modified_at.before': opts['modified_at_before'],'modified_at.after': opts['modified_at_after'],'is_blocking': opts['is_blocking'],'is_blocked': opts['is_blocked'],'has_attachment': opts['has_attachment'],'completed': opts['completed'],'is_subtask': opts['is_subtask'],'sort_by': opts['sort_by'],'sort_ascending': opts['sort_ascending'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseArray; - - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/tasks/search', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling searchTasksForWorkspace"); + } + + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'text': opts['text'],'resource_subtype': opts['resource_subtype'],'assignee.any': opts['assignee_any'],'assignee.not': opts['assignee_not'],'portfolios.any': opts['portfolios_any'],'projects.any': opts['projects_any'],'projects.not': opts['projects_not'],'projects.all': opts['projects_all'],'sections.any': opts['sections_any'],'sections.not': opts['sections_not'],'sections.all': opts['sections_all'],'tags.any': opts['tags_any'],'tags.not': opts['tags_not'],'tags.all': opts['tags_all'],'teams.any': opts['teams_any'],'followers.not': opts['followers_not'],'created_by.any': opts['created_by_any'],'created_by.not': opts['created_by_not'],'assigned_by.any': opts['assigned_by_any'],'assigned_by.not': opts['assigned_by_not'],'liked_by.not': opts['liked_by_not'],'commented_on_by.not': opts['commented_on_by_not'],'due_on.before': opts['due_on_before'],'due_on.after': opts['due_on_after'],'due_on': opts['due_on'],'due_at.before': opts['due_at_before'],'due_at.after': opts['due_at_after'],'start_on.before': opts['start_on_before'],'start_on.after': opts['start_on_after'],'start_on': opts['start_on'],'created_on.before': opts['created_on_before'],'created_on.after': opts['created_on_after'],'created_on': opts['created_on'],'created_at.before': opts['created_at_before'],'created_at.after': opts['created_at_after'],'completed_on.before': opts['completed_on_before'],'completed_on.after': opts['completed_on_after'],'completed_on': opts['completed_on'],'completed_at.before': opts['completed_at_before'],'completed_at.after': opts['completed_at_after'],'modified_on.before': opts['modified_on_before'],'modified_on.after': opts['modified_on_after'],'modified_on': opts['modified_on'],'modified_at.before': opts['modified_at_before'],'modified_at.after': opts['modified_at_after'],'is_blocking': opts['is_blocking'],'is_blocked': opts['is_blocked'],'has_attachment': opts['has_attachment'],'completed': opts['completed'],'is_subtask': opts['is_subtask'],'sort_by': opts['sort_by'],'sort_ascending': opts['sort_ascending'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + // Checks if the user provided custom field query parameters and adds it to the request + for (const [key, value] of Object.entries(opts)) { + // If user provided in format: custom_fields..value + if (/^custom_fields\.(.*?)\.value$/.test(key)) { + queryParams[key] = value; + // If user provided in format: custom_fields__value + } else if (/^custom_fields_(.*?)_value$/.test(key)) { + let removed_prefix = key.replace('custom_fields_',''); + let custom_field_gid = removed_prefix.replace('_value',''); + queryParams[`custom_fields.${custom_field_gid}.value`] = value; + } + } + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseArray; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/tasks/search', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the setParentForTask operation. @@ -1362,40 +1374,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ setParentForTask(body, task_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling setParentForTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling setParentForTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}/setParent', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling setParentForTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling setParentForTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}/setParent', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateTask operation. @@ -1416,40 +1428,40 @@ export class TasksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateTask(body, task_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateTask"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling updateTask"); - } - - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TaskResponseData; - - return this.apiClient.callApi( - '/tasks/{task_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateTask"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling updateTask"); + } + + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TaskResponseData; + + return this.apiClient.callApi( + '/tasks/{task_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/TeamMembershipsApi.js b/src/api/TeamMembershipsApi.js index 9db9bffb..16713226 100644 --- a/src/api/TeamMembershipsApi.js +++ b/src/api/TeamMembershipsApi.js @@ -20,7 +20,7 @@ import {TeamMembershipResponseData} from '../model/TeamMembershipResponseData'; /** * TeamMemberships service. * @module api/TeamMembershipsApi -* @version 2.0.4 +* @version 2.0.5 */ export class TeamMembershipsApi { @@ -54,36 +54,36 @@ export class TeamMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTeamMembership(team_membership_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'team_membership_gid' is set - if (team_membership_gid === undefined || team_membership_gid === null) { - throw new Error("Missing the required parameter 'team_membership_gid' when calling getTeamMembership"); - } - - let pathParams = { - 'team_membership_gid': team_membership_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamMembershipResponseData; - - return this.apiClient.callApi( - '/team_memberships/{team_membership_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'team_membership_gid' is set + if (team_membership_gid === undefined || team_membership_gid === null) { + throw new Error("Missing the required parameter 'team_membership_gid' when calling getTeamMembership"); + } + + let pathParams = { + 'team_membership_gid': team_membership_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamMembershipResponseData; + + return this.apiClient.callApi( + '/team_memberships/{team_membership_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTeamMemberships operation. @@ -107,32 +107,32 @@ export class TeamMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTeamMemberships(opts, callback) { - opts = opts || {}; - let postBody = null; - - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'team': opts['team'],'user': opts['user'],'workspace': opts['workspace'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamMembershipResponseArray; - - return this.apiClient.callApi( - '/team_memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'team': opts['team'],'user': opts['user'],'workspace': opts['workspace'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamMembershipResponseArray; + + return this.apiClient.callApi( + '/team_memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTeamMembershipsForTeam operation. @@ -154,36 +154,36 @@ export class TeamMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTeamMembershipsForTeam(team_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling getTeamMembershipsForTeam"); - } - - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamMembershipResponseArray; - - return this.apiClient.callApi( - '/teams/{team_gid}/team_memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling getTeamMembershipsForTeam"); + } + + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamMembershipResponseArray; + + return this.apiClient.callApi( + '/teams/{team_gid}/team_memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTeamMembershipsForUser operation. @@ -206,40 +206,40 @@ export class TeamMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTeamMembershipsForUser(user_gid, workspace, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'user_gid' is set - if (user_gid === undefined || user_gid === null) { - throw new Error("Missing the required parameter 'user_gid' when calling getTeamMembershipsForUser"); - } - // verify the required parameter 'workspace' is set - if (workspace === undefined || workspace === null) { - throw new Error("Missing the required parameter 'workspace' when calling getTeamMembershipsForUser"); - } - - let pathParams = { - 'user_gid': user_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'workspace': workspace,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamMembershipResponseArray; - - return this.apiClient.callApi( - '/users/{user_gid}/team_memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'user_gid' is set + if (user_gid === undefined || user_gid === null) { + throw new Error("Missing the required parameter 'user_gid' when calling getTeamMembershipsForUser"); + } + // verify the required parameter 'workspace' is set + if (workspace === undefined || workspace === null) { + throw new Error("Missing the required parameter 'workspace' when calling getTeamMembershipsForUser"); + } + + let pathParams = { + 'user_gid': user_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'workspace': workspace,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamMembershipResponseArray; + + return this.apiClient.callApi( + '/users/{user_gid}/team_memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/TeamsApi.js b/src/api/TeamsApi.js index 69a80236..846bb986 100644 --- a/src/api/TeamsApi.js +++ b/src/api/TeamsApi.js @@ -26,7 +26,7 @@ import {TeamsTeamGidBody} from '../model/TeamsTeamGidBody'; /** * Teams service. * @module api/TeamsApi -* @version 2.0.4 +* @version 2.0.5 */ export class TeamsApi { @@ -61,40 +61,40 @@ export class TeamsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addUserForTeam(body, team_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addUserForTeam"); - } - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling addUserForTeam"); - } - - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamMembershipResponseData; - - return this.apiClient.callApi( - '/teams/{team_gid}/addUser', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addUserForTeam"); + } + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling addUserForTeam"); + } + + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamMembershipResponseData; + + return this.apiClient.callApi( + '/teams/{team_gid}/addUser', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the createTeam operation. @@ -114,36 +114,36 @@ export class TeamsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createTeam(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createTeam"); - } - - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamResponseData; - - return this.apiClient.callApi( - '/teams', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createTeam"); + } + + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamResponseData; + + return this.apiClient.callApi( + '/teams', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTeam operation. @@ -163,36 +163,36 @@ export class TeamsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTeam(team_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling getTeam"); - } - - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamResponseData; - - return this.apiClient.callApi( - '/teams/{team_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling getTeam"); + } + + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamResponseData; + + return this.apiClient.callApi( + '/teams/{team_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTeamsForUser operation. @@ -215,40 +215,40 @@ export class TeamsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTeamsForUser(user_gid, organization, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'user_gid' is set - if (user_gid === undefined || user_gid === null) { - throw new Error("Missing the required parameter 'user_gid' when calling getTeamsForUser"); - } - // verify the required parameter 'organization' is set - if (organization === undefined || organization === null) { - throw new Error("Missing the required parameter 'organization' when calling getTeamsForUser"); - } - - let pathParams = { - 'user_gid': user_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'organization': organization,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamResponseArray; - - return this.apiClient.callApi( - '/users/{user_gid}/teams', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'user_gid' is set + if (user_gid === undefined || user_gid === null) { + throw new Error("Missing the required parameter 'user_gid' when calling getTeamsForUser"); + } + // verify the required parameter 'organization' is set + if (organization === undefined || organization === null) { + throw new Error("Missing the required parameter 'organization' when calling getTeamsForUser"); + } + + let pathParams = { + 'user_gid': user_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'organization': organization,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamResponseArray; + + return this.apiClient.callApi( + '/users/{user_gid}/teams', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTeamsForWorkspace operation. @@ -270,36 +270,36 @@ export class TeamsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTeamsForWorkspace(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling getTeamsForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamResponseArray; - - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/teams', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling getTeamsForWorkspace"); + } + + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamResponseArray; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/teams', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeUserForTeam operation. @@ -318,40 +318,40 @@ export class TeamsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeUserForTeam(body, team_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeUserForTeam"); - } - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling removeUserForTeam"); - } - - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - - }; - let headerParams = { - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; - - return this.apiClient.callApi( - '/teams/{team_gid}/removeUser', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeUserForTeam"); + } + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling removeUserForTeam"); + } + + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/teams/{team_gid}/removeUser', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateTeam operation. @@ -372,40 +372,40 @@ export class TeamsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateTeam(body, team_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateTeam"); - } - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling updateTeam"); - } - - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TeamResponseData; - - return this.apiClient.callApi( - '/teams/{team_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateTeam"); + } + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling updateTeam"); + } + + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TeamResponseData; + + return this.apiClient.callApi( + '/teams/{team_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/TimePeriodsApi.js b/src/api/TimePeriodsApi.js index 79608297..964cd6b5 100644 --- a/src/api/TimePeriodsApi.js +++ b/src/api/TimePeriodsApi.js @@ -20,7 +20,7 @@ import {TimePeriodResponseData} from '../model/TimePeriodResponseData'; /** * TimePeriods service. * @module api/TimePeriodsApi -* @version 2.0.4 +* @version 2.0.5 */ export class TimePeriodsApi { @@ -54,36 +54,36 @@ export class TimePeriodsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTimePeriod(time_period_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'time_period_gid' is set - if (time_period_gid === undefined || time_period_gid === null) { - throw new Error("Missing the required parameter 'time_period_gid' when calling getTimePeriod"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'time_period_gid' is set + if (time_period_gid === undefined || time_period_gid === null) { + throw new Error("Missing the required parameter 'time_period_gid' when calling getTimePeriod"); + } - let pathParams = { - 'time_period_gid': time_period_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'time_period_gid': time_period_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TimePeriodResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TimePeriodResponseData; - return this.apiClient.callApi( - '/time_periods/{time_period_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/time_periods/{time_period_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTimePeriods operation. @@ -107,36 +107,36 @@ export class TimePeriodsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTimePeriods(workspace, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace' is set - if (workspace === undefined || workspace === null) { - throw new Error("Missing the required parameter 'workspace' when calling getTimePeriods"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace' is set + if (workspace === undefined || workspace === null) { + throw new Error("Missing the required parameter 'workspace' when calling getTimePeriods"); + } - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'start_on': opts['start_on'],'end_on': opts['end_on'],'workspace': workspace,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'start_on': opts['start_on'],'end_on': opts['end_on'],'workspace': workspace,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TimePeriodResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TimePeriodResponseArray; - return this.apiClient.callApi( - '/time_periods', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/time_periods', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/TimeTrackingEntriesApi.js b/src/api/TimeTrackingEntriesApi.js index 84f5e122..7cdf7c04 100644 --- a/src/api/TimeTrackingEntriesApi.js +++ b/src/api/TimeTrackingEntriesApi.js @@ -23,7 +23,7 @@ import {TimeTrackingEntryCompactArray} from '../model/TimeTrackingEntryCompactAr /** * TimeTrackingEntries service. * @module api/TimeTrackingEntriesApi -* @version 2.0.4 +* @version 2.0.5 */ export class TimeTrackingEntriesApi { @@ -58,40 +58,40 @@ export class TimeTrackingEntriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createTimeTrackingEntry(body, task_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createTimeTrackingEntry"); - } - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling createTimeTrackingEntry"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createTimeTrackingEntry"); + } + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling createTimeTrackingEntry"); + } - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TimeTrackingEntryBaseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TimeTrackingEntryBaseData; - return this.apiClient.callApi( - '/tasks/{task_gid}/time_tracking_entries', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/tasks/{task_gid}/time_tracking_entries', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteTimeTrackingEntry operation. @@ -109,36 +109,36 @@ export class TimeTrackingEntriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteTimeTrackingEntry(time_tracking_entry_gid, callback) { - - let postBody = null; - // verify the required parameter 'time_tracking_entry_gid' is set - if (time_tracking_entry_gid === undefined || time_tracking_entry_gid === null) { - throw new Error("Missing the required parameter 'time_tracking_entry_gid' when calling deleteTimeTrackingEntry"); - } - - let pathParams = { - 'time_tracking_entry_gid': time_tracking_entry_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; + let postBody = null; + // verify the required parameter 'time_tracking_entry_gid' is set + if (time_tracking_entry_gid === undefined || time_tracking_entry_gid === null) { + throw new Error("Missing the required parameter 'time_tracking_entry_gid' when calling deleteTimeTrackingEntry"); + } + + let pathParams = { + 'time_tracking_entry_gid': time_tracking_entry_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; - return this.apiClient.callApi( - '/time_tracking_entries/{time_tracking_entry_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/time_tracking_entries/{time_tracking_entry_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTimeTrackingEntriesForTask operation. @@ -160,36 +160,36 @@ export class TimeTrackingEntriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTimeTrackingEntriesForTask(task_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'task_gid' is set - if (task_gid === undefined || task_gid === null) { - throw new Error("Missing the required parameter 'task_gid' when calling getTimeTrackingEntriesForTask"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'task_gid' is set + if (task_gid === undefined || task_gid === null) { + throw new Error("Missing the required parameter 'task_gid' when calling getTimeTrackingEntriesForTask"); + } - let pathParams = { - 'task_gid': task_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'task_gid': task_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TimeTrackingEntryCompactArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TimeTrackingEntryCompactArray; - return this.apiClient.callApi( - '/tasks/{task_gid}/time_tracking_entries', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/tasks/{task_gid}/time_tracking_entries', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getTimeTrackingEntry operation. @@ -209,36 +209,36 @@ export class TimeTrackingEntriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getTimeTrackingEntry(time_tracking_entry_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'time_tracking_entry_gid' is set - if (time_tracking_entry_gid === undefined || time_tracking_entry_gid === null) { - throw new Error("Missing the required parameter 'time_tracking_entry_gid' when calling getTimeTrackingEntry"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'time_tracking_entry_gid' is set + if (time_tracking_entry_gid === undefined || time_tracking_entry_gid === null) { + throw new Error("Missing the required parameter 'time_tracking_entry_gid' when calling getTimeTrackingEntry"); + } - let pathParams = { - 'time_tracking_entry_gid': time_tracking_entry_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'time_tracking_entry_gid': time_tracking_entry_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TimeTrackingEntryBaseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TimeTrackingEntryBaseData; - return this.apiClient.callApi( - '/time_tracking_entries/{time_tracking_entry_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/time_tracking_entries/{time_tracking_entry_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateTimeTrackingEntry operation. @@ -259,40 +259,40 @@ export class TimeTrackingEntriesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateTimeTrackingEntry(body, time_tracking_entry_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateTimeTrackingEntry"); - } - // verify the required parameter 'time_tracking_entry_gid' is set - if (time_tracking_entry_gid === undefined || time_tracking_entry_gid === null) { - throw new Error("Missing the required parameter 'time_tracking_entry_gid' when calling updateTimeTrackingEntry"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateTimeTrackingEntry"); + } + // verify the required parameter 'time_tracking_entry_gid' is set + if (time_tracking_entry_gid === undefined || time_tracking_entry_gid === null) { + throw new Error("Missing the required parameter 'time_tracking_entry_gid' when calling updateTimeTrackingEntry"); + } - let pathParams = { - 'time_tracking_entry_gid': time_tracking_entry_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'time_tracking_entry_gid': time_tracking_entry_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = TimeTrackingEntryBaseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = TimeTrackingEntryBaseData; - return this.apiClient.callApi( - '/time_tracking_entries/{time_tracking_entry_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/time_tracking_entries/{time_tracking_entry_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/TypeaheadApi.js b/src/api/TypeaheadApi.js index 5a5319de..7b8eb1e7 100644 --- a/src/api/TypeaheadApi.js +++ b/src/api/TypeaheadApi.js @@ -19,7 +19,7 @@ import {ErrorResponse} from '../model/ErrorResponse'; /** * Typeahead service. * @module api/TypeaheadApi -* @version 2.0.4 +* @version 2.0.5 */ export class TypeaheadApi { @@ -57,40 +57,40 @@ export class TypeaheadApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ typeaheadForWorkspace(workspace_gid, resource_type, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling typeaheadForWorkspace"); - } - // verify the required parameter 'resource_type' is set - if (resource_type === undefined || resource_type === null) { - throw new Error("Missing the required parameter 'resource_type' when calling typeaheadForWorkspace"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling typeaheadForWorkspace"); + } + // verify the required parameter 'resource_type' is set + if (resource_type === undefined || resource_type === null) { + throw new Error("Missing the required parameter 'resource_type' when calling typeaheadForWorkspace"); + } - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'resource_type': resource_type,'type': opts['type'],'query': opts['query'],'count': opts['count'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'resource_type': resource_type,'type': opts['type'],'query': opts['query'],'count': opts['count'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = AsanaNamedResourceArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = AsanaNamedResourceArray; - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/typeahead', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/typeahead', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/UserTaskListsApi.js b/src/api/UserTaskListsApi.js index 23d40390..54dbb7d4 100644 --- a/src/api/UserTaskListsApi.js +++ b/src/api/UserTaskListsApi.js @@ -19,7 +19,7 @@ import {UserTaskListResponseData} from '../model/UserTaskListResponseData'; /** * UserTaskLists service. * @module api/UserTaskListsApi -* @version 2.0.4 +* @version 2.0.5 */ export class UserTaskListsApi { @@ -53,36 +53,36 @@ export class UserTaskListsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getUserTaskList(user_task_list_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'user_task_list_gid' is set - if (user_task_list_gid === undefined || user_task_list_gid === null) { - throw new Error("Missing the required parameter 'user_task_list_gid' when calling getUserTaskList"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'user_task_list_gid' is set + if (user_task_list_gid === undefined || user_task_list_gid === null) { + throw new Error("Missing the required parameter 'user_task_list_gid' when calling getUserTaskList"); + } - let pathParams = { - 'user_task_list_gid': user_task_list_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'user_task_list_gid': user_task_list_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = UserTaskListResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = UserTaskListResponseData; - return this.apiClient.callApi( - '/user_task_lists/{user_task_list_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/user_task_lists/{user_task_list_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getUserTaskListForUser operation. @@ -103,40 +103,40 @@ export class UserTaskListsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getUserTaskListForUser(user_gid, workspace, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'user_gid' is set - if (user_gid === undefined || user_gid === null) { - throw new Error("Missing the required parameter 'user_gid' when calling getUserTaskListForUser"); - } - // verify the required parameter 'workspace' is set - if (workspace === undefined || workspace === null) { - throw new Error("Missing the required parameter 'workspace' when calling getUserTaskListForUser"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'user_gid' is set + if (user_gid === undefined || user_gid === null) { + throw new Error("Missing the required parameter 'user_gid' when calling getUserTaskListForUser"); + } + // verify the required parameter 'workspace' is set + if (workspace === undefined || workspace === null) { + throw new Error("Missing the required parameter 'workspace' when calling getUserTaskListForUser"); + } - let pathParams = { - 'user_gid': user_gid - }; - let queryParams = { - 'workspace': workspace,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'user_gid': user_gid + }; + let queryParams = { + 'workspace': workspace,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = UserTaskListResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = UserTaskListResponseData; - return this.apiClient.callApi( - '/users/{user_gid}/user_task_list', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/users/{user_gid}/user_task_list', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/UsersApi.js b/src/api/UsersApi.js index 12ebf9be..0dc939a2 100644 --- a/src/api/UsersApi.js +++ b/src/api/UsersApi.js @@ -21,7 +21,7 @@ import {UserResponseData} from '../model/UserResponseData'; /** * Users service. * @module api/UsersApi -* @version 2.0.4 +* @version 2.0.5 */ export class UsersApi { @@ -59,44 +59,44 @@ export class UsersApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getFavoritesForUser(user_gid, resource_type, workspace, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'user_gid' is set - if (user_gid === undefined || user_gid === null) { - throw new Error("Missing the required parameter 'user_gid' when calling getFavoritesForUser"); - } - // verify the required parameter 'resource_type' is set - if (resource_type === undefined || resource_type === null) { - throw new Error("Missing the required parameter 'resource_type' when calling getFavoritesForUser"); - } - // verify the required parameter 'workspace' is set - if (workspace === undefined || workspace === null) { - throw new Error("Missing the required parameter 'workspace' when calling getFavoritesForUser"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'user_gid' is set + if (user_gid === undefined || user_gid === null) { + throw new Error("Missing the required parameter 'user_gid' when calling getFavoritesForUser"); + } + // verify the required parameter 'resource_type' is set + if (resource_type === undefined || resource_type === null) { + throw new Error("Missing the required parameter 'resource_type' when calling getFavoritesForUser"); + } + // verify the required parameter 'workspace' is set + if (workspace === undefined || workspace === null) { + throw new Error("Missing the required parameter 'workspace' when calling getFavoritesForUser"); + } - let pathParams = { - 'user_gid': user_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'resource_type': resource_type,'workspace': workspace,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'user_gid': user_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'resource_type': resource_type,'workspace': workspace,'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = AsanaNamedResourceArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = AsanaNamedResourceArray; - return this.apiClient.callApi( - '/users/{user_gid}/favorites', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/users/{user_gid}/favorites', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getUser operation. @@ -116,36 +116,36 @@ export class UsersApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getUser(user_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'user_gid' is set - if (user_gid === undefined || user_gid === null) { - throw new Error("Missing the required parameter 'user_gid' when calling getUser"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'user_gid' is set + if (user_gid === undefined || user_gid === null) { + throw new Error("Missing the required parameter 'user_gid' when calling getUser"); + } - let pathParams = { - 'user_gid': user_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'user_gid': user_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = UserResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = UserResponseData; - return this.apiClient.callApi( - '/users/{user_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/users/{user_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getUsers operation. @@ -168,32 +168,32 @@ export class UsersApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getUsers(opts, callback) { - opts = opts || {}; - let postBody = null; + opts = opts || {}; + let postBody = null; - let pathParams = { - - }; - let queryParams = { - 'workspace': opts['workspace'],'team': opts['team'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'workspace': opts['workspace'],'team': opts['team'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = UserResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = UserResponseArray; - return this.apiClient.callApi( - '/users', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/users', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getUsersForTeam operation. @@ -214,36 +214,36 @@ export class UsersApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getUsersForTeam(team_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'team_gid' is set - if (team_gid === undefined || team_gid === null) { - throw new Error("Missing the required parameter 'team_gid' when calling getUsersForTeam"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'team_gid' is set + if (team_gid === undefined || team_gid === null) { + throw new Error("Missing the required parameter 'team_gid' when calling getUsersForTeam"); + } - let pathParams = { - 'team_gid': team_gid - }; - let queryParams = { - 'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'team_gid': team_gid + }; + let queryParams = { + 'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = UserResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = UserResponseArray; - return this.apiClient.callApi( - '/teams/{team_gid}/users', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/teams/{team_gid}/users', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getUsersForWorkspace operation. @@ -264,36 +264,36 @@ export class UsersApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getUsersForWorkspace(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling getUsersForWorkspace"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling getUsersForWorkspace"); + } - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = UserResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = UserResponseArray; - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/users', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/users', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/WebhooksApi.js b/src/api/WebhooksApi.js index 715a202b..b0a72501 100644 --- a/src/api/WebhooksApi.js +++ b/src/api/WebhooksApi.js @@ -23,7 +23,7 @@ import {WebhooksWebhookGidBody} from '../model/WebhooksWebhookGidBody'; /** * Webhooks service. * @module api/WebhooksApi -* @version 2.0.4 +* @version 2.0.5 */ export class WebhooksApi { @@ -57,36 +57,36 @@ export class WebhooksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ createWebhook(body, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling createWebhook"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling createWebhook"); + } - let pathParams = { - - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WebhookResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WebhookResponseData; - return this.apiClient.callApi( - '/webhooks', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/webhooks', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the deleteWebhook operation. @@ -104,36 +104,36 @@ export class WebhooksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ deleteWebhook(webhook_gid, callback) { - - let postBody = null; - // verify the required parameter 'webhook_gid' is set - if (webhook_gid === undefined || webhook_gid === null) { - throw new Error("Missing the required parameter 'webhook_gid' when calling deleteWebhook"); - } - - let pathParams = { - 'webhook_gid': webhook_gid - }; - let queryParams = { - }; - let headerParams = { - - }; - let formParams = { - - }; + let postBody = null; + // verify the required parameter 'webhook_gid' is set + if (webhook_gid === undefined || webhook_gid === null) { + throw new Error("Missing the required parameter 'webhook_gid' when calling deleteWebhook"); + } + + let pathParams = { + 'webhook_gid': webhook_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; - return this.apiClient.callApi( - '/webhooks/{webhook_gid}', 'DELETE', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/webhooks/{webhook_gid}', 'DELETE', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getWebhook operation. @@ -153,36 +153,36 @@ export class WebhooksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getWebhook(webhook_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'webhook_gid' is set - if (webhook_gid === undefined || webhook_gid === null) { - throw new Error("Missing the required parameter 'webhook_gid' when calling getWebhook"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'webhook_gid' is set + if (webhook_gid === undefined || webhook_gid === null) { + throw new Error("Missing the required parameter 'webhook_gid' when calling getWebhook"); + } - let pathParams = { - 'webhook_gid': webhook_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'webhook_gid': webhook_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WebhookResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WebhookResponseData; - return this.apiClient.callApi( - '/webhooks/{webhook_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/webhooks/{webhook_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getWebhooks operation. @@ -205,36 +205,36 @@ export class WebhooksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getWebhooks(workspace, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace' is set - if (workspace === undefined || workspace === null) { - throw new Error("Missing the required parameter 'workspace' when calling getWebhooks"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace' is set + if (workspace === undefined || workspace === null) { + throw new Error("Missing the required parameter 'workspace' when calling getWebhooks"); + } - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'workspace': workspace,'resource': opts['resource'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'workspace': workspace,'resource': opts['resource'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WebhookResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WebhookResponseArray; - return this.apiClient.callApi( - '/webhooks', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/webhooks', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateWebhook operation. @@ -255,40 +255,40 @@ export class WebhooksApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateWebhook(body, webhook_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateWebhook"); - } - // verify the required parameter 'webhook_gid' is set - if (webhook_gid === undefined || webhook_gid === null) { - throw new Error("Missing the required parameter 'webhook_gid' when calling updateWebhook"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateWebhook"); + } + // verify the required parameter 'webhook_gid' is set + if (webhook_gid === undefined || webhook_gid === null) { + throw new Error("Missing the required parameter 'webhook_gid' when calling updateWebhook"); + } - let pathParams = { - 'webhook_gid': webhook_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'webhook_gid': webhook_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WebhookResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WebhookResponseData; - return this.apiClient.callApi( - '/webhooks/{webhook_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/webhooks/{webhook_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/WorkspaceMembershipsApi.js b/src/api/WorkspaceMembershipsApi.js index 785dbb09..7c94ef06 100644 --- a/src/api/WorkspaceMembershipsApi.js +++ b/src/api/WorkspaceMembershipsApi.js @@ -20,7 +20,7 @@ import {WorkspaceMembershipResponseData} from '../model/WorkspaceMembershipRespo /** * WorkspaceMemberships service. * @module api/WorkspaceMembershipsApi -* @version 2.0.4 +* @version 2.0.5 */ export class WorkspaceMembershipsApi { @@ -54,36 +54,36 @@ export class WorkspaceMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getWorkspaceMembership(workspace_membership_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_membership_gid' is set - if (workspace_membership_gid === undefined || workspace_membership_gid === null) { - throw new Error("Missing the required parameter 'workspace_membership_gid' when calling getWorkspaceMembership"); - } - - let pathParams = { - 'workspace_membership_gid': workspace_membership_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WorkspaceMembershipResponseData; - - return this.apiClient.callApi( - '/workspace_memberships/{workspace_membership_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_membership_gid' is set + if (workspace_membership_gid === undefined || workspace_membership_gid === null) { + throw new Error("Missing the required parameter 'workspace_membership_gid' when calling getWorkspaceMembership"); + } + + let pathParams = { + 'workspace_membership_gid': workspace_membership_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WorkspaceMembershipResponseData; + + return this.apiClient.callApi( + '/workspace_memberships/{workspace_membership_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getWorkspaceMembershipsForUser operation. @@ -105,36 +105,36 @@ export class WorkspaceMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getWorkspaceMembershipsForUser(user_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'user_gid' is set - if (user_gid === undefined || user_gid === null) { - throw new Error("Missing the required parameter 'user_gid' when calling getWorkspaceMembershipsForUser"); - } - - let pathParams = { - 'user_gid': user_gid - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WorkspaceMembershipResponseArray; - - return this.apiClient.callApi( - '/users/{user_gid}/workspace_memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'user_gid' is set + if (user_gid === undefined || user_gid === null) { + throw new Error("Missing the required parameter 'user_gid' when calling getWorkspaceMembershipsForUser"); + } + + let pathParams = { + 'user_gid': user_gid + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WorkspaceMembershipResponseArray; + + return this.apiClient.callApi( + '/users/{user_gid}/workspace_memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getWorkspaceMembershipsForWorkspace operation. @@ -157,36 +157,36 @@ export class WorkspaceMembershipsApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getWorkspaceMembershipsForWorkspace(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling getWorkspaceMembershipsForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'user': opts['user'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; - - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WorkspaceMembershipResponseArray; - - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/workspace_memberships', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling getWorkspaceMembershipsForWorkspace"); + } + + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'user': opts['user'],'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; + + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WorkspaceMembershipResponseArray; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/workspace_memberships', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/api/WorkspacesApi.js b/src/api/WorkspacesApi.js index 5bd04ea3..4d5946fb 100644 --- a/src/api/WorkspacesApi.js +++ b/src/api/WorkspacesApi.js @@ -25,7 +25,7 @@ import {WorkspacesWorkspaceGidBody} from '../model/WorkspacesWorkspaceGidBody'; /** * Workspaces service. * @module api/WorkspacesApi -* @version 2.0.4 +* @version 2.0.5 */ export class WorkspacesApi { @@ -60,40 +60,40 @@ export class WorkspacesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ addUserForWorkspace(body, workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling addUserForWorkspace"); - } - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling addUserForWorkspace"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling addUserForWorkspace"); + } + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling addUserForWorkspace"); + } - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = UserBaseResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = UserBaseResponseData; - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/addUser', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/addUser', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getWorkspace operation. @@ -113,36 +113,36 @@ export class WorkspacesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getWorkspace(workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = null; - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling getWorkspace"); - } + opts = opts || {}; + let postBody = null; + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling getWorkspace"); + } - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WorkspaceResponseData; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WorkspaceResponseData; - return this.apiClient.callApi( - '/workspaces/{workspace_gid}', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/workspaces/{workspace_gid}', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the getWorkspaces operation. @@ -163,32 +163,32 @@ export class WorkspacesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ getWorkspaces(opts, callback) { - opts = opts || {}; - let postBody = null; + opts = opts || {}; + let postBody = null; - let pathParams = { - - }; - let queryParams = { - 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + + }; + let queryParams = { + 'limit': opts['limit'],'offset': opts['offset'],'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = []; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WorkspaceResponseArray; + let authNames = ['oauth2']; + let contentTypes = []; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WorkspaceResponseArray; - return this.apiClient.callApi( - '/workspaces', 'GET', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/workspaces', 'GET', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the removeUserForWorkspace operation. @@ -207,40 +207,40 @@ export class WorkspacesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ removeUserForWorkspace(body, workspace_gid, callback) { - - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling removeUserForWorkspace"); - } - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling removeUserForWorkspace"); - } - - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - - }; - let headerParams = { - - }; - let formParams = { - }; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling removeUserForWorkspace"); + } + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling removeUserForWorkspace"); + } - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = EmptyResponseData; + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + + }; + let headerParams = { + + }; + let formParams = { + + }; - return this.apiClient.callApi( - '/workspaces/{workspace_gid}/removeUser', 'POST', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = EmptyResponseData; + + return this.apiClient.callApi( + '/workspaces/{workspace_gid}/removeUser', 'POST', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } /** * Callback function to receive the result of the updateWorkspace operation. @@ -261,40 +261,40 @@ export class WorkspacesApi { * data is of type: {@link <&vendorExtensions.x-jsdoc-type>} */ updateWorkspace(body, workspace_gid, opts, callback) { - opts = opts || {}; - let postBody = body; - // verify the required parameter 'body' is set - if (body === undefined || body === null) { - throw new Error("Missing the required parameter 'body' when calling updateWorkspace"); - } - // verify the required parameter 'workspace_gid' is set - if (workspace_gid === undefined || workspace_gid === null) { - throw new Error("Missing the required parameter 'workspace_gid' when calling updateWorkspace"); - } + opts = opts || {}; + let postBody = body; + // verify the required parameter 'body' is set + if (body === undefined || body === null) { + throw new Error("Missing the required parameter 'body' when calling updateWorkspace"); + } + // verify the required parameter 'workspace_gid' is set + if (workspace_gid === undefined || workspace_gid === null) { + throw new Error("Missing the required parameter 'workspace_gid' when calling updateWorkspace"); + } - let pathParams = { - 'workspace_gid': workspace_gid - }; - let queryParams = { - 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') - }; - let headerParams = { - - }; - let formParams = { - - }; + let pathParams = { + 'workspace_gid': workspace_gid + }; + let queryParams = { + 'opt_fields': this.apiClient.buildCollectionParam(opts['opt_fields'], 'csv') + }; + let headerParams = { + + }; + let formParams = { + + }; - let authNames = ['oauth2']; - let contentTypes = ['application/json; charset=UTF-8']; - let accepts = ['application/json; charset=UTF-8']; - let returnType = WorkspaceResponseData; + let authNames = ['oauth2']; + let contentTypes = ['application/json; charset=UTF-8']; + let accepts = ['application/json; charset=UTF-8']; + let returnType = WorkspaceResponseData; - return this.apiClient.callApi( - '/workspaces/{workspace_gid}', 'PUT', - pathParams, queryParams, headerParams, formParams, postBody, - authNames, contentTypes, accepts, returnType, callback - ); + return this.apiClient.callApi( + '/workspaces/{workspace_gid}', 'PUT', + pathParams, queryParams, headerParams, formParams, postBody, + authNames, contentTypes, accepts, returnType, callback + ); } -} \ No newline at end of file +} diff --git a/src/index.js b/src/index.js index 65863e05..170b1300 100644 --- a/src/index.js +++ b/src/index.js @@ -498,7 +498,7 @@ import {WorkspacesApi} from './api/WorkspacesApi'; * *

* @module index -* @version 2.0.4 +* @version 2.0.5 */ export { /** diff --git a/src/model/AddCustomFieldSettingRequest.js b/src/model/AddCustomFieldSettingRequest.js index 44dd6af4..070b8cdf 100644 --- a/src/model/AddCustomFieldSettingRequest.js +++ b/src/model/AddCustomFieldSettingRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AddCustomFieldSettingRequest model module. * @module model/AddCustomFieldSettingRequest - * @version 2.0.4 + * @version 2.0.5 */ export class AddCustomFieldSettingRequest { /** diff --git a/src/model/AddFollowersRequest.js b/src/model/AddFollowersRequest.js index 30914047..ad99eee3 100644 --- a/src/model/AddFollowersRequest.js +++ b/src/model/AddFollowersRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AddFollowersRequest model module. * @module model/AddFollowersRequest - * @version 2.0.4 + * @version 2.0.5 */ export class AddFollowersRequest { /** diff --git a/src/model/AddMembersRequest.js b/src/model/AddMembersRequest.js index 8f601645..b28e285e 100644 --- a/src/model/AddMembersRequest.js +++ b/src/model/AddMembersRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AddMembersRequest model module. * @module model/AddMembersRequest - * @version 2.0.4 + * @version 2.0.5 */ export class AddMembersRequest { /** diff --git a/src/model/AllOfProjectResponseOwner.js b/src/model/AllOfProjectResponseOwner.js index a363a2e7..4befdc42 100644 --- a/src/model/AllOfProjectResponseOwner.js +++ b/src/model/AllOfProjectResponseOwner.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfProjectResponseOwner model module. * @module model/AllOfProjectResponseOwner - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfProjectResponseOwner { /** diff --git a/src/model/AllOfProjectTemplateBaseOwner.js b/src/model/AllOfProjectTemplateBaseOwner.js index 9d655e09..f357e713 100644 --- a/src/model/AllOfProjectTemplateBaseOwner.js +++ b/src/model/AllOfProjectTemplateBaseOwner.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfProjectTemplateBaseOwner model module. * @module model/AllOfProjectTemplateBaseOwner - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfProjectTemplateBaseOwner { /** diff --git a/src/model/AllOfProjectTemplateResponseOwner.js b/src/model/AllOfProjectTemplateResponseOwner.js index 89c6a04a..07cd0dd5 100644 --- a/src/model/AllOfProjectTemplateResponseOwner.js +++ b/src/model/AllOfProjectTemplateResponseOwner.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfProjectTemplateResponseOwner model module. * @module model/AllOfProjectTemplateResponseOwner - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfProjectTemplateResponseOwner { /** diff --git a/src/model/AllOfStoryResponseNewDateValue.js b/src/model/AllOfStoryResponseNewDateValue.js index 2b299176..a0b5cc5b 100644 --- a/src/model/AllOfStoryResponseNewDateValue.js +++ b/src/model/AllOfStoryResponseNewDateValue.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfStoryResponseNewDateValue model module. * @module model/AllOfStoryResponseNewDateValue - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfStoryResponseNewDateValue { /** diff --git a/src/model/AllOfStoryResponseOldDateValue.js b/src/model/AllOfStoryResponseOldDateValue.js index 5eafbece..efa5c82e 100644 --- a/src/model/AllOfStoryResponseOldDateValue.js +++ b/src/model/AllOfStoryResponseOldDateValue.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfStoryResponseOldDateValue model module. * @module model/AllOfStoryResponseOldDateValue - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfStoryResponseOldDateValue { /** diff --git a/src/model/AllOfUserTaskListBaseOwner.js b/src/model/AllOfUserTaskListBaseOwner.js index 4c75f57b..44e225b2 100644 --- a/src/model/AllOfUserTaskListBaseOwner.js +++ b/src/model/AllOfUserTaskListBaseOwner.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfUserTaskListBaseOwner model module. * @module model/AllOfUserTaskListBaseOwner - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfUserTaskListBaseOwner { /** diff --git a/src/model/AllOfUserTaskListBaseWorkspace.js b/src/model/AllOfUserTaskListBaseWorkspace.js index 7987f209..21225484 100644 --- a/src/model/AllOfUserTaskListBaseWorkspace.js +++ b/src/model/AllOfUserTaskListBaseWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfUserTaskListBaseWorkspace model module. * @module model/AllOfUserTaskListBaseWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfUserTaskListBaseWorkspace { /** diff --git a/src/model/AllOfUserTaskListCompactOwner.js b/src/model/AllOfUserTaskListCompactOwner.js index 7339530d..5a669fb1 100644 --- a/src/model/AllOfUserTaskListCompactOwner.js +++ b/src/model/AllOfUserTaskListCompactOwner.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfUserTaskListCompactOwner model module. * @module model/AllOfUserTaskListCompactOwner - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfUserTaskListCompactOwner { /** diff --git a/src/model/AllOfUserTaskListCompactWorkspace.js b/src/model/AllOfUserTaskListCompactWorkspace.js index 4071fb8e..a7665f82 100644 --- a/src/model/AllOfUserTaskListCompactWorkspace.js +++ b/src/model/AllOfUserTaskListCompactWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfUserTaskListCompactWorkspace model module. * @module model/AllOfUserTaskListCompactWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfUserTaskListCompactWorkspace { /** diff --git a/src/model/AllOfUserTaskListRequestOwner.js b/src/model/AllOfUserTaskListRequestOwner.js index 99739e73..c3381827 100644 --- a/src/model/AllOfUserTaskListRequestOwner.js +++ b/src/model/AllOfUserTaskListRequestOwner.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfUserTaskListRequestOwner model module. * @module model/AllOfUserTaskListRequestOwner - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfUserTaskListRequestOwner { /** diff --git a/src/model/AllOfUserTaskListRequestWorkspace.js b/src/model/AllOfUserTaskListRequestWorkspace.js index e93cf93d..7efd89c7 100644 --- a/src/model/AllOfUserTaskListRequestWorkspace.js +++ b/src/model/AllOfUserTaskListRequestWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfUserTaskListRequestWorkspace model module. * @module model/AllOfUserTaskListRequestWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfUserTaskListRequestWorkspace { /** diff --git a/src/model/AllOfUserTaskListResponseOwner.js b/src/model/AllOfUserTaskListResponseOwner.js index 2a45901f..63575bbe 100644 --- a/src/model/AllOfUserTaskListResponseOwner.js +++ b/src/model/AllOfUserTaskListResponseOwner.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfUserTaskListResponseOwner model module. * @module model/AllOfUserTaskListResponseOwner - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfUserTaskListResponseOwner { /** diff --git a/src/model/AllOfUserTaskListResponseWorkspace.js b/src/model/AllOfUserTaskListResponseWorkspace.js index aa1e178b..6c1e4eee 100644 --- a/src/model/AllOfUserTaskListResponseWorkspace.js +++ b/src/model/AllOfUserTaskListResponseWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfUserTaskListResponseWorkspace model module. * @module model/AllOfUserTaskListResponseWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfUserTaskListResponseWorkspace { /** diff --git a/src/model/AllOfWorkspaceMembershipResponseUserTaskListOwner.js b/src/model/AllOfWorkspaceMembershipResponseUserTaskListOwner.js index 5ad25a22..d9fb0d73 100644 --- a/src/model/AllOfWorkspaceMembershipResponseUserTaskListOwner.js +++ b/src/model/AllOfWorkspaceMembershipResponseUserTaskListOwner.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfWorkspaceMembershipResponseUserTaskListOwner model module. * @module model/AllOfWorkspaceMembershipResponseUserTaskListOwner - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfWorkspaceMembershipResponseUserTaskListOwner { /** diff --git a/src/model/AllOfWorkspaceMembershipResponseUserTaskListWorkspace.js b/src/model/AllOfWorkspaceMembershipResponseUserTaskListWorkspace.js index f393da7e..0dc771b2 100644 --- a/src/model/AllOfWorkspaceMembershipResponseUserTaskListWorkspace.js +++ b/src/model/AllOfWorkspaceMembershipResponseUserTaskListWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AllOfWorkspaceMembershipResponseUserTaskListWorkspace model module. * @module model/AllOfWorkspaceMembershipResponseUserTaskListWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class AllOfWorkspaceMembershipResponseUserTaskListWorkspace { /** diff --git a/src/model/AsanaNamedResource.js b/src/model/AsanaNamedResource.js index 796339a4..61e237a5 100644 --- a/src/model/AsanaNamedResource.js +++ b/src/model/AsanaNamedResource.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AsanaNamedResource model module. * @module model/AsanaNamedResource - * @version 2.0.4 + * @version 2.0.5 */ export class AsanaNamedResource { /** diff --git a/src/model/AsanaNamedResourceArray.js b/src/model/AsanaNamedResourceArray.js index 40d255c8..d9c3fd25 100644 --- a/src/model/AsanaNamedResourceArray.js +++ b/src/model/AsanaNamedResourceArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The AsanaNamedResourceArray model module. * @module model/AsanaNamedResourceArray - * @version 2.0.4 + * @version 2.0.5 */ export class AsanaNamedResourceArray { /** diff --git a/src/model/AsanaResource.js b/src/model/AsanaResource.js index 82f73ecc..da4660d4 100644 --- a/src/model/AsanaResource.js +++ b/src/model/AsanaResource.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AsanaResource model module. * @module model/AsanaResource - * @version 2.0.4 + * @version 2.0.5 */ export class AsanaResource { /** diff --git a/src/model/AttachmentBase.js b/src/model/AttachmentBase.js index e36ba701..dbfd5bfe 100644 --- a/src/model/AttachmentBase.js +++ b/src/model/AttachmentBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AttachmentBase model module. * @module model/AttachmentBase - * @version 2.0.4 + * @version 2.0.5 */ export class AttachmentBase { /** diff --git a/src/model/AttachmentCompact.js b/src/model/AttachmentCompact.js index 9bbd4aaf..a4d9cbee 100644 --- a/src/model/AttachmentCompact.js +++ b/src/model/AttachmentCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AttachmentCompact model module. * @module model/AttachmentCompact - * @version 2.0.4 + * @version 2.0.5 */ export class AttachmentCompact { /** diff --git a/src/model/AttachmentRequest.js b/src/model/AttachmentRequest.js index bcc8cb87..332c8143 100644 --- a/src/model/AttachmentRequest.js +++ b/src/model/AttachmentRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AttachmentRequest model module. * @module model/AttachmentRequest - * @version 2.0.4 + * @version 2.0.5 */ export class AttachmentRequest { /** diff --git a/src/model/AttachmentResponse.js b/src/model/AttachmentResponse.js index 215a6b18..bce7e2f9 100644 --- a/src/model/AttachmentResponse.js +++ b/src/model/AttachmentResponse.js @@ -18,7 +18,7 @@ import {AttachmentResponseParent} from './AttachmentResponseParent'; /** * The AttachmentResponse model module. * @module model/AttachmentResponse - * @version 2.0.4 + * @version 2.0.5 */ export class AttachmentResponse { /** diff --git a/src/model/AttachmentResponseArray.js b/src/model/AttachmentResponseArray.js index e1c24f98..6996babf 100644 --- a/src/model/AttachmentResponseArray.js +++ b/src/model/AttachmentResponseArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The AttachmentResponseArray model module. * @module model/AttachmentResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class AttachmentResponseArray { /** diff --git a/src/model/AttachmentResponseData.js b/src/model/AttachmentResponseData.js index 31f98466..693c6edb 100644 --- a/src/model/AttachmentResponseData.js +++ b/src/model/AttachmentResponseData.js @@ -18,7 +18,7 @@ import {AttachmentResponse} from './AttachmentResponse'; /** * The AttachmentResponseData model module. * @module model/AttachmentResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class AttachmentResponseData { /** diff --git a/src/model/AttachmentResponseParent.js b/src/model/AttachmentResponseParent.js index 7c7b5937..cb3deb15 100644 --- a/src/model/AttachmentResponseParent.js +++ b/src/model/AttachmentResponseParent.js @@ -18,7 +18,7 @@ import {AttachmentResponseParentCreatedBy} from './AttachmentResponseParentCreat /** * The AttachmentResponseParent model module. * @module model/AttachmentResponseParent - * @version 2.0.4 + * @version 2.0.5 */ export class AttachmentResponseParent { /** diff --git a/src/model/AttachmentResponseParentCreatedBy.js b/src/model/AttachmentResponseParentCreatedBy.js index bd451d32..267a18ef 100644 --- a/src/model/AttachmentResponseParentCreatedBy.js +++ b/src/model/AttachmentResponseParentCreatedBy.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AttachmentResponseParentCreatedBy model module. * @module model/AttachmentResponseParentCreatedBy - * @version 2.0.4 + * @version 2.0.5 */ export class AttachmentResponseParentCreatedBy { /** diff --git a/src/model/AuditLogEvent.js b/src/model/AuditLogEvent.js index 38a3caea..c5e6ad9f 100644 --- a/src/model/AuditLogEvent.js +++ b/src/model/AuditLogEvent.js @@ -20,7 +20,7 @@ import {AuditLogEventResource} from './AuditLogEventResource'; /** * The AuditLogEvent model module. * @module model/AuditLogEvent - * @version 2.0.4 + * @version 2.0.5 */ export class AuditLogEvent { /** diff --git a/src/model/AuditLogEventActor.js b/src/model/AuditLogEventActor.js index 27d8117e..cc130410 100644 --- a/src/model/AuditLogEventActor.js +++ b/src/model/AuditLogEventActor.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AuditLogEventActor model module. * @module model/AuditLogEventActor - * @version 2.0.4 + * @version 2.0.5 */ export class AuditLogEventActor { /** diff --git a/src/model/AuditLogEventArray.js b/src/model/AuditLogEventArray.js index c5616de1..0346c2af 100644 --- a/src/model/AuditLogEventArray.js +++ b/src/model/AuditLogEventArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The AuditLogEventArray model module. * @module model/AuditLogEventArray - * @version 2.0.4 + * @version 2.0.5 */ export class AuditLogEventArray { /** diff --git a/src/model/AuditLogEventContext.js b/src/model/AuditLogEventContext.js index 2c82feb5..f8504e7a 100644 --- a/src/model/AuditLogEventContext.js +++ b/src/model/AuditLogEventContext.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AuditLogEventContext model module. * @module model/AuditLogEventContext - * @version 2.0.4 + * @version 2.0.5 */ export class AuditLogEventContext { /** diff --git a/src/model/AuditLogEventDetails.js b/src/model/AuditLogEventDetails.js index 6b70c1d4..03ada408 100644 --- a/src/model/AuditLogEventDetails.js +++ b/src/model/AuditLogEventDetails.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AuditLogEventDetails model module. * @module model/AuditLogEventDetails - * @version 2.0.4 + * @version 2.0.5 */ export class AuditLogEventDetails { /** diff --git a/src/model/AuditLogEventResource.js b/src/model/AuditLogEventResource.js index 0356ff6e..42bdf82a 100644 --- a/src/model/AuditLogEventResource.js +++ b/src/model/AuditLogEventResource.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The AuditLogEventResource model module. * @module model/AuditLogEventResource - * @version 2.0.4 + * @version 2.0.5 */ export class AuditLogEventResource { /** diff --git a/src/model/BatchBody.js b/src/model/BatchBody.js index 3c404122..1a3d46e8 100644 --- a/src/model/BatchBody.js +++ b/src/model/BatchBody.js @@ -18,7 +18,7 @@ import {BatchRequest} from './BatchRequest'; /** * The BatchBody model module. * @module model/BatchBody - * @version 2.0.4 + * @version 2.0.5 */ export class BatchBody { /** diff --git a/src/model/BatchRequest.js b/src/model/BatchRequest.js index b6c1b951..397c3e90 100644 --- a/src/model/BatchRequest.js +++ b/src/model/BatchRequest.js @@ -18,7 +18,7 @@ import {BatchRequestActions} from './BatchRequestActions'; /** * The BatchRequest model module. * @module model/BatchRequest - * @version 2.0.4 + * @version 2.0.5 */ export class BatchRequest { /** diff --git a/src/model/BatchRequestAction.js b/src/model/BatchRequestAction.js index 2ad18d82..e88ce70a 100644 --- a/src/model/BatchRequestAction.js +++ b/src/model/BatchRequestAction.js @@ -18,7 +18,7 @@ import {BatchRequestOptions} from './BatchRequestOptions'; /** * The BatchRequestAction model module. * @module model/BatchRequestAction - * @version 2.0.4 + * @version 2.0.5 */ export class BatchRequestAction { /** diff --git a/src/model/BatchRequestActions.js b/src/model/BatchRequestActions.js index 5b08999d..b68548f1 100644 --- a/src/model/BatchRequestActions.js +++ b/src/model/BatchRequestActions.js @@ -18,7 +18,7 @@ import {BatchRequestOptions} from './BatchRequestOptions'; /** * The BatchRequestActions model module. * @module model/BatchRequestActions - * @version 2.0.4 + * @version 2.0.5 */ export class BatchRequestActions { /** diff --git a/src/model/BatchRequestOptions.js b/src/model/BatchRequestOptions.js index 710f0e83..a7e6b726 100644 --- a/src/model/BatchRequestOptions.js +++ b/src/model/BatchRequestOptions.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The BatchRequestOptions model module. * @module model/BatchRequestOptions - * @version 2.0.4 + * @version 2.0.5 */ export class BatchRequestOptions { /** diff --git a/src/model/BatchResponse.js b/src/model/BatchResponse.js index 8f8c60af..5535697b 100644 --- a/src/model/BatchResponse.js +++ b/src/model/BatchResponse.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The BatchResponse model module. * @module model/BatchResponse - * @version 2.0.4 + * @version 2.0.5 */ export class BatchResponse { /** diff --git a/src/model/BatchResponseArray.js b/src/model/BatchResponseArray.js index 9aa04d3a..e6bc38f4 100644 --- a/src/model/BatchResponseArray.js +++ b/src/model/BatchResponseArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The BatchResponseArray model module. * @module model/BatchResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class BatchResponseArray { /** diff --git a/src/model/CreateMembershipRequest.js b/src/model/CreateMembershipRequest.js index 318eb6a8..1aa52c90 100644 --- a/src/model/CreateMembershipRequest.js +++ b/src/model/CreateMembershipRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CreateMembershipRequest model module. * @module model/CreateMembershipRequest - * @version 2.0.4 + * @version 2.0.5 */ export class CreateMembershipRequest { /** diff --git a/src/model/CreateTimeTrackingEntryRequest.js b/src/model/CreateTimeTrackingEntryRequest.js index 596a7bf2..146b8a51 100644 --- a/src/model/CreateTimeTrackingEntryRequest.js +++ b/src/model/CreateTimeTrackingEntryRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CreateTimeTrackingEntryRequest model module. * @module model/CreateTimeTrackingEntryRequest - * @version 2.0.4 + * @version 2.0.5 */ export class CreateTimeTrackingEntryRequest { /** diff --git a/src/model/CustomFieldBase.js b/src/model/CustomFieldBase.js index 1e13594f..d2228ebb 100644 --- a/src/model/CustomFieldBase.js +++ b/src/model/CustomFieldBase.js @@ -20,7 +20,7 @@ import {CustomFieldBaseEnumValue} from './CustomFieldBaseEnumValue'; /** * The CustomFieldBase model module. * @module model/CustomFieldBase - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldBase { /** diff --git a/src/model/CustomFieldBaseDateValue.js b/src/model/CustomFieldBaseDateValue.js index 1b0fd9ca..b4c6d92c 100644 --- a/src/model/CustomFieldBaseDateValue.js +++ b/src/model/CustomFieldBaseDateValue.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldBaseDateValue model module. * @module model/CustomFieldBaseDateValue - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldBaseDateValue { /** diff --git a/src/model/CustomFieldBaseEnumOptions.js b/src/model/CustomFieldBaseEnumOptions.js index ce3e3601..02ccca9a 100644 --- a/src/model/CustomFieldBaseEnumOptions.js +++ b/src/model/CustomFieldBaseEnumOptions.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldBaseEnumOptions model module. * @module model/CustomFieldBaseEnumOptions - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldBaseEnumOptions { /** diff --git a/src/model/CustomFieldBaseEnumValue.js b/src/model/CustomFieldBaseEnumValue.js index 37222769..ec28d78c 100644 --- a/src/model/CustomFieldBaseEnumValue.js +++ b/src/model/CustomFieldBaseEnumValue.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldBaseEnumValue model module. * @module model/CustomFieldBaseEnumValue - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldBaseEnumValue { /** diff --git a/src/model/CustomFieldCompact.js b/src/model/CustomFieldCompact.js index 4734d03a..4410f4fc 100644 --- a/src/model/CustomFieldCompact.js +++ b/src/model/CustomFieldCompact.js @@ -20,7 +20,7 @@ import {CustomFieldBaseEnumValue} from './CustomFieldBaseEnumValue'; /** * The CustomFieldCompact model module. * @module model/CustomFieldCompact - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldCompact { /** diff --git a/src/model/CustomFieldGidEnumOptionsBody.js b/src/model/CustomFieldGidEnumOptionsBody.js index 87578898..003e7093 100644 --- a/src/model/CustomFieldGidEnumOptionsBody.js +++ b/src/model/CustomFieldGidEnumOptionsBody.js @@ -18,7 +18,7 @@ import {EnumOptionRequest} from './EnumOptionRequest'; /** * The CustomFieldGidEnumOptionsBody model module. * @module model/CustomFieldGidEnumOptionsBody - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldGidEnumOptionsBody { /** diff --git a/src/model/CustomFieldRequest.js b/src/model/CustomFieldRequest.js index b6a6a028..72ab2d5e 100644 --- a/src/model/CustomFieldRequest.js +++ b/src/model/CustomFieldRequest.js @@ -20,7 +20,7 @@ import {CustomFieldBaseEnumValue} from './CustomFieldBaseEnumValue'; /** * The CustomFieldRequest model module. * @module model/CustomFieldRequest - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldRequest { /** diff --git a/src/model/CustomFieldResponse.js b/src/model/CustomFieldResponse.js index 20352fc2..c23fd7fe 100644 --- a/src/model/CustomFieldResponse.js +++ b/src/model/CustomFieldResponse.js @@ -22,7 +22,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The CustomFieldResponse model module. * @module model/CustomFieldResponse - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldResponse { /** diff --git a/src/model/CustomFieldResponseArray.js b/src/model/CustomFieldResponseArray.js index 6d51e738..ba1242b2 100644 --- a/src/model/CustomFieldResponseArray.js +++ b/src/model/CustomFieldResponseArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The CustomFieldResponseArray model module. * @module model/CustomFieldResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldResponseArray { /** diff --git a/src/model/CustomFieldResponseCreatedBy.js b/src/model/CustomFieldResponseCreatedBy.js index b921d37f..1f116971 100644 --- a/src/model/CustomFieldResponseCreatedBy.js +++ b/src/model/CustomFieldResponseCreatedBy.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldResponseCreatedBy model module. * @module model/CustomFieldResponseCreatedBy - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldResponseCreatedBy { /** diff --git a/src/model/CustomFieldResponseData.js b/src/model/CustomFieldResponseData.js index 109fb03b..1d1bb099 100644 --- a/src/model/CustomFieldResponseData.js +++ b/src/model/CustomFieldResponseData.js @@ -18,7 +18,7 @@ import {CustomFieldResponse} from './CustomFieldResponse'; /** * The CustomFieldResponseData model module. * @module model/CustomFieldResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldResponseData { /** diff --git a/src/model/CustomFieldResponsePeopleValue.js b/src/model/CustomFieldResponsePeopleValue.js index 275a39f6..c6fb4259 100644 --- a/src/model/CustomFieldResponsePeopleValue.js +++ b/src/model/CustomFieldResponsePeopleValue.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldResponsePeopleValue model module. * @module model/CustomFieldResponsePeopleValue - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldResponsePeopleValue { /** diff --git a/src/model/CustomFieldSettingBase.js b/src/model/CustomFieldSettingBase.js index 02e1062d..c0df4e72 100644 --- a/src/model/CustomFieldSettingBase.js +++ b/src/model/CustomFieldSettingBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldSettingBase model module. * @module model/CustomFieldSettingBase - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldSettingBase { /** diff --git a/src/model/CustomFieldSettingCompact.js b/src/model/CustomFieldSettingCompact.js index 48c98de8..7a5e3aa3 100644 --- a/src/model/CustomFieldSettingCompact.js +++ b/src/model/CustomFieldSettingCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldSettingCompact model module. * @module model/CustomFieldSettingCompact - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldSettingCompact { /** diff --git a/src/model/CustomFieldSettingResponse.js b/src/model/CustomFieldSettingResponse.js index ca92307c..2a021987 100644 --- a/src/model/CustomFieldSettingResponse.js +++ b/src/model/CustomFieldSettingResponse.js @@ -20,7 +20,7 @@ import {CustomFieldSettingResponseProject} from './CustomFieldSettingResponsePro /** * The CustomFieldSettingResponse model module. * @module model/CustomFieldSettingResponse - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldSettingResponse { /** diff --git a/src/model/CustomFieldSettingResponseArray.js b/src/model/CustomFieldSettingResponseArray.js index 2ab02d44..029309b6 100644 --- a/src/model/CustomFieldSettingResponseArray.js +++ b/src/model/CustomFieldSettingResponseArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The CustomFieldSettingResponseArray model module. * @module model/CustomFieldSettingResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldSettingResponseArray { /** diff --git a/src/model/CustomFieldSettingResponseCustomField.js b/src/model/CustomFieldSettingResponseCustomField.js index 5bae66e0..f1966474 100644 --- a/src/model/CustomFieldSettingResponseCustomField.js +++ b/src/model/CustomFieldSettingResponseCustomField.js @@ -22,7 +22,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The CustomFieldSettingResponseCustomField model module. * @module model/CustomFieldSettingResponseCustomField - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldSettingResponseCustomField { /** diff --git a/src/model/CustomFieldSettingResponseData.js b/src/model/CustomFieldSettingResponseData.js index 4119a3fe..ff0c5bac 100644 --- a/src/model/CustomFieldSettingResponseData.js +++ b/src/model/CustomFieldSettingResponseData.js @@ -18,7 +18,7 @@ import {CustomFieldSettingResponse} from './CustomFieldSettingResponse'; /** * The CustomFieldSettingResponseData model module. * @module model/CustomFieldSettingResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldSettingResponseData { /** diff --git a/src/model/CustomFieldSettingResponseParent.js b/src/model/CustomFieldSettingResponseParent.js index 3411239f..4be4bb1f 100644 --- a/src/model/CustomFieldSettingResponseParent.js +++ b/src/model/CustomFieldSettingResponseParent.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldSettingResponseParent model module. * @module model/CustomFieldSettingResponseParent - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldSettingResponseParent { /** diff --git a/src/model/CustomFieldSettingResponseProject.js b/src/model/CustomFieldSettingResponseProject.js index 5ed73c2f..f6fbfa40 100644 --- a/src/model/CustomFieldSettingResponseProject.js +++ b/src/model/CustomFieldSettingResponseProject.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The CustomFieldSettingResponseProject model module. * @module model/CustomFieldSettingResponseProject - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldSettingResponseProject { /** diff --git a/src/model/CustomFieldsBody.js b/src/model/CustomFieldsBody.js index f0fa6b73..ae562af4 100644 --- a/src/model/CustomFieldsBody.js +++ b/src/model/CustomFieldsBody.js @@ -18,7 +18,7 @@ import {CustomFieldRequest} from './CustomFieldRequest'; /** * The CustomFieldsBody model module. * @module model/CustomFieldsBody - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldsBody { /** diff --git a/src/model/CustomFieldsCustomFieldGidBody.js b/src/model/CustomFieldsCustomFieldGidBody.js index 0be7dc66..554debcc 100644 --- a/src/model/CustomFieldsCustomFieldGidBody.js +++ b/src/model/CustomFieldsCustomFieldGidBody.js @@ -18,7 +18,7 @@ import {CustomFieldRequest} from './CustomFieldRequest'; /** * The CustomFieldsCustomFieldGidBody model module. * @module model/CustomFieldsCustomFieldGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class CustomFieldsCustomFieldGidBody { /** diff --git a/src/model/DateVariableCompact.js b/src/model/DateVariableCompact.js index c1a81814..00548946 100644 --- a/src/model/DateVariableCompact.js +++ b/src/model/DateVariableCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The DateVariableCompact model module. * @module model/DateVariableCompact - * @version 2.0.4 + * @version 2.0.5 */ export class DateVariableCompact { /** diff --git a/src/model/DateVariableRequest.js b/src/model/DateVariableRequest.js index c4074b8a..e4a1984a 100644 --- a/src/model/DateVariableRequest.js +++ b/src/model/DateVariableRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The DateVariableRequest model module. * @module model/DateVariableRequest - * @version 2.0.4 + * @version 2.0.5 */ export class DateVariableRequest { /** diff --git a/src/model/EmptyResponse.js b/src/model/EmptyResponse.js index 69e5110b..8c724df8 100644 --- a/src/model/EmptyResponse.js +++ b/src/model/EmptyResponse.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EmptyResponse model module. * @module model/EmptyResponse - * @version 2.0.4 + * @version 2.0.5 */ export class EmptyResponse { /** diff --git a/src/model/EmptyResponseData.js b/src/model/EmptyResponseData.js index df14e59d..f91b5352 100644 --- a/src/model/EmptyResponseData.js +++ b/src/model/EmptyResponseData.js @@ -18,7 +18,7 @@ import {EmptyResponse} from './EmptyResponse'; /** * The EmptyResponseData model module. * @module model/EmptyResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class EmptyResponseData { /** diff --git a/src/model/EnumOption.js b/src/model/EnumOption.js index 4ee8e13b..13721437 100644 --- a/src/model/EnumOption.js +++ b/src/model/EnumOption.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EnumOption model module. * @module model/EnumOption - * @version 2.0.4 + * @version 2.0.5 */ export class EnumOption { /** diff --git a/src/model/EnumOptionBase.js b/src/model/EnumOptionBase.js index c706ddd3..a7373bed 100644 --- a/src/model/EnumOptionBase.js +++ b/src/model/EnumOptionBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EnumOptionBase model module. * @module model/EnumOptionBase - * @version 2.0.4 + * @version 2.0.5 */ export class EnumOptionBase { /** diff --git a/src/model/EnumOptionData.js b/src/model/EnumOptionData.js index 537be922..80e4922f 100644 --- a/src/model/EnumOptionData.js +++ b/src/model/EnumOptionData.js @@ -18,7 +18,7 @@ import {EnumOption} from './EnumOption'; /** * The EnumOptionData model module. * @module model/EnumOptionData - * @version 2.0.4 + * @version 2.0.5 */ export class EnumOptionData { /** diff --git a/src/model/EnumOptionInsertRequest.js b/src/model/EnumOptionInsertRequest.js index 598bf7c2..93a3598b 100644 --- a/src/model/EnumOptionInsertRequest.js +++ b/src/model/EnumOptionInsertRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EnumOptionInsertRequest model module. * @module model/EnumOptionInsertRequest - * @version 2.0.4 + * @version 2.0.5 */ export class EnumOptionInsertRequest { /** diff --git a/src/model/EnumOptionRequest.js b/src/model/EnumOptionRequest.js index dc7def8e..392d96d9 100644 --- a/src/model/EnumOptionRequest.js +++ b/src/model/EnumOptionRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EnumOptionRequest model module. * @module model/EnumOptionRequest - * @version 2.0.4 + * @version 2.0.5 */ export class EnumOptionRequest { /** diff --git a/src/model/EnumOptionsEnumOptionGidBody.js b/src/model/EnumOptionsEnumOptionGidBody.js index 6cf7652d..640763c9 100644 --- a/src/model/EnumOptionsEnumOptionGidBody.js +++ b/src/model/EnumOptionsEnumOptionGidBody.js @@ -18,7 +18,7 @@ import {EnumOptionBase} from './EnumOptionBase'; /** * The EnumOptionsEnumOptionGidBody model module. * @module model/EnumOptionsEnumOptionGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class EnumOptionsEnumOptionGidBody { /** diff --git a/src/model/EnumOptionsInsertBody.js b/src/model/EnumOptionsInsertBody.js index 889267a9..f47885bb 100644 --- a/src/model/EnumOptionsInsertBody.js +++ b/src/model/EnumOptionsInsertBody.js @@ -18,7 +18,7 @@ import {EnumOptionInsertRequest} from './EnumOptionInsertRequest'; /** * The EnumOptionsInsertBody model module. * @module model/EnumOptionsInsertBody - * @version 2.0.4 + * @version 2.0.5 */ export class EnumOptionsInsertBody { /** diff --git a/src/model/Error.js b/src/model/Error.js index 0c04ca12..33fd863e 100644 --- a/src/model/Error.js +++ b/src/model/Error.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The Error model module. * @module model/Error - * @version 2.0.4 + * @version 2.0.5 */ export class Error { /** diff --git a/src/model/ErrorResponse.js b/src/model/ErrorResponse.js index 2f2ca9ff..60c4fe2f 100644 --- a/src/model/ErrorResponse.js +++ b/src/model/ErrorResponse.js @@ -18,7 +18,7 @@ import {ErrorResponseErrors} from './ErrorResponseErrors'; /** * The ErrorResponse model module. * @module model/ErrorResponse - * @version 2.0.4 + * @version 2.0.5 */ export class ErrorResponse { /** diff --git a/src/model/ErrorResponseErrors.js b/src/model/ErrorResponseErrors.js index 2d27abcd..637c9fa9 100644 --- a/src/model/ErrorResponseErrors.js +++ b/src/model/ErrorResponseErrors.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ErrorResponseErrors model module. * @module model/ErrorResponseErrors - * @version 2.0.4 + * @version 2.0.5 */ export class ErrorResponseErrors { /** diff --git a/src/model/EventResponse.js b/src/model/EventResponse.js index ba17e1de..4bda7747 100644 --- a/src/model/EventResponse.js +++ b/src/model/EventResponse.js @@ -21,7 +21,7 @@ import {EventResponseUser} from './EventResponseUser'; /** * The EventResponse model module. * @module model/EventResponse - * @version 2.0.4 + * @version 2.0.5 */ export class EventResponse { /** diff --git a/src/model/EventResponseArray.js b/src/model/EventResponseArray.js index 9eefa3b9..c03bdea4 100644 --- a/src/model/EventResponseArray.js +++ b/src/model/EventResponseArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The EventResponseArray model module. * @module model/EventResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class EventResponseArray { /** diff --git a/src/model/EventResponseChange.js b/src/model/EventResponseChange.js index 9bb3a839..24d7b470 100644 --- a/src/model/EventResponseChange.js +++ b/src/model/EventResponseChange.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EventResponseChange model module. * @module model/EventResponseChange - * @version 2.0.4 + * @version 2.0.5 */ export class EventResponseChange { /** diff --git a/src/model/EventResponseParent.js b/src/model/EventResponseParent.js index 394b93c9..8a44359d 100644 --- a/src/model/EventResponseParent.js +++ b/src/model/EventResponseParent.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EventResponseParent model module. * @module model/EventResponseParent - * @version 2.0.4 + * @version 2.0.5 */ export class EventResponseParent { /** diff --git a/src/model/EventResponseResource.js b/src/model/EventResponseResource.js index c29b8fc7..bdfef311 100644 --- a/src/model/EventResponseResource.js +++ b/src/model/EventResponseResource.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EventResponseResource model module. * @module model/EventResponseResource - * @version 2.0.4 + * @version 2.0.5 */ export class EventResponseResource { /** diff --git a/src/model/EventResponseUser.js b/src/model/EventResponseUser.js index 5a821feb..d4b0a182 100644 --- a/src/model/EventResponseUser.js +++ b/src/model/EventResponseUser.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The EventResponseUser model module. * @module model/EventResponseUser - * @version 2.0.4 + * @version 2.0.5 */ export class EventResponseUser { /** diff --git a/src/model/GoalAddSubgoalRequest.js b/src/model/GoalAddSubgoalRequest.js index c8390c9a..56027743 100644 --- a/src/model/GoalAddSubgoalRequest.js +++ b/src/model/GoalAddSubgoalRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalAddSubgoalRequest model module. * @module model/GoalAddSubgoalRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalAddSubgoalRequest { /** diff --git a/src/model/GoalAddSupportingRelationshipRequest.js b/src/model/GoalAddSupportingRelationshipRequest.js index af24b372..7cd6f1fa 100644 --- a/src/model/GoalAddSupportingRelationshipRequest.js +++ b/src/model/GoalAddSupportingRelationshipRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalAddSupportingRelationshipRequest model module. * @module model/GoalAddSupportingRelationshipRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalAddSupportingRelationshipRequest { /** diff --git a/src/model/GoalAddSupportingWorkRequest.js b/src/model/GoalAddSupportingWorkRequest.js index 28292e77..35ccae90 100644 --- a/src/model/GoalAddSupportingWorkRequest.js +++ b/src/model/GoalAddSupportingWorkRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalAddSupportingWorkRequest model module. * @module model/GoalAddSupportingWorkRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalAddSupportingWorkRequest { /** diff --git a/src/model/GoalBase.js b/src/model/GoalBase.js index b4c35d20..132d39f0 100644 --- a/src/model/GoalBase.js +++ b/src/model/GoalBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalBase model module. * @module model/GoalBase - * @version 2.0.4 + * @version 2.0.5 */ export class GoalBase { /** diff --git a/src/model/GoalCompact.js b/src/model/GoalCompact.js index d2654c0d..85b832be 100644 --- a/src/model/GoalCompact.js +++ b/src/model/GoalCompact.js @@ -18,7 +18,7 @@ import {CustomFieldResponseCreatedBy} from './CustomFieldResponseCreatedBy'; /** * The GoalCompact model module. * @module model/GoalCompact - * @version 2.0.4 + * @version 2.0.5 */ export class GoalCompact { /** diff --git a/src/model/GoalGidAddFollowersBody.js b/src/model/GoalGidAddFollowersBody.js index 180b2485..081cea25 100644 --- a/src/model/GoalGidAddFollowersBody.js +++ b/src/model/GoalGidAddFollowersBody.js @@ -18,7 +18,7 @@ import {TaskAddFollowersRequest} from './TaskAddFollowersRequest'; /** * The GoalGidAddFollowersBody model module. * @module model/GoalGidAddFollowersBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalGidAddFollowersBody { /** diff --git a/src/model/GoalGidAddSupportingRelationshipBody.js b/src/model/GoalGidAddSupportingRelationshipBody.js index 3fbe1d1e..250aea59 100644 --- a/src/model/GoalGidAddSupportingRelationshipBody.js +++ b/src/model/GoalGidAddSupportingRelationshipBody.js @@ -18,7 +18,7 @@ import {GoalAddSupportingRelationshipRequest} from './GoalAddSupportingRelations /** * The GoalGidAddSupportingRelationshipBody model module. * @module model/GoalGidAddSupportingRelationshipBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalGidAddSupportingRelationshipBody { /** diff --git a/src/model/GoalGidRemoveFollowersBody.js b/src/model/GoalGidRemoveFollowersBody.js index 33083243..bc527297 100644 --- a/src/model/GoalGidRemoveFollowersBody.js +++ b/src/model/GoalGidRemoveFollowersBody.js @@ -18,7 +18,7 @@ import {TaskAddFollowersRequest} from './TaskAddFollowersRequest'; /** * The GoalGidRemoveFollowersBody model module. * @module model/GoalGidRemoveFollowersBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalGidRemoveFollowersBody { /** diff --git a/src/model/GoalGidRemoveSupportingRelationshipBody.js b/src/model/GoalGidRemoveSupportingRelationshipBody.js index 3c50ba08..911471f4 100644 --- a/src/model/GoalGidRemoveSupportingRelationshipBody.js +++ b/src/model/GoalGidRemoveSupportingRelationshipBody.js @@ -18,7 +18,7 @@ import {GoalRemoveSupportingRelationshipRequest} from './GoalRemoveSupportingRel /** * The GoalGidRemoveSupportingRelationshipBody model module. * @module model/GoalGidRemoveSupportingRelationshipBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalGidRemoveSupportingRelationshipBody { /** diff --git a/src/model/GoalGidSetMetricBody.js b/src/model/GoalGidSetMetricBody.js index e8e79a64..ad865ff8 100644 --- a/src/model/GoalGidSetMetricBody.js +++ b/src/model/GoalGidSetMetricBody.js @@ -18,7 +18,7 @@ import {GoalMetricRequest} from './GoalMetricRequest'; /** * The GoalGidSetMetricBody model module. * @module model/GoalGidSetMetricBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalGidSetMetricBody { /** diff --git a/src/model/GoalGidSetMetricCurrentValueBody.js b/src/model/GoalGidSetMetricCurrentValueBody.js index 4bd5db6c..4e3cc859 100644 --- a/src/model/GoalGidSetMetricCurrentValueBody.js +++ b/src/model/GoalGidSetMetricCurrentValueBody.js @@ -18,7 +18,7 @@ import {GoalMetricCurrentValueRequest} from './GoalMetricCurrentValueRequest'; /** * The GoalGidSetMetricCurrentValueBody model module. * @module model/GoalGidSetMetricCurrentValueBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalGidSetMetricCurrentValueBody { /** diff --git a/src/model/GoalMembershipBase.js b/src/model/GoalMembershipBase.js index c3047a84..0dcfa06c 100644 --- a/src/model/GoalMembershipBase.js +++ b/src/model/GoalMembershipBase.js @@ -20,7 +20,7 @@ import {MembershipCompactParent} from './MembershipCompactParent'; /** * The GoalMembershipBase model module. * @module model/GoalMembershipBase - * @version 2.0.4 + * @version 2.0.5 */ export class GoalMembershipBase { /** diff --git a/src/model/GoalMembershipCompact.js b/src/model/GoalMembershipCompact.js index b76c51d2..24d47281 100644 --- a/src/model/GoalMembershipCompact.js +++ b/src/model/GoalMembershipCompact.js @@ -20,7 +20,7 @@ import {MembershipCompactParent} from './MembershipCompactParent'; /** * The GoalMembershipCompact model module. * @module model/GoalMembershipCompact - * @version 2.0.4 + * @version 2.0.5 */ export class GoalMembershipCompact { /** diff --git a/src/model/GoalMembershipResponse.js b/src/model/GoalMembershipResponse.js index 141d3bca..8c5d9040 100644 --- a/src/model/GoalMembershipResponse.js +++ b/src/model/GoalMembershipResponse.js @@ -22,7 +22,7 @@ import {MembershipCompactParent} from './MembershipCompactParent'; /** * The GoalMembershipResponse model module. * @module model/GoalMembershipResponse - * @version 2.0.4 + * @version 2.0.5 */ export class GoalMembershipResponse { /** diff --git a/src/model/GoalMembershipResponseUser.js b/src/model/GoalMembershipResponseUser.js index 3938a1e0..fbcd1e22 100644 --- a/src/model/GoalMembershipResponseUser.js +++ b/src/model/GoalMembershipResponseUser.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalMembershipResponseUser model module. * @module model/GoalMembershipResponseUser - * @version 2.0.4 + * @version 2.0.5 */ export class GoalMembershipResponseUser { /** diff --git a/src/model/GoalMembershipResponseWorkspace.js b/src/model/GoalMembershipResponseWorkspace.js index 79d09494..62ed2af1 100644 --- a/src/model/GoalMembershipResponseWorkspace.js +++ b/src/model/GoalMembershipResponseWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalMembershipResponseWorkspace model module. * @module model/GoalMembershipResponseWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class GoalMembershipResponseWorkspace { /** diff --git a/src/model/GoalMetricBase.js b/src/model/GoalMetricBase.js index 1cae960f..0ba94bb0 100644 --- a/src/model/GoalMetricBase.js +++ b/src/model/GoalMetricBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalMetricBase model module. * @module model/GoalMetricBase - * @version 2.0.4 + * @version 2.0.5 */ export class GoalMetricBase { /** diff --git a/src/model/GoalMetricCurrentValueRequest.js b/src/model/GoalMetricCurrentValueRequest.js index 609de21a..7327167f 100644 --- a/src/model/GoalMetricCurrentValueRequest.js +++ b/src/model/GoalMetricCurrentValueRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalMetricCurrentValueRequest model module. * @module model/GoalMetricCurrentValueRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalMetricCurrentValueRequest { /** diff --git a/src/model/GoalMetricRequest.js b/src/model/GoalMetricRequest.js index c30d57ae..845f7227 100644 --- a/src/model/GoalMetricRequest.js +++ b/src/model/GoalMetricRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalMetricRequest model module. * @module model/GoalMetricRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalMetricRequest { /** diff --git a/src/model/GoalRelationshipBase.js b/src/model/GoalRelationshipBase.js index 5022e94b..b5b3e687 100644 --- a/src/model/GoalRelationshipBase.js +++ b/src/model/GoalRelationshipBase.js @@ -19,7 +19,7 @@ import {GoalRelationshipBaseSupportingResource} from './GoalRelationshipBaseSupp /** * The GoalRelationshipBase model module. * @module model/GoalRelationshipBase - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipBase { /** diff --git a/src/model/GoalRelationshipBaseSupportedGoal.js b/src/model/GoalRelationshipBaseSupportedGoal.js index 6ca3a9fb..7630848a 100644 --- a/src/model/GoalRelationshipBaseSupportedGoal.js +++ b/src/model/GoalRelationshipBaseSupportedGoal.js @@ -18,7 +18,7 @@ import {CustomFieldResponseCreatedBy} from './CustomFieldResponseCreatedBy'; /** * The GoalRelationshipBaseSupportedGoal model module. * @module model/GoalRelationshipBaseSupportedGoal - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipBaseSupportedGoal { /** diff --git a/src/model/GoalRelationshipBaseSupportingResource.js b/src/model/GoalRelationshipBaseSupportingResource.js index 44a29f44..9d8c3cd7 100644 --- a/src/model/GoalRelationshipBaseSupportingResource.js +++ b/src/model/GoalRelationshipBaseSupportingResource.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalRelationshipBaseSupportingResource model module. * @module model/GoalRelationshipBaseSupportingResource - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipBaseSupportingResource { /** diff --git a/src/model/GoalRelationshipCompact.js b/src/model/GoalRelationshipCompact.js index d114de65..bc967535 100644 --- a/src/model/GoalRelationshipCompact.js +++ b/src/model/GoalRelationshipCompact.js @@ -18,7 +18,7 @@ import {GoalRelationshipBaseSupportingResource} from './GoalRelationshipBaseSupp /** * The GoalRelationshipCompact model module. * @module model/GoalRelationshipCompact - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipCompact { /** diff --git a/src/model/GoalRelationshipRequest.js b/src/model/GoalRelationshipRequest.js index 17abb6ba..82d5e8e8 100644 --- a/src/model/GoalRelationshipRequest.js +++ b/src/model/GoalRelationshipRequest.js @@ -19,7 +19,7 @@ import {GoalRelationshipBaseSupportingResource} from './GoalRelationshipBaseSupp /** * The GoalRelationshipRequest model module. * @module model/GoalRelationshipRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipRequest { /** diff --git a/src/model/GoalRelationshipResponse.js b/src/model/GoalRelationshipResponse.js index c222c1f4..945d8275 100644 --- a/src/model/GoalRelationshipResponse.js +++ b/src/model/GoalRelationshipResponse.js @@ -19,7 +19,7 @@ import {GoalRelationshipBaseSupportingResource} from './GoalRelationshipBaseSupp /** * The GoalRelationshipResponse model module. * @module model/GoalRelationshipResponse - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipResponse { /** diff --git a/src/model/GoalRelationshipResponseArray.js b/src/model/GoalRelationshipResponseArray.js index cede08c1..11857e1b 100644 --- a/src/model/GoalRelationshipResponseArray.js +++ b/src/model/GoalRelationshipResponseArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The GoalRelationshipResponseArray model module. * @module model/GoalRelationshipResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipResponseArray { /** diff --git a/src/model/GoalRelationshipResponseData.js b/src/model/GoalRelationshipResponseData.js index 4b5584ac..c2d7c301 100644 --- a/src/model/GoalRelationshipResponseData.js +++ b/src/model/GoalRelationshipResponseData.js @@ -18,7 +18,7 @@ import {GoalRelationshipResponse} from './GoalRelationshipResponse'; /** * The GoalRelationshipResponseData model module. * @module model/GoalRelationshipResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipResponseData { /** diff --git a/src/model/GoalRelationshipsGoalRelationshipGidBody.js b/src/model/GoalRelationshipsGoalRelationshipGidBody.js index e6b93475..af3710f2 100644 --- a/src/model/GoalRelationshipsGoalRelationshipGidBody.js +++ b/src/model/GoalRelationshipsGoalRelationshipGidBody.js @@ -18,7 +18,7 @@ import {GoalRelationshipRequest} from './GoalRelationshipRequest'; /** * The GoalRelationshipsGoalRelationshipGidBody model module. * @module model/GoalRelationshipsGoalRelationshipGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRelationshipsGoalRelationshipGidBody { /** diff --git a/src/model/GoalRemoveSubgoalRequest.js b/src/model/GoalRemoveSubgoalRequest.js index d14639bf..0be587fb 100644 --- a/src/model/GoalRemoveSubgoalRequest.js +++ b/src/model/GoalRemoveSubgoalRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalRemoveSubgoalRequest model module. * @module model/GoalRemoveSubgoalRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRemoveSubgoalRequest { /** diff --git a/src/model/GoalRemoveSupportingRelationshipRequest.js b/src/model/GoalRemoveSupportingRelationshipRequest.js index 70fc2878..3b5d8198 100644 --- a/src/model/GoalRemoveSupportingRelationshipRequest.js +++ b/src/model/GoalRemoveSupportingRelationshipRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalRemoveSupportingRelationshipRequest model module. * @module model/GoalRemoveSupportingRelationshipRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRemoveSupportingRelationshipRequest { /** diff --git a/src/model/GoalRequest.js b/src/model/GoalRequest.js index 263d9926..303e9d6d 100644 --- a/src/model/GoalRequest.js +++ b/src/model/GoalRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalRequest model module. * @module model/GoalRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRequest { /** diff --git a/src/model/GoalRequestBase.js b/src/model/GoalRequestBase.js index c1ee2386..2961bc61 100644 --- a/src/model/GoalRequestBase.js +++ b/src/model/GoalRequestBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalRequestBase model module. * @module model/GoalRequestBase - * @version 2.0.4 + * @version 2.0.5 */ export class GoalRequestBase { /** diff --git a/src/model/GoalResponse.js b/src/model/GoalResponse.js index 6ae948db..676b807d 100644 --- a/src/model/GoalResponse.js +++ b/src/model/GoalResponse.js @@ -25,7 +25,7 @@ import {GoalResponseWorkspace} from './GoalResponseWorkspace'; /** * The GoalResponse model module. * @module model/GoalResponse - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponse { /** diff --git a/src/model/GoalResponseArray.js b/src/model/GoalResponseArray.js index 44df1365..c42dba89 100644 --- a/src/model/GoalResponseArray.js +++ b/src/model/GoalResponseArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The GoalResponseArray model module. * @module model/GoalResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponseArray { /** diff --git a/src/model/GoalResponseCurrentStatusUpdate.js b/src/model/GoalResponseCurrentStatusUpdate.js index 8834c9da..c65dd5af 100644 --- a/src/model/GoalResponseCurrentStatusUpdate.js +++ b/src/model/GoalResponseCurrentStatusUpdate.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalResponseCurrentStatusUpdate model module. * @module model/GoalResponseCurrentStatusUpdate - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponseCurrentStatusUpdate { /** diff --git a/src/model/GoalResponseData.js b/src/model/GoalResponseData.js index d5b68a98..d8af6e1d 100644 --- a/src/model/GoalResponseData.js +++ b/src/model/GoalResponseData.js @@ -18,7 +18,7 @@ import {GoalResponse} from './GoalResponse'; /** * The GoalResponseData model module. * @module model/GoalResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponseData { /** diff --git a/src/model/GoalResponseLikes.js b/src/model/GoalResponseLikes.js index f4d08e36..dc4e96b0 100644 --- a/src/model/GoalResponseLikes.js +++ b/src/model/GoalResponseLikes.js @@ -18,7 +18,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The GoalResponseLikes model module. * @module model/GoalResponseLikes - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponseLikes { /** diff --git a/src/model/GoalResponseMetric.js b/src/model/GoalResponseMetric.js index 5236ba0a..7b52db91 100644 --- a/src/model/GoalResponseMetric.js +++ b/src/model/GoalResponseMetric.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalResponseMetric model module. * @module model/GoalResponseMetric - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponseMetric { /** diff --git a/src/model/GoalResponseTeam.js b/src/model/GoalResponseTeam.js index 085f9209..921d821f 100644 --- a/src/model/GoalResponseTeam.js +++ b/src/model/GoalResponseTeam.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalResponseTeam model module. * @module model/GoalResponseTeam - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponseTeam { /** diff --git a/src/model/GoalResponseTimePeriod.js b/src/model/GoalResponseTimePeriod.js index b277824c..3fb947c0 100644 --- a/src/model/GoalResponseTimePeriod.js +++ b/src/model/GoalResponseTimePeriod.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalResponseTimePeriod model module. * @module model/GoalResponseTimePeriod - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponseTimePeriod { /** diff --git a/src/model/GoalResponseWorkspace.js b/src/model/GoalResponseWorkspace.js index a3ce4410..ebf5c61b 100644 --- a/src/model/GoalResponseWorkspace.js +++ b/src/model/GoalResponseWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalResponseWorkspace model module. * @module model/GoalResponseWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class GoalResponseWorkspace { /** diff --git a/src/model/GoalUpdateRequest.js b/src/model/GoalUpdateRequest.js index e22f2aa1..dc31c86b 100644 --- a/src/model/GoalUpdateRequest.js +++ b/src/model/GoalUpdateRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The GoalUpdateRequest model module. * @module model/GoalUpdateRequest - * @version 2.0.4 + * @version 2.0.5 */ export class GoalUpdateRequest { /** diff --git a/src/model/GoalsBody.js b/src/model/GoalsBody.js index 1778b973..488178bf 100644 --- a/src/model/GoalsBody.js +++ b/src/model/GoalsBody.js @@ -18,7 +18,7 @@ import {GoalRequest} from './GoalRequest'; /** * The GoalsBody model module. * @module model/GoalsBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalsBody { /** diff --git a/src/model/GoalsGoalGidBody.js b/src/model/GoalsGoalGidBody.js index 79d09f10..9b4e3f5a 100644 --- a/src/model/GoalsGoalGidBody.js +++ b/src/model/GoalsGoalGidBody.js @@ -18,7 +18,7 @@ import {GoalUpdateRequest} from './GoalUpdateRequest'; /** * The GoalsGoalGidBody model module. * @module model/GoalsGoalGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class GoalsGoalGidBody { /** diff --git a/src/model/InlineResponse412.js b/src/model/InlineResponse412.js index 3972a9b6..15381b17 100644 --- a/src/model/InlineResponse412.js +++ b/src/model/InlineResponse412.js @@ -18,7 +18,7 @@ import {InlineResponse412Errors} from './InlineResponse412Errors'; /** * The InlineResponse412 model module. * @module model/InlineResponse412 - * @version 2.0.4 + * @version 2.0.5 */ export class InlineResponse412 { /** diff --git a/src/model/InlineResponse412Errors.js b/src/model/InlineResponse412Errors.js index 693c57ed..814a3e89 100644 --- a/src/model/InlineResponse412Errors.js +++ b/src/model/InlineResponse412Errors.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The InlineResponse412Errors model module. * @module model/InlineResponse412Errors - * @version 2.0.4 + * @version 2.0.5 */ export class InlineResponse412Errors { /** diff --git a/src/model/JobBase.js b/src/model/JobBase.js index cc627c98..d4c664d9 100644 --- a/src/model/JobBase.js +++ b/src/model/JobBase.js @@ -20,7 +20,7 @@ import {JobBaseNewTask} from './JobBaseNewTask'; /** * The JobBase model module. * @module model/JobBase - * @version 2.0.4 + * @version 2.0.5 */ export class JobBase { /** diff --git a/src/model/JobBaseNewProject.js b/src/model/JobBaseNewProject.js index a2024a09..268e7de9 100644 --- a/src/model/JobBaseNewProject.js +++ b/src/model/JobBaseNewProject.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The JobBaseNewProject model module. * @module model/JobBaseNewProject - * @version 2.0.4 + * @version 2.0.5 */ export class JobBaseNewProject { /** diff --git a/src/model/JobBaseNewProjectTemplate.js b/src/model/JobBaseNewProjectTemplate.js index eb050c7d..4727f2be 100644 --- a/src/model/JobBaseNewProjectTemplate.js +++ b/src/model/JobBaseNewProjectTemplate.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The JobBaseNewProjectTemplate model module. * @module model/JobBaseNewProjectTemplate - * @version 2.0.4 + * @version 2.0.5 */ export class JobBaseNewProjectTemplate { /** diff --git a/src/model/JobBaseNewTask.js b/src/model/JobBaseNewTask.js index 84dbbe5c..2a81e1a3 100644 --- a/src/model/JobBaseNewTask.js +++ b/src/model/JobBaseNewTask.js @@ -18,7 +18,7 @@ import {AttachmentResponseParentCreatedBy} from './AttachmentResponseParentCreat /** * The JobBaseNewTask model module. * @module model/JobBaseNewTask - * @version 2.0.4 + * @version 2.0.5 */ export class JobBaseNewTask { /** diff --git a/src/model/JobCompact.js b/src/model/JobCompact.js index 6a73fe11..149d7afe 100644 --- a/src/model/JobCompact.js +++ b/src/model/JobCompact.js @@ -20,7 +20,7 @@ import {JobBaseNewTask} from './JobBaseNewTask'; /** * The JobCompact model module. * @module model/JobCompact - * @version 2.0.4 + * @version 2.0.5 */ export class JobCompact { /** diff --git a/src/model/JobResponse.js b/src/model/JobResponse.js index 4abdbc8c..b8c3bdec 100644 --- a/src/model/JobResponse.js +++ b/src/model/JobResponse.js @@ -20,7 +20,7 @@ import {JobBaseNewTask} from './JobBaseNewTask'; /** * The JobResponse model module. * @module model/JobResponse - * @version 2.0.4 + * @version 2.0.5 */ export class JobResponse { /** diff --git a/src/model/JobResponseData.js b/src/model/JobResponseData.js index a5697a47..bcf551ee 100644 --- a/src/model/JobResponseData.js +++ b/src/model/JobResponseData.js @@ -18,7 +18,7 @@ import {JobResponse} from './JobResponse'; /** * The JobResponseData model module. * @module model/JobResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class JobResponseData { /** diff --git a/src/model/Like.js b/src/model/Like.js index c1cead8a..4bee6538 100644 --- a/src/model/Like.js +++ b/src/model/Like.js @@ -18,7 +18,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The Like model module. * @module model/Like - * @version 2.0.4 + * @version 2.0.5 */ export class Like { /** diff --git a/src/model/MemberCompact.js b/src/model/MemberCompact.js index 91a9f2d7..2019d43c 100644 --- a/src/model/MemberCompact.js +++ b/src/model/MemberCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The MemberCompact model module. * @module model/MemberCompact - * @version 2.0.4 + * @version 2.0.5 */ export class MemberCompact { /** diff --git a/src/model/MembershipCompact.js b/src/model/MembershipCompact.js index 0dc96629..0fab0fa0 100644 --- a/src/model/MembershipCompact.js +++ b/src/model/MembershipCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The MembershipCompact model module. * @module model/MembershipCompact - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipCompact { /** diff --git a/src/model/MembershipCompactGoal.js b/src/model/MembershipCompactGoal.js index cc0ee26d..6cf21b43 100644 --- a/src/model/MembershipCompactGoal.js +++ b/src/model/MembershipCompactGoal.js @@ -18,7 +18,7 @@ import {CustomFieldResponseCreatedBy} from './CustomFieldResponseCreatedBy'; /** * The MembershipCompactGoal model module. * @module model/MembershipCompactGoal - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipCompactGoal { /** diff --git a/src/model/MembershipCompactMember.js b/src/model/MembershipCompactMember.js index 9e8c87ea..1b7c8af4 100644 --- a/src/model/MembershipCompactMember.js +++ b/src/model/MembershipCompactMember.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The MembershipCompactMember model module. * @module model/MembershipCompactMember - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipCompactMember { /** diff --git a/src/model/MembershipCompactParent.js b/src/model/MembershipCompactParent.js index 523e9cd2..462ab884 100644 --- a/src/model/MembershipCompactParent.js +++ b/src/model/MembershipCompactParent.js @@ -18,7 +18,7 @@ import {CustomFieldResponseCreatedBy} from './CustomFieldResponseCreatedBy'; /** * The MembershipCompactParent model module. * @module model/MembershipCompactParent - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipCompactParent { /** diff --git a/src/model/MembershipRequest.js b/src/model/MembershipRequest.js index 19262581..e82bed5c 100644 --- a/src/model/MembershipRequest.js +++ b/src/model/MembershipRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The MembershipRequest model module. * @module model/MembershipRequest - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipRequest { /** diff --git a/src/model/MembershipResponse.js b/src/model/MembershipResponse.js index 0e0c4127..bf2bf1d1 100644 --- a/src/model/MembershipResponse.js +++ b/src/model/MembershipResponse.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The MembershipResponse model module. * @module model/MembershipResponse - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipResponse { /** diff --git a/src/model/MembershipResponseArray.js b/src/model/MembershipResponseArray.js index 0de64393..ff00f3d1 100644 --- a/src/model/MembershipResponseArray.js +++ b/src/model/MembershipResponseArray.js @@ -19,7 +19,7 @@ import {NextPage} from './NextPage'; /** * The MembershipResponseArray model module. * @module model/MembershipResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipResponseArray { /** diff --git a/src/model/MembershipResponseData.js b/src/model/MembershipResponseData.js index 1dc02dbb..d9ad9ece 100644 --- a/src/model/MembershipResponseData.js +++ b/src/model/MembershipResponseData.js @@ -18,7 +18,7 @@ import {MembershipResponse} from './MembershipResponse'; /** * The MembershipResponseData model module. * @module model/MembershipResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipResponseData { /** diff --git a/src/model/MembershipsBody.js b/src/model/MembershipsBody.js index 16fe5237..a40e4cec 100644 --- a/src/model/MembershipsBody.js +++ b/src/model/MembershipsBody.js @@ -18,7 +18,7 @@ import {CreateMembershipRequest} from './CreateMembershipRequest'; /** * The MembershipsBody model module. * @module model/MembershipsBody - * @version 2.0.4 + * @version 2.0.5 */ export class MembershipsBody { /** diff --git a/src/model/ModifyDependenciesRequest.js b/src/model/ModifyDependenciesRequest.js index 0e95033a..7a15591f 100644 --- a/src/model/ModifyDependenciesRequest.js +++ b/src/model/ModifyDependenciesRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ModifyDependenciesRequest model module. * @module model/ModifyDependenciesRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ModifyDependenciesRequest { /** diff --git a/src/model/ModifyDependentsRequest.js b/src/model/ModifyDependentsRequest.js index 44870a0f..6e153be5 100644 --- a/src/model/ModifyDependentsRequest.js +++ b/src/model/ModifyDependentsRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ModifyDependentsRequest model module. * @module model/ModifyDependentsRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ModifyDependentsRequest { /** diff --git a/src/model/NextPage.js b/src/model/NextPage.js index 911175ca..3fc96ef6 100644 --- a/src/model/NextPage.js +++ b/src/model/NextPage.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The NextPage model module. * @module model/NextPage - * @version 2.0.4 + * @version 2.0.5 */ export class NextPage { /** diff --git a/src/model/OrganizationExportBase.js b/src/model/OrganizationExportBase.js index 49dabdb0..eb385bc7 100644 --- a/src/model/OrganizationExportBase.js +++ b/src/model/OrganizationExportBase.js @@ -18,7 +18,7 @@ import {GoalResponseWorkspace} from './GoalResponseWorkspace'; /** * The OrganizationExportBase model module. * @module model/OrganizationExportBase - * @version 2.0.4 + * @version 2.0.5 */ export class OrganizationExportBase { /** diff --git a/src/model/OrganizationExportCompact.js b/src/model/OrganizationExportCompact.js index 4c6b6e32..1627bf3e 100644 --- a/src/model/OrganizationExportCompact.js +++ b/src/model/OrganizationExportCompact.js @@ -18,7 +18,7 @@ import {GoalResponseWorkspace} from './GoalResponseWorkspace'; /** * The OrganizationExportCompact model module. * @module model/OrganizationExportCompact - * @version 2.0.4 + * @version 2.0.5 */ export class OrganizationExportCompact { /** diff --git a/src/model/OrganizationExportRequest.js b/src/model/OrganizationExportRequest.js index afd9d0d9..83595703 100644 --- a/src/model/OrganizationExportRequest.js +++ b/src/model/OrganizationExportRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The OrganizationExportRequest model module. * @module model/OrganizationExportRequest - * @version 2.0.4 + * @version 2.0.5 */ export class OrganizationExportRequest { /** diff --git a/src/model/OrganizationExportResponse.js b/src/model/OrganizationExportResponse.js index 58cd93e6..29416a9e 100644 --- a/src/model/OrganizationExportResponse.js +++ b/src/model/OrganizationExportResponse.js @@ -18,7 +18,7 @@ import {GoalResponseWorkspace} from './GoalResponseWorkspace'; /** * The OrganizationExportResponse model module. * @module model/OrganizationExportResponse - * @version 2.0.4 + * @version 2.0.5 */ export class OrganizationExportResponse { /** diff --git a/src/model/OrganizationExportResponseData.js b/src/model/OrganizationExportResponseData.js index f4eefef2..7f69e08a 100644 --- a/src/model/OrganizationExportResponseData.js +++ b/src/model/OrganizationExportResponseData.js @@ -18,7 +18,7 @@ import {OrganizationExportResponse} from './OrganizationExportResponse'; /** * The OrganizationExportResponseData model module. * @module model/OrganizationExportResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class OrganizationExportResponseData { /** diff --git a/src/model/OrganizationExportsBody.js b/src/model/OrganizationExportsBody.js index c717b5e6..b6fb4172 100644 --- a/src/model/OrganizationExportsBody.js +++ b/src/model/OrganizationExportsBody.js @@ -18,7 +18,7 @@ import {OrganizationExportRequest} from './OrganizationExportRequest'; /** * The OrganizationExportsBody model module. * @module model/OrganizationExportsBody - * @version 2.0.4 + * @version 2.0.5 */ export class OrganizationExportsBody { /** diff --git a/src/model/PortfolioAddItemRequest.js b/src/model/PortfolioAddItemRequest.js index e8e9f252..13bef6b0 100644 --- a/src/model/PortfolioAddItemRequest.js +++ b/src/model/PortfolioAddItemRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The PortfolioAddItemRequest model module. * @module model/PortfolioAddItemRequest - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioAddItemRequest { /** diff --git a/src/model/PortfolioBase.js b/src/model/PortfolioBase.js index 6187c8c5..5bceeb29 100644 --- a/src/model/PortfolioBase.js +++ b/src/model/PortfolioBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The PortfolioBase model module. * @module model/PortfolioBase - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioBase { /** diff --git a/src/model/PortfolioCompact.js b/src/model/PortfolioCompact.js index 01f89157..56876b38 100644 --- a/src/model/PortfolioCompact.js +++ b/src/model/PortfolioCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The PortfolioCompact model module. * @module model/PortfolioCompact - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioCompact { /** diff --git a/src/model/PortfolioGidAddCustomFieldSettingBody.js b/src/model/PortfolioGidAddCustomFieldSettingBody.js index db9c59ce..acc08c12 100644 --- a/src/model/PortfolioGidAddCustomFieldSettingBody.js +++ b/src/model/PortfolioGidAddCustomFieldSettingBody.js @@ -18,7 +18,7 @@ import {AddCustomFieldSettingRequest} from './AddCustomFieldSettingRequest'; /** * The PortfolioGidAddCustomFieldSettingBody model module. * @module model/PortfolioGidAddCustomFieldSettingBody - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioGidAddCustomFieldSettingBody { /** diff --git a/src/model/PortfolioGidAddItemBody.js b/src/model/PortfolioGidAddItemBody.js index dee5ea5c..e25773f8 100644 --- a/src/model/PortfolioGidAddItemBody.js +++ b/src/model/PortfolioGidAddItemBody.js @@ -18,7 +18,7 @@ import {PortfolioAddItemRequest} from './PortfolioAddItemRequest'; /** * The PortfolioGidAddItemBody model module. * @module model/PortfolioGidAddItemBody - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioGidAddItemBody { /** diff --git a/src/model/PortfolioGidAddMembersBody.js b/src/model/PortfolioGidAddMembersBody.js index 498559ff..8cc553fa 100644 --- a/src/model/PortfolioGidAddMembersBody.js +++ b/src/model/PortfolioGidAddMembersBody.js @@ -18,7 +18,7 @@ import {AddMembersRequest} from './AddMembersRequest'; /** * The PortfolioGidAddMembersBody model module. * @module model/PortfolioGidAddMembersBody - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioGidAddMembersBody { /** diff --git a/src/model/PortfolioGidRemoveCustomFieldSettingBody.js b/src/model/PortfolioGidRemoveCustomFieldSettingBody.js index cebb449a..8b2b3c3f 100644 --- a/src/model/PortfolioGidRemoveCustomFieldSettingBody.js +++ b/src/model/PortfolioGidRemoveCustomFieldSettingBody.js @@ -18,7 +18,7 @@ import {RemoveCustomFieldSettingRequest} from './RemoveCustomFieldSettingRequest /** * The PortfolioGidRemoveCustomFieldSettingBody model module. * @module model/PortfolioGidRemoveCustomFieldSettingBody - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioGidRemoveCustomFieldSettingBody { /** diff --git a/src/model/PortfolioGidRemoveItemBody.js b/src/model/PortfolioGidRemoveItemBody.js index 9e774f56..685af82e 100644 --- a/src/model/PortfolioGidRemoveItemBody.js +++ b/src/model/PortfolioGidRemoveItemBody.js @@ -18,7 +18,7 @@ import {PortfolioRemoveItemRequest} from './PortfolioRemoveItemRequest'; /** * The PortfolioGidRemoveItemBody model module. * @module model/PortfolioGidRemoveItemBody - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioGidRemoveItemBody { /** diff --git a/src/model/PortfolioGidRemoveMembersBody.js b/src/model/PortfolioGidRemoveMembersBody.js index abf56702..9757b5c0 100644 --- a/src/model/PortfolioGidRemoveMembersBody.js +++ b/src/model/PortfolioGidRemoveMembersBody.js @@ -18,7 +18,7 @@ import {RemoveMembersRequest} from './RemoveMembersRequest'; /** * The PortfolioGidRemoveMembersBody model module. * @module model/PortfolioGidRemoveMembersBody - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioGidRemoveMembersBody { /** diff --git a/src/model/PortfolioMembershipBase.js b/src/model/PortfolioMembershipBase.js index 5bdd1746..85cd6c27 100644 --- a/src/model/PortfolioMembershipBase.js +++ b/src/model/PortfolioMembershipBase.js @@ -19,7 +19,7 @@ import {PortfolioMembershipBasePortfolio} from './PortfolioMembershipBasePortfol /** * The PortfolioMembershipBase model module. * @module model/PortfolioMembershipBase - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioMembershipBase { /** diff --git a/src/model/PortfolioMembershipBasePortfolio.js b/src/model/PortfolioMembershipBasePortfolio.js index a4152c9d..c20442a1 100644 --- a/src/model/PortfolioMembershipBasePortfolio.js +++ b/src/model/PortfolioMembershipBasePortfolio.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The PortfolioMembershipBasePortfolio model module. * @module model/PortfolioMembershipBasePortfolio - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioMembershipBasePortfolio { /** diff --git a/src/model/PortfolioMembershipCompact.js b/src/model/PortfolioMembershipCompact.js index b53bff30..b548e43f 100644 --- a/src/model/PortfolioMembershipCompact.js +++ b/src/model/PortfolioMembershipCompact.js @@ -19,7 +19,7 @@ import {PortfolioMembershipBasePortfolio} from './PortfolioMembershipBasePortfol /** * The PortfolioMembershipCompact model module. * @module model/PortfolioMembershipCompact - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioMembershipCompact { /** diff --git a/src/model/PortfolioMembershipResponse.js b/src/model/PortfolioMembershipResponse.js index 20afa8c3..cb24dcb9 100644 --- a/src/model/PortfolioMembershipResponse.js +++ b/src/model/PortfolioMembershipResponse.js @@ -19,7 +19,7 @@ import {PortfolioMembershipBasePortfolio} from './PortfolioMembershipBasePortfol /** * The PortfolioMembershipResponse model module. * @module model/PortfolioMembershipResponse - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioMembershipResponse { /** diff --git a/src/model/PortfolioMembershipResponseArray.js b/src/model/PortfolioMembershipResponseArray.js index 06ea3236..999c7110 100644 --- a/src/model/PortfolioMembershipResponseArray.js +++ b/src/model/PortfolioMembershipResponseArray.js @@ -19,7 +19,7 @@ import {PortfolioMembershipResponse} from './PortfolioMembershipResponse'; /** * The PortfolioMembershipResponseArray model module. * @module model/PortfolioMembershipResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioMembershipResponseArray { /** diff --git a/src/model/PortfolioMembershipResponseData.js b/src/model/PortfolioMembershipResponseData.js index dc64874e..7ad00cd8 100644 --- a/src/model/PortfolioMembershipResponseData.js +++ b/src/model/PortfolioMembershipResponseData.js @@ -18,7 +18,7 @@ import {PortfolioMembershipResponse} from './PortfolioMembershipResponse'; /** * The PortfolioMembershipResponseData model module. * @module model/PortfolioMembershipResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioMembershipResponseData { /** diff --git a/src/model/PortfolioRemoveItemRequest.js b/src/model/PortfolioRemoveItemRequest.js index f6d007c6..9df434eb 100644 --- a/src/model/PortfolioRemoveItemRequest.js +++ b/src/model/PortfolioRemoveItemRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The PortfolioRemoveItemRequest model module. * @module model/PortfolioRemoveItemRequest - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioRemoveItemRequest { /** diff --git a/src/model/PortfolioRequest.js b/src/model/PortfolioRequest.js index 26670a66..b27a856e 100644 --- a/src/model/PortfolioRequest.js +++ b/src/model/PortfolioRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The PortfolioRequest model module. * @module model/PortfolioRequest - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioRequest { /** diff --git a/src/model/PortfolioResponse.js b/src/model/PortfolioResponse.js index 7e0a66ff..86c0c764 100644 --- a/src/model/PortfolioResponse.js +++ b/src/model/PortfolioResponse.js @@ -23,7 +23,7 @@ import {PortfolioResponseWorkspace} from './PortfolioResponseWorkspace'; /** * The PortfolioResponse model module. * @module model/PortfolioResponse - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioResponse { /** diff --git a/src/model/PortfolioResponseArray.js b/src/model/PortfolioResponseArray.js index a324eb40..4f3fdff1 100644 --- a/src/model/PortfolioResponseArray.js +++ b/src/model/PortfolioResponseArray.js @@ -19,7 +19,7 @@ import {PortfolioResponse} from './PortfolioResponse'; /** * The PortfolioResponseArray model module. * @module model/PortfolioResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioResponseArray { /** diff --git a/src/model/PortfolioResponseCurrentStatusUpdate.js b/src/model/PortfolioResponseCurrentStatusUpdate.js index a5a6612e..f5e59219 100644 --- a/src/model/PortfolioResponseCurrentStatusUpdate.js +++ b/src/model/PortfolioResponseCurrentStatusUpdate.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The PortfolioResponseCurrentStatusUpdate model module. * @module model/PortfolioResponseCurrentStatusUpdate - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioResponseCurrentStatusUpdate { /** diff --git a/src/model/PortfolioResponseCustomFieldSettings.js b/src/model/PortfolioResponseCustomFieldSettings.js index 7765afd0..7ce25fb8 100644 --- a/src/model/PortfolioResponseCustomFieldSettings.js +++ b/src/model/PortfolioResponseCustomFieldSettings.js @@ -20,7 +20,7 @@ import {CustomFieldSettingResponseProject} from './CustomFieldSettingResponsePro /** * The PortfolioResponseCustomFieldSettings model module. * @module model/PortfolioResponseCustomFieldSettings - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioResponseCustomFieldSettings { /** diff --git a/src/model/PortfolioResponseCustomFields.js b/src/model/PortfolioResponseCustomFields.js index 342af351..f99fbffe 100644 --- a/src/model/PortfolioResponseCustomFields.js +++ b/src/model/PortfolioResponseCustomFields.js @@ -20,7 +20,7 @@ import {CustomFieldBaseEnumValue} from './CustomFieldBaseEnumValue'; /** * The PortfolioResponseCustomFields model module. * @module model/PortfolioResponseCustomFields - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioResponseCustomFields { /** diff --git a/src/model/PortfolioResponseData.js b/src/model/PortfolioResponseData.js index db27e184..d59eaaee 100644 --- a/src/model/PortfolioResponseData.js +++ b/src/model/PortfolioResponseData.js @@ -18,7 +18,7 @@ import {PortfolioResponse} from './PortfolioResponse'; /** * The PortfolioResponseData model module. * @module model/PortfolioResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioResponseData { /** diff --git a/src/model/PortfolioResponseWorkspace.js b/src/model/PortfolioResponseWorkspace.js index 1fc55760..2d642e7c 100644 --- a/src/model/PortfolioResponseWorkspace.js +++ b/src/model/PortfolioResponseWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The PortfolioResponseWorkspace model module. * @module model/PortfolioResponseWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class PortfolioResponseWorkspace { /** diff --git a/src/model/PortfoliosBody.js b/src/model/PortfoliosBody.js index 2c871cc5..d9fd562c 100644 --- a/src/model/PortfoliosBody.js +++ b/src/model/PortfoliosBody.js @@ -18,7 +18,7 @@ import {PortfolioRequest} from './PortfolioRequest'; /** * The PortfoliosBody model module. * @module model/PortfoliosBody - * @version 2.0.4 + * @version 2.0.5 */ export class PortfoliosBody { /** diff --git a/src/model/PortfoliosPortfolioGidBody.js b/src/model/PortfoliosPortfolioGidBody.js index bd69529c..1468768c 100644 --- a/src/model/PortfoliosPortfolioGidBody.js +++ b/src/model/PortfoliosPortfolioGidBody.js @@ -18,7 +18,7 @@ import {PortfolioRequest} from './PortfolioRequest'; /** * The PortfoliosPortfolioGidBody model module. * @module model/PortfoliosPortfolioGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class PortfoliosPortfolioGidBody { /** diff --git a/src/model/Preview.js b/src/model/Preview.js index a8a1409d..6cdc6a08 100644 --- a/src/model/Preview.js +++ b/src/model/Preview.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The Preview model module. * @module model/Preview - * @version 2.0.4 + * @version 2.0.5 */ export class Preview { /** diff --git a/src/model/ProjectBase.js b/src/model/ProjectBase.js index 5f9bbfc9..75c712b9 100644 --- a/src/model/ProjectBase.js +++ b/src/model/ProjectBase.js @@ -21,7 +21,7 @@ import {ProjectBaseCurrentStatusUpdate} from './ProjectBaseCurrentStatusUpdate'; /** * The ProjectBase model module. * @module model/ProjectBase - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBase { /** diff --git a/src/model/ProjectBaseCurrentStatus.js b/src/model/ProjectBaseCurrentStatus.js index 53d48966..7ed35c60 100644 --- a/src/model/ProjectBaseCurrentStatus.js +++ b/src/model/ProjectBaseCurrentStatus.js @@ -18,7 +18,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The ProjectBaseCurrentStatus model module. * @module model/ProjectBaseCurrentStatus - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBaseCurrentStatus { /** diff --git a/src/model/ProjectBaseCurrentStatusUpdate.js b/src/model/ProjectBaseCurrentStatusUpdate.js index 8dc448f5..98caa6c1 100644 --- a/src/model/ProjectBaseCurrentStatusUpdate.js +++ b/src/model/ProjectBaseCurrentStatusUpdate.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectBaseCurrentStatusUpdate model module. * @module model/ProjectBaseCurrentStatusUpdate - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBaseCurrentStatusUpdate { /** diff --git a/src/model/ProjectBriefBase.js b/src/model/ProjectBriefBase.js index bfeaff2f..842f605b 100644 --- a/src/model/ProjectBriefBase.js +++ b/src/model/ProjectBriefBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectBriefBase model module. * @module model/ProjectBriefBase - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBriefBase { /** diff --git a/src/model/ProjectBriefCompact.js b/src/model/ProjectBriefCompact.js index 9b8d7fb9..a774f417 100644 --- a/src/model/ProjectBriefCompact.js +++ b/src/model/ProjectBriefCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectBriefCompact model module. * @module model/ProjectBriefCompact - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBriefCompact { /** diff --git a/src/model/ProjectBriefRequest.js b/src/model/ProjectBriefRequest.js index 5322bd47..2196c86f 100644 --- a/src/model/ProjectBriefRequest.js +++ b/src/model/ProjectBriefRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectBriefRequest model module. * @module model/ProjectBriefRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBriefRequest { /** diff --git a/src/model/ProjectBriefResponse.js b/src/model/ProjectBriefResponse.js index 4348b105..8c3dc0a7 100644 --- a/src/model/ProjectBriefResponse.js +++ b/src/model/ProjectBriefResponse.js @@ -18,7 +18,7 @@ import {ProjectBriefResponseProject} from './ProjectBriefResponseProject'; /** * The ProjectBriefResponse model module. * @module model/ProjectBriefResponse - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBriefResponse { /** diff --git a/src/model/ProjectBriefResponseData.js b/src/model/ProjectBriefResponseData.js index def17544..8bd04acc 100644 --- a/src/model/ProjectBriefResponseData.js +++ b/src/model/ProjectBriefResponseData.js @@ -18,7 +18,7 @@ import {ProjectBriefResponse} from './ProjectBriefResponse'; /** * The ProjectBriefResponseData model module. * @module model/ProjectBriefResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBriefResponseData { /** diff --git a/src/model/ProjectBriefResponseProject.js b/src/model/ProjectBriefResponseProject.js index 305ab092..34b43610 100644 --- a/src/model/ProjectBriefResponseProject.js +++ b/src/model/ProjectBriefResponseProject.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectBriefResponseProject model module. * @module model/ProjectBriefResponseProject - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBriefResponseProject { /** diff --git a/src/model/ProjectBriefsProjectBriefGidBody.js b/src/model/ProjectBriefsProjectBriefGidBody.js index 0962c28c..ca9b4284 100644 --- a/src/model/ProjectBriefsProjectBriefGidBody.js +++ b/src/model/ProjectBriefsProjectBriefGidBody.js @@ -18,7 +18,7 @@ import {ProjectBriefRequest} from './ProjectBriefRequest'; /** * The ProjectBriefsProjectBriefGidBody model module. * @module model/ProjectBriefsProjectBriefGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectBriefsProjectBriefGidBody { /** diff --git a/src/model/ProjectCompact.js b/src/model/ProjectCompact.js index af1827b4..7ff8aaf9 100644 --- a/src/model/ProjectCompact.js +++ b/src/model/ProjectCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectCompact model module. * @module model/ProjectCompact - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectCompact { /** diff --git a/src/model/ProjectDuplicateRequest.js b/src/model/ProjectDuplicateRequest.js index fc5704df..c0c041ce 100644 --- a/src/model/ProjectDuplicateRequest.js +++ b/src/model/ProjectDuplicateRequest.js @@ -18,7 +18,7 @@ import {ProjectDuplicateRequestScheduleDates} from './ProjectDuplicateRequestSch /** * The ProjectDuplicateRequest model module. * @module model/ProjectDuplicateRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectDuplicateRequest { /** diff --git a/src/model/ProjectDuplicateRequestScheduleDates.js b/src/model/ProjectDuplicateRequestScheduleDates.js index 46594403..da33ad34 100644 --- a/src/model/ProjectDuplicateRequestScheduleDates.js +++ b/src/model/ProjectDuplicateRequestScheduleDates.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectDuplicateRequestScheduleDates model module. * @module model/ProjectDuplicateRequestScheduleDates - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectDuplicateRequestScheduleDates { /** diff --git a/src/model/ProjectGidAddCustomFieldSettingBody.js b/src/model/ProjectGidAddCustomFieldSettingBody.js index 2ceae6f5..4b5f4fbc 100644 --- a/src/model/ProjectGidAddCustomFieldSettingBody.js +++ b/src/model/ProjectGidAddCustomFieldSettingBody.js @@ -18,7 +18,7 @@ import {AddCustomFieldSettingRequest} from './AddCustomFieldSettingRequest'; /** * The ProjectGidAddCustomFieldSettingBody model module. * @module model/ProjectGidAddCustomFieldSettingBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidAddCustomFieldSettingBody { /** diff --git a/src/model/ProjectGidAddFollowersBody.js b/src/model/ProjectGidAddFollowersBody.js index e021c603..27045eb4 100644 --- a/src/model/ProjectGidAddFollowersBody.js +++ b/src/model/ProjectGidAddFollowersBody.js @@ -18,7 +18,7 @@ import {AddFollowersRequest} from './AddFollowersRequest'; /** * The ProjectGidAddFollowersBody model module. * @module model/ProjectGidAddFollowersBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidAddFollowersBody { /** diff --git a/src/model/ProjectGidAddMembersBody.js b/src/model/ProjectGidAddMembersBody.js index f450e247..29e2ff6d 100644 --- a/src/model/ProjectGidAddMembersBody.js +++ b/src/model/ProjectGidAddMembersBody.js @@ -18,7 +18,7 @@ import {AddMembersRequest} from './AddMembersRequest'; /** * The ProjectGidAddMembersBody model module. * @module model/ProjectGidAddMembersBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidAddMembersBody { /** diff --git a/src/model/ProjectGidDuplicateBody.js b/src/model/ProjectGidDuplicateBody.js index 2a17d899..5196d37f 100644 --- a/src/model/ProjectGidDuplicateBody.js +++ b/src/model/ProjectGidDuplicateBody.js @@ -18,7 +18,7 @@ import {ProjectDuplicateRequest} from './ProjectDuplicateRequest'; /** * The ProjectGidDuplicateBody model module. * @module model/ProjectGidDuplicateBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidDuplicateBody { /** diff --git a/src/model/ProjectGidProjectBriefsBody.js b/src/model/ProjectGidProjectBriefsBody.js index 17d9f041..bb341b8c 100644 --- a/src/model/ProjectGidProjectBriefsBody.js +++ b/src/model/ProjectGidProjectBriefsBody.js @@ -18,7 +18,7 @@ import {ProjectBriefRequest} from './ProjectBriefRequest'; /** * The ProjectGidProjectBriefsBody model module. * @module model/ProjectGidProjectBriefsBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidProjectBriefsBody { /** diff --git a/src/model/ProjectGidProjectStatusesBody.js b/src/model/ProjectGidProjectStatusesBody.js index 2703706e..83ba7546 100644 --- a/src/model/ProjectGidProjectStatusesBody.js +++ b/src/model/ProjectGidProjectStatusesBody.js @@ -18,7 +18,7 @@ import {ProjectStatusRequest} from './ProjectStatusRequest'; /** * The ProjectGidProjectStatusesBody model module. * @module model/ProjectGidProjectStatusesBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidProjectStatusesBody { /** diff --git a/src/model/ProjectGidRemoveCustomFieldSettingBody.js b/src/model/ProjectGidRemoveCustomFieldSettingBody.js index 1b770227..24c73c27 100644 --- a/src/model/ProjectGidRemoveCustomFieldSettingBody.js +++ b/src/model/ProjectGidRemoveCustomFieldSettingBody.js @@ -18,7 +18,7 @@ import {RemoveCustomFieldSettingRequest} from './RemoveCustomFieldSettingRequest /** * The ProjectGidRemoveCustomFieldSettingBody model module. * @module model/ProjectGidRemoveCustomFieldSettingBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidRemoveCustomFieldSettingBody { /** diff --git a/src/model/ProjectGidRemoveFollowersBody.js b/src/model/ProjectGidRemoveFollowersBody.js index b58b5185..1498a908 100644 --- a/src/model/ProjectGidRemoveFollowersBody.js +++ b/src/model/ProjectGidRemoveFollowersBody.js @@ -18,7 +18,7 @@ import {RemoveFollowersRequest} from './RemoveFollowersRequest'; /** * The ProjectGidRemoveFollowersBody model module. * @module model/ProjectGidRemoveFollowersBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidRemoveFollowersBody { /** diff --git a/src/model/ProjectGidRemoveMembersBody.js b/src/model/ProjectGidRemoveMembersBody.js index ac2daca2..55a5bb2a 100644 --- a/src/model/ProjectGidRemoveMembersBody.js +++ b/src/model/ProjectGidRemoveMembersBody.js @@ -18,7 +18,7 @@ import {RemoveMembersRequest} from './RemoveMembersRequest'; /** * The ProjectGidRemoveMembersBody model module. * @module model/ProjectGidRemoveMembersBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidRemoveMembersBody { /** diff --git a/src/model/ProjectGidSaveAsTemplateBody.js b/src/model/ProjectGidSaveAsTemplateBody.js index 409a5a07..ecf2709b 100644 --- a/src/model/ProjectGidSaveAsTemplateBody.js +++ b/src/model/ProjectGidSaveAsTemplateBody.js @@ -18,7 +18,7 @@ import {ProjectSaveAsTemplateRequest} from './ProjectSaveAsTemplateRequest'; /** * The ProjectGidSaveAsTemplateBody model module. * @module model/ProjectGidSaveAsTemplateBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidSaveAsTemplateBody { /** diff --git a/src/model/ProjectGidSectionsBody.js b/src/model/ProjectGidSectionsBody.js index 356910e0..de12c981 100644 --- a/src/model/ProjectGidSectionsBody.js +++ b/src/model/ProjectGidSectionsBody.js @@ -18,7 +18,7 @@ import {SectionRequest} from './SectionRequest'; /** * The ProjectGidSectionsBody model module. * @module model/ProjectGidSectionsBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectGidSectionsBody { /** diff --git a/src/model/ProjectMembershipBase.js b/src/model/ProjectMembershipBase.js index 014c486f..017742d7 100644 --- a/src/model/ProjectMembershipBase.js +++ b/src/model/ProjectMembershipBase.js @@ -19,7 +19,7 @@ import {MembershipCompactMember} from './MembershipCompactMember'; /** * The ProjectMembershipBase model module. * @module model/ProjectMembershipBase - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectMembershipBase { /** diff --git a/src/model/ProjectMembershipCompact.js b/src/model/ProjectMembershipCompact.js index 287e26b3..62181190 100644 --- a/src/model/ProjectMembershipCompact.js +++ b/src/model/ProjectMembershipCompact.js @@ -19,7 +19,7 @@ import {MembershipCompactMember} from './MembershipCompactMember'; /** * The ProjectMembershipCompact model module. * @module model/ProjectMembershipCompact - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectMembershipCompact { /** diff --git a/src/model/ProjectMembershipCompactArray.js b/src/model/ProjectMembershipCompactArray.js index 8e119e82..97b089ab 100644 --- a/src/model/ProjectMembershipCompactArray.js +++ b/src/model/ProjectMembershipCompactArray.js @@ -19,7 +19,7 @@ import {ProjectMembershipCompact} from './ProjectMembershipCompact'; /** * The ProjectMembershipCompactArray model module. * @module model/ProjectMembershipCompactArray - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectMembershipCompactArray { /** diff --git a/src/model/ProjectMembershipCompactResponse.js b/src/model/ProjectMembershipCompactResponse.js index e9930cf3..016adace 100644 --- a/src/model/ProjectMembershipCompactResponse.js +++ b/src/model/ProjectMembershipCompactResponse.js @@ -19,7 +19,7 @@ import {MembershipCompactMember} from './MembershipCompactMember'; /** * The ProjectMembershipCompactResponse model module. * @module model/ProjectMembershipCompactResponse - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectMembershipCompactResponse { /** diff --git a/src/model/ProjectMembershipCompactResponseData.js b/src/model/ProjectMembershipCompactResponseData.js index b8fd2b9d..05de5e17 100644 --- a/src/model/ProjectMembershipCompactResponseData.js +++ b/src/model/ProjectMembershipCompactResponseData.js @@ -18,7 +18,7 @@ import {ProjectMembershipCompactResponse} from './ProjectMembershipCompactRespon /** * The ProjectMembershipCompactResponseData model module. * @module model/ProjectMembershipCompactResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectMembershipCompactResponseData { /** diff --git a/src/model/ProjectMembershipNormalResponse.js b/src/model/ProjectMembershipNormalResponse.js index 2b8e395a..9826cafc 100644 --- a/src/model/ProjectMembershipNormalResponse.js +++ b/src/model/ProjectMembershipNormalResponse.js @@ -20,7 +20,7 @@ import {MembershipCompactMember} from './MembershipCompactMember'; /** * The ProjectMembershipNormalResponse model module. * @module model/ProjectMembershipNormalResponse - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectMembershipNormalResponse { /** diff --git a/src/model/ProjectMembershipNormalResponseData.js b/src/model/ProjectMembershipNormalResponseData.js index 06eab96d..d2ec1dbb 100644 --- a/src/model/ProjectMembershipNormalResponseData.js +++ b/src/model/ProjectMembershipNormalResponseData.js @@ -18,7 +18,7 @@ import {ProjectMembershipNormalResponse} from './ProjectMembershipNormalResponse /** * The ProjectMembershipNormalResponseData model module. * @module model/ProjectMembershipNormalResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectMembershipNormalResponseData { /** diff --git a/src/model/ProjectRequest.js b/src/model/ProjectRequest.js index ebd0eb65..1b3d5eff 100644 --- a/src/model/ProjectRequest.js +++ b/src/model/ProjectRequest.js @@ -21,7 +21,7 @@ import {ProjectBaseCurrentStatusUpdate} from './ProjectBaseCurrentStatusUpdate'; /** * The ProjectRequest model module. * @module model/ProjectRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectRequest { /** diff --git a/src/model/ProjectResponse.js b/src/model/ProjectResponse.js index 9166997a..b4da2fe5 100644 --- a/src/model/ProjectResponse.js +++ b/src/model/ProjectResponse.js @@ -27,7 +27,7 @@ import {ProjectResponseWorkspace} from './ProjectResponseWorkspace'; /** * The ProjectResponse model module. * @module model/ProjectResponse - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectResponse { /** diff --git a/src/model/ProjectResponseArray.js b/src/model/ProjectResponseArray.js index ae142d8d..3e02c2df 100644 --- a/src/model/ProjectResponseArray.js +++ b/src/model/ProjectResponseArray.js @@ -19,7 +19,7 @@ import {ProjectResponse} from './ProjectResponse'; /** * The ProjectResponseArray model module. * @module model/ProjectResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectResponseArray { /** diff --git a/src/model/ProjectResponseCompletedBy.js b/src/model/ProjectResponseCompletedBy.js index d376073b..1d1d9800 100644 --- a/src/model/ProjectResponseCompletedBy.js +++ b/src/model/ProjectResponseCompletedBy.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectResponseCompletedBy model module. * @module model/ProjectResponseCompletedBy - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectResponseCompletedBy { /** diff --git a/src/model/ProjectResponseCreatedFromTemplate.js b/src/model/ProjectResponseCreatedFromTemplate.js index 101b4ac1..8b241dbd 100644 --- a/src/model/ProjectResponseCreatedFromTemplate.js +++ b/src/model/ProjectResponseCreatedFromTemplate.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectResponseCreatedFromTemplate model module. * @module model/ProjectResponseCreatedFromTemplate - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectResponseCreatedFromTemplate { /** diff --git a/src/model/ProjectResponseData.js b/src/model/ProjectResponseData.js index 13b057cf..ad59fb5d 100644 --- a/src/model/ProjectResponseData.js +++ b/src/model/ProjectResponseData.js @@ -18,7 +18,7 @@ import {ProjectResponse} from './ProjectResponse'; /** * The ProjectResponseData model module. * @module model/ProjectResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectResponseData { /** diff --git a/src/model/ProjectResponseProjectBrief.js b/src/model/ProjectResponseProjectBrief.js index 845e2042..b2c8f306 100644 --- a/src/model/ProjectResponseProjectBrief.js +++ b/src/model/ProjectResponseProjectBrief.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectResponseProjectBrief model module. * @module model/ProjectResponseProjectBrief - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectResponseProjectBrief { /** diff --git a/src/model/ProjectResponseTeam.js b/src/model/ProjectResponseTeam.js index c1ee8a25..6c7c8448 100644 --- a/src/model/ProjectResponseTeam.js +++ b/src/model/ProjectResponseTeam.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectResponseTeam model module. * @module model/ProjectResponseTeam - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectResponseTeam { /** diff --git a/src/model/ProjectResponseWorkspace.js b/src/model/ProjectResponseWorkspace.js index d45e567e..38fb9f89 100644 --- a/src/model/ProjectResponseWorkspace.js +++ b/src/model/ProjectResponseWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectResponseWorkspace model module. * @module model/ProjectResponseWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectResponseWorkspace { /** diff --git a/src/model/ProjectSaveAsTemplateRequest.js b/src/model/ProjectSaveAsTemplateRequest.js index 29ef9a18..dc970c51 100644 --- a/src/model/ProjectSaveAsTemplateRequest.js +++ b/src/model/ProjectSaveAsTemplateRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectSaveAsTemplateRequest model module. * @module model/ProjectSaveAsTemplateRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectSaveAsTemplateRequest { /** diff --git a/src/model/ProjectSectionInsertRequest.js b/src/model/ProjectSectionInsertRequest.js index 13594a56..54c2d553 100644 --- a/src/model/ProjectSectionInsertRequest.js +++ b/src/model/ProjectSectionInsertRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectSectionInsertRequest model module. * @module model/ProjectSectionInsertRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectSectionInsertRequest { /** diff --git a/src/model/ProjectStatusBase.js b/src/model/ProjectStatusBase.js index b87e05ef..1c56afef 100644 --- a/src/model/ProjectStatusBase.js +++ b/src/model/ProjectStatusBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectStatusBase model module. * @module model/ProjectStatusBase - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectStatusBase { /** diff --git a/src/model/ProjectStatusCompact.js b/src/model/ProjectStatusCompact.js index 9787683d..09eb4ee7 100644 --- a/src/model/ProjectStatusCompact.js +++ b/src/model/ProjectStatusCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectStatusCompact model module. * @module model/ProjectStatusCompact - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectStatusCompact { /** diff --git a/src/model/ProjectStatusRequest.js b/src/model/ProjectStatusRequest.js index 1f5849b7..ef66cac1 100644 --- a/src/model/ProjectStatusRequest.js +++ b/src/model/ProjectStatusRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectStatusRequest model module. * @module model/ProjectStatusRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectStatusRequest { /** diff --git a/src/model/ProjectStatusResponse.js b/src/model/ProjectStatusResponse.js index 6ca2bfa6..5591f579 100644 --- a/src/model/ProjectStatusResponse.js +++ b/src/model/ProjectStatusResponse.js @@ -18,7 +18,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The ProjectStatusResponse model module. * @module model/ProjectStatusResponse - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectStatusResponse { /** diff --git a/src/model/ProjectStatusResponseArray.js b/src/model/ProjectStatusResponseArray.js index fd64b9b0..c3cf0706 100644 --- a/src/model/ProjectStatusResponseArray.js +++ b/src/model/ProjectStatusResponseArray.js @@ -19,7 +19,7 @@ import {ProjectStatusResponse} from './ProjectStatusResponse'; /** * The ProjectStatusResponseArray model module. * @module model/ProjectStatusResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectStatusResponseArray { /** diff --git a/src/model/ProjectStatusResponseData.js b/src/model/ProjectStatusResponseData.js index 767b3d8a..d48c5b9d 100644 --- a/src/model/ProjectStatusResponseData.js +++ b/src/model/ProjectStatusResponseData.js @@ -18,7 +18,7 @@ import {ProjectStatusResponse} from './ProjectStatusResponse'; /** * The ProjectStatusResponseData model module. * @module model/ProjectStatusResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectStatusResponseData { /** diff --git a/src/model/ProjectTemplateBase.js b/src/model/ProjectTemplateBase.js index 33fe10c3..887e5a1a 100644 --- a/src/model/ProjectTemplateBase.js +++ b/src/model/ProjectTemplateBase.js @@ -20,7 +20,7 @@ import {ProjectTemplateBaseTeam} from './ProjectTemplateBaseTeam'; /** * The ProjectTemplateBase model module. * @module model/ProjectTemplateBase - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateBase { /** diff --git a/src/model/ProjectTemplateBaseRequestedDates.js b/src/model/ProjectTemplateBaseRequestedDates.js index 2cb44f11..fd3179f5 100644 --- a/src/model/ProjectTemplateBaseRequestedDates.js +++ b/src/model/ProjectTemplateBaseRequestedDates.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectTemplateBaseRequestedDates model module. * @module model/ProjectTemplateBaseRequestedDates - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateBaseRequestedDates { /** diff --git a/src/model/ProjectTemplateBaseRequestedRoles.js b/src/model/ProjectTemplateBaseRequestedRoles.js index 3112840e..fbd03755 100644 --- a/src/model/ProjectTemplateBaseRequestedRoles.js +++ b/src/model/ProjectTemplateBaseRequestedRoles.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectTemplateBaseRequestedRoles model module. * @module model/ProjectTemplateBaseRequestedRoles - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateBaseRequestedRoles { /** diff --git a/src/model/ProjectTemplateBaseTeam.js b/src/model/ProjectTemplateBaseTeam.js index 968e4e05..4d87aa50 100644 --- a/src/model/ProjectTemplateBaseTeam.js +++ b/src/model/ProjectTemplateBaseTeam.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectTemplateBaseTeam model module. * @module model/ProjectTemplateBaseTeam - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateBaseTeam { /** diff --git a/src/model/ProjectTemplateCompact.js b/src/model/ProjectTemplateCompact.js index 42c0c0a9..0fb77f0e 100644 --- a/src/model/ProjectTemplateCompact.js +++ b/src/model/ProjectTemplateCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectTemplateCompact model module. * @module model/ProjectTemplateCompact - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateCompact { /** diff --git a/src/model/ProjectTemplateGidInstantiateProjectBody.js b/src/model/ProjectTemplateGidInstantiateProjectBody.js index 22022301..04029553 100644 --- a/src/model/ProjectTemplateGidInstantiateProjectBody.js +++ b/src/model/ProjectTemplateGidInstantiateProjectBody.js @@ -18,7 +18,7 @@ import {ProjectTemplateInstantiateProjectRequest} from './ProjectTemplateInstant /** * The ProjectTemplateGidInstantiateProjectBody model module. * @module model/ProjectTemplateGidInstantiateProjectBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateGidInstantiateProjectBody { /** diff --git a/src/model/ProjectTemplateInstantiateProjectRequest.js b/src/model/ProjectTemplateInstantiateProjectRequest.js index 03439b19..35a9f440 100644 --- a/src/model/ProjectTemplateInstantiateProjectRequest.js +++ b/src/model/ProjectTemplateInstantiateProjectRequest.js @@ -19,7 +19,7 @@ import {ProjectTemplateInstantiateProjectRequestRequestedRoles} from './ProjectT /** * The ProjectTemplateInstantiateProjectRequest model module. * @module model/ProjectTemplateInstantiateProjectRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateInstantiateProjectRequest { /** diff --git a/src/model/ProjectTemplateInstantiateProjectRequestRequestedDates.js b/src/model/ProjectTemplateInstantiateProjectRequestRequestedDates.js index 8a2296e3..a358f0bc 100644 --- a/src/model/ProjectTemplateInstantiateProjectRequestRequestedDates.js +++ b/src/model/ProjectTemplateInstantiateProjectRequestRequestedDates.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectTemplateInstantiateProjectRequestRequestedDates model module. * @module model/ProjectTemplateInstantiateProjectRequestRequestedDates - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateInstantiateProjectRequestRequestedDates { /** diff --git a/src/model/ProjectTemplateInstantiateProjectRequestRequestedRoles.js b/src/model/ProjectTemplateInstantiateProjectRequestRequestedRoles.js index e1c90b81..b04ab923 100644 --- a/src/model/ProjectTemplateInstantiateProjectRequestRequestedRoles.js +++ b/src/model/ProjectTemplateInstantiateProjectRequestRequestedRoles.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The ProjectTemplateInstantiateProjectRequestRequestedRoles model module. * @module model/ProjectTemplateInstantiateProjectRequestRequestedRoles - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateInstantiateProjectRequestRequestedRoles { /** diff --git a/src/model/ProjectTemplateResponse.js b/src/model/ProjectTemplateResponse.js index 1fcda580..20787420 100644 --- a/src/model/ProjectTemplateResponse.js +++ b/src/model/ProjectTemplateResponse.js @@ -20,7 +20,7 @@ import {ProjectTemplateBaseTeam} from './ProjectTemplateBaseTeam'; /** * The ProjectTemplateResponse model module. * @module model/ProjectTemplateResponse - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateResponse { /** diff --git a/src/model/ProjectTemplateResponseArray.js b/src/model/ProjectTemplateResponseArray.js index 70c21546..80d5a53c 100644 --- a/src/model/ProjectTemplateResponseArray.js +++ b/src/model/ProjectTemplateResponseArray.js @@ -19,7 +19,7 @@ import {ProjectTemplateResponse} from './ProjectTemplateResponse'; /** * The ProjectTemplateResponseArray model module. * @module model/ProjectTemplateResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateResponseArray { /** diff --git a/src/model/ProjectTemplateResponseData.js b/src/model/ProjectTemplateResponseData.js index b3ddc946..d95100e2 100644 --- a/src/model/ProjectTemplateResponseData.js +++ b/src/model/ProjectTemplateResponseData.js @@ -18,7 +18,7 @@ import {ProjectTemplateResponse} from './ProjectTemplateResponse'; /** * The ProjectTemplateResponseData model module. * @module model/ProjectTemplateResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectTemplateResponseData { /** diff --git a/src/model/ProjectUpdateRequest.js b/src/model/ProjectUpdateRequest.js index 47397648..f150e6f0 100644 --- a/src/model/ProjectUpdateRequest.js +++ b/src/model/ProjectUpdateRequest.js @@ -21,7 +21,7 @@ import {ProjectBaseCurrentStatusUpdate} from './ProjectBaseCurrentStatusUpdate'; /** * The ProjectUpdateRequest model module. * @module model/ProjectUpdateRequest - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectUpdateRequest { /** diff --git a/src/model/ProjectsBody.js b/src/model/ProjectsBody.js index dadffe65..0b8ea7ac 100644 --- a/src/model/ProjectsBody.js +++ b/src/model/ProjectsBody.js @@ -18,7 +18,7 @@ import {ProjectRequest} from './ProjectRequest'; /** * The ProjectsBody model module. * @module model/ProjectsBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectsBody { /** diff --git a/src/model/ProjectsProjectGidBody.js b/src/model/ProjectsProjectGidBody.js index f50719dc..9e40ef17 100644 --- a/src/model/ProjectsProjectGidBody.js +++ b/src/model/ProjectsProjectGidBody.js @@ -18,7 +18,7 @@ import {ProjectUpdateRequest} from './ProjectUpdateRequest'; /** * The ProjectsProjectGidBody model module. * @module model/ProjectsProjectGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class ProjectsProjectGidBody { /** diff --git a/src/model/RemoveCustomFieldSettingRequest.js b/src/model/RemoveCustomFieldSettingRequest.js index 9e512beb..b1e3afb4 100644 --- a/src/model/RemoveCustomFieldSettingRequest.js +++ b/src/model/RemoveCustomFieldSettingRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The RemoveCustomFieldSettingRequest model module. * @module model/RemoveCustomFieldSettingRequest - * @version 2.0.4 + * @version 2.0.5 */ export class RemoveCustomFieldSettingRequest { /** diff --git a/src/model/RemoveFollowersRequest.js b/src/model/RemoveFollowersRequest.js index 7e123b57..bece6510 100644 --- a/src/model/RemoveFollowersRequest.js +++ b/src/model/RemoveFollowersRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The RemoveFollowersRequest model module. * @module model/RemoveFollowersRequest - * @version 2.0.4 + * @version 2.0.5 */ export class RemoveFollowersRequest { /** diff --git a/src/model/RemoveMembersRequest.js b/src/model/RemoveMembersRequest.js index de2f3802..fd7e926b 100644 --- a/src/model/RemoveMembersRequest.js +++ b/src/model/RemoveMembersRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The RemoveMembersRequest model module. * @module model/RemoveMembersRequest - * @version 2.0.4 + * @version 2.0.5 */ export class RemoveMembersRequest { /** diff --git a/src/model/RequestedRoleRequest.js b/src/model/RequestedRoleRequest.js index f8b44615..c805b75e 100644 --- a/src/model/RequestedRoleRequest.js +++ b/src/model/RequestedRoleRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The RequestedRoleRequest model module. * @module model/RequestedRoleRequest - * @version 2.0.4 + * @version 2.0.5 */ export class RequestedRoleRequest { /** diff --git a/src/model/RuleTriggerGidRunBody.js b/src/model/RuleTriggerGidRunBody.js index 67dbe08b..1261c6b9 100644 --- a/src/model/RuleTriggerGidRunBody.js +++ b/src/model/RuleTriggerGidRunBody.js @@ -18,7 +18,7 @@ import {RuleTriggerRequest} from './RuleTriggerRequest'; /** * The RuleTriggerGidRunBody model module. * @module model/RuleTriggerGidRunBody - * @version 2.0.4 + * @version 2.0.5 */ export class RuleTriggerGidRunBody { /** diff --git a/src/model/RuleTriggerRequest.js b/src/model/RuleTriggerRequest.js index ce9935a8..b0ac9fe7 100644 --- a/src/model/RuleTriggerRequest.js +++ b/src/model/RuleTriggerRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The RuleTriggerRequest model module. * @module model/RuleTriggerRequest - * @version 2.0.4 + * @version 2.0.5 */ export class RuleTriggerRequest { /** diff --git a/src/model/RuleTriggerResponse.js b/src/model/RuleTriggerResponse.js index 15d822d8..32249365 100644 --- a/src/model/RuleTriggerResponse.js +++ b/src/model/RuleTriggerResponse.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The RuleTriggerResponse model module. * @module model/RuleTriggerResponse - * @version 2.0.4 + * @version 2.0.5 */ export class RuleTriggerResponse { /** diff --git a/src/model/RuleTriggerResponseData.js b/src/model/RuleTriggerResponseData.js index 4c7a5c89..d6ddd150 100644 --- a/src/model/RuleTriggerResponseData.js +++ b/src/model/RuleTriggerResponseData.js @@ -18,7 +18,7 @@ import {RuleTriggerResponse} from './RuleTriggerResponse'; /** * The RuleTriggerResponseData model module. * @module model/RuleTriggerResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class RuleTriggerResponseData { /** diff --git a/src/model/SectionBase.js b/src/model/SectionBase.js index 93fba492..1ae704a0 100644 --- a/src/model/SectionBase.js +++ b/src/model/SectionBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The SectionBase model module. * @module model/SectionBase - * @version 2.0.4 + * @version 2.0.5 */ export class SectionBase { /** diff --git a/src/model/SectionCompact.js b/src/model/SectionCompact.js index 947fa667..57ac981f 100644 --- a/src/model/SectionCompact.js +++ b/src/model/SectionCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The SectionCompact model module. * @module model/SectionCompact - * @version 2.0.4 + * @version 2.0.5 */ export class SectionCompact { /** diff --git a/src/model/SectionGidAddTaskBody.js b/src/model/SectionGidAddTaskBody.js index 33bba7d0..5cbb600b 100644 --- a/src/model/SectionGidAddTaskBody.js +++ b/src/model/SectionGidAddTaskBody.js @@ -18,7 +18,7 @@ import {SectionTaskInsertRequest} from './SectionTaskInsertRequest'; /** * The SectionGidAddTaskBody model module. * @module model/SectionGidAddTaskBody - * @version 2.0.4 + * @version 2.0.5 */ export class SectionGidAddTaskBody { /** diff --git a/src/model/SectionRequest.js b/src/model/SectionRequest.js index 1e6a41c7..651f94cd 100644 --- a/src/model/SectionRequest.js +++ b/src/model/SectionRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The SectionRequest model module. * @module model/SectionRequest - * @version 2.0.4 + * @version 2.0.5 */ export class SectionRequest { /** diff --git a/src/model/SectionResponse.js b/src/model/SectionResponse.js index 6d567c3b..b2b2bdd5 100644 --- a/src/model/SectionResponse.js +++ b/src/model/SectionResponse.js @@ -18,7 +18,7 @@ import {JobBaseNewProject} from './JobBaseNewProject'; /** * The SectionResponse model module. * @module model/SectionResponse - * @version 2.0.4 + * @version 2.0.5 */ export class SectionResponse { /** diff --git a/src/model/SectionResponseArray.js b/src/model/SectionResponseArray.js index 4764977c..c76aa896 100644 --- a/src/model/SectionResponseArray.js +++ b/src/model/SectionResponseArray.js @@ -19,7 +19,7 @@ import {SectionResponse} from './SectionResponse'; /** * The SectionResponseArray model module. * @module model/SectionResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class SectionResponseArray { /** diff --git a/src/model/SectionResponseData.js b/src/model/SectionResponseData.js index f2b6a386..8e1bf6d9 100644 --- a/src/model/SectionResponseData.js +++ b/src/model/SectionResponseData.js @@ -18,7 +18,7 @@ import {SectionResponse} from './SectionResponse'; /** * The SectionResponseData model module. * @module model/SectionResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class SectionResponseData { /** diff --git a/src/model/SectionTaskInsertRequest.js b/src/model/SectionTaskInsertRequest.js index 5c02bdc2..6ba2e3c0 100644 --- a/src/model/SectionTaskInsertRequest.js +++ b/src/model/SectionTaskInsertRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The SectionTaskInsertRequest model module. * @module model/SectionTaskInsertRequest - * @version 2.0.4 + * @version 2.0.5 */ export class SectionTaskInsertRequest { /** diff --git a/src/model/SectionsInsertBody.js b/src/model/SectionsInsertBody.js index 6d4f4b50..02d2f8f4 100644 --- a/src/model/SectionsInsertBody.js +++ b/src/model/SectionsInsertBody.js @@ -18,7 +18,7 @@ import {ProjectSectionInsertRequest} from './ProjectSectionInsertRequest'; /** * The SectionsInsertBody model module. * @module model/SectionsInsertBody - * @version 2.0.4 + * @version 2.0.5 */ export class SectionsInsertBody { /** diff --git a/src/model/SectionsSectionGidBody.js b/src/model/SectionsSectionGidBody.js index 6455eb94..1bcff6b6 100644 --- a/src/model/SectionsSectionGidBody.js +++ b/src/model/SectionsSectionGidBody.js @@ -18,7 +18,7 @@ import {SectionRequest} from './SectionRequest'; /** * The SectionsSectionGidBody model module. * @module model/SectionsSectionGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class SectionsSectionGidBody { /** diff --git a/src/model/StatusUpdateBase.js b/src/model/StatusUpdateBase.js index 8f3d943f..66fc7ac9 100644 --- a/src/model/StatusUpdateBase.js +++ b/src/model/StatusUpdateBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StatusUpdateBase model module. * @module model/StatusUpdateBase - * @version 2.0.4 + * @version 2.0.5 */ export class StatusUpdateBase { /** diff --git a/src/model/StatusUpdateCompact.js b/src/model/StatusUpdateCompact.js index 92cb829b..7c75d06c 100644 --- a/src/model/StatusUpdateCompact.js +++ b/src/model/StatusUpdateCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StatusUpdateCompact model module. * @module model/StatusUpdateCompact - * @version 2.0.4 + * @version 2.0.5 */ export class StatusUpdateCompact { /** diff --git a/src/model/StatusUpdateRequest.js b/src/model/StatusUpdateRequest.js index 30de749d..fd0aec32 100644 --- a/src/model/StatusUpdateRequest.js +++ b/src/model/StatusUpdateRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StatusUpdateRequest model module. * @module model/StatusUpdateRequest - * @version 2.0.4 + * @version 2.0.5 */ export class StatusUpdateRequest { /** diff --git a/src/model/StatusUpdateResponse.js b/src/model/StatusUpdateResponse.js index 6d9b4c1b..5a88d41a 100644 --- a/src/model/StatusUpdateResponse.js +++ b/src/model/StatusUpdateResponse.js @@ -20,7 +20,7 @@ import {StatusUpdateResponseParent} from './StatusUpdateResponseParent'; /** * The StatusUpdateResponse model module. * @module model/StatusUpdateResponse - * @version 2.0.4 + * @version 2.0.5 */ export class StatusUpdateResponse { /** diff --git a/src/model/StatusUpdateResponseArray.js b/src/model/StatusUpdateResponseArray.js index 1c1ff9b7..da6eebfb 100644 --- a/src/model/StatusUpdateResponseArray.js +++ b/src/model/StatusUpdateResponseArray.js @@ -19,7 +19,7 @@ import {StatusUpdateResponse} from './StatusUpdateResponse'; /** * The StatusUpdateResponseArray model module. * @module model/StatusUpdateResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class StatusUpdateResponseArray { /** diff --git a/src/model/StatusUpdateResponseData.js b/src/model/StatusUpdateResponseData.js index c55b7ea4..36d88795 100644 --- a/src/model/StatusUpdateResponseData.js +++ b/src/model/StatusUpdateResponseData.js @@ -18,7 +18,7 @@ import {StatusUpdateResponse} from './StatusUpdateResponse'; /** * The StatusUpdateResponseData model module. * @module model/StatusUpdateResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class StatusUpdateResponseData { /** diff --git a/src/model/StatusUpdateResponseParent.js b/src/model/StatusUpdateResponseParent.js index a47bf970..33d7fad7 100644 --- a/src/model/StatusUpdateResponseParent.js +++ b/src/model/StatusUpdateResponseParent.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StatusUpdateResponseParent model module. * @module model/StatusUpdateResponseParent - * @version 2.0.4 + * @version 2.0.5 */ export class StatusUpdateResponseParent { /** diff --git a/src/model/StatusUpdatesBody.js b/src/model/StatusUpdatesBody.js index 74065893..b4e498ea 100644 --- a/src/model/StatusUpdatesBody.js +++ b/src/model/StatusUpdatesBody.js @@ -18,7 +18,7 @@ import {StatusUpdateRequest} from './StatusUpdateRequest'; /** * The StatusUpdatesBody model module. * @module model/StatusUpdatesBody - * @version 2.0.4 + * @version 2.0.5 */ export class StatusUpdatesBody { /** diff --git a/src/model/StoriesStoryGidBody.js b/src/model/StoriesStoryGidBody.js index 229b4675..c954a45b 100644 --- a/src/model/StoriesStoryGidBody.js +++ b/src/model/StoriesStoryGidBody.js @@ -18,7 +18,7 @@ import {StoryRequest} from './StoryRequest'; /** * The StoriesStoryGidBody model module. * @module model/StoriesStoryGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class StoriesStoryGidBody { /** diff --git a/src/model/StoryBase.js b/src/model/StoryBase.js index 2afa1ccb..8cbcdde5 100644 --- a/src/model/StoryBase.js +++ b/src/model/StoryBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryBase model module. * @module model/StoryBase - * @version 2.0.4 + * @version 2.0.5 */ export class StoryBase { /** diff --git a/src/model/StoryCompact.js b/src/model/StoryCompact.js index 4305e3b3..03f49b63 100644 --- a/src/model/StoryCompact.js +++ b/src/model/StoryCompact.js @@ -18,7 +18,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The StoryCompact model module. * @module model/StoryCompact - * @version 2.0.4 + * @version 2.0.5 */ export class StoryCompact { /** diff --git a/src/model/StoryRequest.js b/src/model/StoryRequest.js index e8c95911..a4c851b7 100644 --- a/src/model/StoryRequest.js +++ b/src/model/StoryRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryRequest model module. * @module model/StoryRequest - * @version 2.0.4 + * @version 2.0.5 */ export class StoryRequest { /** diff --git a/src/model/StoryResponse.js b/src/model/StoryResponse.js index 651ec93b..6a0f11c7 100644 --- a/src/model/StoryResponse.js +++ b/src/model/StoryResponse.js @@ -31,7 +31,7 @@ import {StoryResponseTask} from './StoryResponseTask'; /** * The StoryResponse model module. * @module model/StoryResponse - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponse { /** diff --git a/src/model/StoryResponseArray.js b/src/model/StoryResponseArray.js index 26171dc1..c1844f3c 100644 --- a/src/model/StoryResponseArray.js +++ b/src/model/StoryResponseArray.js @@ -19,7 +19,7 @@ import {StoryResponse} from './StoryResponse'; /** * The StoryResponseArray model module. * @module model/StoryResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseArray { /** diff --git a/src/model/StoryResponseAssignee.js b/src/model/StoryResponseAssignee.js index 6d01634f..3ff97315 100644 --- a/src/model/StoryResponseAssignee.js +++ b/src/model/StoryResponseAssignee.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryResponseAssignee model module. * @module model/StoryResponseAssignee - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseAssignee { /** diff --git a/src/model/StoryResponseCustomField.js b/src/model/StoryResponseCustomField.js index 10b5ea2e..f6189a65 100644 --- a/src/model/StoryResponseCustomField.js +++ b/src/model/StoryResponseCustomField.js @@ -20,7 +20,7 @@ import {CustomFieldBaseEnumValue} from './CustomFieldBaseEnumValue'; /** * The StoryResponseCustomField model module. * @module model/StoryResponseCustomField - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseCustomField { /** diff --git a/src/model/StoryResponseData.js b/src/model/StoryResponseData.js index 963e4554..aff2a3aa 100644 --- a/src/model/StoryResponseData.js +++ b/src/model/StoryResponseData.js @@ -18,7 +18,7 @@ import {StoryResponse} from './StoryResponse'; /** * The StoryResponseData model module. * @module model/StoryResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseData { /** diff --git a/src/model/StoryResponseDates.js b/src/model/StoryResponseDates.js index 8606615d..7c787410 100644 --- a/src/model/StoryResponseDates.js +++ b/src/model/StoryResponseDates.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryResponseDates model module. * @module model/StoryResponseDates - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseDates { /** diff --git a/src/model/StoryResponseOldDates.js b/src/model/StoryResponseOldDates.js index 0680023b..6d5189b8 100644 --- a/src/model/StoryResponseOldDates.js +++ b/src/model/StoryResponseOldDates.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryResponseOldDates model module. * @module model/StoryResponseOldDates - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseOldDates { /** diff --git a/src/model/StoryResponseOldEnumValue.js b/src/model/StoryResponseOldEnumValue.js index 25645e2c..dfc3ca7d 100644 --- a/src/model/StoryResponseOldEnumValue.js +++ b/src/model/StoryResponseOldEnumValue.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryResponseOldEnumValue model module. * @module model/StoryResponseOldEnumValue - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseOldEnumValue { /** diff --git a/src/model/StoryResponseOldSection.js b/src/model/StoryResponseOldSection.js index e797f1b4..971fb894 100644 --- a/src/model/StoryResponseOldSection.js +++ b/src/model/StoryResponseOldSection.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryResponseOldSection model module. * @module model/StoryResponseOldSection - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseOldSection { /** diff --git a/src/model/StoryResponsePreviews.js b/src/model/StoryResponsePreviews.js index 4b4e5599..e07a98c5 100644 --- a/src/model/StoryResponsePreviews.js +++ b/src/model/StoryResponsePreviews.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryResponsePreviews model module. * @module model/StoryResponsePreviews - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponsePreviews { /** diff --git a/src/model/StoryResponseProject.js b/src/model/StoryResponseProject.js index 301d2f84..7ddf0e00 100644 --- a/src/model/StoryResponseProject.js +++ b/src/model/StoryResponseProject.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryResponseProject model module. * @module model/StoryResponseProject - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseProject { /** diff --git a/src/model/StoryResponseStory.js b/src/model/StoryResponseStory.js index cfeea03b..5239abce 100644 --- a/src/model/StoryResponseStory.js +++ b/src/model/StoryResponseStory.js @@ -18,7 +18,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The StoryResponseStory model module. * @module model/StoryResponseStory - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseStory { /** diff --git a/src/model/StoryResponseTag.js b/src/model/StoryResponseTag.js index 01d0c06b..9b4a1327 100644 --- a/src/model/StoryResponseTag.js +++ b/src/model/StoryResponseTag.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The StoryResponseTag model module. * @module model/StoryResponseTag - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseTag { /** diff --git a/src/model/StoryResponseTarget.js b/src/model/StoryResponseTarget.js index e52e7c8f..e99d1e5a 100644 --- a/src/model/StoryResponseTarget.js +++ b/src/model/StoryResponseTarget.js @@ -18,7 +18,7 @@ import {AttachmentResponseParentCreatedBy} from './AttachmentResponseParentCreat /** * The StoryResponseTarget model module. * @module model/StoryResponseTarget - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseTarget { /** diff --git a/src/model/StoryResponseTask.js b/src/model/StoryResponseTask.js index 3ac506a7..d7a87b6f 100644 --- a/src/model/StoryResponseTask.js +++ b/src/model/StoryResponseTask.js @@ -18,7 +18,7 @@ import {AttachmentResponseParentCreatedBy} from './AttachmentResponseParentCreat /** * The StoryResponseTask model module. * @module model/StoryResponseTask - * @version 2.0.4 + * @version 2.0.5 */ export class StoryResponseTask { /** diff --git a/src/model/TagBase.js b/src/model/TagBase.js index e46523bd..225c87a2 100644 --- a/src/model/TagBase.js +++ b/src/model/TagBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TagBase model module. * @module model/TagBase - * @version 2.0.4 + * @version 2.0.5 */ export class TagBase { /** diff --git a/src/model/TagCompact.js b/src/model/TagCompact.js index c36e84d7..fdac4f35 100644 --- a/src/model/TagCompact.js +++ b/src/model/TagCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TagCompact model module. * @module model/TagCompact - * @version 2.0.4 + * @version 2.0.5 */ export class TagCompact { /** diff --git a/src/model/TagRequest.js b/src/model/TagRequest.js index 4217a25e..89c53dd6 100644 --- a/src/model/TagRequest.js +++ b/src/model/TagRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TagRequest model module. * @module model/TagRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TagRequest { /** diff --git a/src/model/TagResponse.js b/src/model/TagResponse.js index b192dc64..ff97db7c 100644 --- a/src/model/TagResponse.js +++ b/src/model/TagResponse.js @@ -19,7 +19,7 @@ import {GoalResponseWorkspace} from './GoalResponseWorkspace'; /** * The TagResponse model module. * @module model/TagResponse - * @version 2.0.4 + * @version 2.0.5 */ export class TagResponse { /** diff --git a/src/model/TagResponseArray.js b/src/model/TagResponseArray.js index 5e3cc7f9..da743d9c 100644 --- a/src/model/TagResponseArray.js +++ b/src/model/TagResponseArray.js @@ -19,7 +19,7 @@ import {TagResponse} from './TagResponse'; /** * The TagResponseArray model module. * @module model/TagResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class TagResponseArray { /** diff --git a/src/model/TagResponseData.js b/src/model/TagResponseData.js index 73e5751d..a9c664fc 100644 --- a/src/model/TagResponseData.js +++ b/src/model/TagResponseData.js @@ -18,7 +18,7 @@ import {TagResponse} from './TagResponse'; /** * The TagResponseData model module. * @module model/TagResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class TagResponseData { /** diff --git a/src/model/TagsBody.js b/src/model/TagsBody.js index 04e4ef01..fc888e77 100644 --- a/src/model/TagsBody.js +++ b/src/model/TagsBody.js @@ -18,7 +18,7 @@ import {TagRequest} from './TagRequest'; /** * The TagsBody model module. * @module model/TagsBody - * @version 2.0.4 + * @version 2.0.5 */ export class TagsBody { /** diff --git a/src/model/TaskAddFollowersRequest.js b/src/model/TaskAddFollowersRequest.js index 4b5b021a..ecde12e8 100644 --- a/src/model/TaskAddFollowersRequest.js +++ b/src/model/TaskAddFollowersRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskAddFollowersRequest model module. * @module model/TaskAddFollowersRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskAddFollowersRequest { /** diff --git a/src/model/TaskAddProjectRequest.js b/src/model/TaskAddProjectRequest.js index 8fb348a4..536359ac 100644 --- a/src/model/TaskAddProjectRequest.js +++ b/src/model/TaskAddProjectRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskAddProjectRequest model module. * @module model/TaskAddProjectRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskAddProjectRequest { /** diff --git a/src/model/TaskAddTagRequest.js b/src/model/TaskAddTagRequest.js index ce2b5737..7812716a 100644 --- a/src/model/TaskAddTagRequest.js +++ b/src/model/TaskAddTagRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskAddTagRequest model module. * @module model/TaskAddTagRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskAddTagRequest { /** diff --git a/src/model/TaskBase.js b/src/model/TaskBase.js index 1211427e..818ada7f 100644 --- a/src/model/TaskBase.js +++ b/src/model/TaskBase.js @@ -23,7 +23,7 @@ import {TaskBaseMemberships} from './TaskBaseMemberships'; /** * The TaskBase model module. * @module model/TaskBase - * @version 2.0.4 + * @version 2.0.5 */ export class TaskBase { /** diff --git a/src/model/TaskBaseCompletedBy.js b/src/model/TaskBaseCompletedBy.js index a5f067fd..a1929917 100644 --- a/src/model/TaskBaseCompletedBy.js +++ b/src/model/TaskBaseCompletedBy.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskBaseCompletedBy model module. * @module model/TaskBaseCompletedBy - * @version 2.0.4 + * @version 2.0.5 */ export class TaskBaseCompletedBy { /** diff --git a/src/model/TaskBaseDependencies.js b/src/model/TaskBaseDependencies.js index d643219c..32d96bca 100644 --- a/src/model/TaskBaseDependencies.js +++ b/src/model/TaskBaseDependencies.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskBaseDependencies model module. * @module model/TaskBaseDependencies - * @version 2.0.4 + * @version 2.0.5 */ export class TaskBaseDependencies { /** diff --git a/src/model/TaskBaseExternal.js b/src/model/TaskBaseExternal.js index 392e52c9..b22c9197 100644 --- a/src/model/TaskBaseExternal.js +++ b/src/model/TaskBaseExternal.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskBaseExternal model module. * @module model/TaskBaseExternal - * @version 2.0.4 + * @version 2.0.5 */ export class TaskBaseExternal { /** diff --git a/src/model/TaskBaseMemberships.js b/src/model/TaskBaseMemberships.js index e61d738b..d48380b6 100644 --- a/src/model/TaskBaseMemberships.js +++ b/src/model/TaskBaseMemberships.js @@ -19,7 +19,7 @@ import {TaskBaseSection} from './TaskBaseSection'; /** * The TaskBaseMemberships model module. * @module model/TaskBaseMemberships - * @version 2.0.4 + * @version 2.0.5 */ export class TaskBaseMemberships { /** diff --git a/src/model/TaskBaseSection.js b/src/model/TaskBaseSection.js index 6b6af722..e744b0db 100644 --- a/src/model/TaskBaseSection.js +++ b/src/model/TaskBaseSection.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskBaseSection model module. * @module model/TaskBaseSection - * @version 2.0.4 + * @version 2.0.5 */ export class TaskBaseSection { /** diff --git a/src/model/TaskCompact.js b/src/model/TaskCompact.js index e170488b..fb2e455d 100644 --- a/src/model/TaskCompact.js +++ b/src/model/TaskCompact.js @@ -18,7 +18,7 @@ import {AttachmentResponseParentCreatedBy} from './AttachmentResponseParentCreat /** * The TaskCompact model module. * @module model/TaskCompact - * @version 2.0.4 + * @version 2.0.5 */ export class TaskCompact { /** diff --git a/src/model/TaskCountResponse.js b/src/model/TaskCountResponse.js index 7351603c..c654a680 100644 --- a/src/model/TaskCountResponse.js +++ b/src/model/TaskCountResponse.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskCountResponse model module. * @module model/TaskCountResponse - * @version 2.0.4 + * @version 2.0.5 */ export class TaskCountResponse { /** diff --git a/src/model/TaskCountResponseData.js b/src/model/TaskCountResponseData.js index 9e274f32..5a78622c 100644 --- a/src/model/TaskCountResponseData.js +++ b/src/model/TaskCountResponseData.js @@ -18,7 +18,7 @@ import {TaskCountResponse} from './TaskCountResponse'; /** * The TaskCountResponseData model module. * @module model/TaskCountResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class TaskCountResponseData { /** diff --git a/src/model/TaskDuplicateRequest.js b/src/model/TaskDuplicateRequest.js index 5c68b928..326be5ae 100644 --- a/src/model/TaskDuplicateRequest.js +++ b/src/model/TaskDuplicateRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskDuplicateRequest model module. * @module model/TaskDuplicateRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskDuplicateRequest { /** diff --git a/src/model/TaskGidAddDependenciesBody.js b/src/model/TaskGidAddDependenciesBody.js index 7a7ec38b..65a6fa05 100644 --- a/src/model/TaskGidAddDependenciesBody.js +++ b/src/model/TaskGidAddDependenciesBody.js @@ -18,7 +18,7 @@ import {ModifyDependenciesRequest} from './ModifyDependenciesRequest'; /** * The TaskGidAddDependenciesBody model module. * @module model/TaskGidAddDependenciesBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidAddDependenciesBody { /** diff --git a/src/model/TaskGidAddDependentsBody.js b/src/model/TaskGidAddDependentsBody.js index 4b13e923..b9bbfe3e 100644 --- a/src/model/TaskGidAddDependentsBody.js +++ b/src/model/TaskGidAddDependentsBody.js @@ -18,7 +18,7 @@ import {ModifyDependentsRequest} from './ModifyDependentsRequest'; /** * The TaskGidAddDependentsBody model module. * @module model/TaskGidAddDependentsBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidAddDependentsBody { /** diff --git a/src/model/TaskGidAddFollowersBody.js b/src/model/TaskGidAddFollowersBody.js index 05913ee4..7193bfd0 100644 --- a/src/model/TaskGidAddFollowersBody.js +++ b/src/model/TaskGidAddFollowersBody.js @@ -18,7 +18,7 @@ import {TaskAddFollowersRequest} from './TaskAddFollowersRequest'; /** * The TaskGidAddFollowersBody model module. * @module model/TaskGidAddFollowersBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidAddFollowersBody { /** diff --git a/src/model/TaskGidAddProjectBody.js b/src/model/TaskGidAddProjectBody.js index 49fb6bd1..21df8962 100644 --- a/src/model/TaskGidAddProjectBody.js +++ b/src/model/TaskGidAddProjectBody.js @@ -18,7 +18,7 @@ import {TaskAddProjectRequest} from './TaskAddProjectRequest'; /** * The TaskGidAddProjectBody model module. * @module model/TaskGidAddProjectBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidAddProjectBody { /** diff --git a/src/model/TaskGidAddTagBody.js b/src/model/TaskGidAddTagBody.js index dcf9068a..c0815928 100644 --- a/src/model/TaskGidAddTagBody.js +++ b/src/model/TaskGidAddTagBody.js @@ -18,7 +18,7 @@ import {TaskAddTagRequest} from './TaskAddTagRequest'; /** * The TaskGidAddTagBody model module. * @module model/TaskGidAddTagBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidAddTagBody { /** diff --git a/src/model/TaskGidDuplicateBody.js b/src/model/TaskGidDuplicateBody.js index b34098db..dbd7cb62 100644 --- a/src/model/TaskGidDuplicateBody.js +++ b/src/model/TaskGidDuplicateBody.js @@ -18,7 +18,7 @@ import {TaskDuplicateRequest} from './TaskDuplicateRequest'; /** * The TaskGidDuplicateBody model module. * @module model/TaskGidDuplicateBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidDuplicateBody { /** diff --git a/src/model/TaskGidRemoveDependenciesBody.js b/src/model/TaskGidRemoveDependenciesBody.js index be15cc79..eadf04dd 100644 --- a/src/model/TaskGidRemoveDependenciesBody.js +++ b/src/model/TaskGidRemoveDependenciesBody.js @@ -18,7 +18,7 @@ import {ModifyDependenciesRequest} from './ModifyDependenciesRequest'; /** * The TaskGidRemoveDependenciesBody model module. * @module model/TaskGidRemoveDependenciesBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidRemoveDependenciesBody { /** diff --git a/src/model/TaskGidRemoveDependentsBody.js b/src/model/TaskGidRemoveDependentsBody.js index 7d689bb9..85c715ae 100644 --- a/src/model/TaskGidRemoveDependentsBody.js +++ b/src/model/TaskGidRemoveDependentsBody.js @@ -18,7 +18,7 @@ import {ModifyDependentsRequest} from './ModifyDependentsRequest'; /** * The TaskGidRemoveDependentsBody model module. * @module model/TaskGidRemoveDependentsBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidRemoveDependentsBody { /** diff --git a/src/model/TaskGidRemoveFollowersBody.js b/src/model/TaskGidRemoveFollowersBody.js index fb12e4f0..7260defe 100644 --- a/src/model/TaskGidRemoveFollowersBody.js +++ b/src/model/TaskGidRemoveFollowersBody.js @@ -18,7 +18,7 @@ import {TaskRemoveFollowersRequest} from './TaskRemoveFollowersRequest'; /** * The TaskGidRemoveFollowersBody model module. * @module model/TaskGidRemoveFollowersBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidRemoveFollowersBody { /** diff --git a/src/model/TaskGidRemoveProjectBody.js b/src/model/TaskGidRemoveProjectBody.js index 163b91ad..97896d3e 100644 --- a/src/model/TaskGidRemoveProjectBody.js +++ b/src/model/TaskGidRemoveProjectBody.js @@ -18,7 +18,7 @@ import {TaskRemoveProjectRequest} from './TaskRemoveProjectRequest'; /** * The TaskGidRemoveProjectBody model module. * @module model/TaskGidRemoveProjectBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidRemoveProjectBody { /** diff --git a/src/model/TaskGidRemoveTagBody.js b/src/model/TaskGidRemoveTagBody.js index bf0c32f8..b518395a 100644 --- a/src/model/TaskGidRemoveTagBody.js +++ b/src/model/TaskGidRemoveTagBody.js @@ -18,7 +18,7 @@ import {TaskRemoveTagRequest} from './TaskRemoveTagRequest'; /** * The TaskGidRemoveTagBody model module. * @module model/TaskGidRemoveTagBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidRemoveTagBody { /** diff --git a/src/model/TaskGidSetParentBody.js b/src/model/TaskGidSetParentBody.js index e29b3c4a..17d778b0 100644 --- a/src/model/TaskGidSetParentBody.js +++ b/src/model/TaskGidSetParentBody.js @@ -18,7 +18,7 @@ import {TaskSetParentRequest} from './TaskSetParentRequest'; /** * The TaskGidSetParentBody model module. * @module model/TaskGidSetParentBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidSetParentBody { /** diff --git a/src/model/TaskGidStoriesBody.js b/src/model/TaskGidStoriesBody.js index 7b0ba82d..d6c47afc 100644 --- a/src/model/TaskGidStoriesBody.js +++ b/src/model/TaskGidStoriesBody.js @@ -18,7 +18,7 @@ import {StoryRequest} from './StoryRequest'; /** * The TaskGidStoriesBody model module. * @module model/TaskGidStoriesBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidStoriesBody { /** diff --git a/src/model/TaskGidSubtasksBody.js b/src/model/TaskGidSubtasksBody.js index 74a204aa..fadd2946 100644 --- a/src/model/TaskGidSubtasksBody.js +++ b/src/model/TaskGidSubtasksBody.js @@ -18,7 +18,7 @@ import {TaskRequest} from './TaskRequest'; /** * The TaskGidSubtasksBody model module. * @module model/TaskGidSubtasksBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidSubtasksBody { /** diff --git a/src/model/TaskGidTimeTrackingEntriesBody.js b/src/model/TaskGidTimeTrackingEntriesBody.js index 0fd63849..948fd64e 100644 --- a/src/model/TaskGidTimeTrackingEntriesBody.js +++ b/src/model/TaskGidTimeTrackingEntriesBody.js @@ -18,7 +18,7 @@ import {CreateTimeTrackingEntryRequest} from './CreateTimeTrackingEntryRequest'; /** * The TaskGidTimeTrackingEntriesBody model module. * @module model/TaskGidTimeTrackingEntriesBody - * @version 2.0.4 + * @version 2.0.5 */ export class TaskGidTimeTrackingEntriesBody { /** diff --git a/src/model/TaskRemoveFollowersRequest.js b/src/model/TaskRemoveFollowersRequest.js index cf9bc41c..23228eaf 100644 --- a/src/model/TaskRemoveFollowersRequest.js +++ b/src/model/TaskRemoveFollowersRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskRemoveFollowersRequest model module. * @module model/TaskRemoveFollowersRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskRemoveFollowersRequest { /** diff --git a/src/model/TaskRemoveProjectRequest.js b/src/model/TaskRemoveProjectRequest.js index 9480f9b2..4f696caf 100644 --- a/src/model/TaskRemoveProjectRequest.js +++ b/src/model/TaskRemoveProjectRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskRemoveProjectRequest model module. * @module model/TaskRemoveProjectRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskRemoveProjectRequest { /** diff --git a/src/model/TaskRemoveTagRequest.js b/src/model/TaskRemoveTagRequest.js index 2f8cdce2..572027df 100644 --- a/src/model/TaskRemoveTagRequest.js +++ b/src/model/TaskRemoveTagRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskRemoveTagRequest model module. * @module model/TaskRemoveTagRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskRemoveTagRequest { /** diff --git a/src/model/TaskRequest.js b/src/model/TaskRequest.js index dba3b466..a08da854 100644 --- a/src/model/TaskRequest.js +++ b/src/model/TaskRequest.js @@ -23,7 +23,7 @@ import {TaskBaseMemberships} from './TaskBaseMemberships'; /** * The TaskRequest model module. * @module model/TaskRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskRequest { /** diff --git a/src/model/TaskResponse.js b/src/model/TaskResponse.js index a41bccf8..6adf9ad0 100644 --- a/src/model/TaskResponse.js +++ b/src/model/TaskResponse.js @@ -31,7 +31,7 @@ import {TaskResponseWorkspace} from './TaskResponseWorkspace'; /** * The TaskResponse model module. * @module model/TaskResponse - * @version 2.0.4 + * @version 2.0.5 */ export class TaskResponse { /** diff --git a/src/model/TaskResponseArray.js b/src/model/TaskResponseArray.js index 188a4522..aede65a7 100644 --- a/src/model/TaskResponseArray.js +++ b/src/model/TaskResponseArray.js @@ -19,7 +19,7 @@ import {TaskResponse} from './TaskResponse'; /** * The TaskResponseArray model module. * @module model/TaskResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class TaskResponseArray { /** diff --git a/src/model/TaskResponseAssigneeSection.js b/src/model/TaskResponseAssigneeSection.js index 23fa5ecd..686b7ee7 100644 --- a/src/model/TaskResponseAssigneeSection.js +++ b/src/model/TaskResponseAssigneeSection.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskResponseAssigneeSection model module. * @module model/TaskResponseAssigneeSection - * @version 2.0.4 + * @version 2.0.5 */ export class TaskResponseAssigneeSection { /** diff --git a/src/model/TaskResponseCustomFields.js b/src/model/TaskResponseCustomFields.js index 45dfb9fd..f5eac4dd 100644 --- a/src/model/TaskResponseCustomFields.js +++ b/src/model/TaskResponseCustomFields.js @@ -22,7 +22,7 @@ import {CustomFieldResponsePeopleValue} from './CustomFieldResponsePeopleValue'; /** * The TaskResponseCustomFields model module. * @module model/TaskResponseCustomFields - * @version 2.0.4 + * @version 2.0.5 */ export class TaskResponseCustomFields { /** diff --git a/src/model/TaskResponseData.js b/src/model/TaskResponseData.js index 4ddc5dfe..1d8d2b3e 100644 --- a/src/model/TaskResponseData.js +++ b/src/model/TaskResponseData.js @@ -18,7 +18,7 @@ import {TaskResponse} from './TaskResponse'; /** * The TaskResponseData model module. * @module model/TaskResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class TaskResponseData { /** diff --git a/src/model/TaskResponseParent.js b/src/model/TaskResponseParent.js index dd1d08b6..7fa8dc0e 100644 --- a/src/model/TaskResponseParent.js +++ b/src/model/TaskResponseParent.js @@ -18,7 +18,7 @@ import {AttachmentResponseParentCreatedBy} from './AttachmentResponseParentCreat /** * The TaskResponseParent model module. * @module model/TaskResponseParent - * @version 2.0.4 + * @version 2.0.5 */ export class TaskResponseParent { /** diff --git a/src/model/TaskResponseTags.js b/src/model/TaskResponseTags.js index 4c0998f4..bc7fa812 100644 --- a/src/model/TaskResponseTags.js +++ b/src/model/TaskResponseTags.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskResponseTags model module. * @module model/TaskResponseTags - * @version 2.0.4 + * @version 2.0.5 */ export class TaskResponseTags { /** diff --git a/src/model/TaskResponseWorkspace.js b/src/model/TaskResponseWorkspace.js index 058c5891..c6e5c1ad 100644 --- a/src/model/TaskResponseWorkspace.js +++ b/src/model/TaskResponseWorkspace.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskResponseWorkspace model module. * @module model/TaskResponseWorkspace - * @version 2.0.4 + * @version 2.0.5 */ export class TaskResponseWorkspace { /** diff --git a/src/model/TaskSetParentRequest.js b/src/model/TaskSetParentRequest.js index b8b009ca..a2b03b17 100644 --- a/src/model/TaskSetParentRequest.js +++ b/src/model/TaskSetParentRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TaskSetParentRequest model module. * @module model/TaskSetParentRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TaskSetParentRequest { /** diff --git a/src/model/TasksBody.js b/src/model/TasksBody.js index 30a9acaf..1137a873 100644 --- a/src/model/TasksBody.js +++ b/src/model/TasksBody.js @@ -18,7 +18,7 @@ import {TaskRequest} from './TaskRequest'; /** * The TasksBody model module. * @module model/TasksBody - * @version 2.0.4 + * @version 2.0.5 */ export class TasksBody { /** diff --git a/src/model/TasksTaskGidBody.js b/src/model/TasksTaskGidBody.js index 65ad9480..3c23cecd 100644 --- a/src/model/TasksTaskGidBody.js +++ b/src/model/TasksTaskGidBody.js @@ -18,7 +18,7 @@ import {TaskRequest} from './TaskRequest'; /** * The TasksTaskGidBody model module. * @module model/TasksTaskGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class TasksTaskGidBody { /** diff --git a/src/model/TeamAddUserRequest.js b/src/model/TeamAddUserRequest.js index bd9b50f3..387cb9b5 100644 --- a/src/model/TeamAddUserRequest.js +++ b/src/model/TeamAddUserRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TeamAddUserRequest model module. * @module model/TeamAddUserRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TeamAddUserRequest { /** diff --git a/src/model/TeamBase.js b/src/model/TeamBase.js index 2d8bdd40..aa8bdcf0 100644 --- a/src/model/TeamBase.js +++ b/src/model/TeamBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TeamBase model module. * @module model/TeamBase - * @version 2.0.4 + * @version 2.0.5 */ export class TeamBase { /** diff --git a/src/model/TeamCompact.js b/src/model/TeamCompact.js index 09f8113a..c42fa0e3 100644 --- a/src/model/TeamCompact.js +++ b/src/model/TeamCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TeamCompact model module. * @module model/TeamCompact - * @version 2.0.4 + * @version 2.0.5 */ export class TeamCompact { /** diff --git a/src/model/TeamGidAddUserBody.js b/src/model/TeamGidAddUserBody.js index 367a1081..aa0366b1 100644 --- a/src/model/TeamGidAddUserBody.js +++ b/src/model/TeamGidAddUserBody.js @@ -18,7 +18,7 @@ import {TeamAddUserRequest} from './TeamAddUserRequest'; /** * The TeamGidAddUserBody model module. * @module model/TeamGidAddUserBody - * @version 2.0.4 + * @version 2.0.5 */ export class TeamGidAddUserBody { /** diff --git a/src/model/TeamGidProjectsBody.js b/src/model/TeamGidProjectsBody.js index e1917390..af9411ff 100644 --- a/src/model/TeamGidProjectsBody.js +++ b/src/model/TeamGidProjectsBody.js @@ -18,7 +18,7 @@ import {ProjectRequest} from './ProjectRequest'; /** * The TeamGidProjectsBody model module. * @module model/TeamGidProjectsBody - * @version 2.0.4 + * @version 2.0.5 */ export class TeamGidProjectsBody { /** diff --git a/src/model/TeamGidRemoveUserBody.js b/src/model/TeamGidRemoveUserBody.js index 9c58d533..e68c08f3 100644 --- a/src/model/TeamGidRemoveUserBody.js +++ b/src/model/TeamGidRemoveUserBody.js @@ -18,7 +18,7 @@ import {TeamRemoveUserRequest} from './TeamRemoveUserRequest'; /** * The TeamGidRemoveUserBody model module. * @module model/TeamGidRemoveUserBody - * @version 2.0.4 + * @version 2.0.5 */ export class TeamGidRemoveUserBody { /** diff --git a/src/model/TeamMembershipBase.js b/src/model/TeamMembershipBase.js index 6a925562..72ccae7d 100644 --- a/src/model/TeamMembershipBase.js +++ b/src/model/TeamMembershipBase.js @@ -19,7 +19,7 @@ import {ProjectTemplateBaseTeam} from './ProjectTemplateBaseTeam'; /** * The TeamMembershipBase model module. * @module model/TeamMembershipBase - * @version 2.0.4 + * @version 2.0.5 */ export class TeamMembershipBase { /** diff --git a/src/model/TeamMembershipCompact.js b/src/model/TeamMembershipCompact.js index e42af96a..402373a9 100644 --- a/src/model/TeamMembershipCompact.js +++ b/src/model/TeamMembershipCompact.js @@ -19,7 +19,7 @@ import {ProjectTemplateBaseTeam} from './ProjectTemplateBaseTeam'; /** * The TeamMembershipCompact model module. * @module model/TeamMembershipCompact - * @version 2.0.4 + * @version 2.0.5 */ export class TeamMembershipCompact { /** diff --git a/src/model/TeamMembershipResponse.js b/src/model/TeamMembershipResponse.js index 3cee5313..9e7e3ada 100644 --- a/src/model/TeamMembershipResponse.js +++ b/src/model/TeamMembershipResponse.js @@ -19,7 +19,7 @@ import {ProjectTemplateBaseTeam} from './ProjectTemplateBaseTeam'; /** * The TeamMembershipResponse model module. * @module model/TeamMembershipResponse - * @version 2.0.4 + * @version 2.0.5 */ export class TeamMembershipResponse { /** diff --git a/src/model/TeamMembershipResponseArray.js b/src/model/TeamMembershipResponseArray.js index e856f6f0..4467a9a3 100644 --- a/src/model/TeamMembershipResponseArray.js +++ b/src/model/TeamMembershipResponseArray.js @@ -19,7 +19,7 @@ import {TeamMembershipResponse} from './TeamMembershipResponse'; /** * The TeamMembershipResponseArray model module. * @module model/TeamMembershipResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class TeamMembershipResponseArray { /** diff --git a/src/model/TeamMembershipResponseData.js b/src/model/TeamMembershipResponseData.js index 86bc6466..f6a0ae46 100644 --- a/src/model/TeamMembershipResponseData.js +++ b/src/model/TeamMembershipResponseData.js @@ -18,7 +18,7 @@ import {TeamMembershipResponse} from './TeamMembershipResponse'; /** * The TeamMembershipResponseData model module. * @module model/TeamMembershipResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class TeamMembershipResponseData { /** diff --git a/src/model/TeamRemoveUserRequest.js b/src/model/TeamRemoveUserRequest.js index 3f9b0150..d84160c1 100644 --- a/src/model/TeamRemoveUserRequest.js +++ b/src/model/TeamRemoveUserRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TeamRemoveUserRequest model module. * @module model/TeamRemoveUserRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TeamRemoveUserRequest { /** diff --git a/src/model/TeamRequest.js b/src/model/TeamRequest.js index eb89fa81..460585b1 100644 --- a/src/model/TeamRequest.js +++ b/src/model/TeamRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TeamRequest model module. * @module model/TeamRequest - * @version 2.0.4 + * @version 2.0.5 */ export class TeamRequest { /** diff --git a/src/model/TeamResponse.js b/src/model/TeamResponse.js index e3e300df..6c224275 100644 --- a/src/model/TeamResponse.js +++ b/src/model/TeamResponse.js @@ -18,7 +18,7 @@ import {TeamResponseOrganization} from './TeamResponseOrganization'; /** * The TeamResponse model module. * @module model/TeamResponse - * @version 2.0.4 + * @version 2.0.5 */ export class TeamResponse { /** diff --git a/src/model/TeamResponseArray.js b/src/model/TeamResponseArray.js index b1beffa1..59a6d61a 100644 --- a/src/model/TeamResponseArray.js +++ b/src/model/TeamResponseArray.js @@ -19,7 +19,7 @@ import {TeamResponse} from './TeamResponse'; /** * The TeamResponseArray model module. * @module model/TeamResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class TeamResponseArray { /** diff --git a/src/model/TeamResponseData.js b/src/model/TeamResponseData.js index 18dabe27..b38fe1a1 100644 --- a/src/model/TeamResponseData.js +++ b/src/model/TeamResponseData.js @@ -18,7 +18,7 @@ import {TeamResponse} from './TeamResponse'; /** * The TeamResponseData model module. * @module model/TeamResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class TeamResponseData { /** diff --git a/src/model/TeamResponseOrganization.js b/src/model/TeamResponseOrganization.js index 922032b0..578dcacb 100644 --- a/src/model/TeamResponseOrganization.js +++ b/src/model/TeamResponseOrganization.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TeamResponseOrganization model module. * @module model/TeamResponseOrganization - * @version 2.0.4 + * @version 2.0.5 */ export class TeamResponseOrganization { /** diff --git a/src/model/TeamsBody.js b/src/model/TeamsBody.js index f1424edd..bba0c168 100644 --- a/src/model/TeamsBody.js +++ b/src/model/TeamsBody.js @@ -18,7 +18,7 @@ import {TeamRequest} from './TeamRequest'; /** * The TeamsBody model module. * @module model/TeamsBody - * @version 2.0.4 + * @version 2.0.5 */ export class TeamsBody { /** diff --git a/src/model/TeamsTeamGidBody.js b/src/model/TeamsTeamGidBody.js index 5327e8de..1160f8b7 100644 --- a/src/model/TeamsTeamGidBody.js +++ b/src/model/TeamsTeamGidBody.js @@ -18,7 +18,7 @@ import {TeamRequest} from './TeamRequest'; /** * The TeamsTeamGidBody model module. * @module model/TeamsTeamGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class TeamsTeamGidBody { /** diff --git a/src/model/TemplateRole.js b/src/model/TemplateRole.js index b49d5ffd..48c0ea24 100644 --- a/src/model/TemplateRole.js +++ b/src/model/TemplateRole.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TemplateRole model module. * @module model/TemplateRole - * @version 2.0.4 + * @version 2.0.5 */ export class TemplateRole { /** diff --git a/src/model/TimePeriodBase.js b/src/model/TimePeriodBase.js index 4b926bb5..df2ba467 100644 --- a/src/model/TimePeriodBase.js +++ b/src/model/TimePeriodBase.js @@ -18,7 +18,7 @@ import {GoalResponseTimePeriod} from './GoalResponseTimePeriod'; /** * The TimePeriodBase model module. * @module model/TimePeriodBase - * @version 2.0.4 + * @version 2.0.5 */ export class TimePeriodBase { /** diff --git a/src/model/TimePeriodCompact.js b/src/model/TimePeriodCompact.js index 240336d1..f193987e 100644 --- a/src/model/TimePeriodCompact.js +++ b/src/model/TimePeriodCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The TimePeriodCompact model module. * @module model/TimePeriodCompact - * @version 2.0.4 + * @version 2.0.5 */ export class TimePeriodCompact { /** diff --git a/src/model/TimePeriodResponse.js b/src/model/TimePeriodResponse.js index 8ada86e6..1423832b 100644 --- a/src/model/TimePeriodResponse.js +++ b/src/model/TimePeriodResponse.js @@ -18,7 +18,7 @@ import {GoalResponseTimePeriod} from './GoalResponseTimePeriod'; /** * The TimePeriodResponse model module. * @module model/TimePeriodResponse - * @version 2.0.4 + * @version 2.0.5 */ export class TimePeriodResponse { /** diff --git a/src/model/TimePeriodResponseArray.js b/src/model/TimePeriodResponseArray.js index be38e0c2..56f3c765 100644 --- a/src/model/TimePeriodResponseArray.js +++ b/src/model/TimePeriodResponseArray.js @@ -19,7 +19,7 @@ import {TimePeriodResponse} from './TimePeriodResponse'; /** * The TimePeriodResponseArray model module. * @module model/TimePeriodResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class TimePeriodResponseArray { /** diff --git a/src/model/TimePeriodResponseData.js b/src/model/TimePeriodResponseData.js index 7660f07d..5d1e1f10 100644 --- a/src/model/TimePeriodResponseData.js +++ b/src/model/TimePeriodResponseData.js @@ -18,7 +18,7 @@ import {TimePeriodResponse} from './TimePeriodResponse'; /** * The TimePeriodResponseData model module. * @module model/TimePeriodResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class TimePeriodResponseData { /** diff --git a/src/model/TimeTrackingEntriesTimeTrackingEntryGidBody.js b/src/model/TimeTrackingEntriesTimeTrackingEntryGidBody.js index 8c77df12..b7711b3c 100644 --- a/src/model/TimeTrackingEntriesTimeTrackingEntryGidBody.js +++ b/src/model/TimeTrackingEntriesTimeTrackingEntryGidBody.js @@ -18,7 +18,7 @@ import {UpdateTimeTrackingEntryRequest} from './UpdateTimeTrackingEntryRequest'; /** * The TimeTrackingEntriesTimeTrackingEntryGidBody model module. * @module model/TimeTrackingEntriesTimeTrackingEntryGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class TimeTrackingEntriesTimeTrackingEntryGidBody { /** diff --git a/src/model/TimeTrackingEntryBase.js b/src/model/TimeTrackingEntryBase.js index 3846bd60..34da6e05 100644 --- a/src/model/TimeTrackingEntryBase.js +++ b/src/model/TimeTrackingEntryBase.js @@ -19,7 +19,7 @@ import {StoryResponseTask} from './StoryResponseTask'; /** * The TimeTrackingEntryBase model module. * @module model/TimeTrackingEntryBase - * @version 2.0.4 + * @version 2.0.5 */ export class TimeTrackingEntryBase { /** diff --git a/src/model/TimeTrackingEntryBaseData.js b/src/model/TimeTrackingEntryBaseData.js index 5bac540b..2d33631e 100644 --- a/src/model/TimeTrackingEntryBaseData.js +++ b/src/model/TimeTrackingEntryBaseData.js @@ -18,7 +18,7 @@ import {TimeTrackingEntryBase} from './TimeTrackingEntryBase'; /** * The TimeTrackingEntryBaseData model module. * @module model/TimeTrackingEntryBaseData - * @version 2.0.4 + * @version 2.0.5 */ export class TimeTrackingEntryBaseData { /** diff --git a/src/model/TimeTrackingEntryCompact.js b/src/model/TimeTrackingEntryCompact.js index 6df3e7ad..fcb21148 100644 --- a/src/model/TimeTrackingEntryCompact.js +++ b/src/model/TimeTrackingEntryCompact.js @@ -18,7 +18,7 @@ import {StoryResponseAssignee} from './StoryResponseAssignee'; /** * The TimeTrackingEntryCompact model module. * @module model/TimeTrackingEntryCompact - * @version 2.0.4 + * @version 2.0.5 */ export class TimeTrackingEntryCompact { /** diff --git a/src/model/TimeTrackingEntryCompactArray.js b/src/model/TimeTrackingEntryCompactArray.js index 0a8ddb20..5ce03d07 100644 --- a/src/model/TimeTrackingEntryCompactArray.js +++ b/src/model/TimeTrackingEntryCompactArray.js @@ -19,7 +19,7 @@ import {TimeTrackingEntryCompact} from './TimeTrackingEntryCompact'; /** * The TimeTrackingEntryCompactArray model module. * @module model/TimeTrackingEntryCompactArray - * @version 2.0.4 + * @version 2.0.5 */ export class TimeTrackingEntryCompactArray { /** diff --git a/src/model/UpdateTimeTrackingEntryRequest.js b/src/model/UpdateTimeTrackingEntryRequest.js index db4b7220..798da579 100644 --- a/src/model/UpdateTimeTrackingEntryRequest.js +++ b/src/model/UpdateTimeTrackingEntryRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UpdateTimeTrackingEntryRequest model module. * @module model/UpdateTimeTrackingEntryRequest - * @version 2.0.4 + * @version 2.0.5 */ export class UpdateTimeTrackingEntryRequest { /** diff --git a/src/model/UserBase.js b/src/model/UserBase.js index 8ce0c77e..b7792464 100644 --- a/src/model/UserBase.js +++ b/src/model/UserBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UserBase model module. * @module model/UserBase - * @version 2.0.4 + * @version 2.0.5 */ export class UserBase { /** diff --git a/src/model/UserBaseResponse.js b/src/model/UserBaseResponse.js index e6c371c0..1e2ad8da 100644 --- a/src/model/UserBaseResponse.js +++ b/src/model/UserBaseResponse.js @@ -18,7 +18,7 @@ import {UserBaseResponsePhoto} from './UserBaseResponsePhoto'; /** * The UserBaseResponse model module. * @module model/UserBaseResponse - * @version 2.0.4 + * @version 2.0.5 */ export class UserBaseResponse { /** diff --git a/src/model/UserBaseResponseData.js b/src/model/UserBaseResponseData.js index d3448662..a61a6795 100644 --- a/src/model/UserBaseResponseData.js +++ b/src/model/UserBaseResponseData.js @@ -18,7 +18,7 @@ import {UserBaseResponse} from './UserBaseResponse'; /** * The UserBaseResponseData model module. * @module model/UserBaseResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class UserBaseResponseData { /** diff --git a/src/model/UserBaseResponsePhoto.js b/src/model/UserBaseResponsePhoto.js index 2a4d3ecf..04a32d9b 100644 --- a/src/model/UserBaseResponsePhoto.js +++ b/src/model/UserBaseResponsePhoto.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UserBaseResponsePhoto model module. * @module model/UserBaseResponsePhoto - * @version 2.0.4 + * @version 2.0.5 */ export class UserBaseResponsePhoto { /** diff --git a/src/model/UserCompact.js b/src/model/UserCompact.js index 6dc862fe..c5238fb7 100644 --- a/src/model/UserCompact.js +++ b/src/model/UserCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UserCompact model module. * @module model/UserCompact - * @version 2.0.4 + * @version 2.0.5 */ export class UserCompact { /** diff --git a/src/model/UserRequest.js b/src/model/UserRequest.js index 8c06fecf..105792eb 100644 --- a/src/model/UserRequest.js +++ b/src/model/UserRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UserRequest model module. * @module model/UserRequest - * @version 2.0.4 + * @version 2.0.5 */ export class UserRequest { /** diff --git a/src/model/UserResponse.js b/src/model/UserResponse.js index c11ae625..bd9b4fd8 100644 --- a/src/model/UserResponse.js +++ b/src/model/UserResponse.js @@ -19,7 +19,7 @@ import {UserBaseResponsePhoto} from './UserBaseResponsePhoto'; /** * The UserResponse model module. * @module model/UserResponse - * @version 2.0.4 + * @version 2.0.5 */ export class UserResponse { /** diff --git a/src/model/UserResponseArray.js b/src/model/UserResponseArray.js index 98ef9596..ee38f770 100644 --- a/src/model/UserResponseArray.js +++ b/src/model/UserResponseArray.js @@ -19,7 +19,7 @@ import {UserResponse} from './UserResponse'; /** * The UserResponseArray model module. * @module model/UserResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class UserResponseArray { /** diff --git a/src/model/UserResponseData.js b/src/model/UserResponseData.js index 4efe4570..c5bf8394 100644 --- a/src/model/UserResponseData.js +++ b/src/model/UserResponseData.js @@ -18,7 +18,7 @@ import {UserResponse} from './UserResponse'; /** * The UserResponseData model module. * @module model/UserResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class UserResponseData { /** diff --git a/src/model/UserTaskListBase.js b/src/model/UserTaskListBase.js index e79cca2f..978123da 100644 --- a/src/model/UserTaskListBase.js +++ b/src/model/UserTaskListBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UserTaskListBase model module. * @module model/UserTaskListBase - * @version 2.0.4 + * @version 2.0.5 */ export class UserTaskListBase { /** diff --git a/src/model/UserTaskListCompact.js b/src/model/UserTaskListCompact.js index 56790c1e..040ae0ce 100644 --- a/src/model/UserTaskListCompact.js +++ b/src/model/UserTaskListCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UserTaskListCompact model module. * @module model/UserTaskListCompact - * @version 2.0.4 + * @version 2.0.5 */ export class UserTaskListCompact { /** diff --git a/src/model/UserTaskListRequest.js b/src/model/UserTaskListRequest.js index c025acb6..644988e5 100644 --- a/src/model/UserTaskListRequest.js +++ b/src/model/UserTaskListRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UserTaskListRequest model module. * @module model/UserTaskListRequest - * @version 2.0.4 + * @version 2.0.5 */ export class UserTaskListRequest { /** diff --git a/src/model/UserTaskListResponse.js b/src/model/UserTaskListResponse.js index e1e75329..1645d0a4 100644 --- a/src/model/UserTaskListResponse.js +++ b/src/model/UserTaskListResponse.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The UserTaskListResponse model module. * @module model/UserTaskListResponse - * @version 2.0.4 + * @version 2.0.5 */ export class UserTaskListResponse { /** diff --git a/src/model/UserTaskListResponseData.js b/src/model/UserTaskListResponseData.js index 649ebcd0..6d92fa9e 100644 --- a/src/model/UserTaskListResponseData.js +++ b/src/model/UserTaskListResponseData.js @@ -18,7 +18,7 @@ import {UserTaskListResponse} from './UserTaskListResponse'; /** * The UserTaskListResponseData model module. * @module model/UserTaskListResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class UserTaskListResponseData { /** diff --git a/src/model/WebhookCompact.js b/src/model/WebhookCompact.js index 29d848df..d8357edd 100644 --- a/src/model/WebhookCompact.js +++ b/src/model/WebhookCompact.js @@ -18,7 +18,7 @@ import {WebhookCompactResource} from './WebhookCompactResource'; /** * The WebhookCompact model module. * @module model/WebhookCompact - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookCompact { /** diff --git a/src/model/WebhookCompactResource.js b/src/model/WebhookCompactResource.js index 36a68bd1..6a7472dc 100644 --- a/src/model/WebhookCompactResource.js +++ b/src/model/WebhookCompactResource.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WebhookCompactResource model module. * @module model/WebhookCompactResource - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookCompactResource { /** diff --git a/src/model/WebhookFilter.js b/src/model/WebhookFilter.js index 7d99581d..206c1625 100644 --- a/src/model/WebhookFilter.js +++ b/src/model/WebhookFilter.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WebhookFilter model module. * @module model/WebhookFilter - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookFilter { /** diff --git a/src/model/WebhookRequest.js b/src/model/WebhookRequest.js index 33c49251..bd4709bc 100644 --- a/src/model/WebhookRequest.js +++ b/src/model/WebhookRequest.js @@ -18,7 +18,7 @@ import {WebhookRequestFilters} from './WebhookRequestFilters'; /** * The WebhookRequest model module. * @module model/WebhookRequest - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookRequest { /** diff --git a/src/model/WebhookRequestFilters.js b/src/model/WebhookRequestFilters.js index dad7be55..2351feb1 100644 --- a/src/model/WebhookRequestFilters.js +++ b/src/model/WebhookRequestFilters.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WebhookRequestFilters model module. * @module model/WebhookRequestFilters - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookRequestFilters { /** diff --git a/src/model/WebhookResponse.js b/src/model/WebhookResponse.js index 3f09c060..259a322a 100644 --- a/src/model/WebhookResponse.js +++ b/src/model/WebhookResponse.js @@ -19,7 +19,7 @@ import {WebhookRequestFilters} from './WebhookRequestFilters'; /** * The WebhookResponse model module. * @module model/WebhookResponse - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookResponse { /** diff --git a/src/model/WebhookResponseArray.js b/src/model/WebhookResponseArray.js index 1b9f1e92..c7a75c7d 100644 --- a/src/model/WebhookResponseArray.js +++ b/src/model/WebhookResponseArray.js @@ -19,7 +19,7 @@ import {WebhookResponse} from './WebhookResponse'; /** * The WebhookResponseArray model module. * @module model/WebhookResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookResponseArray { /** diff --git a/src/model/WebhookResponseData.js b/src/model/WebhookResponseData.js index 4e9eefb6..5d02937d 100644 --- a/src/model/WebhookResponseData.js +++ b/src/model/WebhookResponseData.js @@ -18,7 +18,7 @@ import {WebhookResponse} from './WebhookResponse'; /** * The WebhookResponseData model module. * @module model/WebhookResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookResponseData { /** diff --git a/src/model/WebhookUpdateRequest.js b/src/model/WebhookUpdateRequest.js index cae83acd..9cebc4d4 100644 --- a/src/model/WebhookUpdateRequest.js +++ b/src/model/WebhookUpdateRequest.js @@ -18,7 +18,7 @@ import {WebhookRequestFilters} from './WebhookRequestFilters'; /** * The WebhookUpdateRequest model module. * @module model/WebhookUpdateRequest - * @version 2.0.4 + * @version 2.0.5 */ export class WebhookUpdateRequest { /** diff --git a/src/model/WebhooksBody.js b/src/model/WebhooksBody.js index e21fbd36..9e64902d 100644 --- a/src/model/WebhooksBody.js +++ b/src/model/WebhooksBody.js @@ -18,7 +18,7 @@ import {WebhookRequest} from './WebhookRequest'; /** * The WebhooksBody model module. * @module model/WebhooksBody - * @version 2.0.4 + * @version 2.0.5 */ export class WebhooksBody { /** diff --git a/src/model/WebhooksWebhookGidBody.js b/src/model/WebhooksWebhookGidBody.js index d26e812a..b4b7c737 100644 --- a/src/model/WebhooksWebhookGidBody.js +++ b/src/model/WebhooksWebhookGidBody.js @@ -18,7 +18,7 @@ import {WebhookUpdateRequest} from './WebhookUpdateRequest'; /** * The WebhooksWebhookGidBody model module. * @module model/WebhooksWebhookGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class WebhooksWebhookGidBody { /** diff --git a/src/model/WorkspaceAddUserRequest.js b/src/model/WorkspaceAddUserRequest.js index ae5a4a9f..7e796eb5 100644 --- a/src/model/WorkspaceAddUserRequest.js +++ b/src/model/WorkspaceAddUserRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WorkspaceAddUserRequest model module. * @module model/WorkspaceAddUserRequest - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceAddUserRequest { /** diff --git a/src/model/WorkspaceBase.js b/src/model/WorkspaceBase.js index eea827a4..ed57ed11 100644 --- a/src/model/WorkspaceBase.js +++ b/src/model/WorkspaceBase.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WorkspaceBase model module. * @module model/WorkspaceBase - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceBase { /** diff --git a/src/model/WorkspaceCompact.js b/src/model/WorkspaceCompact.js index 47a67981..d3eb20a6 100644 --- a/src/model/WorkspaceCompact.js +++ b/src/model/WorkspaceCompact.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WorkspaceCompact model module. * @module model/WorkspaceCompact - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceCompact { /** diff --git a/src/model/WorkspaceGidAddUserBody.js b/src/model/WorkspaceGidAddUserBody.js index bba3855b..795082f9 100644 --- a/src/model/WorkspaceGidAddUserBody.js +++ b/src/model/WorkspaceGidAddUserBody.js @@ -18,7 +18,7 @@ import {WorkspaceAddUserRequest} from './WorkspaceAddUserRequest'; /** * The WorkspaceGidAddUserBody model module. * @module model/WorkspaceGidAddUserBody - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceGidAddUserBody { /** diff --git a/src/model/WorkspaceGidProjectsBody.js b/src/model/WorkspaceGidProjectsBody.js index 32e36900..d2beb94c 100644 --- a/src/model/WorkspaceGidProjectsBody.js +++ b/src/model/WorkspaceGidProjectsBody.js @@ -18,7 +18,7 @@ import {ProjectRequest} from './ProjectRequest'; /** * The WorkspaceGidProjectsBody model module. * @module model/WorkspaceGidProjectsBody - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceGidProjectsBody { /** diff --git a/src/model/WorkspaceGidRemoveUserBody.js b/src/model/WorkspaceGidRemoveUserBody.js index 80d5346c..2d82d681 100644 --- a/src/model/WorkspaceGidRemoveUserBody.js +++ b/src/model/WorkspaceGidRemoveUserBody.js @@ -18,7 +18,7 @@ import {WorkspaceRemoveUserRequest} from './WorkspaceRemoveUserRequest'; /** * The WorkspaceGidRemoveUserBody model module. * @module model/WorkspaceGidRemoveUserBody - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceGidRemoveUserBody { /** diff --git a/src/model/WorkspaceGidTagsBody.js b/src/model/WorkspaceGidTagsBody.js index c7e47197..4bb78781 100644 --- a/src/model/WorkspaceGidTagsBody.js +++ b/src/model/WorkspaceGidTagsBody.js @@ -18,7 +18,7 @@ import {TagResponse} from './TagResponse'; /** * The WorkspaceGidTagsBody model module. * @module model/WorkspaceGidTagsBody - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceGidTagsBody { /** diff --git a/src/model/WorkspaceMembershipBase.js b/src/model/WorkspaceMembershipBase.js index dc14a3f1..2d81722b 100644 --- a/src/model/WorkspaceMembershipBase.js +++ b/src/model/WorkspaceMembershipBase.js @@ -19,7 +19,7 @@ import {GoalResponseWorkspace} from './GoalResponseWorkspace'; /** * The WorkspaceMembershipBase model module. * @module model/WorkspaceMembershipBase - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceMembershipBase { /** diff --git a/src/model/WorkspaceMembershipCompact.js b/src/model/WorkspaceMembershipCompact.js index e391a4b6..6bba6431 100644 --- a/src/model/WorkspaceMembershipCompact.js +++ b/src/model/WorkspaceMembershipCompact.js @@ -19,7 +19,7 @@ import {GoalResponseWorkspace} from './GoalResponseWorkspace'; /** * The WorkspaceMembershipCompact model module. * @module model/WorkspaceMembershipCompact - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceMembershipCompact { /** diff --git a/src/model/WorkspaceMembershipRequest.js b/src/model/WorkspaceMembershipRequest.js index 97f1658f..c66b30d4 100644 --- a/src/model/WorkspaceMembershipRequest.js +++ b/src/model/WorkspaceMembershipRequest.js @@ -19,7 +19,7 @@ import {GoalResponseWorkspace} from './GoalResponseWorkspace'; /** * The WorkspaceMembershipRequest model module. * @module model/WorkspaceMembershipRequest - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceMembershipRequest { /** diff --git a/src/model/WorkspaceMembershipResponse.js b/src/model/WorkspaceMembershipResponse.js index 6c469869..21ada707 100644 --- a/src/model/WorkspaceMembershipResponse.js +++ b/src/model/WorkspaceMembershipResponse.js @@ -21,7 +21,7 @@ import {WorkspaceMembershipResponseVacationDates} from './WorkspaceMembershipRes /** * The WorkspaceMembershipResponse model module. * @module model/WorkspaceMembershipResponse - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceMembershipResponse { /** diff --git a/src/model/WorkspaceMembershipResponseArray.js b/src/model/WorkspaceMembershipResponseArray.js index f0a6dd34..9963b872 100644 --- a/src/model/WorkspaceMembershipResponseArray.js +++ b/src/model/WorkspaceMembershipResponseArray.js @@ -19,7 +19,7 @@ import {WorkspaceMembershipResponse} from './WorkspaceMembershipResponse'; /** * The WorkspaceMembershipResponseArray model module. * @module model/WorkspaceMembershipResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceMembershipResponseArray { /** diff --git a/src/model/WorkspaceMembershipResponseData.js b/src/model/WorkspaceMembershipResponseData.js index 535507c1..69ec0bf9 100644 --- a/src/model/WorkspaceMembershipResponseData.js +++ b/src/model/WorkspaceMembershipResponseData.js @@ -18,7 +18,7 @@ import {WorkspaceMembershipResponse} from './WorkspaceMembershipResponse'; /** * The WorkspaceMembershipResponseData model module. * @module model/WorkspaceMembershipResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceMembershipResponseData { /** diff --git a/src/model/WorkspaceMembershipResponseUserTaskList.js b/src/model/WorkspaceMembershipResponseUserTaskList.js index 433670e1..e24eaf43 100644 --- a/src/model/WorkspaceMembershipResponseUserTaskList.js +++ b/src/model/WorkspaceMembershipResponseUserTaskList.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WorkspaceMembershipResponseUserTaskList model module. * @module model/WorkspaceMembershipResponseUserTaskList - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceMembershipResponseUserTaskList { /** diff --git a/src/model/WorkspaceMembershipResponseVacationDates.js b/src/model/WorkspaceMembershipResponseVacationDates.js index 84e732cd..1ba76524 100644 --- a/src/model/WorkspaceMembershipResponseVacationDates.js +++ b/src/model/WorkspaceMembershipResponseVacationDates.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WorkspaceMembershipResponseVacationDates model module. * @module model/WorkspaceMembershipResponseVacationDates - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceMembershipResponseVacationDates { /** diff --git a/src/model/WorkspaceRemoveUserRequest.js b/src/model/WorkspaceRemoveUserRequest.js index 25149d66..dcbb29f8 100644 --- a/src/model/WorkspaceRemoveUserRequest.js +++ b/src/model/WorkspaceRemoveUserRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WorkspaceRemoveUserRequest model module. * @module model/WorkspaceRemoveUserRequest - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceRemoveUserRequest { /** diff --git a/src/model/WorkspaceRequest.js b/src/model/WorkspaceRequest.js index d8d5bca1..62b9d04b 100644 --- a/src/model/WorkspaceRequest.js +++ b/src/model/WorkspaceRequest.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WorkspaceRequest model module. * @module model/WorkspaceRequest - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceRequest { /** diff --git a/src/model/WorkspaceResponse.js b/src/model/WorkspaceResponse.js index 4a03ab87..144e8120 100644 --- a/src/model/WorkspaceResponse.js +++ b/src/model/WorkspaceResponse.js @@ -17,7 +17,7 @@ import {ApiClient} from '../ApiClient'; /** * The WorkspaceResponse model module. * @module model/WorkspaceResponse - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceResponse { /** diff --git a/src/model/WorkspaceResponseArray.js b/src/model/WorkspaceResponseArray.js index 7c46925c..20026868 100644 --- a/src/model/WorkspaceResponseArray.js +++ b/src/model/WorkspaceResponseArray.js @@ -19,7 +19,7 @@ import {WorkspaceResponse} from './WorkspaceResponse'; /** * The WorkspaceResponseArray model module. * @module model/WorkspaceResponseArray - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceResponseArray { /** diff --git a/src/model/WorkspaceResponseData.js b/src/model/WorkspaceResponseData.js index eece99e5..755e22ab 100644 --- a/src/model/WorkspaceResponseData.js +++ b/src/model/WorkspaceResponseData.js @@ -18,7 +18,7 @@ import {WorkspaceResponse} from './WorkspaceResponse'; /** * The WorkspaceResponseData model module. * @module model/WorkspaceResponseData - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspaceResponseData { /** diff --git a/src/model/WorkspacesWorkspaceGidBody.js b/src/model/WorkspacesWorkspaceGidBody.js index 06443370..d694c23c 100644 --- a/src/model/WorkspacesWorkspaceGidBody.js +++ b/src/model/WorkspacesWorkspaceGidBody.js @@ -18,7 +18,7 @@ import {WorkspaceRequest} from './WorkspaceRequest'; /** * The WorkspacesWorkspaceGidBody model module. * @module model/WorkspacesWorkspaceGidBody - * @version 2.0.4 + * @version 2.0.5 */ export class WorkspacesWorkspaceGidBody { /**