diff --git a/CHANGELOG.md b/CHANGELOG.md index f9e0fadec1..7de2aa8e31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@

Alfresco JS API + +# [1.2.0](https://github.com/Alfresco/alfresco-js-api/releases/tag/1.2.0) (xx-xx-2017) +## Fix +- [Upgrade superagent library to 3.4.1 and provide responseType override #180](https://github.com/Alfresco/alfresco-js-api/pull/180) +- [Username should be trimmed in the login #184](https://github.com/Alfresco/alfresco-js-api/pull/184) # [1.1.1](https://github.com/Alfresco/alfresco-js-api/releases/tag/1.1.1) (27-01-2017) @@ -33,7 +38,7 @@ _This project provides a JavaScript client API into the v1 Alfresco REST API_ hostBpm: 'http://127.0.0.1:9999', contextRootBpm: 'activiti-custom-root' }); - + this.bpmAuth.login('admin', 'admin'); ``` @@ -275,7 +280,7 @@ Before: ```javascript this.alfrescoJsApi = new AlfrescoApi({ host :''http://127.0.0.1:8080', ticket :'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1'}); ``` - + After: ```javascript @@ -286,7 +291,7 @@ this.alfrescoJsApi = new AlfrescoApi({ ticketEcm:'TICKET_4479f4d3bb155195879bfbb //Login ticket BPM this.alfrescoJsApi = new AlfrescoApi({ ticketBpm: 'Basic YWRtaW46YWRtaW4=', hostBpm:'http://127.0.0.1:9999'}); -//Login ticket ECM and BPM +//Login ticket ECM and BPM this.alfrescoJsApi = new AlfrescoApi({ ticketEcm:'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1', ticketBpm: 'Basic YWRtaW46YWRtaW4=', hostEcm:'http://127.0.0.1:8080', hostBpm:'http://127.0.0.1:9999'}); ``` diff --git a/dist/alfresco-js-api.js b/dist/alfresco-js-api.js index ba32fd1943..f88db7ed64 100644 --- a/dist/alfresco-js-api.js +++ b/dist/alfresco-js-api.js @@ -5,7 +5,7 @@ var AlfrescoApi = require('./src/alfrescoApi.js'); module.exports = AlfrescoApi; -},{"./src/alfrescoApi.js":300}],2:[function(require,module,exports){ +},{"./src/alfrescoApi.js":301}],2:[function(require,module,exports){ 'use strict' exports.byteLength = byteLength @@ -19799,6 +19799,7 @@ var RequestBase = require('./request-base'); var isObject = require('./is-object'); var isFunction = require('./is-function'); var ResponseBase = require('./response-base'); +var shouldRetry = require('./should-retry'); /** * Noop. @@ -20073,8 +20074,7 @@ function isJSON(mime) { * @api private */ -function Response(req, options) { - options = options || {}; +function Response(req) { this.req = req; this.xhr = this.req.xhr; // responseText is accessible only if responseType is '' or 'text' and on older browsers @@ -20310,18 +20310,18 @@ Request.prototype.auth = function(user, pass, options){ }; /** -* Add query-string `val`. -* -* Examples: -* -* request.get('/shoes') -* .query('size=10') -* .query({ color: 'blue' }) -* -* @param {Object|String} val -* @return {Request} for chaining -* @api public -*/ + * Add query-string `val`. + * + * Examples: + * + * request.get('/shoes') + * .query('size=10') + * .query({ color: 'blue' }) + * + * @param {Object|String} val + * @return {Request} for chaining + * @api public + */ Request.prototype.query = function(val){ if ('string' != typeof val) val = serialize(val); @@ -20372,10 +20372,16 @@ Request.prototype._getFormData = function(){ */ Request.prototype.callback = function(err, res){ + // console.log(this._retries, this._maxRetries) + if (this._maxRetries && this._retries++ < this._maxRetries && shouldRetry(err, res)) { + return this._retry(); + } + var fn = this._callback; this.clearTimeout(); if (err) { + if (this._maxRetries) err.retries = this._retries - 1; this.emit('error', err); } @@ -20459,10 +20465,6 @@ Request.prototype._isHost = function _isHost(obj) { */ Request.prototype.end = function(fn){ - var self = this; - var xhr = this.xhr = request.getXHR(); - var data = this._formData || this._data; - if (this._endCalled) { console.warn("Warning: .end() was called twice. This is not supported in superagent"); } @@ -20471,6 +20473,19 @@ Request.prototype.end = function(fn){ // store callback this._callback = fn || noop; + // querystring + this._appendQueryString(); + + return this._end(); +}; + +Request.prototype._end = function() { + var self = this; + var xhr = this.xhr = request.getXHR(); + var data = this._formData || this._data; + + this._setTimeouts(); + // state change xhr.onreadystatechange = function(){ var readyState = xhr.readyState; @@ -20514,11 +20529,6 @@ Request.prototype.end = function(fn){ } } - // querystring - this._appendQueryString(); - - this._setTimeouts(); - // initiate request try { if (this.username && this.password) { @@ -20619,16 +20629,19 @@ request.options = function(url, data, fn){ }; /** - * DELETE `url` with optional callback `fn(res)`. + * DELETE `url` with optional `data` and callback `fn(res)`. * * @param {String} url + * @param {Mixed} [data] * @param {Function} [fn] * @return {Request} * @api public */ -function del(url, fn){ +function del(url, data, fn){ var req = request('DELETE', url); + if ('function' == typeof data) fn = data, data = null; + if (data) req.send(data); if (fn) req.end(fn); return req; }; @@ -20690,7 +20703,7 @@ request.put = function(url, data, fn){ return req; }; -},{"./is-function":26,"./is-object":27,"./request-base":28,"./response-base":29,"emitter":6}],26:[function(require,module,exports){ +},{"./is-function":26,"./is-object":27,"./request-base":28,"./response-base":29,"./should-retry":30,"emitter":6}],26:[function(require,module,exports){ /** * Check if `fn` is a function. * @@ -20767,10 +20780,10 @@ function mixin(obj) { */ RequestBase.prototype.clearTimeout = function _clearTimeout(){ - this._timeout = 0; - this._responseTimeout = 0; clearTimeout(this._timer); clearTimeout(this._responseTimeoutTimer); + delete this._timer; + delete this._responseTimeoutTimer; return this; }; @@ -20854,6 +20867,47 @@ RequestBase.prototype.timeout = function timeout(options){ return this; }; +/** + * Set number of retry attempts on error. + * + * Failed requests will be retried 'count' times if timeout or err.code >= 500. + * + * @param {Number} count + * @return {Request} for chaining + * @api public + */ + +RequestBase.prototype.retry = function retry(count){ + // Default to 1 if no count passed or true + if (arguments.length === 0 || count === true) count = 1; + if (count <= 0) count = 0; + this._maxRetries = count; + this._retries = 0; + return this; +}; + +/** + * Retry request + * + * @return {Request} for chaining + * @api private + */ + +RequestBase.prototype._retry = function() { + this.clearTimeout(); + + // node + if (this.req) { + this.req = null; + this.req = this.request(); + } + + this._aborted = false; + this.timedout = false; + + return this._end(); +}; + /** * Promise support * @@ -21401,7 +21455,30 @@ ResponseBase.prototype._setStatusProperties = function(status){ this.notFound = 404 == status; }; -},{"./utils":30}],30:[function(require,module,exports){ +},{"./utils":31}],30:[function(require,module,exports){ +var ERROR_CODES = [ + 'ECONNRESET', + 'ETIMEDOUT', + 'EADDRINFO', + 'ESOCKETTIMEDOUT' +]; + +/** + * Determine if a request should be retried. + * (Borrowed from segmentio/superagent-retry) + * + * @param {Error} err + * @param {Response} [res] + * @returns {Boolean} + */ +module.exports = function shouldRetry(err, res) { + if (err && err.code && ~ERROR_CODES.indexOf(err.code)) return true; + if (res && res.status && res.status >= 500) return true; + // Superagent timeout + if (err && 'timeout' in err && err.code == 'ECONNABORTED') return true; + return false; +}; +},{}],31:[function(require,module,exports){ /** * Return the mime type for the given `str`. @@ -21470,8 +21547,7 @@ exports.cleanHeader = function(header, shouldStripCookie){ } return header; }; - -},{}],31:[function(require,module,exports){ +},{}],32:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -21542,7 +21618,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],32:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],33:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -21965,7 +22041,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/CreateEndpointBasicAuthRepresentation":95,"../model/EndpointBasicAuthRepresentation":98,"../model/EndpointConfigurationRepresentation":99}],33:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/CreateEndpointBasicAuthRepresentation":96,"../model/EndpointBasicAuthRepresentation":99,"../model/EndpointConfigurationRepresentation":100}],34:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -22629,7 +22705,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/AbstractGroupRepresentation":77,"../model/AddGroupCapabilitiesRepresentation":80,"../model/GroupRepresentation":114,"../model/LightGroupRepresentation":118,"../model/ResultListDataRepresentation":143}],34:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/AbstractGroupRepresentation":78,"../model/AddGroupCapabilitiesRepresentation":81,"../model/GroupRepresentation":115,"../model/LightGroupRepresentation":119,"../model/ResultListDataRepresentation":144}],35:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -22956,7 +23032,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/CreateTenantRepresentation":97,"../model/ImageUploadRepresentation":115,"../model/LightTenantRepresentation":119,"../model/TenantEvent":153,"../model/TenantRepresentation":154}],35:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/CreateTenantRepresentation":98,"../model/ImageUploadRepresentation":116,"../model/LightTenantRepresentation":120,"../model/TenantEvent":154,"../model/TenantRepresentation":155}],36:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -23196,7 +23272,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/AbstractUserRepresentation":79,"../model/BulkUserUpdateRepresentation":88,"../model/ResultListDataRepresentation":143,"../model/UserRepresentation":159}],36:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/AbstractUserRepresentation":80,"../model/BulkUserUpdateRepresentation":89,"../model/ResultListDataRepresentation":144,"../model/UserRepresentation":160}],37:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -23576,7 +23652,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],37:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],38:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -23837,7 +23913,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/AppDefinitionPublishRepresentation":82,"../model/AppDefinitionRepresentation":83,"../model/AppDefinitionUpdateResultRepresentation":84,"../model/ResultListDataRepresentation":143,"../model/RuntimeAppDefinitionSaveRepresentation":144}],38:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/AppDefinitionPublishRepresentation":83,"../model/AppDefinitionRepresentation":84,"../model/AppDefinitionUpdateResultRepresentation":85,"../model/ResultListDataRepresentation":144,"../model/RuntimeAppDefinitionSaveRepresentation":145}],39:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -24035,7 +24111,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/AppDefinitionPublishRepresentation":82,"../model/AppDefinitionRepresentation":83,"../model/AppDefinitionUpdateResultRepresentation":84}],39:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/AppDefinitionPublishRepresentation":83,"../model/AppDefinitionRepresentation":84,"../model/AppDefinitionUpdateResultRepresentation":85}],40:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -24139,7 +24215,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143,"../model/RuntimeAppDefinitionSaveRepresentation":144}],40:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144,"../model/RuntimeAppDefinitionSaveRepresentation":145}],41:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -24344,7 +24420,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/CommentRepresentation":92,"../model/ResultListDataRepresentation":143}],41:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/CommentRepresentation":93,"../model/ResultListDataRepresentation":144}],42:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -24755,8 +24831,10 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol var contentTypes = ['application/json']; var accepts = ['application/json']; var returnType = Object; + var contextRoot = null; + var responseType = 'blob'; - return this.apiClient.callApi('/api/enterprise/content/{contentId}/raw', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType); + return this.apiClient.callApi('/api/enterprise/content/{contentId}/raw', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, contextRoot, responseType); }; /** @@ -24847,7 +24925,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/RelatedContentRepresentation":138,"../model/ResultListDataRepresentation":143}],42:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/RelatedContentRepresentation":139,"../model/ResultListDataRepresentation":144}],43:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -24931,7 +25009,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],43:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],44:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -25156,7 +25234,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/FormRepresentation":108,"../model/FormSaveRepresentation":109,"../model/ValidationErrorRepresentation":161}],44:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/FormRepresentation":109,"../model/FormSaveRepresentation":110,"../model/ValidationErrorRepresentation":162}],45:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -25272,7 +25350,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],45:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],46:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -25384,7 +25462,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/SyncLogEntryRepresentation":146}],46:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/SyncLogEntryRepresentation":147}],47:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -25455,7 +25533,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],47:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],48:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -25676,7 +25754,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],48:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],49:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -25870,7 +25948,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],49:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],50:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -26553,7 +26631,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/BoxUserAccountCredentialsRepresentation":87,"../model/ResultListDataRepresentation":143,"../model/UserAccountCredentialsRepresentation":155}],50:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/BoxUserAccountCredentialsRepresentation":88,"../model/ResultListDataRepresentation":144,"../model/UserAccountCredentialsRepresentation":156}],51:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -26838,7 +26916,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/BoxUserAccountCredentialsRepresentation":87,"../model/ResultListDataRepresentation":143,"../model/UserAccountCredentialsRepresentation":155}],51:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/BoxUserAccountCredentialsRepresentation":88,"../model/ResultListDataRepresentation":144,"../model/UserAccountCredentialsRepresentation":156}],52:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -26951,7 +27029,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],52:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],53:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -27069,7 +27147,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],53:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],54:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -27187,7 +27265,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ObjectNode":126}],54:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ObjectNode":127}],55:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -27707,7 +27785,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ModelRepresentation":125,"../model/ObjectNode":126,"../model/ResultListDataRepresentation":143,"../model/ValidationErrorRepresentation":161}],55:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ModelRepresentation":126,"../model/ObjectNode":127,"../model/ResultListDataRepresentation":144,"../model/ValidationErrorRepresentation":162}],56:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -27830,7 +27908,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ModelRepresentation":125,"../model/ResultListDataRepresentation":143}],56:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ModelRepresentation":126,"../model/ResultListDataRepresentation":144}],57:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -28239,7 +28317,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/CreateProcessInstanceRepresentation":96,"../model/FormDefinitionRepresentation":104,"../model/FormValueRepresentation":112,"../model/ProcessFilterRequestRepresentation":129,"../model/ProcessInstanceFilterRequestRepresentation":131,"../model/ProcessInstanceRepresentation":132,"../model/ResultListDataRepresentation":143}],57:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/CreateProcessInstanceRepresentation":97,"../model/FormDefinitionRepresentation":105,"../model/FormValueRepresentation":113,"../model/ProcessFilterRequestRepresentation":130,"../model/ProcessInstanceFilterRequestRepresentation":132,"../model/ProcessInstanceRepresentation":133,"../model/ResultListDataRepresentation":144}],58:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -28316,7 +28394,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],58:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],59:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -28453,7 +28531,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/FormDefinitionRepresentation":104,"../model/FormValueRepresentation":112}],59:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/FormDefinitionRepresentation":105,"../model/FormValueRepresentation":113}],60:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -28699,7 +28777,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/RestVariable":142}],60:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/RestVariable":143}],61:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -28924,7 +29002,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/CommentRepresentation":92,"../model/FormDefinitionRepresentation":104,"../model/ProcessInstanceRepresentation":132,"../model/ResultListDataRepresentation":143}],61:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/CommentRepresentation":93,"../model/FormDefinitionRepresentation":105,"../model/ProcessInstanceRepresentation":133,"../model/ResultListDataRepresentation":144}],62:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -29033,7 +29111,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/CreateProcessInstanceRepresentation":96,"../model/ProcessInstanceRepresentation":132,"../model/ResultListDataRepresentation":143}],62:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/CreateProcessInstanceRepresentation":97,"../model/ProcessInstanceRepresentation":133,"../model/ResultListDataRepresentation":144}],63:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -29140,7 +29218,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ObjectNode":126,"../model/ProcessInstanceFilterRequestRepresentation":131,"../model/ResultListDataRepresentation":143}],63:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ObjectNode":127,"../model/ProcessInstanceFilterRequestRepresentation":132,"../model/ResultListDataRepresentation":144}],64:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -29215,7 +29293,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ProcessScopeRepresentation":135,"../model/ProcessScopesRequestRepresentation":136}],64:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ProcessScopeRepresentation":136,"../model/ProcessScopesRequestRepresentation":137}],65:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -29419,7 +29497,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ChangePasswordRepresentation":89,"../model/File":103,"../model/ImageUploadRepresentation":115,"../model/UserRepresentation":159}],65:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ChangePasswordRepresentation":90,"../model/File":104,"../model/ImageUploadRepresentation":116,"../model/UserRepresentation":160}],66:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -29720,7 +29798,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ParameterValueRepresentation":128,"../model/ReportCharts":139,"../model/ReportParametersDefinition":140}],66:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ParameterValueRepresentation":129,"../model/ReportCharts":140,"../model/ReportParametersDefinition":141}],67:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -29815,7 +29893,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],67:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],68:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -29885,7 +29963,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/SystemPropertiesRepresentation":147}],68:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/SystemPropertiesRepresentation":148}],69:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -30227,7 +30305,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ObjectNode":126,"../model/TaskRepresentation":151}],69:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ObjectNode":127,"../model/TaskRepresentation":152}],70:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -31297,7 +31375,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ChecklistOrderRepresentation":91,"../model/CommentRepresentation":92,"../model/CompleteFormRepresentation":93,"../model/FormDefinitionRepresentation":104,"../model/FormValueRepresentation":112,"../model/ObjectNode":126,"../model/RelatedContentRepresentation":138,"../model/ResultListDataRepresentation":143,"../model/SaveFormRepresentation":145,"../model/TaskFilterRequestRepresentation":149,"../model/TaskRepresentation":151,"../model/TaskUpdateRepresentation":152}],70:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ChecklistOrderRepresentation":92,"../model/CommentRepresentation":93,"../model/CompleteFormRepresentation":94,"../model/FormDefinitionRepresentation":105,"../model/FormValueRepresentation":113,"../model/ObjectNode":127,"../model/RelatedContentRepresentation":139,"../model/ResultListDataRepresentation":144,"../model/SaveFormRepresentation":146,"../model/TaskFilterRequestRepresentation":150,"../model/TaskRepresentation":152,"../model/TaskUpdateRepresentation":153}],71:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -31454,7 +31532,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ChecklistOrderRepresentation":91,"../model/ResultListDataRepresentation":143,"../model/TaskRepresentation":151}],71:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ChecklistOrderRepresentation":92,"../model/ResultListDataRepresentation":144,"../model/TaskRepresentation":152}],72:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -31736,7 +31814,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/CompleteFormRepresentation":93,"../model/FormDefinitionRepresentation":104,"../model/FormValueRepresentation":112,"../model/ProcessInstanceVariableRepresentation":133,"../model/SaveFormRepresentation":145}],72:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/CompleteFormRepresentation":94,"../model/FormDefinitionRepresentation":105,"../model/FormValueRepresentation":113,"../model/ProcessInstanceVariableRepresentation":134,"../model/SaveFormRepresentation":146}],73:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -31913,7 +31991,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ArrayNode":86}],73:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ArrayNode":87}],74:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -32183,7 +32261,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResetPasswordRepresentation":141,"../model/ResultListDataRepresentation":143,"../model/UserActionRepresentation":156,"../model/UserRepresentation":159}],74:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResetPasswordRepresentation":142,"../model/ResultListDataRepresentation":144,"../model/UserActionRepresentation":157,"../model/UserRepresentation":160}],75:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -32640,7 +32718,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143,"../model/UserFilterOrderRepresentation":157,"../model/UserProcessInstanceFilterRepresentation":158,"../model/UserTaskFilterRepresentation":160}],75:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144,"../model/UserFilterOrderRepresentation":158,"../model/UserProcessInstanceFilterRepresentation":159,"../model/UserTaskFilterRepresentation":161}],76:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -32730,7 +32808,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],76:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],77:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33427,7 +33505,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../alfrescoApiClient":301,"./api/AboutApi":31,"./api/AdminEndpointsApi":32,"./api/AdminGroupsApi":33,"./api/AdminTenantsApi":34,"./api/AdminUsersApi":35,"./api/AlfrescoApi":36,"./api/AppsApi":37,"./api/AppsDefinitionApi":38,"./api/AppsRuntimeApi":39,"./api/CommentsApi":40,"./api/ContentApi":41,"./api/ContentRenditionApi":42,"./api/EditorApi":43,"./api/GroupsApi":44,"./api/IDMSyncApi":45,"./api/IntegrationAccountApi":46,"./api/IntegrationAlfrescoCloudApi":47,"./api/IntegrationAlfrescoOnPremiseApi":48,"./api/IntegrationApi":49,"./api/IntegrationBoxApi":50,"./api/IntegrationDriveApi":51,"./api/ModelBpmnApi":52,"./api/ModelJsonBpmnApi":53,"./api/ModelsApi":54,"./api/ModelsHistoryApi":55,"./api/ProcessApi":56,"./api/ProcessDefinitionsApi":57,"./api/ProcessDefinitionsFormApi":58,"./api/ProcessInstanceVariablesApi":59,"./api/ProcessInstancesApi":60,"./api/ProcessInstancesInformationApi":61,"./api/ProcessInstancesListingApi":62,"./api/ProcessScopeApi":63,"./api/ProfileApi":64,"./api/ReportApi":65,"./api/ScriptFileApi":66,"./api/SystemPropertiesApi":67,"./api/TaskActionsApi":68,"./api/TaskApi":69,"./api/TaskCheckListApi":70,"./api/TaskFormsApi":71,"./api/TemporaryApi":72,"./api/UserApi":73,"./api/UserFiltersApi":74,"./api/UsersWorkflowApi":75,"./model/AbstractGroupRepresentation":77,"./model/AbstractRepresentation":78,"./model/AbstractUserRepresentation":79,"./model/AddGroupCapabilitiesRepresentation":80,"./model/AppDefinition":81,"./model/AppDefinitionPublishRepresentation":82,"./model/AppDefinitionRepresentation":83,"./model/AppDefinitionUpdateResultRepresentation":84,"./model/AppModelDefinition":85,"./model/ArrayNode":86,"./model/BoxUserAccountCredentialsRepresentation":87,"./model/BulkUserUpdateRepresentation":88,"./model/ChangePasswordRepresentation":89,"./model/ChecklistOrderRepresentation":91,"./model/CommentRepresentation":92,"./model/CompleteFormRepresentation":93,"./model/ConditionRepresentation":94,"./model/CreateEndpointBasicAuthRepresentation":95,"./model/CreateProcessInstanceRepresentation":96,"./model/CreateTenantRepresentation":97,"./model/EndpointBasicAuthRepresentation":98,"./model/EndpointConfigurationRepresentation":99,"./model/EndpointRequestHeaderRepresentation":100,"./model/EntityAttributeScopeRepresentation":101,"./model/EntityVariableScopeRepresentation":102,"./model/File":103,"./model/FormDefinitionRepresentation":104,"./model/FormFieldRepresentation":105,"./model/FormJavascriptEventRepresentation":106,"./model/FormOutcomeRepresentation":107,"./model/FormRepresentation":108,"./model/FormSaveRepresentation":109,"./model/FormScopeRepresentation":110,"./model/FormTabRepresentation":111,"./model/FormValueRepresentation":112,"./model/GroupCapabilityRepresentation":113,"./model/GroupRepresentation":114,"./model/ImageUploadRepresentation":115,"./model/LayoutRepresentation":116,"./model/LightAppRepresentation":117,"./model/LightGroupRepresentation":118,"./model/LightTenantRepresentation":119,"./model/LightUserRepresentation":120,"./model/MaplongListstring":121,"./model/MapstringListEntityVariableScopeRepresentation":122,"./model/MapstringListVariableScopeRepresentation":123,"./model/Mapstringstring":124,"./model/ModelRepresentation":125,"./model/ObjectNode":126,"./model/OptionRepresentation":127,"./model/ProcessFilterRequestRepresentation":129,"./model/ProcessInstanceFilterRepresentation":130,"./model/ProcessInstanceFilterRequestRepresentation":131,"./model/ProcessInstanceRepresentation":132,"./model/ProcessInstanceVariableRepresentation":133,"./model/ProcessScopeIdentifierRepresentation":134,"./model/ProcessScopeRepresentation":135,"./model/ProcessScopesRequestRepresentation":136,"./model/PublishIdentityInfoRepresentation":137,"./model/RelatedContentRepresentation":138,"./model/ResetPasswordRepresentation":141,"./model/RestVariable":142,"./model/ResultListDataRepresentation":143,"./model/RuntimeAppDefinitionSaveRepresentation":144,"./model/SaveFormRepresentation":145,"./model/SyncLogEntryRepresentation":146,"./model/SystemPropertiesRepresentation":147,"./model/TaskFilterRepresentation":148,"./model/TaskFilterRequestRepresentation":149,"./model/TaskQueryRequestRepresentation":150,"./model/TaskRepresentation":151,"./model/TaskUpdateRepresentation":152,"./model/TenantEvent":153,"./model/TenantRepresentation":154,"./model/UserAccountCredentialsRepresentation":155,"./model/UserActionRepresentation":156,"./model/UserFilterOrderRepresentation":157,"./model/UserProcessInstanceFilterRepresentation":158,"./model/UserRepresentation":159,"./model/UserTaskFilterRepresentation":160,"./model/ValidationErrorRepresentation":161,"./model/VariableScopeRepresentation":162}],77:[function(require,module,exports){ +},{"../../alfrescoApiClient":302,"./api/AboutApi":32,"./api/AdminEndpointsApi":33,"./api/AdminGroupsApi":34,"./api/AdminTenantsApi":35,"./api/AdminUsersApi":36,"./api/AlfrescoApi":37,"./api/AppsApi":38,"./api/AppsDefinitionApi":39,"./api/AppsRuntimeApi":40,"./api/CommentsApi":41,"./api/ContentApi":42,"./api/ContentRenditionApi":43,"./api/EditorApi":44,"./api/GroupsApi":45,"./api/IDMSyncApi":46,"./api/IntegrationAccountApi":47,"./api/IntegrationAlfrescoCloudApi":48,"./api/IntegrationAlfrescoOnPremiseApi":49,"./api/IntegrationApi":50,"./api/IntegrationBoxApi":51,"./api/IntegrationDriveApi":52,"./api/ModelBpmnApi":53,"./api/ModelJsonBpmnApi":54,"./api/ModelsApi":55,"./api/ModelsHistoryApi":56,"./api/ProcessApi":57,"./api/ProcessDefinitionsApi":58,"./api/ProcessDefinitionsFormApi":59,"./api/ProcessInstanceVariablesApi":60,"./api/ProcessInstancesApi":61,"./api/ProcessInstancesInformationApi":62,"./api/ProcessInstancesListingApi":63,"./api/ProcessScopeApi":64,"./api/ProfileApi":65,"./api/ReportApi":66,"./api/ScriptFileApi":67,"./api/SystemPropertiesApi":68,"./api/TaskActionsApi":69,"./api/TaskApi":70,"./api/TaskCheckListApi":71,"./api/TaskFormsApi":72,"./api/TemporaryApi":73,"./api/UserApi":74,"./api/UserFiltersApi":75,"./api/UsersWorkflowApi":76,"./model/AbstractGroupRepresentation":78,"./model/AbstractRepresentation":79,"./model/AbstractUserRepresentation":80,"./model/AddGroupCapabilitiesRepresentation":81,"./model/AppDefinition":82,"./model/AppDefinitionPublishRepresentation":83,"./model/AppDefinitionRepresentation":84,"./model/AppDefinitionUpdateResultRepresentation":85,"./model/AppModelDefinition":86,"./model/ArrayNode":87,"./model/BoxUserAccountCredentialsRepresentation":88,"./model/BulkUserUpdateRepresentation":89,"./model/ChangePasswordRepresentation":90,"./model/ChecklistOrderRepresentation":92,"./model/CommentRepresentation":93,"./model/CompleteFormRepresentation":94,"./model/ConditionRepresentation":95,"./model/CreateEndpointBasicAuthRepresentation":96,"./model/CreateProcessInstanceRepresentation":97,"./model/CreateTenantRepresentation":98,"./model/EndpointBasicAuthRepresentation":99,"./model/EndpointConfigurationRepresentation":100,"./model/EndpointRequestHeaderRepresentation":101,"./model/EntityAttributeScopeRepresentation":102,"./model/EntityVariableScopeRepresentation":103,"./model/File":104,"./model/FormDefinitionRepresentation":105,"./model/FormFieldRepresentation":106,"./model/FormJavascriptEventRepresentation":107,"./model/FormOutcomeRepresentation":108,"./model/FormRepresentation":109,"./model/FormSaveRepresentation":110,"./model/FormScopeRepresentation":111,"./model/FormTabRepresentation":112,"./model/FormValueRepresentation":113,"./model/GroupCapabilityRepresentation":114,"./model/GroupRepresentation":115,"./model/ImageUploadRepresentation":116,"./model/LayoutRepresentation":117,"./model/LightAppRepresentation":118,"./model/LightGroupRepresentation":119,"./model/LightTenantRepresentation":120,"./model/LightUserRepresentation":121,"./model/MaplongListstring":122,"./model/MapstringListEntityVariableScopeRepresentation":123,"./model/MapstringListVariableScopeRepresentation":124,"./model/Mapstringstring":125,"./model/ModelRepresentation":126,"./model/ObjectNode":127,"./model/OptionRepresentation":128,"./model/ProcessFilterRequestRepresentation":130,"./model/ProcessInstanceFilterRepresentation":131,"./model/ProcessInstanceFilterRequestRepresentation":132,"./model/ProcessInstanceRepresentation":133,"./model/ProcessInstanceVariableRepresentation":134,"./model/ProcessScopeIdentifierRepresentation":135,"./model/ProcessScopeRepresentation":136,"./model/ProcessScopesRequestRepresentation":137,"./model/PublishIdentityInfoRepresentation":138,"./model/RelatedContentRepresentation":139,"./model/ResetPasswordRepresentation":142,"./model/RestVariable":143,"./model/ResultListDataRepresentation":144,"./model/RuntimeAppDefinitionSaveRepresentation":145,"./model/SaveFormRepresentation":146,"./model/SyncLogEntryRepresentation":147,"./model/SystemPropertiesRepresentation":148,"./model/TaskFilterRepresentation":149,"./model/TaskFilterRequestRepresentation":150,"./model/TaskQueryRequestRepresentation":151,"./model/TaskRepresentation":152,"./model/TaskUpdateRepresentation":153,"./model/TenantEvent":154,"./model/TenantRepresentation":155,"./model/UserAccountCredentialsRepresentation":156,"./model/UserActionRepresentation":157,"./model/UserFilterOrderRepresentation":158,"./model/UserProcessInstanceFilterRepresentation":159,"./model/UserRepresentation":160,"./model/UserTaskFilterRepresentation":161,"./model/ValidationErrorRepresentation":162,"./model/VariableScopeRepresentation":163}],78:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33512,7 +33590,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],78:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],79:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33567,7 +33645,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],79:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],80:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33666,7 +33744,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],80:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],81:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33730,7 +33808,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],81:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],82:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33815,7 +33893,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./AppModelDefinition":85,"./PublishIdentityInfoRepresentation":137}],82:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./AppModelDefinition":86,"./PublishIdentityInfoRepresentation":138}],83:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -33886,7 +33964,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],83:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],84:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34006,7 +34084,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],84:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],85:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34112,7 +34190,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./AppDefinitionRepresentation":83}],85:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./AppDefinitionRepresentation":84}],86:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34246,7 +34324,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],86:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],87:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34502,7 +34580,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],87:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],88:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34580,7 +34658,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],88:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],89:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34679,7 +34757,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],89:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],90:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34750,7 +34828,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],90:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],91:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34819,7 +34897,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],91:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],92:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34883,7 +34961,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],92:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],93:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -34968,7 +35046,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./LightUserRepresentation":120}],93:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./LightUserRepresentation":121}],94:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35039,7 +35117,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],94:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],95:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35152,7 +35230,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],95:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],96:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35237,7 +35315,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],96:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],97:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35322,7 +35400,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],97:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],98:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35407,7 +35485,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],98:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],99:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35506,7 +35584,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],99:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],100:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35633,7 +35711,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./EndpointRequestHeaderRepresentation":100}],100:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./EndpointRequestHeaderRepresentation":101}],101:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35704,7 +35782,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],101:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],102:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35775,7 +35853,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],102:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],103:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -35860,7 +35938,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./EntityAttributeScopeRepresentation":101}],103:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./EntityAttributeScopeRepresentation":102}],104:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -36022,7 +36100,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],104:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],105:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -36212,7 +36290,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./FormFieldRepresentation":105,"./FormJavascriptEventRepresentation":106,"./FormOutcomeRepresentation":107,"./FormTabRepresentation":111}],105:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./FormFieldRepresentation":106,"./FormJavascriptEventRepresentation":107,"./FormOutcomeRepresentation":108,"./FormTabRepresentation":112}],106:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -36479,7 +36557,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./ConditionRepresentation":94,"./LayoutRepresentation":116,"./OptionRepresentation":127}],106:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./ConditionRepresentation":95,"./LayoutRepresentation":117,"./OptionRepresentation":128}],107:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -36550,7 +36628,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],107:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],108:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -36621,7 +36699,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],108:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],109:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -36748,7 +36826,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./FormDefinitionRepresentation":104}],109:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./FormDefinitionRepresentation":105}],110:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -36847,7 +36925,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./FormRepresentation":108,"./ProcessScopeIdentifierRepresentation":134}],110:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./FormRepresentation":109,"./ProcessScopeIdentifierRepresentation":135}],111:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -36946,7 +37024,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./FormFieldRepresentation":105,"./FormOutcomeRepresentation":107}],111:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./FormFieldRepresentation":106,"./FormOutcomeRepresentation":108}],112:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37024,7 +37102,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./ConditionRepresentation":94}],112:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./ConditionRepresentation":95}],113:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37095,7 +37173,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],113:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],114:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37166,7 +37244,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],114:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],115:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37307,7 +37385,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./GroupCapabilityRepresentation":113,"./GroupRepresentation":114,"./UserRepresentation":159}],115:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./GroupCapabilityRepresentation":114,"./GroupRepresentation":115,"./UserRepresentation":160}],116:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37392,7 +37470,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],116:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],117:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37470,7 +37548,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],117:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],118:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37562,7 +37640,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],118:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],119:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37654,7 +37732,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./LightGroupRepresentation":118}],119:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./LightGroupRepresentation":119}],120:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37725,7 +37803,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],120:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],121:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37824,7 +37902,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],121:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],122:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37883,7 +37961,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],122:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],123:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -37942,7 +38020,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],123:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],124:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38001,7 +38079,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],124:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],125:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38060,7 +38138,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],125:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],126:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38229,7 +38307,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],126:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],127:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38284,7 +38362,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],127:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],128:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38355,7 +38433,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],128:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],129:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38440,7 +38518,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],129:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],130:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38545,7 +38623,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],130:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],131:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38644,7 +38722,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],131:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],132:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38736,7 +38814,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./ProcessInstanceFilterRepresentation":130}],132:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./ProcessInstanceFilterRepresentation":131}],133:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38912,7 +38990,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./LightUserRepresentation":120,"./RestVariable":142}],133:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./LightUserRepresentation":121,"./RestVariable":143}],134:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -38990,7 +39068,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],134:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],135:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39061,7 +39139,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],135:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],136:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39216,7 +39294,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./FormScopeRepresentation":110}],136:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./FormScopeRepresentation":111}],137:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39287,7 +39365,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./ProcessScopeIdentifierRepresentation":134}],137:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./ProcessScopeIdentifierRepresentation":135}],138:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39365,7 +39443,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./LightGroupRepresentation":118,"./LightUserRepresentation":120}],138:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./LightGroupRepresentation":119,"./LightUserRepresentation":121}],139:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39513,7 +39591,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./LightUserRepresentation":120}],139:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./LightUserRepresentation":121}],140:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39575,7 +39653,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./Chart":90}],140:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./Chart":91}],141:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39660,7 +39738,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],141:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],142:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39724,7 +39802,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],142:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],143:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39816,7 +39894,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],143:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],144:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39901,7 +39979,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./AbstractRepresentation":78}],144:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./AbstractRepresentation":79}],145:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -39965,7 +40043,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./AppDefinitionRepresentation":83}],145:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./AppDefinitionRepresentation":84}],146:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40029,7 +40107,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],146:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],147:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40107,7 +40185,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],147:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],148:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40171,7 +40249,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],148:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],149:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40291,7 +40369,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],149:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],150:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40392,7 +40470,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./TaskFilterRepresentation":148}],150:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./TaskFilterRepresentation":149}],151:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40491,7 +40569,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],151:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],152:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40744,7 +40822,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./LightUserRepresentation":120}],152:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./LightUserRepresentation":121}],153:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40843,7 +40921,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],153:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],154:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -40949,7 +41027,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],154:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],155:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41062,7 +41140,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],155:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],156:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41133,7 +41211,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],156:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],157:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41211,7 +41289,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],157:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],158:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41282,7 +41360,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],158:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],159:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41388,7 +41466,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./ProcessInstanceFilterRepresentation":130}],159:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./ProcessInstanceFilterRepresentation":131}],160:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41585,7 +41663,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./GroupRepresentation":114,"./LightAppRepresentation":117}],160:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./GroupRepresentation":115,"./LightAppRepresentation":118}],161:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41691,7 +41769,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./TaskFilterRepresentation":148}],161:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./TaskFilterRepresentation":149}],162:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41797,7 +41875,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],162:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],163:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -41903,7 +41981,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],163:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],164:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42014,7 +42092,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"../model/Error":165,"../model/LoginRequest":167,"../model/LoginTicketEntry":168,"../model/ValidateTicketEntry":170}],164:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"../model/Error":166,"../model/LoginRequest":168,"../model/LoginTicketEntry":169,"../model/ValidateTicketEntry":171}],165:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42113,7 +42191,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../alfrescoApiClient":301,"./api/AuthenticationApi":163,"./model/Error":165,"./model/ErrorError":166,"./model/LoginRequest":167,"./model/LoginTicketEntry":168,"./model/LoginTicketEntryEntry":169,"./model/ValidateTicketEntry":170,"./model/ValidateTicketEntryEntry":171}],165:[function(require,module,exports){ +},{"../../alfrescoApiClient":302,"./api/AuthenticationApi":164,"./model/Error":166,"./model/ErrorError":167,"./model/LoginRequest":168,"./model/LoginTicketEntry":169,"./model/LoginTicketEntryEntry":170,"./model/ValidateTicketEntry":171,"./model/ValidateTicketEntryEntry":172}],166:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42175,7 +42253,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./ErrorError":166}],166:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./ErrorError":167}],167:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42288,7 +42366,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],167:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],168:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42358,7 +42436,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],168:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],169:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42420,7 +42498,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./LoginTicketEntryEntry":169}],169:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./LoginTicketEntryEntry":170}],170:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42490,7 +42568,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],170:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],171:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42552,7 +42630,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301,"./ValidateTicketEntryEntry":171}],171:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302,"./ValidateTicketEntryEntry":172}],172:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -42614,7 +42692,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],172:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],173:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -43135,7 +43213,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol }); }).call(this,require("buffer").Buffer) -},{"buffer":4,"fs":3,"superagent":25}],173:[function(require,module,exports){ +},{"buffer":4,"fs":3,"superagent":25}],174:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -43328,7 +43406,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/AssocTargetBody":196,"../model/Error":214,"../model/NodeAssocPaging":228}],174:[function(require,module,exports){ +},{"../ApiClient":173,"../model/AssocTargetBody":197,"../model/Error":215,"../model/NodeAssocPaging":229}],175:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -44689,7 +44767,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/AssocChildBody":194,"../model/AssocTargetBody":196,"../model/CopyBody":206,"../model/DeletedNodeEntry":208,"../model/DeletedNodesPaging":211,"../model/EmailSharedLinkBody":213,"../model/Error":214,"../model/MoveBody":224,"../model/NodeAssocPaging":228,"../model/NodeBody":230,"../model/NodeBody1":231,"../model/NodeChildAssocPaging":234,"../model/NodeEntry":236,"../model/NodePaging":240,"../model/NodeSharedLinkEntry":243,"../model/NodeSharedLinkPaging":244,"../model/RenditionBody":267,"../model/RenditionEntry":268,"../model/RenditionPaging":269,"../model/SharedLinkBody":271,"../model/SiteBody":273,"../model/SiteEntry":277}],175:[function(require,module,exports){ +},{"../ApiClient":173,"../model/AssocChildBody":195,"../model/AssocTargetBody":197,"../model/CopyBody":207,"../model/DeletedNodeEntry":209,"../model/DeletedNodesPaging":212,"../model/EmailSharedLinkBody":214,"../model/Error":215,"../model/MoveBody":225,"../model/NodeAssocPaging":229,"../model/NodeBody":231,"../model/NodeBody1":232,"../model/NodeChildAssocPaging":235,"../model/NodeEntry":237,"../model/NodePaging":241,"../model/NodeSharedLinkEntry":244,"../model/NodeSharedLinkPaging":245,"../model/RenditionBody":268,"../model/RenditionEntry":269,"../model/RenditionPaging":270,"../model/SharedLinkBody":272,"../model/SiteBody":274,"../model/SiteEntry":278}],176:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -45051,7 +45129,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/AssocChildBody":194,"../model/Error":214,"../model/MoveBody":224,"../model/NodeAssocPaging":228,"../model/NodeBody1":231,"../model/NodeChildAssocPaging":234,"../model/NodeEntry":236,"../model/NodePaging":240}],176:[function(require,module,exports){ +},{"../ApiClient":173,"../model/AssocChildBody":195,"../model/Error":215,"../model/MoveBody":225,"../model/NodeAssocPaging":229,"../model/NodeBody1":232,"../model/NodeChildAssocPaging":235,"../model/NodeEntry":237,"../model/NodePaging":241}],177:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -45249,7 +45327,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/CommentBody":199,"../model/CommentBody1":200,"../model/CommentEntry":201,"../model/CommentPaging":202,"../model/Error":214}],177:[function(require,module,exports){ +},{"../ApiClient":173,"../model/CommentBody":200,"../model/CommentBody1":201,"../model/CommentEntry":202,"../model/CommentPaging":203,"../model/Error":215}],178:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -45443,7 +45521,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/Error":214,"../model/FavoriteBody":217,"../model/FavoriteEntry":218,"../model/FavoritePaging":219}],178:[function(require,module,exports){ +},{"../ApiClient":173,"../model/Error":215,"../model/FavoriteBody":218,"../model/FavoriteEntry":219,"../model/FavoritePaging":220}],179:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -45520,7 +45598,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/Error":214,"../model/PersonNetworkEntry":253}],179:[function(require,module,exports){ +},{"../ApiClient":173,"../model/Error":215,"../model/PersonNetworkEntry":254}],180:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -46055,7 +46133,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/CopyBody":206,"../model/DeletedNodeEntry":208,"../model/DeletedNodesPaging":211,"../model/Error":214,"../model/MoveBody":224,"../model/NodeBody":230,"../model/NodeBody1":231,"../model/NodeEntry":236,"../model/NodePaging":240}],180:[function(require,module,exports){ +},{"../ApiClient":173,"../model/CopyBody":207,"../model/DeletedNodeEntry":209,"../model/DeletedNodesPaging":212,"../model/Error":215,"../model/MoveBody":225,"../model/NodeBody":231,"../model/NodeBody1":232,"../model/NodeEntry":237,"../model/NodePaging":241}],181:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -46864,7 +46942,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/ActivityPaging":192,"../model/Error":214,"../model/FavoriteBody":217,"../model/FavoriteEntry":218,"../model/FavoritePaging":219,"../model/FavoriteSiteBody":221,"../model/InlineResponse201":222,"../model/PersonEntry":251,"../model/PersonNetworkEntry":253,"../model/PersonNetworkPaging":254,"../model/PreferenceEntry":257,"../model/PreferencePaging":258,"../model/SiteEntry":277,"../model/SiteMembershipBody":283,"../model/SiteMembershipBody1":284,"../model/SiteMembershipRequestEntry":286,"../model/SiteMembershipRequestPaging":287,"../model/SitePaging":289}],181:[function(require,module,exports){ +},{"../ApiClient":173,"../model/ActivityPaging":193,"../model/Error":215,"../model/FavoriteBody":218,"../model/FavoriteEntry":219,"../model/FavoritePaging":220,"../model/FavoriteSiteBody":222,"../model/InlineResponse201":223,"../model/PersonEntry":252,"../model/PersonNetworkEntry":254,"../model/PersonNetworkPaging":255,"../model/PreferenceEntry":258,"../model/PreferencePaging":259,"../model/SiteEntry":278,"../model/SiteMembershipBody":284,"../model/SiteMembershipBody1":285,"../model/SiteMembershipRequestEntry":287,"../model/SiteMembershipRequestPaging":288,"../model/SitePaging":290}],182:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -46952,7 +47030,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/Error":214,"../model/NodePaging":240}],182:[function(require,module,exports){ +},{"../ApiClient":173,"../model/Error":215,"../model/NodePaging":241}],183:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -47144,7 +47222,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/Error":214,"../model/RatingBody":262,"../model/RatingEntry":263,"../model/RatingPaging":264}],183:[function(require,module,exports){ +},{"../ApiClient":173,"../model/Error":215,"../model/RatingBody":263,"../model/RatingEntry":264,"../model/RatingPaging":265}],184:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -47401,7 +47479,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/Error":214,"../model/RenditionBody":267,"../model/RenditionEntry":268,"../model/RenditionPaging":269}],184:[function(require,module,exports){ +},{"../ApiClient":173,"../model/Error":215,"../model/RenditionBody":268,"../model/RenditionEntry":269,"../model/RenditionPaging":270}],185:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -47642,7 +47720,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/EmailSharedLinkBody":213,"../model/Error":214,"../model/NodeSharedLinkEntry":243,"../model/NodeSharedLinkPaging":244,"../model/SharedLinkBody":271}],185:[function(require,module,exports){ +},{"../ApiClient":173,"../model/EmailSharedLinkBody":214,"../model/Error":215,"../model/NodeSharedLinkEntry":244,"../model/NodeSharedLinkPaging":245,"../model/SharedLinkBody":272}],186:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -48092,7 +48170,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/Error":214,"../model/SiteBody":273,"../model/SiteContainerEntry":275,"../model/SiteContainerPaging":276,"../model/SiteEntry":277,"../model/SiteMemberBody":279,"../model/SiteMemberEntry":280,"../model/SiteMemberPaging":281,"../model/SiteMemberRoleBody":282,"../model/SitePaging":289}],186:[function(require,module,exports){ +},{"../ApiClient":173,"../model/Error":215,"../model/SiteBody":274,"../model/SiteContainerEntry":276,"../model/SiteContainerPaging":277,"../model/SiteEntry":278,"../model/SiteMemberBody":280,"../model/SiteMemberEntry":281,"../model/SiteMemberPaging":282,"../model/SiteMemberRoleBody":283,"../model/SitePaging":290}],187:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -48342,7 +48420,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"../model/Error":214,"../model/TagBody":292,"../model/TagBody1":293,"../model/TagEntry":294,"../model/TagPaging":295}],187:[function(require,module,exports){ +},{"../ApiClient":173,"../model/Error":215,"../model/TagBody":293,"../model/TagBody1":294,"../model/TagEntry":295,"../model/TagPaging":296}],188:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -48426,7 +48504,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],188:[function(require,module,exports){ +},{"../ApiClient":173}],189:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49105,7 +49183,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"./ApiClient":172,"./api/AssociationsApi":173,"./api/ChangesApi":174,"./api/ChildAssociationsApi":175,"./api/CommentsApi":176,"./api/FavoritesApi":177,"./api/NetworksApi":178,"./api/NodesApi":179,"./api/PeopleApi":180,"./api/QueriesApi":181,"./api/RatingsApi":182,"./api/RenditionsApi":183,"./api/SharedlinksApi":184,"./api/SitesApi":185,"./api/TagsApi":186,"./api/WebscriptApi":187,"./model/Activity":189,"./model/ActivityActivitySummary":190,"./model/ActivityEntry":191,"./model/ActivityPaging":192,"./model/ActivityPagingList":193,"./model/AssocChildBody":194,"./model/AssocInfo":195,"./model/AssocTargetBody":196,"./model/ChildAssocInfo":197,"./model/Comment":198,"./model/CommentBody":199,"./model/CommentBody1":200,"./model/CommentEntry":201,"./model/CommentPaging":202,"./model/CommentPagingList":203,"./model/Company":204,"./model/ContentInfo":205,"./model/CopyBody":206,"./model/DeletedNode":207,"./model/DeletedNodeEntry":208,"./model/DeletedNodeMinimal":209,"./model/DeletedNodeMinimalEntry":210,"./model/DeletedNodesPaging":211,"./model/DeletedNodesPagingList":212,"./model/EmailSharedLinkBody":213,"./model/Error":214,"./model/ErrorError":215,"./model/Favorite":216,"./model/FavoriteBody":217,"./model/FavoriteEntry":218,"./model/FavoritePaging":219,"./model/FavoritePagingList":220,"./model/FavoriteSiteBody":221,"./model/InlineResponse201":222,"./model/InlineResponse201Entry":223,"./model/MoveBody":224,"./model/NetworkQuota":225,"./model/NodeAssocMinimal":226,"./model/NodeAssocMinimalEntry":227,"./model/NodeAssocPaging":228,"./model/NodeAssocPagingList":229,"./model/NodeBody":230,"./model/NodeBody1":231,"./model/NodeChildAssocMinimal":232,"./model/NodeChildAssocMinimalEntry":233,"./model/NodeChildAssocPaging":234,"./model/NodeChildAssocPagingList":235,"./model/NodeEntry":236,"./model/NodeFull":237,"./model/NodeMinimal":238,"./model/NodeMinimalEntry":239,"./model/NodePaging":240,"./model/NodePagingList":241,"./model/NodeSharedLink":242,"./model/NodeSharedLinkEntry":243,"./model/NodeSharedLinkPaging":244,"./model/NodeSharedLinkPagingList":245,"./model/NodesnodeIdchildrenContent":246,"./model/Pagination":247,"./model/PathElement":248,"./model/PathInfo":249,"./model/Person":250,"./model/PersonEntry":251,"./model/PersonNetwork":252,"./model/PersonNetworkEntry":253,"./model/PersonNetworkPaging":254,"./model/PersonNetworkPagingList":255,"./model/Preference":256,"./model/PreferenceEntry":257,"./model/PreferencePaging":258,"./model/PreferencePagingList":259,"./model/Rating":260,"./model/RatingAggregate":261,"./model/RatingBody":262,"./model/RatingEntry":263,"./model/RatingPaging":264,"./model/RatingPagingList":265,"./model/Rendition":266,"./model/RenditionBody":267,"./model/RenditionEntry":268,"./model/RenditionPaging":269,"./model/RenditionPagingList":270,"./model/SharedLinkBody":271,"./model/Site":272,"./model/SiteBody":273,"./model/SiteContainer":274,"./model/SiteContainerEntry":275,"./model/SiteContainerPaging":276,"./model/SiteEntry":277,"./model/SiteMember":278,"./model/SiteMemberBody":279,"./model/SiteMemberEntry":280,"./model/SiteMemberPaging":281,"./model/SiteMemberRoleBody":282,"./model/SiteMembershipBody":283,"./model/SiteMembershipBody1":284,"./model/SiteMembershipRequest":285,"./model/SiteMembershipRequestEntry":286,"./model/SiteMembershipRequestPaging":287,"./model/SiteMembershipRequestPagingList":288,"./model/SitePaging":289,"./model/SitePagingList":290,"./model/Tag":291,"./model/TagBody":292,"./model/TagBody1":293,"./model/TagEntry":294,"./model/TagPaging":295,"./model/TagPagingList":296,"./model/UserInfo":297}],189:[function(require,module,exports){ +},{"./ApiClient":173,"./api/AssociationsApi":174,"./api/ChangesApi":175,"./api/ChildAssociationsApi":176,"./api/CommentsApi":177,"./api/FavoritesApi":178,"./api/NetworksApi":179,"./api/NodesApi":180,"./api/PeopleApi":181,"./api/QueriesApi":182,"./api/RatingsApi":183,"./api/RenditionsApi":184,"./api/SharedlinksApi":185,"./api/SitesApi":186,"./api/TagsApi":187,"./api/WebscriptApi":188,"./model/Activity":190,"./model/ActivityActivitySummary":191,"./model/ActivityEntry":192,"./model/ActivityPaging":193,"./model/ActivityPagingList":194,"./model/AssocChildBody":195,"./model/AssocInfo":196,"./model/AssocTargetBody":197,"./model/ChildAssocInfo":198,"./model/Comment":199,"./model/CommentBody":200,"./model/CommentBody1":201,"./model/CommentEntry":202,"./model/CommentPaging":203,"./model/CommentPagingList":204,"./model/Company":205,"./model/ContentInfo":206,"./model/CopyBody":207,"./model/DeletedNode":208,"./model/DeletedNodeEntry":209,"./model/DeletedNodeMinimal":210,"./model/DeletedNodeMinimalEntry":211,"./model/DeletedNodesPaging":212,"./model/DeletedNodesPagingList":213,"./model/EmailSharedLinkBody":214,"./model/Error":215,"./model/ErrorError":216,"./model/Favorite":217,"./model/FavoriteBody":218,"./model/FavoriteEntry":219,"./model/FavoritePaging":220,"./model/FavoritePagingList":221,"./model/FavoriteSiteBody":222,"./model/InlineResponse201":223,"./model/InlineResponse201Entry":224,"./model/MoveBody":225,"./model/NetworkQuota":226,"./model/NodeAssocMinimal":227,"./model/NodeAssocMinimalEntry":228,"./model/NodeAssocPaging":229,"./model/NodeAssocPagingList":230,"./model/NodeBody":231,"./model/NodeBody1":232,"./model/NodeChildAssocMinimal":233,"./model/NodeChildAssocMinimalEntry":234,"./model/NodeChildAssocPaging":235,"./model/NodeChildAssocPagingList":236,"./model/NodeEntry":237,"./model/NodeFull":238,"./model/NodeMinimal":239,"./model/NodeMinimalEntry":240,"./model/NodePaging":241,"./model/NodePagingList":242,"./model/NodeSharedLink":243,"./model/NodeSharedLinkEntry":244,"./model/NodeSharedLinkPaging":245,"./model/NodeSharedLinkPagingList":246,"./model/NodesnodeIdchildrenContent":247,"./model/Pagination":248,"./model/PathElement":249,"./model/PathInfo":250,"./model/Person":251,"./model/PersonEntry":252,"./model/PersonNetwork":253,"./model/PersonNetworkEntry":254,"./model/PersonNetworkPaging":255,"./model/PersonNetworkPagingList":256,"./model/Preference":257,"./model/PreferenceEntry":258,"./model/PreferencePaging":259,"./model/PreferencePagingList":260,"./model/Rating":261,"./model/RatingAggregate":262,"./model/RatingBody":263,"./model/RatingEntry":264,"./model/RatingPaging":265,"./model/RatingPagingList":266,"./model/Rendition":267,"./model/RenditionBody":268,"./model/RenditionEntry":269,"./model/RenditionPaging":270,"./model/RenditionPagingList":271,"./model/SharedLinkBody":272,"./model/Site":273,"./model/SiteBody":274,"./model/SiteContainer":275,"./model/SiteContainerEntry":276,"./model/SiteContainerPaging":277,"./model/SiteEntry":278,"./model/SiteMember":279,"./model/SiteMemberBody":280,"./model/SiteMemberEntry":281,"./model/SiteMemberPaging":282,"./model/SiteMemberRoleBody":283,"./model/SiteMembershipBody":284,"./model/SiteMembershipBody1":285,"./model/SiteMembershipRequest":286,"./model/SiteMembershipRequestEntry":287,"./model/SiteMembershipRequestPaging":288,"./model/SiteMembershipRequestPagingList":289,"./model/SitePaging":290,"./model/SitePagingList":291,"./model/Tag":292,"./model/TagBody":293,"./model/TagBody1":294,"./model/TagEntry":295,"./model/TagPaging":296,"./model/TagPagingList":297,"./model/UserInfo":298}],190:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49379,7 +49457,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ActivityActivitySummary":190}],190:[function(require,module,exports){ +},{"../ApiClient":173,"./ActivityActivitySummary":191}],191:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49474,7 +49552,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],191:[function(require,module,exports){ +},{"../ApiClient":173}],192:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49540,7 +49618,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Activity":189}],192:[function(require,module,exports){ +},{"../ApiClient":173,"./Activity":190}],193:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49602,7 +49680,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ActivityPagingList":193}],193:[function(require,module,exports){ +},{"../ApiClient":173,"./ActivityPagingList":194}],194:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49678,7 +49756,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ActivityEntry":191,"./Pagination":247}],194:[function(require,module,exports){ +},{"../ApiClient":173,"./ActivityEntry":192,"./Pagination":248}],195:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49748,7 +49826,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],195:[function(require,module,exports){ +},{"../ApiClient":173}],196:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49810,7 +49888,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],196:[function(require,module,exports){ +},{"../ApiClient":173}],197:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49880,7 +49958,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],197:[function(require,module,exports){ +},{"../ApiClient":173}],198:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -49950,7 +50028,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],198:[function(require,module,exports){ +},{"../ApiClient":173}],199:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50096,7 +50174,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Person":250}],199:[function(require,module,exports){ +},{"../ApiClient":173,"./Person":251}],200:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50162,7 +50240,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],200:[function(require,module,exports){ +},{"../ApiClient":173}],201:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50228,7 +50306,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],201:[function(require,module,exports){ +},{"../ApiClient":173}],202:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50294,7 +50372,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Comment":198}],202:[function(require,module,exports){ +},{"../ApiClient":173,"./Comment":199}],203:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50356,7 +50434,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./CommentPagingList":203}],203:[function(require,module,exports){ +},{"../ApiClient":173,"./CommentPagingList":204}],204:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50432,7 +50510,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./CommentEntry":201,"./Pagination":247}],204:[function(require,module,exports){ +},{"../ApiClient":173,"./CommentEntry":202,"./Pagination":248}],205:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50550,7 +50628,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],205:[function(require,module,exports){ +},{"../ApiClient":173}],206:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50636,7 +50714,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],206:[function(require,module,exports){ +},{"../ApiClient":173}],207:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50706,7 +50784,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],207:[function(require,module,exports){ +},{"../ApiClient":173}],208:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50786,7 +50864,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ContentInfo":205,"./NodeFull":237,"./UserInfo":297}],208:[function(require,module,exports){ +},{"../ApiClient":173,"./ContentInfo":206,"./NodeFull":238,"./UserInfo":298}],209:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50848,7 +50926,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./DeletedNode":207}],209:[function(require,module,exports){ +},{"../ApiClient":173,"./DeletedNode":208}],210:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50928,7 +51006,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ContentInfo":205,"./NodeMinimal":238,"./PathElement":248,"./UserInfo":297}],210:[function(require,module,exports){ +},{"../ApiClient":173,"./ContentInfo":206,"./NodeMinimal":239,"./PathElement":249,"./UserInfo":298}],211:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -50990,7 +51068,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./DeletedNodeMinimal":209}],211:[function(require,module,exports){ +},{"../ApiClient":173,"./DeletedNodeMinimal":210}],212:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51052,7 +51130,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./DeletedNodesPagingList":212}],212:[function(require,module,exports){ +},{"../ApiClient":173,"./DeletedNodesPagingList":213}],213:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51122,7 +51200,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./DeletedNodeMinimalEntry":210,"./Pagination":247}],213:[function(require,module,exports){ +},{"../ApiClient":173,"./DeletedNodeMinimalEntry":211,"./Pagination":248}],214:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51208,7 +51286,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],214:[function(require,module,exports){ +},{"../ApiClient":173}],215:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51270,7 +51348,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ErrorError":215}],215:[function(require,module,exports){ +},{"../ApiClient":173,"./ErrorError":216}],216:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51383,7 +51461,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],216:[function(require,module,exports){ +},{"../ApiClient":173}],217:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51471,7 +51549,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],217:[function(require,module,exports){ +},{"../ApiClient":173}],218:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51537,7 +51615,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],218:[function(require,module,exports){ +},{"../ApiClient":173}],219:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51603,7 +51681,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Favorite":216}],219:[function(require,module,exports){ +},{"../ApiClient":173,"./Favorite":217}],220:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51665,7 +51743,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./FavoritePagingList":220}],220:[function(require,module,exports){ +},{"../ApiClient":173,"./FavoritePagingList":221}],221:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51741,7 +51819,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./FavoriteEntry":218,"./Pagination":247}],221:[function(require,module,exports){ +},{"../ApiClient":173,"./FavoriteEntry":219,"./Pagination":248}],222:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51803,7 +51881,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],222:[function(require,module,exports){ +},{"../ApiClient":173}],223:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51865,7 +51943,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./InlineResponse201Entry":223}],223:[function(require,module,exports){ +},{"../ApiClient":173,"./InlineResponse201Entry":224}],224:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -51931,7 +52009,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],224:[function(require,module,exports){ +},{"../ApiClient":173}],225:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52001,7 +52079,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],225:[function(require,module,exports){ +},{"../ApiClient":173}],226:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52088,7 +52166,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],226:[function(require,module,exports){ +},{"../ApiClient":173}],227:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52238,7 +52316,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./AssocInfo":195,"./ContentInfo":205,"./UserInfo":297}],227:[function(require,module,exports){ +},{"../ApiClient":173,"./AssocInfo":196,"./ContentInfo":206,"./UserInfo":298}],228:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52304,7 +52382,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeAssocMinimal":226}],228:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeAssocMinimal":227}],229:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52366,7 +52444,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeAssocPagingList":229}],229:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeAssocPagingList":230}],230:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52436,7 +52514,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeAssocMinimalEntry":227,"./Pagination":247}],230:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeAssocMinimalEntry":228,"./Pagination":248}],231:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52522,7 +52600,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],231:[function(require,module,exports){ +},{"../ApiClient":173}],232:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52624,7 +52702,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodesnodeIdchildrenContent":246}],232:[function(require,module,exports){ +},{"../ApiClient":173,"./NodesnodeIdchildrenContent":247}],233:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52774,7 +52852,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ChildAssocInfo":197,"./ContentInfo":205,"./UserInfo":297}],233:[function(require,module,exports){ +},{"../ApiClient":173,"./ChildAssocInfo":198,"./ContentInfo":206,"./UserInfo":298}],234:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52840,7 +52918,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeChildAssocMinimal":232}],234:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeChildAssocMinimal":233}],235:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52902,7 +52980,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeChildAssocPagingList":235}],235:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeChildAssocPagingList":236}],236:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -52972,7 +53050,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeChildAssocMinimalEntry":233,"./Pagination":247}],236:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeChildAssocMinimalEntry":234,"./Pagination":248}],237:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53038,7 +53116,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeFull":237}],237:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeFull":238}],238:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53204,7 +53282,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ContentInfo":205,"./UserInfo":297}],238:[function(require,module,exports){ +},{"../ApiClient":173,"./ContentInfo":206,"./UserInfo":298}],239:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53357,7 +53435,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ContentInfo":205,"./PathElement":248,"./UserInfo":297}],239:[function(require,module,exports){ +},{"../ApiClient":173,"./ContentInfo":206,"./PathElement":249,"./UserInfo":298}],240:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53423,7 +53501,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeMinimal":238}],240:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeMinimal":239}],241:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53485,7 +53563,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodePagingList":241}],241:[function(require,module,exports){ +},{"../ApiClient":173,"./NodePagingList":242}],242:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53555,7 +53633,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeMinimalEntry":239,"./Pagination":247}],242:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeMinimalEntry":240,"./Pagination":248}],243:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53673,7 +53751,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ContentInfo":205,"./UserInfo":297}],243:[function(require,module,exports){ +},{"../ApiClient":173,"./ContentInfo":206,"./UserInfo":298}],244:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53739,7 +53817,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeSharedLink":242}],244:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeSharedLink":243}],245:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53801,7 +53879,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeSharedLinkPagingList":245}],245:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeSharedLinkPagingList":246}],246:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53877,7 +53955,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NodeSharedLinkEntry":243,"./Pagination":247}],246:[function(require,module,exports){ +},{"../ApiClient":173,"./NodeSharedLinkEntry":244,"./Pagination":248}],247:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -53947,7 +54025,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],247:[function(require,module,exports){ +},{"../ApiClient":173}],248:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54057,7 +54135,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],248:[function(require,module,exports){ +},{"../ApiClient":173}],249:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54127,7 +54205,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],249:[function(require,module,exports){ +},{"../ApiClient":173}],250:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54205,7 +54283,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./PathElement":248}],250:[function(require,module,exports){ +},{"../ApiClient":173,"./PathElement":249}],251:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54418,7 +54496,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Company":204}],251:[function(require,module,exports){ +},{"../ApiClient":173,"./Company":205}],252:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54484,7 +54562,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Person":250}],252:[function(require,module,exports){ +},{"../ApiClient":173,"./Person":251}],253:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54629,7 +54707,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./NetworkQuota":225}],253:[function(require,module,exports){ +},{"../ApiClient":173,"./NetworkQuota":226}],254:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54695,7 +54773,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./PersonNetwork":252}],254:[function(require,module,exports){ +},{"../ApiClient":173,"./PersonNetwork":253}],255:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54757,7 +54835,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./PersonNetworkPagingList":255}],255:[function(require,module,exports){ +},{"../ApiClient":173,"./PersonNetworkPagingList":256}],256:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54833,7 +54911,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Pagination":247,"./PersonNetworkEntry":253}],256:[function(require,module,exports){ +},{"../ApiClient":173,"./Pagination":248,"./PersonNetworkEntry":254}],257:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54912,7 +54990,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],257:[function(require,module,exports){ +},{"../ApiClient":173}],258:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -54978,7 +55056,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Preference":256}],258:[function(require,module,exports){ +},{"../ApiClient":173,"./Preference":257}],259:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55040,7 +55118,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./PreferencePagingList":259}],259:[function(require,module,exports){ +},{"../ApiClient":173,"./PreferencePagingList":260}],260:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55116,7 +55194,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Pagination":247,"./PreferenceEntry":257}],260:[function(require,module,exports){ +},{"../ApiClient":173,"./Pagination":248,"./PreferenceEntry":258}],261:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55208,7 +55286,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./RatingAggregate":261}],261:[function(require,module,exports){ +},{"../ApiClient":173,"./RatingAggregate":262}],262:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55282,7 +55360,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],262:[function(require,module,exports){ +},{"../ApiClient":173}],263:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55380,7 +55458,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],263:[function(require,module,exports){ +},{"../ApiClient":173}],264:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55446,7 +55524,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Rating":260}],264:[function(require,module,exports){ +},{"../ApiClient":173,"./Rating":261}],265:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55508,7 +55586,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./RatingPagingList":265}],265:[function(require,module,exports){ +},{"../ApiClient":173,"./RatingPagingList":266}],266:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55584,7 +55662,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Pagination":247,"./RatingEntry":263}],266:[function(require,module,exports){ +},{"../ApiClient":173,"./Pagination":248,"./RatingEntry":264}],267:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55662,7 +55740,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./ContentInfo":205}],267:[function(require,module,exports){ +},{"../ApiClient":173,"./ContentInfo":206}],268:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55724,7 +55802,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],268:[function(require,module,exports){ +},{"../ApiClient":173}],269:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55790,7 +55868,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Rendition":266}],269:[function(require,module,exports){ +},{"../ApiClient":173,"./Rendition":267}],270:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55852,7 +55930,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./RenditionPagingList":270}],270:[function(require,module,exports){ +},{"../ApiClient":173,"./RenditionPagingList":271}],271:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55922,7 +56000,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Pagination":247,"./RenditionEntry":268}],271:[function(require,module,exports){ +},{"../ApiClient":173,"./Pagination":248,"./RenditionEntry":269}],272:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -55984,7 +56062,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],272:[function(require,module,exports){ +},{"../ApiClient":173}],273:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56122,7 +56200,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],273:[function(require,module,exports){ +},{"../ApiClient":173}],274:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56241,7 +56319,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],274:[function(require,module,exports){ +},{"../ApiClient":173}],275:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56317,7 +56395,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],275:[function(require,module,exports){ +},{"../ApiClient":173}],276:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56383,7 +56461,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./SiteContainer":274}],276:[function(require,module,exports){ +},{"../ApiClient":173,"./SiteContainer":275}],277:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56445,7 +56523,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./SitePagingList":290}],277:[function(require,module,exports){ +},{"../ApiClient":173,"./SitePagingList":291}],278:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56511,7 +56589,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Site":272}],278:[function(require,module,exports){ +},{"../ApiClient":173,"./Site":273}],279:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56628,7 +56706,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Person":250}],279:[function(require,module,exports){ +},{"../ApiClient":173,"./Person":251}],280:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56729,7 +56807,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],280:[function(require,module,exports){ +},{"../ApiClient":173}],281:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56795,7 +56873,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./SiteMember":278}],281:[function(require,module,exports){ +},{"../ApiClient":173,"./SiteMember":279}],282:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56857,7 +56935,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./SitePagingList":290}],282:[function(require,module,exports){ +},{"../ApiClient":173,"./SitePagingList":291}],283:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -56950,7 +57028,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],283:[function(require,module,exports){ +},{"../ApiClient":173}],284:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57028,7 +57106,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],284:[function(require,module,exports){ +},{"../ApiClient":173}],285:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57090,7 +57168,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],285:[function(require,module,exports){ +},{"../ApiClient":173}],286:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57176,7 +57254,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Site":272}],286:[function(require,module,exports){ +},{"../ApiClient":173,"./Site":273}],287:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57242,7 +57320,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./SiteMembershipRequest":285}],287:[function(require,module,exports){ +},{"../ApiClient":173,"./SiteMembershipRequest":286}],288:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57304,7 +57382,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./SiteMembershipRequestPagingList":288}],288:[function(require,module,exports){ +},{"../ApiClient":173,"./SiteMembershipRequestPagingList":289}],289:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57380,7 +57458,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Pagination":247,"./SiteMembershipRequestEntry":286}],289:[function(require,module,exports){ +},{"../ApiClient":173,"./Pagination":248,"./SiteMembershipRequestEntry":287}],290:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57442,7 +57520,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./SitePagingList":290}],290:[function(require,module,exports){ +},{"../ApiClient":173,"./SitePagingList":291}],291:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57508,7 +57586,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Pagination":247}],291:[function(require,module,exports){ +},{"../ApiClient":173,"./Pagination":248}],292:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57584,7 +57662,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],292:[function(require,module,exports){ +},{"../ApiClient":173}],293:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57650,7 +57728,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],293:[function(require,module,exports){ +},{"../ApiClient":173}],294:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57712,7 +57790,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],294:[function(require,module,exports){ +},{"../ApiClient":173}],295:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57778,7 +57856,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Tag":291}],295:[function(require,module,exports){ +},{"../ApiClient":173,"./Tag":292}],296:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57840,7 +57918,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./TagPagingList":296}],296:[function(require,module,exports){ +},{"../ApiClient":173,"./TagPagingList":297}],297:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57916,7 +57994,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172,"./Pagination":247,"./TagEntry":294}],297:[function(require,module,exports){ +},{"../ApiClient":173,"./Pagination":248,"./TagEntry":295}],298:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -57986,7 +58064,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../ApiClient":172}],298:[function(require,module,exports){ +},{"../ApiClient":173}],299:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -58739,7 +58817,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../../alfrescoApiClient":301}],299:[function(require,module,exports){ +},{"../../../alfrescoApiClient":302}],300:[function(require,module,exports){ 'use strict'; var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -58771,7 +58849,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol return exports; }); -},{"../../alfrescoApiClient":301,"./api/CustomModelApi":298}],300:[function(require,module,exports){ +},{"../../alfrescoApiClient":302,"./api/CustomModelApi":299}],301:[function(require,module,exports){ 'use strict'; function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } @@ -58914,6 +58992,10 @@ var AlfrescoApi = function () { AlfrescoApi.prototype.login = function login(username, password) { var _this2 = this; + if (username) { + username = username.trim(); + } + if (this._isBpmConfiguration()) { var bpmPromise = this.bpmAuth.login(username, password); @@ -59129,7 +59211,7 @@ module.exports.Activiti = AlfrescoActivitiApi; module.exports.Core = AlfrescoCoreRestApi; module.exports.Auth = AlfrescoAuthRestApi; -},{"./alfresco-activiti-rest-api/src/index":76,"./alfresco-auth-rest-api/src/index":164,"./alfresco-core-rest-api/src/index.js":188,"./alfresco-private-rest-api/src/index.js":299,"./alfrescoContent":302,"./alfrescoNode":303,"./alfrescoUpload":304,"./bpmAuth":305,"./bpmClient":306,"./ecmAuth":307,"./ecmClient":308,"./ecmPrivateClient":309,"event-emitter":21,"lodash":23}],301:[function(require,module,exports){ +},{"./alfresco-activiti-rest-api/src/index":77,"./alfresco-auth-rest-api/src/index":165,"./alfresco-core-rest-api/src/index.js":189,"./alfresco-private-rest-api/src/index.js":300,"./alfrescoContent":303,"./alfrescoNode":304,"./alfrescoUpload":305,"./bpmAuth":306,"./bpmClient":307,"./ecmAuth":308,"./ecmClient":309,"./ecmPrivateClient":310,"event-emitter":21,"lodash":23}],302:[function(require,module,exports){ (function (process){ 'use strict'; @@ -59177,11 +59259,15 @@ var AlfrescoApiClient = function (_ApiClient) { * @param {Array.} accepts An array of acceptable response MIME types. * @param {(String|Array|ObjectFunction)} returnType The required type to return; can be a string for simple types or the * @param {(String)} contextRoot alternative contextRoot + * @param {(String)} responseType is an enumerated value that returns the type of the response. + * It also lets the author change the response type to one "arraybuffer", "blob", "document", + * "json", or "text". + * If an empty string is set as the value of responseType, it is assumed as type "text". * constructor for a complex type. * @returns {Promise} A Promise object. */ - AlfrescoApiClient.prototype.callApi = function callApi(path, httpMethod, pathParams, queryParams, headerParams, formParams, bodyParam, authNames, contentTypes, accepts, returnType, contextRoot) { + AlfrescoApiClient.prototype.callApi = function callApi(path, httpMethod, pathParams, queryParams, headerParams, formParams, bodyParam, authNames, contentTypes, accepts, returnType, contextRoot, responseType) { var _this3 = this; var eventEmitter = {}; @@ -59196,74 +59282,7 @@ var AlfrescoApiClient = function (_ApiClient) { url = this.buildUrl(path, pathParams); } - var request = superagent(httpMethod, url); - - // apply authentications - this.applyAuthToRequest(request, ['basicAuth']); - - // set query parameters - request.query(this.normalizeParams(queryParams)); - - // set header parameters - request.set(this.defaultHeaders).set(this.normalizeParams(headerParams)); - - if (this.isBpmRequest() && this.isCsrfEnabled()) { - this.setCsrfToken(request); - } - - // add cookie for activiti - if (this.isBpmRequest()) { - request._withCredentials = true; - if (this.authentications.cookie) { - if (this.isNodeEnv()) { - request.set('Cookie', this.authentications.cookie); - } - } - } - - // set request timeout - request.timeout(this.timeout); - - var contentType = this.jsonPreferredMime(contentTypes); - - if (contentType && contentType !== 'multipart/form-data') { - request.type(contentType); - } else if (!request.header['Content-Type'] && contentType !== 'multipart/form-data') { - request.type('application/json'); - } - - if (contentType === 'application/x-www-form-urlencoded') { - request.send(this.normalizeParams(formParams)).on('progress', function (event) { - _this3.progress(event, eventEmitter); - }); - } else if (contentType === 'multipart/form-data') { - var _formParams = this.normalizeParams(formParams); - for (var key in _formParams) { - if (_formParams.hasOwnProperty(key)) { - if (this.isFileParam(_formParams[key])) { - // file field - request.attach(key, _formParams[key]).on('progress', function (event) { - // jshint ignore:line - _this3.progress(event, eventEmitter); - }); - } else { - request.field(key, _formParams[key]).on('progress', function (event) { - // jshint ignore:line - _this3.progress(event, eventEmitter); - }); - } - } - } - } else if (bodyParam) { - request.send(bodyParam).on('progress', function (event) { - _this3.progress(event, eventEmitter); - }); - } - - var accept = this.jsonPreferredMime(accepts); - if (accept) { - request.accept(accept); - } + var request = this.buildRequest(httpMethod, url, queryParams, headerParams, formParams, bodyParam, contentTypes, accepts, responseType, eventEmitter); this.promise = new Promise(function (resolve, reject) { request.end(function (error, response) { @@ -59402,6 +59421,85 @@ var AlfrescoApiClient = function (_ApiClient) { return url; }; + AlfrescoApiClient.prototype.buildRequest = function buildRequest(httpMethod, url, queryParams, headerParams, formParams, bodyParam, contentTypes, accepts, responseType, eventEmitter) { + var _this4 = this; + + var request = superagent(httpMethod, url); + + // apply authentications + this.applyAuthToRequest(request, ['basicAuth']); + + // set query parameters + request.query(this.normalizeParams(queryParams)); + + // set header parameters + request.set(this.defaultHeaders).set(this.normalizeParams(headerParams)); + + if (this.isBpmRequest() && this.isCsrfEnabled()) { + this.setCsrfToken(request); + } + + // add cookie for activiti + if (this.isBpmRequest()) { + request._withCredentials = true; + if (this.authentications.cookie) { + if (this.isNodeEnv()) { + request.set('Cookie', this.authentications.cookie); + } + } + } + + // set request timeout + request.timeout(this.timeout); + + if (responseType) { + request._responseType = responseType; + } + + var contentType = this.jsonPreferredMime(contentTypes); + + if (contentType && contentType !== 'multipart/form-data') { + request.type(contentType); + } else if (!request.header['Content-Type'] && contentType !== 'multipart/form-data') { + request.type('application/json'); + } + + if (contentType === 'application/x-www-form-urlencoded') { + request.send(this.normalizeParams(formParams)).on('progress', function (event) { + _this4.progress(event, eventEmitter); + }); + } else if (contentType === 'multipart/form-data') { + var _formParams = this.normalizeParams(formParams); + for (var key in _formParams) { + if (_formParams.hasOwnProperty(key)) { + if (this.isFileParam(_formParams[key])) { + // file field + request.attach(key, _formParams[key]).on('progress', function (event) { + // jshint ignore:line + _this4.progress(event, eventEmitter); + }); + } else { + request.field(key, _formParams[key]).on('progress', function (event) { + // jshint ignore:line + _this4.progress(event, eventEmitter); + }); + } + } + } + } else if (bodyParam) { + request.send(bodyParam).on('progress', function (event) { + _this4.progress(event, eventEmitter); + }); + } + + var accept = this.jsonPreferredMime(accepts); + if (accept) { + request.accept(accept); + } + + return request; + }; + return AlfrescoApiClient; }(ApiClient); @@ -59409,7 +59507,7 @@ Emitter(AlfrescoApiClient.prototype); // jshint ignore:line module.exports = AlfrescoApiClient; }).call(this,require('_process')) -},{"./alfresco-core-rest-api/src/ApiClient":172,"_process":24,"event-emitter":21,"lodash":23,"superagent":25}],302:[function(require,module,exports){ +},{"./alfresco-core-rest-api/src/ApiClient":173,"_process":24,"event-emitter":21,"lodash":23,"superagent":25}],303:[function(require,module,exports){ 'use strict'; function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } @@ -59470,7 +59568,7 @@ var AlfrescoContent = function () { module.exports = AlfrescoContent; -},{}],303:[function(require,module,exports){ +},{}],304:[function(require,module,exports){ 'use strict'; function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; } @@ -59575,7 +59673,7 @@ var AlfrescoNode = function (_AlfrescoCoreRestApi$) { module.exports = AlfrescoNode; -},{"./alfresco-core-rest-api/src/index.js":188,"lodash":23}],304:[function(require,module,exports){ +},{"./alfresco-core-rest-api/src/index.js":189,"lodash":23}],305:[function(require,module,exports){ 'use strict'; function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; } @@ -59669,7 +59767,7 @@ var AlfrescoUpload = function (_AlfrescoCoreRestApi$) { Emitter(AlfrescoUpload.prototype); // jshint ignore:line module.exports = AlfrescoUpload; -},{"./alfresco-core-rest-api/src/index.js":188,"event-emitter":21,"lodash":23}],305:[function(require,module,exports){ +},{"./alfresco-core-rest-api/src/index.js":189,"event-emitter":21,"lodash":23}],306:[function(require,module,exports){ (function (Buffer){ 'use strict'; @@ -59826,6 +59924,7 @@ var BpmAuth = function (_AlfrescoApiClient) { BpmAuth.prototype.setTicket = function setTicket(ticket) { this.authentications.basicAuth.ticket = ticket; + this.authentications.basicAuth.password = null; this.ticket = ticket; }; @@ -59869,7 +59968,7 @@ Emitter(BpmAuth.prototype); // jshint ignore:line module.exports = BpmAuth; }).call(this,require("buffer").Buffer) -},{"./alfrescoApiClient":301,"buffer":4,"event-emitter":21}],306:[function(require,module,exports){ +},{"./alfrescoApiClient":302,"buffer":4,"event-emitter":21}],307:[function(require,module,exports){ 'use strict'; function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; } @@ -59920,7 +60019,7 @@ var BpmClient = function (_AlfrescoApiClient) { module.exports = BpmClient; -},{"./alfrescoApiClient":301}],307:[function(require,module,exports){ +},{"./alfrescoApiClient":302}],308:[function(require,module,exports){ 'use strict'; function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; } @@ -60117,7 +60216,7 @@ var EcmAuth = function (_AlfrescoApiClient) { Emitter(EcmAuth.prototype); // jshint ignore:line module.exports = EcmAuth; -},{"./alfresco-auth-rest-api/src/index":164,"./alfrescoApiClient":301,"event-emitter":21}],308:[function(require,module,exports){ +},{"./alfresco-auth-rest-api/src/index":165,"./alfrescoApiClient":302,"event-emitter":21}],309:[function(require,module,exports){ 'use strict'; function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; } @@ -60168,7 +60267,7 @@ var EcmClient = function (_AlfrescoApiClient) { module.exports = EcmClient; -},{"./alfrescoApiClient":301}],309:[function(require,module,exports){ +},{"./alfrescoApiClient":302}],310:[function(require,module,exports){ 'use strict'; function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; } @@ -60219,5 +60318,5 @@ var EcmClient = function (_AlfrescoApiClient) { module.exports = EcmClient; -},{"./alfrescoApiClient":301}]},{},[1])(1) +},{"./alfrescoApiClient":302}]},{},[1])(1) }); \ No newline at end of file diff --git a/dist/alfresco-js-api.min.js b/dist/alfresco-js-api.min.js index 0b41d5991d..3805083aee 100644 --- a/dist/alfresco-js-api.min.js +++ b/dist/alfresco-js-api.min.js @@ -1,26 +1,26 @@ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.AlfrescoApi = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===e[t-2]?2:"="===e[t-1]?1:0}function o(e){return 3*e.length/4-n(e)}function r(e){var t,i,o,r,s,a,p=e.length;s=n(e),a=new u(3*p/4-s),o=s>0?p-4:p;var l=0;for(t=0,i=0;t>16&255,a[l++]=r>>8&255,a[l++]=255&r;return 2===s?(r=c[e.charCodeAt(t)]<<2|c[e.charCodeAt(t+1)]>>4,a[l++]=255&r):1===s&&(r=c[e.charCodeAt(t)]<<10|c[e.charCodeAt(t+1)]<<4|c[e.charCodeAt(t+2)]>>2,a[l++]=r>>8&255,a[l++]=255&r),a}function s(e){return l[e>>18&63]+l[e>>12&63]+l[e>>6&63]+l[63&e]}function a(e,t,i){for(var n,o=[],r=t;rc?c:p+s));return 1===n?(t=e[i-1],o+=l[t>>2],o+=l[t<<4&63],o+="=="):2===n&&(t=(e[i-2]<<8)+e[i-1],o+=l[t>>10],o+=l[t>>4&63],o+=l[t<<2&63],o+="="),r.push(o),r.join("")}i.byteLength=o,i.toByteArray=r,i.fromByteArray=p;for(var l=[],c=[],u="undefined"!=typeof Uint8Array?Uint8Array:Array,d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",f=0,y=d.length;f=o())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o().toString(16)+" bytes");return 0|e}function h(e){return+e!=e&&(e=0),s.alloc(+e)}function v(e,t){if(s.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var i=e.length;if(0===i)return 0;for(var n=!1;;)switch(t){case"ascii":case"latin1":case"binary":return i;case"utf8":case"utf-8":case void 0:return H(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*i;case"hex":return i>>>1;case"base64":return W(e).length;default:if(n)return H(e).length;t=(""+t).toLowerCase(),n=!0}}function A(e,t,i){var n=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===i||i>this.length)&&(i=this.length),i<=0)return"";if(i>>>=0,t>>>=0,i<=t)return"";for(e||(e="utf8");;)switch(e){case"hex":return F(this,t,i);case"utf8":case"utf-8":return O(this,t,i);case"ascii":return M(this,t,i);case"latin1":case"binary":return k(this,t,i);case"base64":return j(this,t,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,t,i);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),n=!0}}function b(e,t,i){var n=e[t];e[t]=e[i],e[i]=n}function g(e,t,i,n,o){if(0===e.length)return-1;if("string"==typeof i?(n=i,i=0):i>2147483647?i=2147483647:i<-2147483648&&(i=-2147483648),i=+i,isNaN(i)&&(i=o?0:e.length-1),i<0&&(i=e.length+i),i>=e.length){if(o)return-1;i=e.length-1}else if(i<0){if(!o)return-1;i=0}if("string"==typeof t&&(t=s.from(t,n)),s.isBuffer(t))return 0===t.length?-1:C(e,t,i,n,o);if("number"==typeof t)return t&=255,s.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,i):Uint8Array.prototype.lastIndexOf.call(e,t,i):C(e,[t],i,n,o);throw new TypeError("val must be string, number or Buffer")}function C(e,t,i,n,o){function r(e,t){return 1===s?e[t]:e.readUInt16BE(t*s)}var s=1,a=e.length,p=t.length;if(void 0!==n&&(n=String(n).toLowerCase(),"ucs2"===n||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return-1;s=2,a/=2,p/=2,i/=2}var l;if(o){var c=-1;for(l=i;la&&(i=a-p),l=i;l>=0;l--){for(var u=!0,d=0;do&&(n=o)):n=o;var r=t.length;if(r%2!==0)throw new TypeError("Invalid hex string");n>r/2&&(n=r/2);for(var s=0;s239?4:r>223?3:r>191?2:1;if(o+a<=i){var p,l,c,u;switch(a){case 1:r<128&&(s=r);break;case 2:p=e[o+1],128===(192&p)&&(u=(31&r)<<6|63&p,u>127&&(s=u));break;case 3:p=e[o+1],l=e[o+2],128===(192&p)&&128===(192&l)&&(u=(15&r)<<12|(63&p)<<6|63&l,u>2047&&(u<55296||u>57343)&&(s=u));break;case 4:p=e[o+1],l=e[o+2],c=e[o+3],128===(192&p)&&128===(192&l)&&128===(192&c)&&(u=(15&r)<<18|(63&p)<<12|(63&l)<<6|63&c,u>65535&&u<1114112&&(s=u))}}null===s?(s=65533,a=1):s>65535&&(s-=65536,n.push(s>>>10&1023|55296),s=56320|1023&s),n.push(s),o+=a}return E(n)}function E(e){var t=e.length;if(t<=ee)return String.fromCharCode.apply(String,e);for(var i="",n=0;nn)&&(i=n);for(var o="",r=t;ri)throw new RangeError("Trying to access beyond buffer length")}function _(e,t,i,n,o,r){if(!s.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw new RangeError("Index out of range")}function D(e,t,i,n){t<0&&(t=65535+t+1);for(var o=0,r=Math.min(e.length-i,2);o>>8*(n?o:1-o)}function B(e,t,i,n){t<0&&(t=4294967295+t+1);for(var o=0,r=Math.min(e.length-i,4);o>>8*(n?o:3-o)&255}function q(e,t,i,n,o,r){if(i+n>e.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("Index out of range")}function L(e,t,i,n,o){return o||q(e,t,i,4,3.4028234663852886e38,-3.4028234663852886e38),Q.write(e,t,i,n,23,4),i+4}function U(e,t,i,n,o){return o||q(e,t,i,8,1.7976931348623157e308,-1.7976931348623157e308),Q.write(e,t,i,n,52,8),i+8}function G(e){if(e=V(e).replace(te,""),e.length<2)return"";for(;e.length%4!==0;)e+="=";return e}function V(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}function z(e){return e<16?"0"+e.toString(16):e.toString(16)}function H(e,t){t=t||1/0;for(var i,n=e.length,o=null,r=[],s=0;s55295&&i<57344){if(!o){if(i>56319){(t-=3)>-1&&r.push(239,191,189);continue}if(s+1===n){(t-=3)>-1&&r.push(239,191,189);continue}o=i;continue}if(i<56320){(t-=3)>-1&&r.push(239,191,189),o=i;continue}i=(o-55296<<10|i-56320)+65536}else o&&(t-=3)>-1&&r.push(239,191,189);if(o=null,i<128){if((t-=1)<0)break;r.push(i)}else if(i<2048){if((t-=2)<0)break;r.push(i>>6|192,63&i|128)}else if(i<65536){if((t-=3)<0)break;r.push(i>>12|224,i>>6&63|128,63&i|128)}else{if(!(i<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;r.push(i>>18|240,i>>12&63|128,i>>6&63|128,63&i|128)}}return r}function K(e){for(var t=[],i=0;i>8,o=i%256,r.push(o),r.push(n);return r}function W(e){return X.toByteArray(G(e))}function $(e,t,i,n){for(var o=0;o=t.length||o>=e.length);++o)t[o+i]=e[o];return o}function J(e){return e!==e}var X=e("base64-js"),Q=e("ieee754"),Z=e("isarray");i.Buffer=s,i.SlowBuffer=h,i.INSPECT_MAX_BYTES=50,s.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:n(),i.kMaxLength=o(),s.poolSize=8192,s._augment=function(e){return e.__proto__=s.prototype,e},s.from=function(e,t,i){return a(null,e,t,i)},s.TYPED_ARRAY_SUPPORT&&(s.prototype.__proto__=Uint8Array.prototype,s.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&s[Symbol.species]===s&&Object.defineProperty(s,Symbol.species,{value:null,configurable:!0})),s.alloc=function(e,t,i){return l(null,e,t,i)},s.allocUnsafe=function(e){return c(null,e)},s.allocUnsafeSlow=function(e){return c(null,e)},s.isBuffer=function(e){return!(null==e||!e._isBuffer)},s.compare=function(e,t){if(!s.isBuffer(e)||!s.isBuffer(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var i=e.length,n=t.length,o=0,r=Math.min(i,n);o0&&(e=this.toString("hex",0,t).match(/.{2}/g).join(" "),this.length>t&&(e+=" ... ")),""},s.prototype.compare=function(e,t,i,n,o){if(!s.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===i&&(i=e?e.length:0),void 0===n&&(n=0),void 0===o&&(o=this.length),t<0||i>e.length||n<0||o>this.length)throw new RangeError("out of range index");if(n>=o&&t>=i)return 0;if(n>=o)return-1;if(t>=i)return 1;if(t>>>=0,i>>>=0,n>>>=0,o>>>=0,this===e)return 0;for(var r=o-n,a=i-t,p=Math.min(r,a),l=this.slice(n,o),c=e.slice(t,i),u=0;uo)&&(i=o),e.length>0&&(i<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var r=!1;;)switch(n){case"hex":return R(this,e,t,i);case"utf8":case"utf-8":return P(this,e,t,i);case"ascii":return w(this,e,t,i);case"latin1":case"binary":return S(this,e,t,i);case"base64":return T(this,e,t,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,e,t,i);default:if(r)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),r=!0}},s.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var ee=4096;s.prototype.slice=function(e,t){var i=this.length;e=~~e,t=void 0===t?i:~~t,e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),t0&&(o*=256);)n+=this[e+--t]*o;return n},s.prototype.readUInt8=function(e,t){return t||N(e,1,this.length),this[e]},s.prototype.readUInt16LE=function(e,t){return t||N(e,2,this.length),this[e]|this[e+1]<<8},s.prototype.readUInt16BE=function(e,t){return t||N(e,2,this.length),this[e]<<8|this[e+1]},s.prototype.readUInt32LE=function(e,t){return t||N(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},s.prototype.readUInt32BE=function(e,t){return t||N(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},s.prototype.readIntLE=function(e,t,i){e|=0,t|=0,i||N(e,t,this.length);for(var n=this[e],o=1,r=0;++r=o&&(n-=Math.pow(2,8*t)),n},s.prototype.readIntBE=function(e,t,i){e|=0,t|=0,i||N(e,t,this.length);for(var n=t,o=1,r=this[e+--n];n>0&&(o*=256);)r+=this[e+--n]*o;return o*=128,r>=o&&(r-=Math.pow(2,8*t)),r},s.prototype.readInt8=function(e,t){return t||N(e,1,this.length),128&this[e]?(255-this[e]+1)*-1:this[e]},s.prototype.readInt16LE=function(e,t){t||N(e,2,this.length);var i=this[e]|this[e+1]<<8;return 32768&i?4294901760|i:i},s.prototype.readInt16BE=function(e,t){t||N(e,2,this.length);var i=this[e+1]|this[e]<<8;return 32768&i?4294901760|i:i},s.prototype.readInt32LE=function(e,t){return t||N(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},s.prototype.readInt32BE=function(e,t){return t||N(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},s.prototype.readFloatLE=function(e,t){return t||N(e,4,this.length),Q.read(this,e,!0,23,4)},s.prototype.readFloatBE=function(e,t){return t||N(e,4,this.length),Q.read(this,e,!1,23,4)},s.prototype.readDoubleLE=function(e,t){return t||N(e,8,this.length),Q.read(this,e,!0,52,8)},s.prototype.readDoubleBE=function(e,t){return t||N(e,8,this.length),Q.read(this,e,!1,52,8)},s.prototype.writeUIntLE=function(e,t,i,n){if(e=+e,t|=0,i|=0,!n){var o=Math.pow(2,8*i)-1;_(this,e,t,i,o,0)}var r=1,s=0;for(this[t]=255&e;++s=0&&(s*=256);)this[t+r]=e/s&255;return t+i},s.prototype.writeUInt8=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,1,255,0),s.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},s.prototype.writeUInt16LE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,2,65535,0),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):D(this,e,t,!0),t+2},s.prototype.writeUInt16BE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,2,65535,0),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):D(this,e,t,!1),t+2},s.prototype.writeUInt32LE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,4,4294967295,0),s.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):B(this,e,t,!0),t+4},s.prototype.writeUInt32BE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,4,4294967295,0),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):B(this,e,t,!1),t+4},s.prototype.writeIntLE=function(e,t,i,n){if(e=+e,t|=0,!n){var o=Math.pow(2,8*i-1);_(this,e,t,i,o-1,-o)}var r=0,s=1,a=0;for(this[t]=255&e;++r>0)-a&255;return t+i},s.prototype.writeIntBE=function(e,t,i,n){if(e=+e,t|=0,!n){var o=Math.pow(2,8*i-1);_(this,e,t,i,o-1,-o)}var r=i-1,s=1,a=0;for(this[t+r]=255&e;--r>=0&&(s*=256);)e<0&&0===a&&0!==this[t+r+1]&&(a=1),this[t+r]=(e/s>>0)-a&255;return t+i},s.prototype.writeInt8=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,1,127,-128),s.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},s.prototype.writeInt16LE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,2,32767,-32768),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):D(this,e,t,!0),t+2},s.prototype.writeInt16BE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,2,32767,-32768),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):D(this,e,t,!1),t+2},s.prototype.writeInt32LE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,4,2147483647,-2147483648),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):B(this,e,t,!0),t+4},s.prototype.writeInt32BE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):B(this,e,t,!1),t+4},s.prototype.writeFloatLE=function(e,t,i){return L(this,e,t,!0,i)},s.prototype.writeFloatBE=function(e,t,i){return L(this,e,t,!1,i)},s.prototype.writeDoubleLE=function(e,t,i){return U(this,e,t,!0,i)},s.prototype.writeDoubleBE=function(e,t,i){return U(this,e,t,!1,i)},s.prototype.copy=function(e,t,i,n){if(i||(i=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t=0;--o)e[o+t]=this[o+i];else if(r<1e3||!s.TYPED_ARRAY_SUPPORT)for(o=0;o>>=0,i=void 0===i?this.length:i>>>0,e||(e=0);var r;if("number"==typeof e)for(r=t;r-1}},{}],21:[function(e,t,i){"use strict";var n,o,r,s,a,p,l,c=e("d"),u=e("es5-ext/object/valid-callable"),d=Function.prototype.apply,f=Function.prototype.call,y=Object.create,m=Object.defineProperty,h=Object.defineProperties,v=Object.prototype.hasOwnProperty,A={configurable:!0,enumerable:!1,writable:!0};n=function(e,t){var i;return u(t),v.call(this,"__ee__")?i=this.__ee__:(i=A.value=y(null),m(this,"__ee__",A),A.value=null),i[e]?"object"==typeof i[e]?i[e].push(t):i[e]=[i[e],t]:i[e]=t,this},o=function(e,t){var i,o;return u(t),o=this,n.call(this,e,i=function(){r.call(o,e,i),d.call(t,this,arguments)}),i.__eeOnceListener__=t,this},r=function(e,t){var i,n,o,r;if(u(t),!v.call(this,"__ee__"))return this;if(i=this.__ee__,!i[e])return this;if(n=i[e],"object"==typeof n)for(r=0;o=n[r];++r)o!==t&&o.__eeOnceListener__!==t||(2===n.length?i[e]=n[r?0:1]:n.splice(r,1));else n!==t&&n.__eeOnceListener__!==t||delete i[e];return this},s=function(e){var t,i,n,o,r;if(v.call(this,"__ee__")&&(o=this.__ee__[e]))if("object"==typeof o){for(i=arguments.length,r=new Array(i-1),t=1;t>1,c=-7,u=i?o-1:0,d=i?-1:1,f=e[t+u];for(u+=d,r=f&(1<<-c)-1,f>>=-c,c+=a;c>0;r=256*r+e[t+u],u+=d,c-=8);for(s=r&(1<<-c)-1,r>>=-c,c+=n;c>0;s=256*s+e[t+u],u+=d,c-=8);if(0===r)r=1-l;else{if(r===p)return s?NaN:(f?-1:1)*(1/0);s+=Math.pow(2,n),r-=l}return(f?-1:1)*s*Math.pow(2,r-n)},i.write=function(e,t,i,n,o,r){var s,a,p,l=8*r-o-1,c=(1<>1,d=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,f=n?0:r-1,y=n?1:-1,m=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(a=isNaN(t)?1:0,s=c):(s=Math.floor(Math.log(t)/Math.LN2),t*(p=Math.pow(2,-s))<1&&(s--,p*=2),t+=s+u>=1?d/p:d*Math.pow(2,1-u),t*p>=2&&(s++,p/=2),s+u>=c?(a=0,s=c):s+u>=1?(a=(t*p-1)*Math.pow(2,o),s+=u):(a=t*Math.pow(2,u-1)*Math.pow(2,o),s=0));o>=8;e[i+f]=255&a,f+=y,a/=256,o-=8);for(s=s<0;e[i+f]=255&s,f+=y,s/=256,l-=8);e[i+f-y]|=128*m}},{}],23:[function(t,i,n){(function(t){(function(){function o(e,t){return e.set(t[0],t[1]),e}function r(e,t){return e.add(t),e}function s(e,t,i){switch(i.length){case 0:return e.call(t);case 1:return e.call(t,i[0]);case 2:return e.call(t,i[0],i[1]);case 3:return e.call(t,i[0],i[1],i[2])}return e.apply(t,i)}function a(e,t,i,n){for(var o=-1,r=null==e?0:e.length;++o-1}function f(e,t,i){for(var n=-1,o=null==e?0:e.length;++n-1;);return i}function B(e,t){for(var i=e.length;i--&&P(t,e[i],0)>-1;);return i}function q(e,t){for(var i=e.length,n=0;i--;)e[i]===t&&++n;return n}function L(e){return"\\"+en[e]}function U(e,t){return null==e?ne:e[t]}function G(e){return Hi.test(e)}function V(e){return Ki.test(e)}function z(e){for(var t,i=[];!(t=e.next()).done;)i.push(t.value);return i}function H(e){var t=-1,i=Array(e.size);return e.forEach(function(e,n){i[++t]=[n,e]}),i}function K(e,t){return function(i){ +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.AlfrescoApi=e()}}(function(){var e;return function e(t,i,n){function o(s,a){if(!i[s]){if(!t[s]){var p="function"==typeof require&&require;if(!a&&p)return p(s,!0);if(r)return r(s,!0);var l=new Error("Cannot find module '"+s+"'");throw l.code="MODULE_NOT_FOUND",l}var c=i[s]={exports:{}};t[s][0].call(c.exports,function(e){var i=t[s][1][e];return o(i?i:e)},c,c.exports,e,t,i,n)}return i[s].exports}for(var r="function"==typeof require&&require,s=0;s0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===e[t-2]?2:"="===e[t-1]?1:0}function o(e){return 3*e.length/4-n(e)}function r(e){var t,i,o,r,s,a,p=e.length;s=n(e),a=new u(3*p/4-s),o=s>0?p-4:p;var l=0;for(t=0,i=0;t>16&255,a[l++]=r>>8&255,a[l++]=255&r;return 2===s?(r=c[e.charCodeAt(t)]<<2|c[e.charCodeAt(t+1)]>>4,a[l++]=255&r):1===s&&(r=c[e.charCodeAt(t)]<<10|c[e.charCodeAt(t+1)]<<4|c[e.charCodeAt(t+2)]>>2,a[l++]=r>>8&255,a[l++]=255&r),a}function s(e){return l[e>>18&63]+l[e>>12&63]+l[e>>6&63]+l[63&e]}function a(e,t,i){for(var n,o=[],r=t;rc?c:p+s));return 1===n?(t=e[i-1],o+=l[t>>2],o+=l[t<<4&63],o+="=="):2===n&&(t=(e[i-2]<<8)+e[i-1],o+=l[t>>10],o+=l[t>>4&63],o+=l[t<<2&63],o+="="),r.push(o),r.join("")}i.byteLength=o,i.toByteArray=r,i.fromByteArray=p;for(var l=[],c=[],u="undefined"!=typeof Uint8Array?Uint8Array:Array,d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",f=0,y=d.length;f=o())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o().toString(16)+" bytes");return 0|e}function h(e){return+e!=e&&(e=0),s.alloc(+e)}function v(e,t){if(s.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var i=e.length;if(0===i)return 0;for(var n=!1;;)switch(t){case"ascii":case"latin1":case"binary":return i;case"utf8":case"utf-8":case void 0:return H(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*i;case"hex":return i>>>1;case"base64":return W(e).length;default:if(n)return H(e).length;t=(""+t).toLowerCase(),n=!0}}function A(e,t,i){var n=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===i||i>this.length)&&(i=this.length),i<=0)return"";if(i>>>=0,t>>>=0,i<=t)return"";for(e||(e="utf8");;)switch(e){case"hex":return F(this,t,i);case"utf8":case"utf-8":return O(this,t,i);case"ascii":return M(this,t,i);case"latin1":case"binary":return k(this,t,i);case"base64":return j(this,t,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,t,i);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),n=!0}}function b(e,t,i){var n=e[t];e[t]=e[i],e[i]=n}function g(e,t,i,n,o){if(0===e.length)return-1;if("string"==typeof i?(n=i,i=0):i>2147483647?i=2147483647:i<-2147483648&&(i=-2147483648),i=+i,isNaN(i)&&(i=o?0:e.length-1),i<0&&(i=e.length+i),i>=e.length){if(o)return-1;i=e.length-1}else if(i<0){if(!o)return-1;i=0}if("string"==typeof t&&(t=s.from(t,n)),s.isBuffer(t))return 0===t.length?-1:C(e,t,i,n,o);if("number"==typeof t)return t&=255,s.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,i):Uint8Array.prototype.lastIndexOf.call(e,t,i):C(e,[t],i,n,o);throw new TypeError("val must be string, number or Buffer")}function C(e,t,i,n,o){function r(e,t){return 1===s?e[t]:e.readUInt16BE(t*s)}var s=1,a=e.length,p=t.length;if(void 0!==n&&(n=String(n).toLowerCase(),"ucs2"===n||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return-1;s=2,a/=2,p/=2,i/=2}var l;if(o){var c=-1;for(l=i;la&&(i=a-p),l=i;l>=0;l--){for(var u=!0,d=0;do&&(n=o)):n=o;var r=t.length;if(r%2!==0)throw new TypeError("Invalid hex string");n>r/2&&(n=r/2);for(var s=0;s239?4:r>223?3:r>191?2:1;if(o+a<=i){var p,l,c,u;switch(a){case 1:r<128&&(s=r);break;case 2:p=e[o+1],128===(192&p)&&(u=(31&r)<<6|63&p,u>127&&(s=u));break;case 3:p=e[o+1],l=e[o+2],128===(192&p)&&128===(192&l)&&(u=(15&r)<<12|(63&p)<<6|63&l,u>2047&&(u<55296||u>57343)&&(s=u));break;case 4:p=e[o+1],l=e[o+2],c=e[o+3],128===(192&p)&&128===(192&l)&&128===(192&c)&&(u=(15&r)<<18|(63&p)<<12|(63&l)<<6|63&c,u>65535&&u<1114112&&(s=u))}}null===s?(s=65533,a=1):s>65535&&(s-=65536,n.push(s>>>10&1023|55296),s=56320|1023&s),n.push(s),o+=a}return E(n)}function E(e){var t=e.length;if(t<=ee)return String.fromCharCode.apply(String,e);for(var i="",n=0;nn)&&(i=n);for(var o="",r=t;ri)throw new RangeError("Trying to access beyond buffer length")}function _(e,t,i,n,o,r){if(!s.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw new RangeError("Index out of range")}function D(e,t,i,n){t<0&&(t=65535+t+1);for(var o=0,r=Math.min(e.length-i,2);o>>8*(n?o:1-o)}function B(e,t,i,n){t<0&&(t=4294967295+t+1);for(var o=0,r=Math.min(e.length-i,4);o>>8*(n?o:3-o)&255}function q(e,t,i,n,o,r){if(i+n>e.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("Index out of range")}function L(e,t,i,n,o){return o||q(e,t,i,4,3.4028234663852886e38,-3.4028234663852886e38),Q.write(e,t,i,n,23,4),i+4}function U(e,t,i,n,o){return o||q(e,t,i,8,1.7976931348623157e308,-1.7976931348623157e308),Q.write(e,t,i,n,52,8),i+8}function G(e){if(e=V(e).replace(te,""),e.length<2)return"";for(;e.length%4!==0;)e+="=";return e}function V(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}function z(e){return e<16?"0"+e.toString(16):e.toString(16)}function H(e,t){t=t||1/0;for(var i,n=e.length,o=null,r=[],s=0;s55295&&i<57344){if(!o){if(i>56319){(t-=3)>-1&&r.push(239,191,189);continue}if(s+1===n){(t-=3)>-1&&r.push(239,191,189);continue}o=i;continue}if(i<56320){(t-=3)>-1&&r.push(239,191,189),o=i;continue}i=(o-55296<<10|i-56320)+65536}else o&&(t-=3)>-1&&r.push(239,191,189);if(o=null,i<128){if((t-=1)<0)break;r.push(i)}else if(i<2048){if((t-=2)<0)break;r.push(i>>6|192,63&i|128)}else if(i<65536){if((t-=3)<0)break;r.push(i>>12|224,i>>6&63|128,63&i|128)}else{if(!(i<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;r.push(i>>18|240,i>>12&63|128,i>>6&63|128,63&i|128)}}return r}function K(e){for(var t=[],i=0;i>8,o=i%256,r.push(o),r.push(n);return r}function W(e){return X.toByteArray(G(e))}function $(e,t,i,n){for(var o=0;o=t.length||o>=e.length);++o)t[o+i]=e[o];return o}function J(e){return e!==e}var X=e("base64-js"),Q=e("ieee754"),Z=e("isarray");i.Buffer=s,i.SlowBuffer=h,i.INSPECT_MAX_BYTES=50,s.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:n(),i.kMaxLength=o(),s.poolSize=8192,s._augment=function(e){return e.__proto__=s.prototype,e},s.from=function(e,t,i){return a(null,e,t,i)},s.TYPED_ARRAY_SUPPORT&&(s.prototype.__proto__=Uint8Array.prototype,s.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&s[Symbol.species]===s&&Object.defineProperty(s,Symbol.species,{value:null,configurable:!0})),s.alloc=function(e,t,i){return l(null,e,t,i)},s.allocUnsafe=function(e){return c(null,e)},s.allocUnsafeSlow=function(e){return c(null,e)},s.isBuffer=function(e){return!(null==e||!e._isBuffer)},s.compare=function(e,t){if(!s.isBuffer(e)||!s.isBuffer(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var i=e.length,n=t.length,o=0,r=Math.min(i,n);o0&&(e=this.toString("hex",0,t).match(/.{2}/g).join(" "),this.length>t&&(e+=" ... ")),""},s.prototype.compare=function(e,t,i,n,o){if(!s.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===i&&(i=e?e.length:0),void 0===n&&(n=0),void 0===o&&(o=this.length),t<0||i>e.length||n<0||o>this.length)throw new RangeError("out of range index");if(n>=o&&t>=i)return 0;if(n>=o)return-1;if(t>=i)return 1;if(t>>>=0,i>>>=0,n>>>=0,o>>>=0,this===e)return 0;for(var r=o-n,a=i-t,p=Math.min(r,a),l=this.slice(n,o),c=e.slice(t,i),u=0;uo)&&(i=o),e.length>0&&(i<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var r=!1;;)switch(n){case"hex":return R(this,e,t,i);case"utf8":case"utf-8":return P(this,e,t,i);case"ascii":return w(this,e,t,i);case"latin1":case"binary":return S(this,e,t,i);case"base64":return T(this,e,t,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,e,t,i);default:if(r)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),r=!0}},s.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var ee=4096;s.prototype.slice=function(e,t){var i=this.length;e=~~e,t=void 0===t?i:~~t,e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),t<0?(t+=i,t<0&&(t=0)):t>i&&(t=i),t0&&(o*=256);)n+=this[e+--t]*o;return n},s.prototype.readUInt8=function(e,t){return t||N(e,1,this.length),this[e]},s.prototype.readUInt16LE=function(e,t){return t||N(e,2,this.length),this[e]|this[e+1]<<8},s.prototype.readUInt16BE=function(e,t){return t||N(e,2,this.length),this[e]<<8|this[e+1]},s.prototype.readUInt32LE=function(e,t){return t||N(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},s.prototype.readUInt32BE=function(e,t){return t||N(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},s.prototype.readIntLE=function(e,t,i){e|=0,t|=0,i||N(e,t,this.length);for(var n=this[e],o=1,r=0;++r=o&&(n-=Math.pow(2,8*t)),n},s.prototype.readIntBE=function(e,t,i){e|=0,t|=0,i||N(e,t,this.length);for(var n=t,o=1,r=this[e+--n];n>0&&(o*=256);)r+=this[e+--n]*o;return o*=128,r>=o&&(r-=Math.pow(2,8*t)),r},s.prototype.readInt8=function(e,t){return t||N(e,1,this.length),128&this[e]?(255-this[e]+1)*-1:this[e]},s.prototype.readInt16LE=function(e,t){t||N(e,2,this.length);var i=this[e]|this[e+1]<<8;return 32768&i?4294901760|i:i},s.prototype.readInt16BE=function(e,t){t||N(e,2,this.length);var i=this[e+1]|this[e]<<8;return 32768&i?4294901760|i:i},s.prototype.readInt32LE=function(e,t){return t||N(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},s.prototype.readInt32BE=function(e,t){return t||N(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},s.prototype.readFloatLE=function(e,t){return t||N(e,4,this.length),Q.read(this,e,!0,23,4)},s.prototype.readFloatBE=function(e,t){return t||N(e,4,this.length),Q.read(this,e,!1,23,4)},s.prototype.readDoubleLE=function(e,t){return t||N(e,8,this.length),Q.read(this,e,!0,52,8)},s.prototype.readDoubleBE=function(e,t){return t||N(e,8,this.length),Q.read(this,e,!1,52,8)},s.prototype.writeUIntLE=function(e,t,i,n){if(e=+e,t|=0,i|=0,!n){var o=Math.pow(2,8*i)-1;_(this,e,t,i,o,0)}var r=1,s=0;for(this[t]=255&e;++s=0&&(s*=256);)this[t+r]=e/s&255;return t+i},s.prototype.writeUInt8=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,1,255,0),s.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},s.prototype.writeUInt16LE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,2,65535,0),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):D(this,e,t,!0),t+2},s.prototype.writeUInt16BE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,2,65535,0),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):D(this,e,t,!1),t+2},s.prototype.writeUInt32LE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,4,4294967295,0),s.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):B(this,e,t,!0),t+4},s.prototype.writeUInt32BE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,4,4294967295,0),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):B(this,e,t,!1),t+4},s.prototype.writeIntLE=function(e,t,i,n){if(e=+e,t|=0,!n){var o=Math.pow(2,8*i-1);_(this,e,t,i,o-1,-o)}var r=0,s=1,a=0;for(this[t]=255&e;++r>0)-a&255;return t+i},s.prototype.writeIntBE=function(e,t,i,n){if(e=+e,t|=0,!n){var o=Math.pow(2,8*i-1);_(this,e,t,i,o-1,-o)}var r=i-1,s=1,a=0;for(this[t+r]=255&e;--r>=0&&(s*=256);)e<0&&0===a&&0!==this[t+r+1]&&(a=1),this[t+r]=(e/s>>0)-a&255;return t+i},s.prototype.writeInt8=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,1,127,-128),s.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},s.prototype.writeInt16LE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,2,32767,-32768),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):D(this,e,t,!0),t+2},s.prototype.writeInt16BE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,2,32767,-32768),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):D(this,e,t,!1),t+2},s.prototype.writeInt32LE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,4,2147483647,-2147483648),s.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):B(this,e,t,!0),t+4},s.prototype.writeInt32BE=function(e,t,i){return e=+e,t|=0,i||_(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),s.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):B(this,e,t,!1),t+4},s.prototype.writeFloatLE=function(e,t,i){return L(this,e,t,!0,i)},s.prototype.writeFloatBE=function(e,t,i){return L(this,e,t,!1,i)},s.prototype.writeDoubleLE=function(e,t,i){return U(this,e,t,!0,i)},s.prototype.writeDoubleBE=function(e,t,i){return U(this,e,t,!1,i)},s.prototype.copy=function(e,t,i,n){if(i||(i=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t=0;--o)e[o+t]=this[o+i];else if(r<1e3||!s.TYPED_ARRAY_SUPPORT)for(o=0;o>>=0,i=void 0===i?this.length:i>>>0,e||(e=0);var r;if("number"==typeof e)for(r=t;r-1}},{}],21:[function(e,t,i){"use strict";var n,o,r,s,a,p,l,c=e("d"),u=e("es5-ext/object/valid-callable"),d=Function.prototype.apply,f=Function.prototype.call,y=Object.create,m=Object.defineProperty,h=Object.defineProperties,v=Object.prototype.hasOwnProperty,A={configurable:!0,enumerable:!1,writable:!0};n=function(e,t){var i;return u(t),v.call(this,"__ee__")?i=this.__ee__:(i=A.value=y(null),m(this,"__ee__",A),A.value=null),i[e]?"object"==typeof i[e]?i[e].push(t):i[e]=[i[e],t]:i[e]=t,this},o=function(e,t){var i,o;return u(t),o=this,n.call(this,e,i=function(){r.call(o,e,i),d.call(t,this,arguments)}),i.__eeOnceListener__=t,this},r=function(e,t){var i,n,o,r;if(u(t),!v.call(this,"__ee__"))return this;if(i=this.__ee__,!i[e])return this;if(n=i[e],"object"==typeof n)for(r=0;o=n[r];++r)o!==t&&o.__eeOnceListener__!==t||(2===n.length?i[e]=n[r?0:1]:n.splice(r,1));else n!==t&&n.__eeOnceListener__!==t||delete i[e];return this},s=function(e){var t,i,n,o,r;if(v.call(this,"__ee__")&&(o=this.__ee__[e]))if("object"==typeof o){for(i=arguments.length,r=new Array(i-1),t=1;t>1,c=-7,u=i?o-1:0,d=i?-1:1,f=e[t+u];for(u+=d,r=f&(1<<-c)-1,f>>=-c,c+=a;c>0;r=256*r+e[t+u],u+=d,c-=8);for(s=r&(1<<-c)-1,r>>=-c,c+=n;c>0;s=256*s+e[t+u],u+=d,c-=8);if(0===r)r=1-l;else{if(r===p)return s?NaN:(f?-1:1)*(1/0);s+=Math.pow(2,n),r-=l}return(f?-1:1)*s*Math.pow(2,r-n)},i.write=function(e,t,i,n,o,r){var s,a,p,l=8*r-o-1,c=(1<>1,d=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,f=n?0:r-1,y=n?1:-1,m=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(a=isNaN(t)?1:0,s=c):(s=Math.floor(Math.log(t)/Math.LN2),t*(p=Math.pow(2,-s))<1&&(s--,p*=2),t+=s+u>=1?d/p:d*Math.pow(2,1-u),t*p>=2&&(s++,p/=2),s+u>=c?(a=0,s=c):s+u>=1?(a=(t*p-1)*Math.pow(2,o),s+=u):(a=t*Math.pow(2,u-1)*Math.pow(2,o),s=0));o>=8;e[i+f]=255&a,f+=y,a/=256,o-=8);for(s=s<0;e[i+f]=255&s,f+=y,s/=256,l-=8);e[i+f-y]|=128*m}},{}],23:[function(t,i,n){(function(t){(function(){function o(e,t){return e.set(t[0],t[1]),e}function r(e,t){return e.add(t),e}function s(e,t,i){switch(i.length){case 0:return e.call(t);case 1:return e.call(t,i[0]);case 2:return e.call(t,i[0],i[1]);case 3:return e.call(t,i[0],i[1],i[2])}return e.apply(t,i)}function a(e,t,i,n){for(var o=-1,r=null==e?0:e.length;++o-1}function f(e,t,i){for(var n=-1,o=null==e?0:e.length;++n-1;);return i}function B(e,t){for(var i=e.length;i--&&P(t,e[i],0)>-1;);return i}function q(e,t){for(var i=e.length,n=0;i--;)e[i]===t&&++n;return n}function L(e){return"\\"+en[e]}function U(e,t){return null==e?ne:e[t]}function G(e){return Hi.test(e)}function V(e){return Ki.test(e)}function z(e){for(var t,i=[];!(t=e.next()).done;)i.push(t.value);return i}function H(e){var t=-1,i=Array(e.size);return e.forEach(function(e,n){i[++t]=[n,e]}),i}function K(e,t){return function(i){ return e(t(i))}}function Y(e,t){for(var i=-1,n=e.length,o=0,r=[];++i>>1,Le=[["ary",Pe],["bind",he],["bindKey",ve],["curry",be],["curryRight",ge],["flip",Se],["partial",Ce],["partialRight",Re],["rearg",we]],Ue="[object Arguments]",Ge="[object Array]",Ve="[object AsyncFunction]",ze="[object Boolean]",He="[object Date]",Ke="[object DOMException]",Ye="[object Error]",We="[object Function]",$e="[object GeneratorFunction]",Je="[object Map]",Xe="[object Number]",Qe="[object Null]",Ze="[object Object]",et="[object Promise]",tt="[object Proxy]",it="[object RegExp]",nt="[object Set]",ot="[object String]",rt="[object Symbol]",st="[object Undefined]",at="[object WeakMap]",pt="[object WeakSet]",lt="[object ArrayBuffer]",ct="[object DataView]",ut="[object Float32Array]",dt="[object Float64Array]",ft="[object Int8Array]",yt="[object Int16Array]",mt="[object Int32Array]",ht="[object Uint8Array]",vt="[object Uint8ClampedArray]",At="[object Uint16Array]",bt="[object Uint32Array]",gt=/\b__p \+= '';/g,Ct=/\b(__p \+=) '' \+/g,Rt=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Pt=/&(?:amp|lt|gt|quot|#39);/g,wt=/[&<>"']/g,St=RegExp(Pt.source),Tt=RegExp(wt.source),It=/<%-([\s\S]+?)%>/g,jt=/<%([\s\S]+?)%>/g,Ot=/<%=([\s\S]+?)%>/g,Et=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Mt=/^\w*$/,kt=/^\./,Ft=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,xt=/[\\^$.*+?()[\]{}|]/g,Nt=RegExp(xt.source),_t=/^\s+|\s+$/g,Dt=/^\s+/,Bt=/\s+$/,qt=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Lt=/\{\n\/\* \[wrapped with (.+)\] \*/,Ut=/,? & /,Gt=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Vt=/\\(\\)?/g,zt=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Ht=/\w*$/,Kt=/^[-+]0x[0-9a-f]+$/i,Yt=/^0b[01]+$/i,Wt=/^\[object .+?Constructor\]$/,$t=/^0o[0-7]+$/i,Jt=/^(?:0|[1-9]\d*)$/,Xt=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Qt=/($^)/,Zt=/['\n\r\u2028\u2029\\]/g,ei="\\ud800-\\udfff",ti="\\u0300-\\u036f",ii="\\ufe20-\\ufe2f",ni="\\u20d0-\\u20ff",oi=ti+ii+ni,ri="\\u2700-\\u27bf",si="a-z\\xdf-\\xf6\\xf8-\\xff",ai="\\xac\\xb1\\xd7\\xf7",pi="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",li="\\u2000-\\u206f",ci=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",ui="A-Z\\xc0-\\xd6\\xd8-\\xde",di="\\ufe0e\\ufe0f",fi=ai+pi+li+ci,yi="['’]",mi="["+ei+"]",hi="["+fi+"]",vi="["+oi+"]",Ai="\\d+",bi="["+ri+"]",gi="["+si+"]",Ci="[^"+ei+fi+Ai+ri+si+ui+"]",Ri="\\ud83c[\\udffb-\\udfff]",Pi="(?:"+vi+"|"+Ri+")",wi="[^"+ei+"]",Si="(?:\\ud83c[\\udde6-\\uddff]){2}",Ti="[\\ud800-\\udbff][\\udc00-\\udfff]",Ii="["+ui+"]",ji="\\u200d",Oi="(?:"+gi+"|"+Ci+")",Ei="(?:"+Ii+"|"+Ci+")",Mi="(?:"+yi+"(?:d|ll|m|re|s|t|ve))?",ki="(?:"+yi+"(?:D|LL|M|RE|S|T|VE))?",Fi=Pi+"?",xi="["+di+"]?",Ni="(?:"+ji+"(?:"+[wi,Si,Ti].join("|")+")"+xi+Fi+")*",_i="\\d*(?:(?:1st|2nd|3rd|(?![123])\\dth)\\b)",Di="\\d*(?:(?:1ST|2ND|3RD|(?![123])\\dTH)\\b)",Bi=xi+Fi+Ni,qi="(?:"+[bi,Si,Ti].join("|")+")"+Bi,Li="(?:"+[wi+vi+"?",vi,Si,Ti,mi].join("|")+")",Ui=RegExp(yi,"g"),Gi=RegExp(vi,"g"),Vi=RegExp(Ri+"(?="+Ri+")|"+Li+Bi,"g"),zi=RegExp([Ii+"?"+gi+"+"+Mi+"(?="+[hi,Ii,"$"].join("|")+")",Ei+"+"+ki+"(?="+[hi,Ii+Oi,"$"].join("|")+")",Ii+"?"+Oi+"+"+Mi,Ii+"+"+ki,Di,_i,Ai,qi].join("|"),"g"),Hi=RegExp("["+ji+ei+oi+di+"]"),Ki=/[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Yi=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Wi=-1,$i={};$i[ut]=$i[dt]=$i[ft]=$i[yt]=$i[mt]=$i[ht]=$i[vt]=$i[At]=$i[bt]=!0,$i[Ue]=$i[Ge]=$i[lt]=$i[ze]=$i[ct]=$i[He]=$i[Ye]=$i[We]=$i[Je]=$i[Xe]=$i[Ze]=$i[it]=$i[nt]=$i[ot]=$i[at]=!1;var Ji={};Ji[Ue]=Ji[Ge]=Ji[lt]=Ji[ct]=Ji[ze]=Ji[He]=Ji[ut]=Ji[dt]=Ji[ft]=Ji[yt]=Ji[mt]=Ji[Je]=Ji[Xe]=Ji[Ze]=Ji[it]=Ji[nt]=Ji[ot]=Ji[rt]=Ji[ht]=Ji[vt]=Ji[At]=Ji[bt]=!0,Ji[Ye]=Ji[We]=Ji[at]=!1;var Xi={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"},Qi={"&":"&","<":"<",">":">",'"':""","'":"'"},Zi={"&":"&","<":"<",">":">",""":'"',"'":"'"},en={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},tn=parseFloat,nn=parseInt,on="object"==typeof t&&t&&t.Object===Object&&t,rn="object"==typeof self&&self&&self.Object===Object&&self,sn=on||rn||Function("return this")(),an="object"==typeof n&&n&&!n.nodeType&&n,pn=an&&"object"==typeof i&&i&&!i.nodeType&&i,ln=pn&&pn.exports===an,cn=ln&&on.process,un=function(){try{return cn&&cn.binding&&cn.binding("util")}catch(e){}}(),dn=un&&un.isArrayBuffer,fn=un&&un.isDate,yn=un&&un.isMap,mn=un&&un.isRegExp,hn=un&&un.isSet,vn=un&&un.isTypedArray,An=I("length"),bn=j(Xi),gn=j(Qi),Cn=j(Zi),Rn=function e(t){function i(e){if(lp(e)&&!gd(e)&&!(e instanceof j)){if(e instanceof b)return e;if(gc.call(e,"__wrapped__"))return ss(e)}return new b(e)}function n(){}function b(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=ne}function j(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=De,this.__views__=[]}function J(){var e=new j(this.__wrapped__);return e.__actions__=Uo(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Uo(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Uo(this.__views__),e}function ee(){if(this.__filtered__){var e=new j(this);e.__dir__=-1,e.__filtered__=!0}else e=this.clone(),e.__dir__*=-1;return e}function te(){var e=this.__wrapped__.value(),t=this.__dir__,i=gd(e),n=t<0,o=i?e.length:0,r=Er(0,o,this.__views__),s=r.start,a=r.end,p=a-s,l=n?a:s-1,c=this.__iteratees__,u=c.length,d=0,f=Jc(p,this.__takeCount__);if(!i||!n&&o==p&&f==p)return Ro(e,this.__actions__);var y=[];e:for(;p--&&d-1}function ci(e,t){var i=this.__data__,n=ki(i,e);return n<0?(++this.size,i.push([e,t])):i[n][1]=t,this}function ui(e){var t=-1,i=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function qi(e,t,i,n,o,r){var s,a=t&ue,l=t&de,c=t&fe;if(i&&(s=o?i(e,n,o,r):i(e)),s!==ne)return s;if(!pp(e))return e;var u=gd(e);if(u){if(s=Fr(e),!a)return Uo(e,s)}else{var d=Eu(e),f=d==We||d==$e;if(Rd(e))return Oo(e,a);if(d==Ze||d==Ue||f&&!o){if(s=l||f?{}:xr(e),!a)return l?zo(e,Ni(s,e)):Vo(e,xi(s,e))}else{if(!Ji[d])return o?e:{};s=Nr(e,d,qi,a)}}r||(r=new gi);var y=r.get(e);if(y)return y;r.set(e,s);var m=c?l?Rr:Cr:l?Hp:zp,h=u?ne:m(e);return p(h||e,function(n,o){h&&(o=n,n=e[o]),Mi(s,o,qi(n,t,i,o,e,r))}),s}function Li(e){var t=zp(e);return function(i){return Vi(i,e,t)}}function Vi(e,t,i){var n=i.length;if(null==e)return!n;for(e=uc(e);n--;){var o=i[n],r=t[o],s=e[o];if(s===ne&&!(o in e)||!r(s))return!1}return!0}function zi(e,t,i){if("function"!=typeof e)throw new yc(ae);return Fu(function(){e.apply(ne,i)},t)}function Hi(e,t,i,n){var o=-1,r=d,s=!0,a=e.length,p=[],l=t.length;if(!a)return p;i&&(t=y(t,x(i))),n?(r=f,s=!1):t.length>=re&&(r=_,s=!1,t=new vi(t));e:for(;++oo?0:o+i),n=n===ne||n>o?o:Tp(n),n<0&&(n+=o),n=i>n?0:Ip(n);i0&&i(a)?t>1?en(a,t-1,i,n,o):m(o,a):n||(o[o.length]=a)}return o}function on(e,t){return e&&gu(e,t,zp)}function rn(e,t){return e&&Cu(e,t,zp)}function an(e,t){return u(t,function(t){return rp(e[t])})}function pn(e,t){t=Io(t,e);for(var i=0,n=t.length;null!=e&&it}function Rn(e,t){return null!=e&&gc.call(e,t)}function wn(e,t){return null!=e&&t in uc(e)}function Sn(e,t,i){return e>=Jc(t,i)&&e<$c(t,i)}function Tn(e,t,i){for(var n=i?f:d,o=e[0].length,r=e.length,s=r,a=sc(r),p=1/0,l=[];s--;){var c=e[s];s&&t&&(c=y(c,x(t))),p=Jc(c.length,p),a[s]=!i&&(t||o>=120&&c.length>=120)?new vi(s&&c):ne}c=e[0];var u=-1,m=a[0];e:for(;++u-1;)a!==e&&xc.call(a,p,1),xc.call(e,p,1);return e}function to(e,t){for(var i=e?t.length:0,n=i-1;i--;){var o=t[i];if(i==n||o!==r){var r=o;Br(o)?xc.call(e,o,1):bo(e,o)}}return e}function io(e,t){return e+Vc(Zc()*(t-e+1))}function no(e,t,i,n){for(var o=-1,r=$c(Gc((t-e)/(i||1)),0),s=sc(r);r--;)s[n?r:++o]=e,e+=i;return s}function oo(e,t){var i="";if(!e||t<1||t>xe)return i;do t%2&&(i+=e),t=Vc(t/2),t&&(e+=e);while(t);return i}function ro(e,t){return xu(Xr(e,t,xl),e+"")}function so(e){return Ii(nl(e))}function ao(e,t){var i=nl(e);return is(i,Bi(t,0,i.length))}function po(e,t,i,n){if(!pp(e))return e;t=Io(t,e);for(var o=-1,r=t.length,s=r-1,a=e;null!=a&&++oo?0:o+t),i=i>o?o:i,i<0&&(i+=o),o=t>i?0:i-t>>>0,t>>>=0;for(var r=sc(o);++n>>1,s=e[r];null!==s&&!gp(s)&&(i?s<=t:s=re){var l=t?null:Tu(e);if(l)return W(l);s=!1,o=_,p=new vi}else p=t?[]:a;e:for(;++n=n?e:co(e,t,i)}function Oo(e,t){if(t)return e.slice();var i=e.length,n=Ec?Ec(i):new e.constructor(i);return e.copy(n),n}function Eo(e){var t=new e.constructor(e.byteLength);return new Oc(t).set(new Oc(e)),t}function Mo(e,t){var i=t?Eo(e.buffer):e.buffer;return new e.constructor(i,e.byteOffset,e.byteLength)}function ko(e,t,i){var n=t?i(H(e),ue):H(e);return h(n,o,new e.constructor)}function Fo(e){var t=new e.constructor(e.source,Ht.exec(e));return t.lastIndex=e.lastIndex,t}function xo(e,t,i){var n=t?i(W(e),ue):W(e);return h(n,r,new e.constructor)}function No(e){return mu?uc(mu.call(e)):{}}function _o(e,t){var i=t?Eo(e.buffer):e.buffer;return new e.constructor(i,e.byteOffset,e.length)}function Do(e,t){if(e!==t){var i=e!==ne,n=null===e,o=e===e,r=gp(e),s=t!==ne,a=null===t,p=t===t,l=gp(t);if(!a&&!l&&!r&&e>t||r&&s&&p&&!a&&!l||n&&s&&p||!i&&p||!o)return 1;if(!n&&!r&&!l&&e=a)return p;var l=i[n];return p*("desc"==l?-1:1)}}return e.index-t.index}function qo(e,t,i,n){for(var o=-1,r=e.length,s=i.length,a=-1,p=t.length,l=$c(r-s,0),c=sc(p+l),u=!n;++a1?i[o-1]:ne,s=o>2?i[2]:ne;for(r=e.length>3&&"function"==typeof r?(o--,r):ne,s&&qr(i[0],i[1],s)&&(r=o<3?ne:r,o=1),t=uc(t);++n-1?o[r?t[s]:s]:ne}}function tr(e){return gr(function(t){var i=t.length,n=i,o=b.prototype.thru;for(e&&t.reverse();n--;){var r=t[n];if("function"!=typeof r)throw new yc(ae);if(o&&!s&&"wrapper"==Pr(r))var s=new b([],!0)}for(n=s?n:i;++n1&&A.reverse(),u&&pa))return!1;var l=r.get(e);if(l&&r.get(t))return l==t;var c=-1,u=!0,d=i&me?new vi:ne;for(r.set(e,t),r.set(t,e);++c1?"& ":"")+t[n],t=t.join(i>2?", ":" "),e.replace(qt,"{\n/* [wrapped with "+t+"] */\n")}function Dr(e){return gd(e)||bd(e)||!!(Nc&&e&&e[Nc])}function Br(e,t){return t=null==t?xe:t,!!t&&("number"==typeof e||Jt.test(e))&&e>-1&&e%1==0&&e0){if(++t>=je)return arguments[0]}else t=0;return e.apply(ne,arguments)}}function is(e,t){var i=-1,n=e.length,o=n-1;for(t=t===ne?n:t;++i=this.__values__.length,t=e?ne:this.__values__[this.__index__++];return{done:e,value:t}}function sa(){return this}function aa(e){for(var t,i=this;i instanceof n;){var o=ss(i);o.__index__=0,o.__values__=ne,t?r.__wrapped__=o:t=o;var r=o;i=i.__wrapped__}return r.__wrapped__=e,t}function pa(){var e=this.__wrapped__;if(e instanceof j){var t=e;return this.__actions__.length&&(t=new j(this)),t=t.reverse(),t.__actions__.push({func:ia,args:[ks],thisArg:ne}),new b(t,this.__chain__)}return this.thru(ks)}function la(){return Ro(this.__wrapped__,this.__actions__)}function ca(e,t,i){var n=gd(e)?c:Ki;return i&&qr(e,t,i)&&(t=ne),n(e,Sr(t,3))}function ua(e,t){var i=gd(e)?u:Zi;return i(e,Sr(t,3))}function da(e,t){return en(Aa(e,t),1)}function fa(e,t){return en(Aa(e,t),Fe)}function ya(e,t,i){return i=i===ne?1:Tp(i),en(Aa(e,t),i)}function ma(e,t){var i=gd(e)?p:Au;return i(e,Sr(t,3))}function ha(e,t){var i=gd(e)?l:bu;return i(e,Sr(t,3))}function va(e,t,i,n){e=Ja(e)?e:nl(e),i=i&&!n?Tp(i):0;var o=e.length;return i<0&&(i=$c(o+i,0)),bp(e)?i<=o&&e.indexOf(t,i)>-1:!!o&&P(e,t,i)>-1}function Aa(e,t){var i=gd(e)?y:zn;return i(e,Sr(t,3))}function ba(e,t,i,n){return null==e?[]:(gd(t)||(t=null==t?[]:[t]),i=n?ne:i,gd(i)||(i=null==i?[]:[i]),Jn(e,t,i))}function ga(e,t,i){var n=gd(e)?h:O,o=arguments.length<3;return n(e,Sr(t,4),i,o,Au)}function Ca(e,t,i){var n=gd(e)?v:O,o=arguments.length<3;return n(e,Sr(t,4),i,o,bu)}function Ra(e,t){var i=gd(e)?u:Zi;return i(e,_a(Sr(t,3)))}function Pa(e){var t=gd(e)?Ii:so;return t(e)}function wa(e,t,i){t=(i?qr(e,t,i):t===ne)?1:Tp(t);var n=gd(e)?ji:ao;return n(e,t)}function Sa(e){var t=gd(e)?Oi:lo;return t(e)}function Ta(e){if(null==e)return 0;if(Ja(e))return bp(e)?Q(e):e.length;var t=Eu(e);return t==Je||t==nt?e.size:Un(e).length}function Ia(e,t,i){var n=gd(e)?A:uo;return i&&qr(e,t,i)&&(t=ne),n(e,Sr(t,3))}function ja(e,t){if("function"!=typeof t)throw new yc(ae);return e=Tp(e),function(){if(--e<1)return t.apply(this,arguments)}}function Oa(e,t,i){return t=i?ne:t,t=e&&null==t?e.length:t,fr(e,Pe,ne,ne,ne,ne,t)}function Ea(e,t){var i;if("function"!=typeof t)throw new yc(ae);return e=Tp(e),function(){return--e>0&&(i=t.apply(this,arguments)),e<=1&&(t=ne),i}}function Ma(e,t,i){t=i?ne:t;var n=fr(e,be,ne,ne,ne,ne,ne,t);return n.placeholder=Ma.placeholder,n}function ka(e,t,i){t=i?ne:t;var n=fr(e,ge,ne,ne,ne,ne,ne,t);return n.placeholder=ka.placeholder,n}function Fa(e,t,i){function n(t){var i=d,n=f;return d=f=ne,A=t,m=e.apply(n,i)}function o(e){return A=e,h=Fu(a,t),b?n(e):m}function r(e){var i=e-v,n=e-A,o=t-i;return g?Jc(o,y-n):o}function s(e){var i=e-v,n=e-A;return v===ne||i>=t||i<0||g&&n>=y}function a(){var e=pd();return s(e)?p(e):void(h=Fu(a,r(e)))}function p(e){return h=ne,C&&d?n(e):(d=f=ne,m)}function l(){h!==ne&&Su(h),A=0,d=v=f=h=ne}function c(){return h===ne?m:p(pd())}function u(){var e=pd(),i=s(e);if(d=arguments,f=this,v=e,i){if(h===ne)return o(v);if(g)return h=Fu(a,t),n(v)}return h===ne&&(h=Fu(a,t)),m}var d,f,y,m,h,v,A=0,b=!1,g=!1,C=!0;if("function"!=typeof e)throw new yc(ae);return t=jp(t)||0,pp(i)&&(b=!!i.leading,g="maxWait"in i,y=g?$c(jp(i.maxWait)||0,t):y,C="trailing"in i?!!i.trailing:C),u.cancel=l,u.flush=c,u}function xa(e){return fr(e,Se)}function Na(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new yc(ae);var i=function(){var n=arguments,o=t?t.apply(this,n):n[0],r=i.cache;if(r.has(o))return r.get(o);var s=e.apply(this,n);return i.cache=r.set(o,s)||r,s};return i.cache=new(Na.Cache||ui),i}function _a(e){if("function"!=typeof e)throw new yc(ae);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}function Da(e){return Ea(2,e)}function Ba(e,t){if("function"!=typeof e)throw new yc(ae);return t=t===ne?t:Tp(t),ro(e,t)}function qa(e,t){if("function"!=typeof e)throw new yc(ae);return t=null==t?0:$c(Tp(t),0),ro(function(i){var n=i[t],o=jo(i,0,t);return n&&m(o,n),s(e,this,o)})}function La(e,t,i){var n=!0,o=!0;if("function"!=typeof e)throw new yc(ae);return pp(i)&&(n="leading"in i?!!i.leading:n,o="trailing"in i?!!i.trailing:o),Fa(e,t,{leading:n,maxWait:t,trailing:o})}function Ua(e){return Oa(e,1)}function Ga(e,t){return yd(To(t),e)}function Va(){if(!arguments.length)return[];var e=arguments[0];return gd(e)?e:[e]}function za(e){return qi(e,fe)}function Ha(e,t){return t="function"==typeof t?t:ne,qi(e,fe,t)}function Ka(e){return qi(e,ue|fe)}function Ya(e,t){return t="function"==typeof t?t:ne,qi(e,ue|fe,t)}function Wa(e,t){return null==t||Vi(e,t,zp(t))}function $a(e,t){return e===t||e!==e&&t!==t}function Ja(e){return null!=e&&ap(e.length)&&!rp(e)}function Xa(e){return lp(e)&&Ja(e)}function Qa(e){return e===!0||e===!1||lp(e)&&un(e)==ze}function Za(e){return lp(e)&&1===e.nodeType&&!vp(e)}function ep(e){if(null==e)return!0;if(Ja(e)&&(gd(e)||"string"==typeof e||"function"==typeof e.splice||Rd(e)||Id(e)||bd(e)))return!e.length;var t=Eu(e);if(t==Je||t==nt)return!e.size;if(zr(e))return!Un(e).length;for(var i in e)if(gc.call(e,i))return!1;return!0}function tp(e,t){return kn(e,t)}function ip(e,t,i){i="function"==typeof i?i:ne;var n=i?i(e,t):ne;return n===ne?kn(e,t,ne,i):!!n}function np(e){if(!lp(e))return!1;var t=un(e);return t==Ye||t==Ke||"string"==typeof e.message&&"string"==typeof e.name&&!vp(e)}function op(e){return"number"==typeof e&&Kc(e)}function rp(e){if(!pp(e))return!1;var t=un(e);return t==We||t==$e||t==Ve||t==tt}function sp(e){return"number"==typeof e&&e==Tp(e)}function ap(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=xe}function pp(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function lp(e){return null!=e&&"object"==typeof e}function cp(e,t){return e===t||Nn(e,t,Ir(t))}function up(e,t,i){return i="function"==typeof i?i:ne,Nn(e,t,Ir(t),i)}function dp(e){return hp(e)&&e!=+e}function fp(e){if(Mu(e))throw new pc(se);return _n(e)}function yp(e){return null===e}function mp(e){return null==e}function hp(e){return"number"==typeof e||lp(e)&&un(e)==Xe}function vp(e){if(!lp(e)||un(e)!=Ze)return!1;var t=Mc(e);if(null===t)return!0;var i=gc.call(t,"constructor")&&t.constructor;return"function"==typeof i&&i instanceof i&&bc.call(i)==wc}function Ap(e){return sp(e)&&e>=-xe&&e<=xe}function bp(e){return"string"==typeof e||!gd(e)&&lp(e)&&un(e)==ot}function gp(e){return"symbol"==typeof e||lp(e)&&un(e)==rt}function Cp(e){return e===ne}function Rp(e){return lp(e)&&Eu(e)==at}function Pp(e){return lp(e)&&un(e)==pt}function wp(e){if(!e)return[];if(Ja(e))return bp(e)?Z(e):Uo(e);if(_c&&e[_c])return z(e[_c]());var t=Eu(e),i=t==Je?H:t==nt?W:nl;return i(e)}function Sp(e){if(!e)return 0===e?e:0;if(e=jp(e),e===Fe||e===-Fe){var t=e<0?-1:1;return t*Ne}return e===e?e:0}function Tp(e){var t=Sp(e),i=t%1;return t===t?i?t-i:t:0}function Ip(e){return e?Bi(Tp(e),0,De):0}function jp(e){if("number"==typeof e)return e;if(gp(e))return _e;if(pp(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=pp(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(_t,"");var i=Yt.test(e);return i||$t.test(e)?nn(e.slice(2),i?2:8):Kt.test(e)?_e:+e}function Op(e){return Go(e,Hp(e))}function Ep(e){return e?Bi(Tp(e),-xe,xe):0===e?e:0}function Mp(e){return null==e?"":vo(e)}function kp(e,t){var i=vu(e);return null==t?i:xi(i,t)}function Fp(e,t){return C(e,Sr(t,3),on)}function xp(e,t){return C(e,Sr(t,3),rn)}function Np(e,t){return null==e?e:gu(e,Sr(t,3),Hp)}function _p(e,t){return null==e?e:Cu(e,Sr(t,3),Hp)}function Dp(e,t){return e&&on(e,Sr(t,3))}function Bp(e,t){return e&&rn(e,Sr(t,3))}function qp(e){return null==e?[]:an(e,zp(e))}function Lp(e){return null==e?[]:an(e,Hp(e))}function Up(e,t,i){var n=null==e?ne:pn(e,t);return n===ne?i:n}function Gp(e,t){return null!=e&&kr(e,t,Rn)}function Vp(e,t){return null!=e&&kr(e,t,wn)}function zp(e){return Ja(e)?Ti(e):Un(e)}function Hp(e){return Ja(e)?Ti(e,!0):Gn(e)}function Kp(e,t){var i={};return t=Sr(t,3),on(e,function(e,n,o){_i(i,t(e,n,o),e)}),i}function Yp(e,t){var i={};return t=Sr(t,3),on(e,function(e,n,o){_i(i,n,t(e,n,o))}),i}function Wp(e,t){return $p(e,_a(Sr(t)))}function $p(e,t){if(null==e)return{};var i=y(Rr(e),function(e){return[e]});return t=Sr(t),Qn(e,i,function(e,i){return t(e,i[0])})}function Jp(e,t,i){t=Io(t,e);var n=-1,o=t.length;for(o||(o=1,e=ne);++nt){var n=e;e=t,t=n}if(i||e%1||t%1){var o=Zc();return Jc(e+o*(t-e+tn("1e-"+((o+"").length-1))),t)}return io(e,t)}function pl(e){return Zd(Mp(e).toLowerCase())}function ll(e){return e=Mp(e),e&&e.replace(Xt,bn).replace(Gi,"")}function cl(e,t,i){e=Mp(e),t=vo(t);var n=e.length;i=i===ne?n:Bi(Tp(i),0,n);var o=i;return i-=t.length,i>=0&&e.slice(i,o)==t}function ul(e){return e=Mp(e),e&&Tt.test(e)?e.replace(wt,gn):e}function dl(e){return e=Mp(e),e&&Nt.test(e)?e.replace(xt,"\\$&"):e}function fl(e,t,i){e=Mp(e),t=Tp(t);var n=t?Q(e):0;if(!t||n>=t)return e;var o=(t-n)/2;return sr(Vc(o),i)+e+sr(Gc(o),i)}function yl(e,t,i){e=Mp(e),t=Tp(t);var n=t?Q(e):0;return t&&n>>0)?(e=Mp(e),e&&("string"==typeof t||null!=t&&!Sd(t))&&(t=vo(t),!t&&G(e))?jo(Z(e),0,i):e.split(t,i)):[]}function gl(e,t,i){return e=Mp(e),i=null==i?0:Bi(Tp(i),0,e.length),t=vo(t),e.slice(i,i+t.length)==t}function Cl(e,t,n){var o=i.templateSettings;n&&qr(e,t,n)&&(t=ne),e=Mp(e),t=kd({},t,o,yr);var r,s,a=kd({},t.imports,o.imports,yr),p=zp(a),l=N(a,p),c=0,u=t.interpolate||Qt,d="__p += '",f=dc((t.escape||Qt).source+"|"+u.source+"|"+(u===Ot?zt:Qt).source+"|"+(t.evaluate||Qt).source+"|$","g"),y="//# sourceURL="+("sourceURL"in t?t.sourceURL:"lodash.templateSources["+ ++Wi+"]")+"\n";e.replace(f,function(t,i,n,o,a,p){return n||(n=o),d+=e.slice(c,p).replace(Zt,L),i&&(r=!0,d+="' +\n__e("+i+") +\n'"),a&&(s=!0,d+="';\n"+a+";\n__p += '"),n&&(d+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),c=p+t.length,t}),d+="';\n";var m=t.variable;m||(d="with (obj) {\n"+d+"\n}\n"),d=(s?d.replace(gt,""):d).replace(Ct,"$1").replace(Rt,"$1;"),d="function("+(m||"obj")+") {\n"+(m?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(r?", __e = _.escape":"")+(s?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+d+"return __p\n}";var h=ef(function(){return lc(p,y+"return "+d).apply(ne,l)});if(h.source=d,np(h))throw h;return h}function Rl(e){return Mp(e).toLowerCase()}function Pl(e){return Mp(e).toUpperCase()}function wl(e,t,i){if(e=Mp(e),e&&(i||t===ne))return e.replace(_t,"");if(!e||!(t=vo(t)))return e;var n=Z(e),o=Z(t),r=D(n,o),s=B(n,o)+1;return jo(n,r,s).join("")}function Sl(e,t,i){if(e=Mp(e),e&&(i||t===ne))return e.replace(Bt,"");if(!e||!(t=vo(t)))return e;var n=Z(e),o=B(n,Z(t))+1;return jo(n,0,o).join("")}function Tl(e,t,i){if(e=Mp(e),e&&(i||t===ne))return e.replace(Dt,"");if(!e||!(t=vo(t)))return e;var n=Z(e),o=D(n,Z(t));return jo(n,o).join("")}function Il(e,t){var i=Te,n=Ie;if(pp(t)){var o="separator"in t?t.separator:o;i="length"in t?Tp(t.length):i,n="omission"in t?vo(t.omission):n}e=Mp(e);var r=e.length;if(G(e)){var s=Z(e);r=s.length}if(i>=r)return e;var a=i-Q(n);if(a<1)return n;var p=s?jo(s,0,a).join(""):e.slice(0,a);if(o===ne)return p+n;if(s&&(a+=p.length-a),Sd(o)){if(e.slice(a).search(o)){var l,c=p;for(o.global||(o=dc(o.source,Mp(Ht.exec(o))+"g")),o.lastIndex=0;l=o.exec(c);)var u=l.index;p=p.slice(0,u===ne?a:u)}}else if(e.indexOf(vo(o),a)!=a){var d=p.lastIndexOf(o);d>-1&&(p=p.slice(0,d))}return p+n}function jl(e){return e=Mp(e),e&&St.test(e)?e.replace(Pt,Cn):e}function Ol(e,t,i){return e=Mp(e),t=i?ne:t,t===ne?V(e)?ie(e):g(e):e.match(t)||[]}function El(e){var t=null==e?0:e.length,i=Sr();return e=t?y(e,function(e){if("function"!=typeof e[1])throw new yc(ae);return[i(e[0]),e[1]]}):[],ro(function(i){for(var n=-1;++nxe)return[];var i=De,n=Jc(e,De);t=Sr(t),e-=De;for(var o=k(n,t);++i1?e[t-1]:ne;return i="function"==typeof i?(e.pop(),i):ne,Xs(e,i)}),Zu=gr(function(e){var t=e.length,i=t?e[0]:0,n=this.__wrapped__,o=function(t){return Di(t,e)};return!(t>1||this.__actions__.length)&&n instanceof j&&Br(i)?(n=n.slice(i,+i+(t?1:0)),n.__actions__.push({func:ia,args:[o],thisArg:ne}),new b(n,this.__chain__).thru(function(e){return t&&!e.length&&e.push(ne),e})):this.thru(o)}),ed=Ho(function(e,t,i){gc.call(e,i)?++e[i]:_i(e,i,1)}),td=er(ms),id=er(hs),nd=Ho(function(e,t,i){gc.call(e,i)?e[i].push(t):_i(e,i,[t])}),od=ro(function(e,t,i){var n=-1,o="function"==typeof t,r=Ja(e)?sc(e.length):[];return Au(e,function(e){r[++n]=o?s(t,e,i):jn(e,t,i)}),r}),rd=Ho(function(e,t,i){_i(e,i,t)}),sd=Ho(function(e,t,i){e[i?0:1].push(t)},function(){return[[],[]]}),ad=ro(function(e,t){if(null==e)return[];var i=t.length;return i>1&&qr(e,t[0],t[1])?t=[]:i>2&&qr(t[0],t[1],t[2])&&(t=[t[0]]),Jn(e,en(t,1),[])}),pd=Lc||function(){return sn.Date.now()},ld=ro(function(e,t,i){var n=he;if(i.length){var o=Y(i,wr(ld));n|=Ce}return fr(e,n,t,i,o)}),cd=ro(function(e,t,i){var n=he|ve;if(i.length){var o=Y(i,wr(cd));n|=Ce}return fr(t,n,e,i,o)}),ud=ro(function(e,t){return zi(e,1,t)}),dd=ro(function(e,t,i){return zi(e,jp(t)||0,i)});Na.Cache=ui;var fd=wu(function(e,t){t=1==t.length&&gd(t[0])?y(t[0],x(Sr())):y(en(t,1),x(Sr()));var i=t.length;return ro(function(n){for(var o=-1,r=Jc(n.length,i);++o=t}),bd=On(function(){return arguments}())?On:function(e){return lp(e)&&gc.call(e,"callee")&&!Fc.call(e,"callee")},gd=sc.isArray,Cd=dn?x(dn):En,Rd=Hc||Hl,Pd=fn?x(fn):Mn,wd=yn?x(yn):xn,Sd=mn?x(mn):Dn,Td=hn?x(hn):Bn,Id=vn?x(vn):qn,jd=lr(Vn),Od=lr(function(e,t){return e<=t}),Ed=Ko(function(e,t){if(zr(t)||Ja(t))return void Go(t,zp(t),e);for(var i in t)gc.call(t,i)&&Mi(e,i,t[i])}),Md=Ko(function(e,t){Go(t,Hp(t),e)}),kd=Ko(function(e,t,i,n){Go(t,Hp(t),e,n)}),Fd=Ko(function(e,t,i,n){Go(t,zp(t),e,n)}),xd=gr(Di),Nd=ro(function(e){return e.push(ne,yr),s(kd,ne,e)}),_d=ro(function(e){return e.push(ne,mr),s(Ud,ne,e)}),Dd=nr(function(e,t,i){e[t]=i},kl(xl)),Bd=nr(function(e,t,i){gc.call(e,t)?e[t].push(i):e[t]=[i]},Sr),qd=ro(jn),Ld=Ko(function(e,t,i){Yn(e,t,i)}),Ud=Ko(function(e,t,i,n){Yn(e,t,i,n)}),Gd=gr(function(e,t){var i={};if(null==e)return i;var n=!1;t=y(t,function(t){return t=Io(t,e),n||(n=t.length>1),t}),Go(e,Rr(e),i),n&&(i=qi(i,ue|de|fe,hr));for(var o=t.length;o--;)bo(i,t[o]);return i}),Vd=gr(function(e,t){return null==e?{}:Xn(e,t)}),zd=dr(zp),Hd=dr(Hp),Kd=Xo(function(e,t,i){return t=t.toLowerCase(),e+(i?pl(t):t)}),Yd=Xo(function(e,t,i){return e+(i?"-":"")+t.toLowerCase()}),Wd=Xo(function(e,t,i){return e+(i?" ":"")+t.toLowerCase()}),$d=Jo("toLowerCase"),Jd=Xo(function(e,t,i){return e+(i?"_":"")+t.toLowerCase()}),Xd=Xo(function(e,t,i){return e+(i?" ":"")+Zd(t)}),Qd=Xo(function(e,t,i){return e+(i?" ":"")+t.toUpperCase()}),Zd=Jo("toUpperCase"),ef=ro(function(e,t){try{return s(e,ne,t)}catch(e){return np(e)?e:new pc(e)}}),tf=gr(function(e,t){return p(t,function(t){t=ns(t),_i(e,t,ld(e[t],e))}),e}),nf=tr(),of=tr(!0),rf=ro(function(e,t){return function(i){return jn(i,e,t)}}),sf=ro(function(e,t){return function(i){return jn(e,i,t)}}),af=rr(y),pf=rr(c),lf=rr(A),cf=pr(),uf=pr(!0),df=or(function(e,t){return e+t},0),ff=ur("ceil"),yf=or(function(e,t){return e/t},1),mf=ur("floor"),hf=or(function(e,t){return e*t},1),vf=ur("round"),Af=or(function(e,t){return e-t},0);return i.after=ja,i.ary=Oa,i.assign=Ed,i.assignIn=Md,i.assignInWith=kd,i.assignWith=Fd,i.at=xd,i.before=Ea,i.bind=ld,i.bindAll=tf,i.bindKey=cd,i.castArray=Va,i.chain=ea,i.chunk=as,i.compact=ps,i.concat=ls,i.cond=El,i.conforms=Ml,i.constant=kl,i.countBy=ed,i.create=kp,i.curry=Ma,i.curryRight=ka,i.debounce=Fa,i.defaults=Nd,i.defaultsDeep=_d,i.defer=ud,i.delay=dd,i.difference=_u,i.differenceBy=Du,i.differenceWith=Bu,i.drop=cs,i.dropRight=us,i.dropRightWhile=ds,i.dropWhile=fs,i.fill=ys,i.filter=ua,i.flatMap=da,i.flatMapDeep=fa,i.flatMapDepth=ya,i.flatten=vs,i.flattenDeep=As,i.flattenDepth=bs,i.flip=xa,i.flow=nf,i.flowRight=of,i.fromPairs=gs,i.functions=qp,i.functionsIn=Lp,i.groupBy=nd,i.initial=Ps,i.intersection=qu,i.intersectionBy=Lu,i.intersectionWith=Uu,i.invert=Dd,i.invertBy=Bd,i.invokeMap=od,i.iteratee=Nl,i.keyBy=rd,i.keys=zp,i.keysIn=Hp,i.map=Aa,i.mapKeys=Kp,i.mapValues=Yp,i.matches=_l,i.matchesProperty=Dl,i.memoize=Na,i.merge=Ld,i.mergeWith=Ud,i.method=rf,i.methodOf=sf,i.mixin=Bl,i.negate=_a,i.nthArg=Ul,i.omit=Gd,i.omitBy=Wp,i.once=Da,i.orderBy=ba,i.over=af,i.overArgs=fd,i.overEvery=pf,i.overSome=lf,i.partial=yd,i.partialRight=md,i.partition=sd,i.pick=Vd,i.pickBy=$p,i.property=Gl,i.propertyOf=Vl,i.pull=Gu,i.pullAll=js,i.pullAllBy=Os,i.pullAllWith=Es,i.pullAt=Vu,i.range=cf,i.rangeRight=uf,i.rearg=hd,i.reject=Ra,i.remove=Ms,i.rest=Ba,i.reverse=ks,i.sampleSize=wa,i.set=Xp,i.setWith=Qp,i.shuffle=Sa,i.slice=Fs,i.sortBy=ad,i.sortedUniq=Ls,i.sortedUniqBy=Us,i.split=bl,i.spread=qa,i.tail=Gs,i.take=Vs,i.takeRight=zs,i.takeRightWhile=Hs,i.takeWhile=Ks,i.tap=ta,i.throttle=La,i.thru=ia,i.toArray=wp,i.toPairs=zd,i.toPairsIn=Hd,i.toPath=Jl,i.toPlainObject=Op,i.transform=Zp,i.unary=Ua,i.union=zu,i.unionBy=Hu,i.unionWith=Ku,i.uniq=Ys,i.uniqBy=Ws,i.uniqWith=$s,i.unset=el,i.unzip=Js,i.unzipWith=Xs,i.update=tl,i.updateWith=il,i.values=nl,i.valuesIn=ol,i.without=Yu,i.words=Ol,i.wrap=Ga,i.xor=Wu,i.xorBy=$u,i.xorWith=Ju,i.zip=Xu,i.zipObject=Qs,i.zipObjectDeep=Zs,i.zipWith=Qu,i.entries=zd,i.entriesIn=Hd,i.extend=Md,i.extendWith=kd,Bl(i,i),i.add=df,i.attempt=ef,i.camelCase=Kd,i.capitalize=pl,i.ceil=ff,i.clamp=rl,i.clone=za,i.cloneDeep=Ka,i.cloneDeepWith=Ya,i.cloneWith=Ha,i.conformsTo=Wa,i.deburr=ll,i.defaultTo=Fl,i.divide=yf,i.endsWith=cl,i.eq=$a,i.escape=ul,i.escapeRegExp=dl,i.every=ca,i.find=td,i.findIndex=ms,i.findKey=Fp,i.findLast=id,i.findLastIndex=hs,i.findLastKey=xp,i.floor=mf,i.forEach=ma,i.forEachRight=ha,i.forIn=Np,i.forInRight=_p,i.forOwn=Dp,i.forOwnRight=Bp,i.get=Up,i.gt=vd,i.gte=Ad,i.has=Gp,i.hasIn=Vp,i.head=Cs,i.identity=xl,i.includes=va,i.indexOf=Rs,i.inRange=sl,i.invoke=qd,i.isArguments=bd,i.isArray=gd,i.isArrayBuffer=Cd,i.isArrayLike=Ja,i.isArrayLikeObject=Xa,i.isBoolean=Qa,i.isBuffer=Rd,i.isDate=Pd,i.isElement=Za,i.isEmpty=ep,i.isEqual=tp,i.isEqualWith=ip,i.isError=np,i.isFinite=op,i.isFunction=rp,i.isInteger=sp,i.isLength=ap,i.isMap=wd,i.isMatch=cp,i.isMatchWith=up,i.isNaN=dp,i.isNative=fp,i.isNil=mp,i.isNull=yp,i.isNumber=hp,i.isObject=pp,i.isObjectLike=lp,i.isPlainObject=vp,i.isRegExp=Sd,i.isSafeInteger=Ap,i.isSet=Td,i.isString=bp,i.isSymbol=gp,i.isTypedArray=Id, -i.isUndefined=Cp,i.isWeakMap=Rp,i.isWeakSet=Pp,i.join=ws,i.kebabCase=Yd,i.last=Ss,i.lastIndexOf=Ts,i.lowerCase=Wd,i.lowerFirst=$d,i.lt=jd,i.lte=Od,i.max=Ql,i.maxBy=Zl,i.mean=ec,i.meanBy=tc,i.min=ic,i.minBy=nc,i.stubArray=zl,i.stubFalse=Hl,i.stubObject=Kl,i.stubString=Yl,i.stubTrue=Wl,i.multiply=hf,i.nth=Is,i.noConflict=ql,i.noop=Ll,i.now=pd,i.pad=fl,i.padEnd=yl,i.padStart=ml,i.parseInt=hl,i.random=al,i.reduce=ga,i.reduceRight=Ca,i.repeat=vl,i.replace=Al,i.result=Jp,i.round=vf,i.runInContext=e,i.sample=Pa,i.size=Ta,i.snakeCase=Jd,i.some=Ia,i.sortedIndex=xs,i.sortedIndexBy=Ns,i.sortedIndexOf=_s,i.sortedLastIndex=Ds,i.sortedLastIndexBy=Bs,i.sortedLastIndexOf=qs,i.startCase=Xd,i.startsWith=gl,i.subtract=Af,i.sum=oc,i.sumBy=rc,i.template=Cl,i.times=$l,i.toFinite=Sp,i.toInteger=Tp,i.toLength=Ip,i.toLower=Rl,i.toNumber=jp,i.toSafeInteger=Ep,i.toString=Mp,i.toUpper=Pl,i.trim=wl,i.trimEnd=Sl,i.trimStart=Tl,i.truncate=Il,i.unescape=jl,i.uniqueId=Xl,i.upperCase=Qd,i.upperFirst=Zd,i.each=ma,i.eachRight=ha,i.first=Cs,Bl(i,function(){var e={};return on(i,function(t,n){gc.call(i.prototype,n)||(e[n]=t)}),e}(),{chain:!1}),i.VERSION=oe,p(["bind","bindKey","curry","curryRight","partial","partialRight"],function(e){i[e].placeholder=i}),p(["drop","take"],function(e,t){j.prototype[e]=function(i){i=i===ne?1:$c(Tp(i),0);var n=this.__filtered__&&!t?new j(this):this.clone();return n.__filtered__?n.__takeCount__=Jc(i,n.__takeCount__):n.__views__.push({size:Jc(i,De),type:e+(n.__dir__<0?"Right":"")}),n},j.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}}),p(["filter","map","takeWhile"],function(e,t){var i=t+1,n=i==Ee||i==ke;j.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:Sr(e,3),type:i}),t.__filtered__=t.__filtered__||n,t}}),p(["head","last"],function(e,t){var i="take"+(t?"Right":"");j.prototype[e]=function(){return this[i](1).value()[0]}}),p(["initial","tail"],function(e,t){var i="drop"+(t?"":"Right");j.prototype[e]=function(){return this.__filtered__?new j(this):this[i](1)}}),j.prototype.compact=function(){return this.filter(xl)},j.prototype.find=function(e){return this.filter(e).head()},j.prototype.findLast=function(e){return this.reverse().find(e)},j.prototype.invokeMap=ro(function(e,t){return"function"==typeof e?new j(this):this.map(function(i){return jn(i,e,t)})}),j.prototype.reject=function(e){return this.filter(_a(Sr(e)))},j.prototype.slice=function(e,t){e=Tp(e);var i=this;return i.__filtered__&&(e>0||t<0)?new j(i):(e<0?i=i.takeRight(-e):e&&(i=i.drop(e)),t!==ne&&(t=Tp(t),i=t<0?i.dropRight(-t):i.take(t-e)),i)},j.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},j.prototype.toArray=function(){return this.take(De)},on(j.prototype,function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),o=/^(?:head|last)$/.test(t),r=i[o?"take"+("last"==t?"Right":""):t],s=o||/^find/.test(t);r&&(i.prototype[t]=function(){var t=this.__wrapped__,a=o?[1]:arguments,p=t instanceof j,l=a[0],c=p||gd(t),u=function(e){var t=r.apply(i,m([e],a));return o&&d?t[0]:t};c&&n&&"function"==typeof l&&1!=l.length&&(p=c=!1);var d=this.__chain__,f=!!this.__actions__.length,y=s&&!d,h=p&&!f;if(!s&&c){t=h?t:new j(this);var v=e.apply(t,a);return v.__actions__.push({func:ia,args:[u],thisArg:ne}),new b(v,d)}return y&&h?e.apply(this,a):(v=this.thru(u),y?o?v.value()[0]:v.value():v)})}),p(["pop","push","shift","sort","splice","unshift"],function(e){var t=mc[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",o=/^(?:pop|shift)$/.test(e);i.prototype[e]=function(){var e=arguments;if(o&&!this.__chain__){var i=this.value();return t.apply(gd(i)?i:[],e)}return this[n](function(i){return t.apply(gd(i)?i:[],e)})}}),on(j.prototype,function(e,t){var n=i[t];if(n){var o=n.name+"",r=pu[o]||(pu[o]=[]);r.push({name:t,func:n})}}),pu[ir(ne,ve).name]=[{name:"wrapper",func:ne}],j.prototype.clone=J,j.prototype.reverse=ee,j.prototype.value=te,i.prototype.at=Zu,i.prototype.chain=na,i.prototype.commit=oa,i.prototype.next=ra,i.prototype.plant=aa,i.prototype.reverse=pa,i.prototype.toJSON=i.prototype.valueOf=i.prototype.value=la,i.prototype.first=i.prototype.head,_c&&(i.prototype[_c]=sa),i},Pn=Rn();"function"==typeof e&&"object"==typeof e.amd&&e.amd?(sn._=Pn,e(function(){return Pn})):pn?((pn.exports=Pn)._=Pn,an._=Pn):sn._=Pn}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],24:[function(e,t,i){function n(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function r(e){if(u===setTimeout)return setTimeout(e,0);if((u===n||!u)&&setTimeout)return u=setTimeout,setTimeout(e,0);try{return u(e,0)}catch(t){try{return u.call(null,e,0)}catch(t){return u.call(this,e,0)}}}function s(e){if(d===clearTimeout)return clearTimeout(e);if((d===o||!d)&&clearTimeout)return d=clearTimeout,clearTimeout(e);try{return d(e)}catch(t){try{return d.call(null,e)}catch(t){return d.call(this,e)}}}function a(){h&&y&&(h=!1,y.length?m=y.concat(m):v=-1,m.length&&p())}function p(){if(!h){var e=r(a);h=!0;for(var t=m.length;t;){for(y=m,m=[];++v1)for(var i=1;i=0?"&":"?")+e),this._sort){var t=this.url.indexOf("?");if(t>=0){var i=this.url.substring(t+1).split("&");h(this._sort)?i.sort(this._sort):i.sort(),this.url=this.url.substring(0,t)+"?"+i.join("&")}}},c.prototype._isHost=function(e){return e&&"object"==typeof e&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},c.prototype.end=function(e){var t=this,i=this.xhr=A.getXHR(),o=this._formData||this._data;this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||n,i.onreadystatechange=function(){var e=i.readyState;if(e>=2&&t._responseTimeoutTimer&&clearTimeout(t._responseTimeoutTimer),4==e){var n;try{n=i.status}catch(e){n=0}if(!n){if(t.timedout||t._aborted)return;return t.crossDomainError()}t.emit("end")}};var r=function(e,i){i.total>0&&(i.percent=i.loaded/i.total*100),i.direction=e,t.emit("progress",i)};if(this.hasListeners("progress"))try{i.onprogress=r.bind(null,"download"),i.upload&&(i.upload.onprogress=r.bind(null,"upload"))}catch(e){}this._appendQueryString(),this._setTimeouts();try{this.username&&this.password?i.open(this.method,this.url,!0,this.username,this.password):i.open(this.method,this.url,!0)}catch(e){return this.callback(e)}if(this._withCredentials&&(i.withCredentials=!0),!this._formData&&"GET"!=this.method&&"HEAD"!=this.method&&"string"!=typeof o&&!this._isHost(o)){var s=this._header["content-type"],a=this._serializer||A.serialize[s?s.split(";")[0]:""];!a&&p(s)&&(a=A.serialize["application/json"]),a&&(o=a(o))}for(var l in this.header)null!=this.header[l]&&i.setRequestHeader(l,this.header[l]);return this._responseType&&(i.responseType=this._responseType),this.emit("request",this),i.send("undefined"!=typeof o?o:null),this},A.get=function(e,t,i){var n=A("GET",e);return"function"==typeof t&&(i=t,t=null),t&&n.query(t),i&&n.end(i),n},A.head=function(e,t,i){var n=A("HEAD",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n},A.options=function(e,t,i){var n=A("OPTIONS",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n},A.del=u,A.delete=u,A.patch=function(e,t,i){var n=A("PATCH",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n},A.post=function(e,t,i){var n=A("POST",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n},A.put=function(e,t,i){var n=A("PUT",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n}},{"./is-function":26,"./is-object":27,"./request-base":28,"./response-base":29,emitter:6}],26:[function(e,t,i){function n(e){var t=o(e)?Object.prototype.toString.call(e):"";return"[object Function]"===t}var o=e("./is-object");t.exports=n},{"./is-object":27}],27:[function(e,t,i){function n(e){return null!==e&&"object"==typeof e}t.exports=n},{}],28:[function(e,t,i){function n(e){if(e)return o(e)}function o(e){for(var t in n.prototype)e[t]=n.prototype[t];return e}var r=e("./is-object");t.exports=n,n.prototype.clearTimeout=function(){return this._timeout=0,this._responseTimeout=0,clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),this},n.prototype.parse=function(e){return this._parser=e,this},n.prototype.responseType=function(e){return this._responseType=e,this},n.prototype.serialize=function(e){return this._serializer=e,this},n.prototype.timeout=function(e){return e&&"object"==typeof e?("undefined"!=typeof e.deadline&&(this._timeout=e.deadline),"undefined"!=typeof e.response&&(this._responseTimeout=e.response),this):(this._timeout=e,this._responseTimeout=0,this)},n.prototype.then=function(e,t){if(!this._fullfilledPromise){var i=this;this._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise(function(e,t){i.end(function(i,n){i?t(i):e(n)})})}return this._fullfilledPromise.then(e,t)},n.prototype.catch=function(e){return this.then(void 0,e)},n.prototype.use=function(e){return e(this),this},n.prototype.ok=function(e){if("function"!=typeof e)throw Error("Callback required");return this._okCallback=e,this},n.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):e.status>=200&&e.status<300)},n.prototype.get=function(e){return this._header[e.toLowerCase()]},n.prototype.getHeader=n.prototype.get,n.prototype.set=function(e,t){if(r(e)){for(var i in e)this.set(i,e[i]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},n.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},n.prototype.field=function(e,t){if(null===e||void 0===e)throw new Error(".field(name, val) name can not be empty");if(this._data&&console.error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()"),r(e)){for(var i in e)this.field(i,e[i]);return this}if(Array.isArray(t)){for(var n in t)this.field(e,t[n]);return this}if(null===t||void 0===t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=""+t),this._getFormData().append(e,t),this},n.prototype.abort=function(){return this._aborted?this:(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort"),this)},n.prototype.withCredentials=function(){return this._withCredentials=!0,this},n.prototype.redirects=function(e){return this._maxRedirects=e,this},n.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},n.prototype.send=function(e){var t=r(e),i=this._header["content-type"];if(this._formData&&console.error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()"),t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw Error("Can't merge these send calls");if(t&&r(this._data))for(var n in e)this._data[n]=e[n];else"string"==typeof e?(i||this.type("form"),i=this._header["content-type"],"application/x-www-form-urlencoded"==i?this._data=this._data?this._data+"&"+e:e:this._data=(this._data||"")+e):this._data=e;return!t||this._isHost(e)?this:(i||this.type("json"),this)},n.prototype.sortQuery=function(e){return this._sort="undefined"==typeof e||e,this},n.prototype._timeoutError=function(e,t){if(!this._aborted){var i=new Error(e+t+"ms exceeded");i.timeout=t,i.code="ECONNABORTED",this.timedout=!0,this.abort(),this.callback(i)}},n.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout(function(){e._timeoutError("Timeout of ",e._timeout)},this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout(function(){e._timeoutError("Response timeout of ",e._responseTimeout)},this._responseTimeout))}},{"./is-object":27}],29:[function(e,t,i){function n(e){if(e)return o(e)}function o(e){for(var t in n.prototype)e[t]=n.prototype[t];return e}var r=e("./utils");t.exports=n,n.prototype.get=function(e){return this.header[e.toLowerCase()]},n.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=r.type(t);var i=r.params(t);for(var n in i)this[n]=i[n];this.links={};try{e.link&&(this.links=r.parseLinks(e.link))}catch(e){}},n.prototype._setStatusProperties=function(e){var t=e/100|0;this.status=this.statusCode=e,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.accepted=202==e,this.noContent=204==e,this.badRequest=400==e,this.unauthorized=401==e,this.notAcceptable=406==e,this.forbidden=403==e,this.notFound=404==e}},{"./utils":30}],30:[function(e,t,i){i.type=function(e){return e.split(/ *; */).shift()},i.params=function(e){return e.split(/ *; */).reduce(function(e,t){var i=t.split(/ *= */),n=i.shift(),o=i.shift();return n&&o&&(e[n]=o),e},{})},i.parseLinks=function(e){return e.split(/ *, */).reduce(function(e,t){var i=t.split(/ *; */),n=i[0].slice(1,-1),o=i[1].split(/ *= */)[1].slice(1,-1);return e[o]=n,e},{})},i.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&delete e.cookie,e}},{}],31:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AboutApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.getAppVersion=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json"],p={String:"String"};return this.apiClient.callApi("/api/enterprise/app-version","GET",t,i,n,o,e,r,s,a,p)}};return t})},{"../../../alfrescoApiClient":301}],32:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/CreateEndpointBasicAuthRepresentation","../model/EndpointBasicAuthRepresentation","../model/EndpointConfigurationRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/CreateEndpointBasicAuthRepresentation"),t("../model/EndpointBasicAuthRepresentation"),t("../model/EndpointConfigurationRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AdminEndpointsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.CreateEndpointBasicAuthRepresentation,n.ActivitiPublicRestApi.EndpointBasicAuthRepresentation,n.ActivitiPublicRestApi.EndpointConfigurationRepresentation))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.createBasicAuthConfiguration=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'createRepresentation' when calling createBasicAuthConfiguration";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/admin/basic-auths","POST",n,o,r,s,t,a,p,l,c)},this.createEndpointConfiguration=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'representation' when calling createEndpointConfiguration";var i={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/admin/endpoints","POST",i,o,r,s,t,a,p,l,c)},this.getBasicAuthConfiguration=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'basicAuthId' when calling getBasicAuthConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'tenantId' when calling getBasicAuthConfiguration";var o={basicAuthId:e},r={tenantId:t},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/admin/basic-auths/{basicAuthId}","GET",o,r,s,a,n,p,l,c,u)},this.getBasicAuthConfigurations=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getBasicAuthConfigurations";var n={},o={tenantId:e},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[i];return this.apiClient.callApi("/api/enterprise/admin/basic-auths","GET",n,o,r,s,t,a,p,l,c)},this.getEndpointConfiguration=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'endpointConfigurationId' when calling getEndpointConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'tenantId' when calling getEndpointConfiguration";var o={endpointConfigurationId:e},r={tenantId:t},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/admin/endpoints/{endpointConfigurationId}","GET",o,r,s,a,i,p,l,c,u)},this.getEndpointConfigurations=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getEndpointConfigurations";var i={},o={tenantId:e},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[n];return this.apiClient.callApi("/api/enterprise/admin/endpoints","GET",i,o,r,s,t,a,p,l,c)},this.removeBasicAuthonfiguration=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'basicAuthId' when calling removeBasicAuthonfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'tenantId' when calling removeBasicAuthonfiguration";var n={basicAuthId:e},o={tenantId:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/basic-auths/{basicAuthId}","DELETE",n,o,r,s,i,a,p,l,c)},this.removeEndpointConfiguration=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'endpointConfigurationId' when calling removeEndpointConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'tenantId' when calling removeEndpointConfiguration";var n={endpointConfigurationId:e},o={tenantId:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/endpoints/{endpointConfigurationId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateBasicAuthConfiguration=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'basicAuthId' when calling updateBasicAuthConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'createRepresentation' when calling updateBasicAuthConfiguration";var o={basicAuthId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/admin/basic-auths/{basicAuthId}","PUT",o,r,s,a,n,p,l,c,u)},this.updateEndpointConfiguration=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'endpointConfigurationId' when calling updateEndpointConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'representation' when calling updateEndpointConfiguration";var o={endpointConfigurationId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/admin/endpoints/{endpointConfigurationId}","PUT",o,r,s,a,i,p,l,c,u)}};return o})},{"../../../alfrescoApiClient":301,"../model/CreateEndpointBasicAuthRepresentation":95,"../model/EndpointBasicAuthRepresentation":98,"../model/EndpointConfigurationRepresentation":99}],33:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AddGroupCapabilitiesRepresentation","../model/GroupRepresentation","../model/ResultListDataRepresentation","../model/AbstractGroupRepresentation","../model/LightGroupRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/AddGroupCapabilitiesRepresentation"),t("../model/GroupRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/AbstractGroupRepresentation"),t("../model/LightGroupRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AdminGroupsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AddGroupCapabilitiesRepresentation,n.ActivitiPublicRestApi.GroupRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.AbstractGroupRepresentation,n.ActivitiPublicRestApi.LightGroupRepresentation))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.activate=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling activate";var i={groupId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/action/activate","POST",i,n,o,r,t,s,a,p,l)},this.addAllUsersToGroup=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling addAllUsersToGroup";var i={groupId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/add-all-users","POST",i,n,o,r,t,s,a,p,l)},this.addGroupCapabilities=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling addGroupCapabilities";if(void 0==t||null==t)throw"Missing the required parameter 'addGroupCapabilitiesRepresentation' when calling addGroupCapabilities";var n={groupId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/capabilities","POST",n,o,r,s,i,a,p,l,c)},this.addGroupMember=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling addGroupMember";if(void 0==t||null==t)throw"Missing the required parameter 'userId' when calling addGroupMember";var n={groupId:e,userId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/members/{userId}","POST",n,o,r,s,i,a,p,l,c)},this.addRelatedGroup=function(e,t,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling addRelatedGroup";if(void 0==t||null==t)throw"Missing the required parameter 'relatedGroupId' when calling addRelatedGroup";if(void 0==i||null==i)throw"Missing the required parameter 'type' when calling addRelatedGroup";var o={groupId:e,relatedGroupId:t},r={type:i},s={},a={},p=[],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/related-groups/{relatedGroupId}","POST",o,r,s,a,n,p,l,c,u)},this.createNewGroup=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'groupRepresentation' when calling createNewGroup";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/admin/groups","POST",n,o,r,s,t,a,p,l,c)},this.deleteGroupCapability=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling deleteGroupCapability";if(void 0==t||null==t)throw"Missing the required parameter 'groupCapabilityId' when calling deleteGroupCapability";var n={groupId:e,groupCapabilityId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/capabilities/{groupCapabilityId}","DELETE",n,o,r,s,i,a,p,l,c)},this.deleteGroupMember=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling deleteGroupMember";if(void 0==t||null==t)throw"Missing the required parameter 'userId' when calling deleteGroupMember";var n={groupId:e,userId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/members/{userId}","DELETE",n,o,r,s,i,a,p,l,c)},this.deleteGroup=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling deleteGroup";var i={groupId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}","DELETE",i,n,o,r,t,s,a,p,l)},this.deleteRelatedGroup=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling deleteRelatedGroup";if(void 0==t||null==t)throw"Missing the required parameter 'relatedGroupId' when calling deleteRelatedGroup";var n={groupId:e,relatedGroupId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/related-groups/{relatedGroupId}","DELETE",n,o,r,s,i,a,p,l,c); -},this.getCapabilities=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getCapabilities";var i={groupId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=["String"];return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/potential-capabilities","GET",i,n,o,r,t,s,a,p,l)},this.getGroupUsers=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getGroupUsers";var o={groupId:e},r={filter:t.filter,page:t.page,pageSize:t.pageSize},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/users","GET",o,r,s,a,i,p,l,c,u)},this.getGroup=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getGroup";var n={groupId:e},r={includeAllUsers:t.includeAllUsers,summary:t.summary},s={},a={},p=[],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}","GET",n,r,s,a,i,p,l,c,u)},this.getGroups=function(e){e=e||{};var t=null,i={},n={tenantId:e.tenantId,functional:e.functional,summary:e.summary},o={},s={},a=[],p=["application/json"],l=["application/json"],c=[r];return this.apiClient.callApi("/api/enterprise/admin/groups","GET",i,n,o,s,t,a,p,l,c)},this.getRelatedGroups=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getRelatedGroups";var i={groupId:e},n={},o={},s={},a=[],p=["application/json"],l=["application/json"],c=[r];return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/related-groups","GET",i,n,o,s,t,a,p,l,c)},this.updateGroup=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling updateGroup";if(void 0==t||null==t)throw"Missing the required parameter 'groupRepresentation' when calling updateGroup";var o={groupId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}","PUT",o,r,s,a,n,p,l,c,u)}};return s})},{"../../../alfrescoApiClient":301,"../model/AbstractGroupRepresentation":77,"../model/AddGroupCapabilitiesRepresentation":80,"../model/GroupRepresentation":114,"../model/LightGroupRepresentation":118,"../model/ResultListDataRepresentation":143}],34:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightTenantRepresentation","../model/CreateTenantRepresentation","../model/TenantEvent","../model/TenantRepresentation","../model/ImageUploadRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/LightTenantRepresentation"),t("../model/CreateTenantRepresentation"),t("../model/TenantEvent"),t("../model/TenantRepresentation"),t("../model/ImageUploadRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AdminTenantsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightTenantRepresentation,n.ActivitiPublicRestApi.CreateTenantRepresentation,n.ActivitiPublicRestApi.TenantEvent,n.ActivitiPublicRestApi.TenantRepresentation,n.ActivitiPublicRestApi.ImageUploadRepresentation))}(void 0,function(e,t,i,n,o,r){var s=function(i){this.apiClient=i||e.instance,this.createTenant=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'createTenantRepresentation' when calling createTenant";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/admin/tenants","POST",n,o,r,s,i,a,p,l,c)},this.deleteTenant=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling deleteTenant";var i={tenantId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}","DELETE",i,n,o,r,t,s,a,p,l)},this.getTenantEvents=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getTenantEvents";var i={tenantId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[n];return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}/events","GET",i,o,r,s,t,a,p,l,c)},this.getTenantLogo=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getTenantLogo";var i={tenantId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}/logo","GET",i,n,o,r,t,s,a,p,l)},this.getTenant=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getTenant";var i={tenantId:e},n={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}","GET",i,n,r,s,t,a,p,l,c)},this.getTenants=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=[t];return this.apiClient.callApi("/api/enterprise/admin/tenants","GET",i,n,o,r,e,s,a,p,l)},this.update=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling update";if(void 0==t||null==t)throw"Missing the required parameter 'createTenantRepresentation' when calling update";var n={tenantId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}","PUT",n,r,s,a,i,p,l,c,u)},this.uploadTenantLogo=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling uploadTenantLogo";if(void 0==t||null==t)throw"Missing the required parameter 'file' when calling uploadTenantLogo";var n={tenantId:e},o={},s={},a={file:t},p=[],l=["multipart/form-data"],c=["application/json"],u=r;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}/logo","POST",n,o,s,a,i,p,l,c,u)}};return s})},{"../../../alfrescoApiClient":301,"../model/CreateTenantRepresentation":97,"../model/ImageUploadRepresentation":115,"../model/LightTenantRepresentation":119,"../model/TenantEvent":153,"../model/TenantRepresentation":154}],35:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/BulkUserUpdateRepresentation","../model/UserRepresentation","../model/AbstractUserRepresentation","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/BulkUserUpdateRepresentation"),t("../model/UserRepresentation"),t("../model/AbstractUserRepresentation"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AdminUsersApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.BulkUserUpdateRepresentation,n.ActivitiPublicRestApi.UserRepresentation,n.ActivitiPublicRestApi.AbstractUserRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.bulkUpdateUsers=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'update' when calling bulkUpdateUsers";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/users","PUT",i,n,o,r,t,s,a,p,l)},this.createNewUser=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'userRepresentation' when calling createNewUser";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/admin/users","POST",n,o,r,s,t,a,p,l,c)},this.getUser=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getUser";var o={userId:e},r={summary:t.summary},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/admin/users/{userId}","GET",o,r,s,a,i,p,l,c,u)},this.getUsers=function(e){e=e||{};var t=null,i={},n={filter:e.filter,status:e.status,accountType:e.accountType,sort:e.sort,company:e.company,start:e.start,page:e.page,size:e.size,groupId:e.groupId,tenantId:e.tenantId,summary:e.summary},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/admin/users","GET",i,n,r,s,t,a,p,l,c)},this.updateUserDetails=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling updateUserDetails";if(void 0==t||null==t)throw"Missing the required parameter 'userRepresentation' when calling updateUserDetails";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/users/{userId}","PUT",n,o,r,s,i,a,p,l,c)}};return r})},{"../../../alfrescoApiClient":301,"../model/AbstractUserRepresentation":79,"../model/BulkUserUpdateRepresentation":88,"../model/ResultListDataRepresentation":143,"../model/UserRepresentation":159}],36:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AlfrescoApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.getAllNetworks=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks","GET",i,n,o,r,e,s,a,p,l)},this.getAllSites=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getAllSites";var n={networkId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites","GET",n,o,r,s,i,a,p,l,c)},this.getAllSites=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getAllSites";var n={repositoryId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites","GET",n,o,r,s,i,a,p,l,c)},this.getContentInFolder=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInFolder";if(void 0==i||null==i)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={networkId:e,folderId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInFolder=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInFolder";if(void 0==i||null==i)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={repositoryId:e,folderId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInSite";if(void 0==i||null==i)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={networkId:e,siteId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInSite";if(void 0==i||null==i)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={repositoryId:e,siteId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getRepositories=function(e){e=e||{};var i=null,n={},o={tenantId:e.tenantId,includeAccounts:e.includeAccounts},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/profile/accounts/alfresco","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],37:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/RuntimeAppDefinitionSaveRepresentation","../model/ResultListDataRepresentation","../model/AppDefinitionRepresentation","../model/AppDefinitionPublishRepresentation","../model/AppDefinitionUpdateResultRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/RuntimeAppDefinitionSaveRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/AppDefinitionRepresentation"),t("../model/AppDefinitionPublishRepresentation"),t("../model/AppDefinitionUpdateResultRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.RuntimeAppDefinitionSaveRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.AppDefinitionRepresentation,n.ActivitiPublicRestApi.AppDefinitionPublishRepresentation,n.ActivitiPublicRestApi.AppDefinitionUpdateResultRepresentation))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.deployAppDefinitions=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'saveObject' when calling deployAppDefinitions";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/runtime-app-definitions","POST",i,n,o,r,t,s,a,p,l)},this.exportAppDefinition=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling exportAppDefinition";var i={modelId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/export","GET",i,n,o,r,t,s,a,p,l)},this.getAppDefinitions=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=i;return this.apiClient.callApi("/api/enterprise/runtime-app-definitions","GET",t,n,o,r,e,s,a,p,l)},this.importAppDefinition=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling importAppDefinition";var i={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/app-definitions/import","POST",i,o,r,s,t,a,p,l,c)},this.importAppDefinition=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling importAppDefinition";if(void 0==t||null==t)throw"Missing the required parameter 'file' when calling importAppDefinition";var o={modelId:e},r={},s={},a={file:t},p=[],l=["multipart/form-data"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/import","POST",o,r,s,a,i,p,l,c,u)},this.publishAppDefinition=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling publishAppDefinition";if(void 0==t||null==t)throw"Missing the required parameter 'publishModel' when calling publishAppDefinition";var n={modelId:e},o={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/publish","POST",n,o,s,a,i,p,l,c,u)}};return s})},{"../../../alfrescoApiClient":301,"../model/AppDefinitionPublishRepresentation":82,"../model/AppDefinitionRepresentation":83,"../model/AppDefinitionUpdateResultRepresentation":84,"../model/ResultListDataRepresentation":143,"../model/RuntimeAppDefinitionSaveRepresentation":144}],38:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AppDefinitionRepresentation","../model/AppDefinitionPublishRepresentation","../model/AppDefinitionUpdateResultRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/AppDefinitionRepresentation"),t("../model/AppDefinitionPublishRepresentation"),t("../model/AppDefinitionUpdateResultRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppsDefinitionApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AppDefinitionRepresentation,n.ActivitiPublicRestApi.AppDefinitionPublishRepresentation,n.ActivitiPublicRestApi.AppDefinitionUpdateResultRepresentation))}(void 0,function(e,t,i,n){var o=function(i){this.apiClient=i||e.instance,this.exportAppDefinition=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling exportAppDefinition";var i={modelId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/export","GET",i,n,o,r,t,s,a,p,l)},this.importAppDefinition=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling importAppDefinition";var n={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/app-definitions/import","POST",n,o,r,s,i,a,p,l,c)},this.importAppDefinition=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling importAppDefinition";if(void 0==i||null==i)throw"Missing the required parameter 'file' when calling importAppDefinition";var o={modelId:e},r={},s={},a={file:i},p=[],l=["multipart/form-data"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/import","POST",o,r,s,a,n,p,l,c,u)},this.publishAppDefinition=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling publishAppDefinition";if(void 0==t||null==t)throw"Missing the required parameter 'publishModel' when calling publishAppDefinition";var o={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/publish","POST",o,r,s,a,i,p,l,c,u)}};return o})},{"../../../alfrescoApiClient":301,"../model/AppDefinitionPublishRepresentation":82,"../model/AppDefinitionRepresentation":83,"../model/AppDefinitionUpdateResultRepresentation":84}],39:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/RuntimeAppDefinitionSaveRepresentation","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/RuntimeAppDefinitionSaveRepresentation"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppsRuntimeApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.RuntimeAppDefinitionSaveRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t,i){var n=function(t){this.apiClient=t||e.instance,this.deployAppDefinitions=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'saveObject' when calling deployAppDefinitions";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/runtime-app-definitions","POST",i,n,o,r,t,s,a,p,l)},this.getAppDefinitions=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=i;return this.apiClient.callApi("/api/enterprise/runtime-app-definitions","GET",t,n,o,r,e,s,a,p,l)}};return n})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143,"../model/RuntimeAppDefinitionSaveRepresentation":144}],40:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/CommentRepresentation","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/CommentRepresentation"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CommentsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.CommentRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t,i){var n=function(n){this.apiClient=n||e.instance,this.addProcessInstanceComment=function(e,i){var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'commentRequest' when calling addProcessInstanceComment";if(void 0==i||null==i)throw"Missing the required parameter 'processInstanceId' when calling addProcessInstanceComment";var o={processInstanceId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.addTaskComment=function(e,i){var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'commentRequest' when calling addTaskComment";if(void 0==i||null==i)throw"Missing the required parameter 'taskId' when calling addTaskComment";var o={taskId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.getProcessInstanceComments=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceComments";var o={processInstanceId:e},r={latestFirst:t.latestFirst},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/comments","GET",o,r,s,a,n,p,l,c,u)},this.getTaskComments=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskComments";var o={taskId:e},r={latestFirst:t.latestFirst},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/comments","GET",o,r,s,a,n,p,l,c,u)}};return n})},{"../../../alfrescoApiClient":301,"../model/CommentRepresentation":92,"../model/ResultListDataRepresentation":143}],41:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/RelatedContentRepresentation","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/RelatedContentRepresentation"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ContentApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.RelatedContentRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t,i){var n=function(n){this.apiClient=n||e.instance,this.createRelatedContentOnProcessInstance=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling createRelatedContentOnProcessInstance";if(void 0==i||null==i)throw"Missing the required parameter 'relatedContent' when calling createRelatedContentOnProcessInstance";var o={processInstanceId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/content","POST",o,r,s,a,n,p,l,c,u)},this.createRelatedContentOnProcessInstance=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling createRelatedContentOnProcessInstance";if(void 0==i||null==i)throw"Missing the required parameter 'file' when calling createRelatedContentOnProcessInstance";var o={processInstanceId:e},r={},s={},a={file:i},p=[],l=["multipart/form-data"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/raw-content","POST",o,r,s,a,n,p,l,c,u)},this.createRelatedContentOnTask=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling createRelatedContentOnTask";if(void 0==i||null==i)throw"Missing the required parameter 'relatedContent' when calling createRelatedContentOnTask";var r={taskId:e},s={isRelatedContent:n.isRelatedContent},a={},p={},l=[],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/content","POST",r,s,a,p,o,l,c,u,d)},this.createRelatedContentOnTask=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling createRelatedContentOnTask";if(void 0==i||null==i)throw"Missing the required parameter 'file' when calling createRelatedContentOnTask";var r={taskId:e},s={isRelatedContent:n.isRelatedContent},a={},p={file:i},l=[],c=["multipart/form-data"],u=["application/json"],d=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/raw-content","POST",r,s,a,p,o,l,c,u,d)},this.createTemporaryRawRelatedContent=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling createTemporaryRawRelatedContent";var n={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/content/raw","POST",n,o,r,s,i,a,p,l,c)},this.createTemporaryRelatedContent=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'relatedContent' when calling createTemporaryRelatedContent";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/content","POST",n,o,r,s,i,a,p,l,c)},this.deleteContent=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'contentId' when calling deleteContent";var i={contentId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/content/{contentId}","DELETE",i,n,o,r,t,s,a,p,l)},this.getContent=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'contentId' when calling getContent";var n={contentId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/content/{contentId}","GET",n,o,r,s,i,a,p,l,c)},this.getProcessInstanceContent=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceContent";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/field-content","GET",n,o,r,s,t,a,p,l,c)},this.getRawContent=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'contentId' when calling getRawContent";var i={contentId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=Object;return this.apiClient.callApi("/api/enterprise/content/{contentId}/raw","GET",i,n,o,r,t,s,a,p,l)},this.getRawContentUrl=function(e){return this.apiClient.basePath+"/api/enterprise/content/"+e+"/raw"},this.getContentThumbnailUrl=function(e){return this.apiClient.basePath+"/app/rest/content/"+e+"/rendition/thumbnail"},this.getRelatedContentForProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getRelatedContentForProcessInstance";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/content","GET",n,o,r,s,t,a,p,l,c)},this.getRelatedContentForTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRelatedContentForTask";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/content","GET",n,o,r,s,t,a,p,l,c)}};return n})},{"../../../alfrescoApiClient":301,"../model/RelatedContentRepresentation":138,"../model/ResultListDataRepresentation":143}],42:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ContentRenditionApi=r(n.ActivitiPublicRestApi.ApiClient)); -}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.getRawContent=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'contentId' when calling getRawContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionType' when calling getRawContent";var n={contentId:e,renditionType:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/content/{contentId}/rendition/{renditionType}","GET",n,o,r,s,i,a,p,l,c)}};return t})},{"../../../alfrescoApiClient":301}],43:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormRepresentation","../model/FormSaveRepresentation","../model/ValidationErrorRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/FormRepresentation"),t("../model/FormSaveRepresentation"),t("../model/ValidationErrorRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EditorApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormRepresentation,n.ActivitiPublicRestApi.FormSaveRepresentation,n.ActivitiPublicRestApi.ValidationErrorRepresentation))}(void 0,function(e,t,i,n){var o=function(i){this.apiClient=i||e.instance,this.getFormHistory=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'formId' when calling getFormHistory";if(void 0==i||null==i)throw"Missing the required parameter 'formHistoryId' when calling getFormHistory";var o={formId:e,formHistoryId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/editor/form-models/{formId}/history/{formHistoryId}","GET",o,r,s,a,n,p,l,c,u)},this.getForm=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'formId' when calling getForm";var n={formId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/editor/form-models/{formId}","GET",n,o,r,s,i,a,p,l,c)},this.getForms=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=[t];return this.apiClient.callApi("/api/enterprise/editor/form-models/values","GET",i,n,o,r,e,s,a,p,l)},this.saveForm=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'formId' when calling saveForm";if(void 0==i||null==i)throw"Missing the required parameter 'saveRepresentation' when calling saveForm";var o={formId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/editor/form-models/{formId}","PUT",o,r,s,a,n,p,l,c,u)},this.validateModel=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'formId' when calling validateModel";if(void 0==t||null==t)throw"Missing the required parameter 'saveRepresentation' when calling validateModel";var o={formId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[n];return this.apiClient.callApi("/api/enterprise/editor/form-models/{formId}/validate","PUT",o,r,s,a,i,p,l,c,u)}};return o})},{"../../../alfrescoApiClient":301,"../model/FormRepresentation":108,"../model/FormSaveRepresentation":109,"../model/ValidationErrorRepresentation":161}],44:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.GroupsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getGroups=function(e){e=e||{};var i=null,n={},o={filter:e.filter,groupId:e.groupId,externalId:e.externalId,externalIdCaseInsensitive:e.externalIdCaseInsensitive,tenantId:e.tenantId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/groups","GET",n,o,r,s,i,a,p,l,c)},this.getUsersForGroup=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getUsersForGroup";var n={groupId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/groups/{groupId}/users","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],45:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/SyncLogEntryRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/SyncLogEntryRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IDMSyncApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.SyncLogEntryRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getLogFile=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'syncLogEntryId' when calling getLogFile";var i={syncLogEntryId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/idm-sync-log-entries/{syncLogEntryId}/logfile","GET",i,n,o,r,t,s,a,p,l)},this.getSyncLogEntries=function(e){e=e||{};var i=null,n={},o={tenantId:e.tenantId,page:e.page,size:e.size},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[t];return this.apiClient.callApi("/api/enterprise/idm-sync-log-entries","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/SyncLogEntryRepresentation":146}],46:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationAccountApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getAccounts=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/account/integration","GET",i,n,o,r,e,s,a,p,l)}};return i})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],47:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationAlfrescoCloudApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.getAllNetworks=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks","GET",i,n,o,r,e,s,a,p,l)},this.getAllSites=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getAllSites";var n={networkId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites","GET",n,o,r,s,i,a,p,l,c)},this.getContentInFolder=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInFolder";if(void 0==i||null==i)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={networkId:e,folderId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInSite";if(void 0==i||null==i)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={networkId:e,siteId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)}};return i})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],48:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationAlfrescoOnPremiseApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getAllSites=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getAllSites";var n={repositoryId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites","GET",n,o,r,s,i,a,p,l,c)},this.getContentInFolder=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInFolder";if(void 0==i||null==i)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={repositoryId:e,folderId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInSite";if(void 0==i||null==i)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={repositoryId:e,siteId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getRepositories=function(e){e=e||{};var i=null,n={},o={tenantId:e.tenantId,includeAccounts:e.includeAccounts},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/profile/accounts/alfresco","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],49:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/UserAccountCredentialsRepresentation","../model/ResultListDataRepresentation","../model/BoxUserAccountCredentialsRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/UserAccountCredentialsRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/BoxUserAccountCredentialsRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.UserAccountCredentialsRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.BoxUserAccountCredentialsRepresentation))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/box/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/google-drive/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.createRepositoryAccount=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling createRepositoryAccount";if(void 0==t||null==t)throw"Missing the required parameter 'credentials' when calling createRepositoryAccount";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","POST",n,o,r,s,i,a,p,l,c)},this.deleteRepositoryAccount=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling deleteRepositoryAccount";var i={userId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","DELETE",i,n,o,r,t,s,a,p,l)},this.getAllNetworks=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks","GET",t,n,o,r,e,s,a,p,l)},this.getAllSites=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getAllSites";var n={networkId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites","GET",n,o,r,s,t,a,p,l,c)},this.getAllSites=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getAllSites";var n={repositoryId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites","GET",n,o,r,s,t,a,p,l,c)},this.getBoxPluginStatus=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json"],p="Boolean";return this.apiClient.callApi("/api/enterprise/integration/box/status","GET",t,i,n,o,e,r,s,a,p)},this.getContentInFolder=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInFolder";if(void 0==t||null==t)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={networkId:e,folderId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInFolder=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInFolder";if(void 0==t||null==t)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={repositoryId:e,folderId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInSite";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={networkId:e,siteId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInSite";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={repositoryId:e,siteId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getFiles=function(e){e=e||{};var t=null,n={},o={filter:e.filter,parent:e.parent},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/box/files","GET",n,o,r,s,t,a,p,l,c)},this.getFiles=function(e){e=e||{};var t=null,n={},o={filter:e.filter,parent:e.parent,currentFolderOnly:e.currentFolderOnly},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/google-drive/files","GET",n,o,r,s,t,a,p,l,c)},this.getRepositories=function(e){e=e||{};var t=null,n={},o={tenantId:e.tenantId,includeAccounts:e.includeAccounts},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/profile/accounts/alfresco","GET",n,o,r,s,t,a,p,l,c)},this.getRepositoryAccount=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getRepositoryAccount";var i={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","GET",i,o,r,s,t,a,p,l,c)},this.updateRepositoryAccount=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling updateRepositoryAccount";if(void 0==t||null==t)throw"Missing the required parameter 'credentials' when calling updateRepositoryAccount";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","PUT",n,o,r,s,i,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":301,"../model/BoxUserAccountCredentialsRepresentation":87,"../model/ResultListDataRepresentation":143,"../model/UserAccountCredentialsRepresentation":155}],50:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/UserAccountCredentialsRepresentation","../model/ResultListDataRepresentation","../model/BoxUserAccountCredentialsRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/UserAccountCredentialsRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/BoxUserAccountCredentialsRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationBoxApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.UserAccountCredentialsRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.BoxUserAccountCredentialsRepresentation))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/box/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.createRepositoryAccount=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling createRepositoryAccount";if(void 0==t||null==t)throw"Missing the required parameter 'credentials' when calling createRepositoryAccount";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","POST",n,o,r,s,i,a,p,l,c)},this.deleteRepositoryAccount=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling deleteRepositoryAccount";var i={userId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","DELETE",i,n,o,r,t,s,a,p,l)},this.getBoxPluginStatus=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json"],p="Boolean";return this.apiClient.callApi("/api/enterprise/integration/box/status","GET",t,i,n,o,e,r,s,a,p)},this.getFiles=function(e){e=e||{};var t=null,n={},o={filter:e.filter,parent:e.parent},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/box/files","GET",n,o,r,s,t,a,p,l,c)},this.getRepositoryAccount=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getRepositoryAccount";var i={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","GET",i,o,r,s,t,a,p,l,c)},this.updateRepositoryAccount=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling updateRepositoryAccount";if(void 0==t||null==t)throw"Missing the required parameter 'credentials' when calling updateRepositoryAccount";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","PUT",n,o,r,s,i,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":301,"../model/BoxUserAccountCredentialsRepresentation":87,"../model/ResultListDataRepresentation":143,"../model/UserAccountCredentialsRepresentation":155}],51:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationDriveApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/google-drive/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.getFiles=function(e){e=e||{};var i=null,n={},o={filter:e.filter,parent:e.parent,currentFolderOnly:e.currentFolderOnly},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/google-drive/files","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],52:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelBpmnApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.getHistoricProcessModelBpmn20Xml=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processModelId' when calling getHistoricProcessModelBpmn20Xml";if(void 0==t||null==t)throw"Missing the required parameter 'processModelHistoryId' when calling getHistoricProcessModelBpmn20Xml";var n={processModelId:e,processModelHistoryId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/models/{processModelId}/history/{processModelHistoryId}/bpmn20","GET",n,o,r,s,i,a,p,l,c)},this.getProcessModelBpmn20Xml=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processModelId' when calling getProcessModelBpmn20Xml";var i={processModelId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/models/{processModelId}/bpmn20","GET",i,n,o,r,t,s,a,p,l)}};return t})},{"../../../alfrescoApiClient":301}],53:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ObjectNode"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ObjectNode")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelJsonBpmnApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getHistoricEditorDisplayJsonClient=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processModelId' when calling getHistoricEditorDisplayJsonClient";if(void 0==i||null==i)throw"Missing the required parameter 'processModelHistoryId' when calling getHistoricEditorDisplayJsonClient";var o={processModelId:e,processModelHistoryId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/app/rest/models/{processModelId}/history/{processModelHistoryId}/model-json","GET",o,r,s,a,n,p,l,c,u)},this.getEditorDisplayJsonClient=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processModelId' when calling getEditorDisplayJsonClient";var n={processModelId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/app/rest/models/{processModelId}/model-json","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/ObjectNode":126}],54:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ModelRepresentation","../model/ObjectNode","../model/ResultListDataRepresentation","../model/ValidationErrorRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ModelRepresentation"),t("../model/ObjectNode"),t("../model/ResultListDataRepresentation"),t("../model/ValidationErrorRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ModelRepresentation,n.ActivitiPublicRestApi.ObjectNode,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ValidationErrorRepresentation))}(void 0,function(e,t,i,n,o){var r=function(r){this.apiClient=r||e.instance,this.createModel=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'modelRepresentation' when calling createModel";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/models","POST",n,o,r,s,i,a,p,l,c)},this.deleteModel=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling deleteModel";var n={modelId:e},o={cascade:t.cascade,deleteRuntimeApp:t.deleteRuntimeApp},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/models/{modelId}","DELETE",n,o,r,s,i,a,p,l,c)},this.duplicateModel=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling duplicateModel";if(void 0==i||null==i)throw"Missing the required parameter 'modelRepresentation' when calling duplicateModel";var o={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}/clone","POST",o,r,s,a,n,p,l,c,u)},this.getModelJSON=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getModelJSON";var n={modelId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i; -return this.apiClient.callApi("/api/enterprise/models/{modelId}/editor/json","GET",n,o,r,s,t,a,p,l,c)},this.getModelThumbnail=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getModelThumbnail";var i={modelId:e},n={},o={},r={},s=[],a=["application/json"],p=["image/png","application/json"],l=["String"];return this.apiClient.callApi("/api/enterprise/models/{modelId}/thumbnail","GET",i,n,o,r,t,s,a,p,l)},this.getModel=function(e,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getModel";var o={modelId:e},r={includePermissions:i.includePermissions},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}","GET",o,r,s,a,n,p,l,c,u)},this.getModelsToIncludeInAppDefinition=function(){var e=null,t={},i={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=n;return this.apiClient.callApi("/api/enterprise/models-for-app-definition","GET",t,i,o,r,e,s,a,p,l)},this.getModels=function(e){e=e||{};var t=null,i={},o={filter:e.filter,filterText:e.filterText,sort:e.sort,modelType:e.modelType,referenceId:e.referenceId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/models","GET",i,o,r,s,t,a,p,l,c)},this.importNewVersion=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling importNewVersion";if(void 0==i||null==i)throw"Missing the required parameter 'file' when calling importNewVersion";var o={modelId:e},r={},s={},a={file:i},p=[],l=["multipart/form-data"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}/newversion","POST",o,r,s,a,n,p,l,c,u)},this.importProcessModel=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling importProcessModel";var n={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/process-models/import","POST",n,o,r,s,i,a,p,l,c)},this.saveModel=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling saveModel";if(void 0==i||null==i)throw"Missing the required parameter 'values' when calling saveModel";var o={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}/editor/json","POST",o,r,s,a,n,p,l,c,u)},this.updateModel=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling updateModel";if(void 0==i||null==i)throw"Missing the required parameter 'updatedModel' when calling updateModel";var o={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}","PUT",o,r,s,a,n,p,l,c,u)},this.validateModel=function(e,t){t=t||{};var i=t.values;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling validateModel";var n={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[o];return this.apiClient.callApi("/api/enterprise/models/{modelId}/editor/validate","POST",n,r,s,a,i,p,l,c,u)}};return r})},{"../../../alfrescoApiClient":301,"../model/ModelRepresentation":125,"../model/ObjectNode":126,"../model/ResultListDataRepresentation":143,"../model/ValidationErrorRepresentation":161}],55:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation","../model/ModelRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation"),t("../model/ModelRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelsHistoryApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ModelRepresentation))}(void 0,function(e,t,i){var n=function(n){this.apiClient=n||e.instance,this.getModelHistoryCollection=function(e,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getModelHistoryCollection";var o={modelId:e},r={includeLatestVersion:i.includeLatestVersion},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}/history","GET",o,r,s,a,n,p,l,c,u)},this.getProcessModelHistory=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getProcessModelHistory";if(void 0==t||null==t)throw"Missing the required parameter 'modelHistoryId' when calling getProcessModelHistory";var o={modelId:e,modelHistoryId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/models/{modelId}/history/{modelHistoryId}","GET",o,r,s,a,n,p,l,c,u)}};return n})},{"../../../alfrescoApiClient":301,"../model/ModelRepresentation":125,"../model/ResultListDataRepresentation":143}],56:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessInstanceFilterRequestRepresentation","../model/ResultListDataRepresentation","../model/FormDefinitionRepresentation","../model/ProcessInstanceRepresentation","../model/ProcessFilterRequestRepresentation","../model/FormValueRepresentation","../model/CreateProcessInstanceRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ProcessInstanceFilterRequestRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/FormDefinitionRepresentation"),t("../model/ProcessInstanceRepresentation"),t("../model/ProcessFilterRequestRepresentation"),t("../model/FormValueRepresentation"),t("../model/CreateProcessInstanceRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessInstanceFilterRequestRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.ProcessInstanceRepresentation,n.ActivitiPublicRestApi.ProcessFilterRequestRepresentation,n.ActivitiPublicRestApi.FormValueRepresentation,n.ActivitiPublicRestApi.CreateProcessInstanceRepresentation))}(void 0,function(e,t,i,n,o,r,s,a){var p=function(t){this.apiClient=t||e.instance,this.deleteProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling deleteProcessInstance";var i={processInstanceId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}","DELETE",i,n,o,r,t,s,a,p,l)},this.filterProcessInstances=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'filterRequest' when calling filterProcessInstances";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/filter","POST",n,o,r,s,t,a,p,l,c)},this.getProcessDefinitionStartForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processDefinitionId' when calling getProcessInstanceContent";var i={processDefinitionId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form","GET",i,o,r,s,t,a,p,l,c)},this.getProcessDefinitions=function(e){e=e||{};var t=null,n={},o={latest:e.latest,appDefinitionId:e.appDefinitionId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-definitions","GET",n,o,r,s,t,a,p,l,c)},this.getProcessInstanceContent=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceContent";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/field-content","GET",n,o,r,s,t,a,p,l,c)},this.getProcessInstanceStartForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceStartForm";var i={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/start-form","GET",i,o,r,s,t,a,p,l,c)},this.getProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstance";var i={processInstanceId:e},n={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}","GET",i,n,r,s,t,a,p,l,c)},this.getProcessInstances=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'requestNode' when calling getProcessInstances";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/query","POST",n,o,r,s,t,a,p,l,c)},this.getRestFieldValues=function(e,t){var i=null,n={processDefinitionId:e,field:t},o={},r={},a={},p=[],l=["application/json"],c=["application/json"],u=[s];return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}","GET",n,o,r,a,i,p,l,c,u)},this.getRestTableFieldValues=function(e,t,i){var n=null,o={processDefinitionId:e,field:t,column:i},r={},a={},p={},l=[],c=["application/json"],u=["application/json"],d=[s];return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}/{column}","GET",o,r,a,p,n,l,c,u,d)},this.startNewProcessInstance=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'startRequest' when calling startNewProcessInstance";var i={},n={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/process-instances","POST",i,n,r,s,t,a,p,l,c)}};return p})},{"../../../alfrescoApiClient":301,"../model/CreateProcessInstanceRepresentation":96,"../model/FormDefinitionRepresentation":104,"../model/FormValueRepresentation":112,"../model/ProcessFilterRequestRepresentation":129,"../model/ProcessInstanceFilterRequestRepresentation":131,"../model/ProcessInstanceRepresentation":132,"../model/ResultListDataRepresentation":143}],57:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessDefinitionsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getProcessDefinitions=function(e){e=e||{};var i=null,n={},o={latest:e.latest,appDefinitionId:e.appDefinitionId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/process-definitions","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],58:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormDefinitionRepresentation","../model/FormValueRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/FormDefinitionRepresentation"),t("../model/FormValueRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessDefinitionsFormApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.FormValueRepresentation))}(void 0,function(e,t,i){var n=function(n){this.apiClient=n||e.instance,this.getProcessDefinitionStartForm=function(e){var i=null,n={processDefinitionId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form","GET",n,o,r,s,i,a,p,l,c)},this.getRestFieldValues=function(e,t){var n=null,o={processDefinitionId:e,field:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[i];return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}","GET",o,r,s,a,n,p,l,c,u)},this.getRestTableFieldValues=function(e,t,n){var o=null,r={processDefinitionId:e,field:t,column:n},s={},a={},p={},l=[],c=["application/json"],u=["application/json"],d=[i];return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}/{column}","GET",r,s,a,p,o,l,c,u,d)}};return n})},{"../../../alfrescoApiClient":301,"../model/FormDefinitionRepresentation":104,"../model/FormValueRepresentation":112}],59:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/RestVariable"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/RestVariable")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceVariablesApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.RestVariable))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getProcessInstanceVariables=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceVariables";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[t];return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables","GET",n,o,r,s,i,a,p,l,c)},this.createProcessInstanceVariables=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling createProcessInstanceVariables";if(void 0==i||null==i)throw"Missing the required parameter 'restVariables' when calling createProcessInstanceVariables";var o={processInstanceId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[t];return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables","POST",o,r,s,a,n,p,l,c,u)},this.createOrUpdateProcessInstanceVariables=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling createOrUpdateProcessInstanceVariables";if(void 0==i||null==i)throw"Missing the required parameter 'restVariables' when calling createOrUpdateProcessInstanceVariables";var o={processInstanceId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[t];return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables","PUT",o,r,s,a,n,p,l,c,u)},this.getProcessInstanceVariable=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceVariable";if(void 0==i||null==i)throw"Missing the required parameter 'variableName' when calling getProcessInstanceVariable";var o={processInstanceId:e,variableName:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}","GET",o,r,s,a,n,p,l,c,u)},this.updateProcessInstanceVariable=function(e,i,n){var o=n;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling updateProcessInstanceVariable";if(void 0==i||null==i)throw"Missing the required parameter 'variableName' when calling updateProcessInstanceVariable";var r={processInstanceId:e,variableName:i},s={},a={},p={},l=[],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}","PUT",r,s,a,p,o,l,c,u,d)},this.deleteProcessInstanceVariable=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling deleteProcessInstanceVariable";if(void 0==t||null==t)throw"Missing the required parameter 'variableName' when calling deleteProcessInstanceVariable";var n={processInstanceId:e,variableName:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}","DELETE",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/RestVariable":142}],60:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/CommentRepresentation","../model/ResultListDataRepresentation","../model/FormDefinitionRepresentation","../model/ProcessInstanceRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/CommentRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/FormDefinitionRepresentation"),t("../model/ProcessInstanceRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstancesApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.CommentRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.ProcessInstanceRepresentation))}(void 0,function(e,t,i,n,o){var r=function(r){this.apiClient=r||e.instance,this.addProcessInstanceComment=function(e,i){var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'commentRequest' when calling addProcessInstanceComment";if(void 0==i||null==i)throw"Missing the required parameter 'processInstanceId' when calling addProcessInstanceComment";var o={processInstanceId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.deleteProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling deleteProcessInstance";var i={processInstanceId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}","DELETE",i,n,o,r,t,s,a,p,l)},this.getProcessInstanceComments=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceComments";var o={processInstanceId:e},r={latestFirst:t.latestFirst},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/comments","GET",o,r,s,a,n,p,l,c,u)},this.getProcessInstanceStartForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceStartForm";var i={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/start-form","GET",i,o,r,s,t,a,p,l,c)},this.getProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstance";var i={processInstanceId:e},n={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}","GET",i,n,r,s,t,a,p,l,c)}};return r})},{"../../../alfrescoApiClient":301,"../model/CommentRepresentation":92,"../model/FormDefinitionRepresentation":104,"../model/ProcessInstanceRepresentation":132,"../model/ResultListDataRepresentation":143}],61:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation","../model/CreateProcessInstanceRepresentation","../model/ProcessInstanceRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation"),t("../model/CreateProcessInstanceRepresentation"),t("../model/ProcessInstanceRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstancesInformationApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.CreateProcessInstanceRepresentation,n.ActivitiPublicRestApi.ProcessInstanceRepresentation))}(void 0,function(e,t,i,n){var o=function(i){this.apiClient=i||e.instance,this.getProcessInstanceContent=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceContent";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/field-content","GET",n,o,r,s,i,a,p,l,c)},this.startNewProcessInstance=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'startRequest' when calling startNewProcessInstance";var i={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/process-instances","POST",i,o,r,s,t,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":301,"../model/CreateProcessInstanceRepresentation":96,"../model/ProcessInstanceRepresentation":132,"../model/ResultListDataRepresentation":143}],62:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessInstanceFilterRequestRepresentation","../model/ResultListDataRepresentation","../model/ObjectNode"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ProcessInstanceFilterRequestRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/ObjectNode")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstancesListingApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessInstanceFilterRequestRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ObjectNode))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.filterProcessInstances=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'filterRequest' when calling filterProcessInstances";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/filter","POST",n,o,r,s,t,a,p,l,c)},this.getProcessInstances=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'requestNode' when calling getProcessInstances";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/query","POST",n,o,r,s,t,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":301,"../model/ObjectNode":126,"../model/ProcessInstanceFilterRequestRepresentation":131,"../model/ResultListDataRepresentation":143}],63:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessScopesRequestRepresentation","../model/ProcessScopeRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ProcessScopesRequestRepresentation"),t("../model/ProcessScopeRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessScopeApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessScopesRequestRepresentation,n.ActivitiPublicRestApi.ProcessScopeRepresentation))}(void 0,function(e,t,i){var n=function(t){this.apiClient=t||e.instance,this.getRuntimeProcessScopes=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'processScopesRequest' when calling getRuntimeProcessScopes";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[i];return this.apiClient.callApi("/api/enterprise/process-scopes","POST",n,o,r,s,t,a,p,l,c)}};return n})},{"../../../alfrescoApiClient":301,"../model/ProcessScopeRepresentation":135,"../model/ProcessScopesRequestRepresentation":136}],64:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ChangePasswordRepresentation","../model/UserRepresentation","../model/ImageUploadRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ChangePasswordRepresentation"),t("../model/UserRepresentation"),t("../model/ImageUploadRepresentation"),t("../model/File")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProfileApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ChangePasswordRepresentation,n.ActivitiPublicRestApi.UserRepresentation,n.ActivitiPublicRestApi.ImageUploadRepresentation,n.ActivitiPublicRestApi.File))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.changePassword=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'changePasswordRepresentation' when calling changePassword";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/profile-password","POST",i,n,o,r,t,s,a,p,l)},this.getProfilePicture=function(){var e=null,t={},i={},n={},r={},s=[],a=["application/json"],p=["application/json"],l=o;return this.apiClient.callApi("/api/enterprise/profile-picture","GET",t,i,n,r,e,s,a,p,l)},this.getProfilePictureUrl=function(){return this.apiClient.basePath+"/app/rest/admin/profile-picture"},this.getProfile=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=i;return this.apiClient.callApi("/api/enterprise/profile","GET",t,n,o,r,e,s,a,p,l)},this.updateProfile=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'userRepresentation' when calling updateProfile";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/profile","POST",n,o,r,s,t,a,p,l,c)},this.uploadProfilePicture=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling uploadProfilePicture";var i={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/profile-picture","POST",i,o,r,s,t,a,p,l,c)}};return r})},{"../../../alfrescoApiClient":301,"../model/ChangePasswordRepresentation":89,"../model/File":103,"../model/ImageUploadRepresentation":115,"../model/UserRepresentation":159}],65:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ReportCharts","../model/ParameterValueRepresentation","../model/ReportParametersDefinition"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ReportCharts"),t("../model/ParameterValueRepresentation"),t("../model/ReportParametersDefinition")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ReportApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ReportCharts,n.ActivitiPublicRestApi.ParameterValueRepresentation,n.ActivitiPublicRestApi.ReportParametersDefinition))}(void 0,function(e,t,i,n){var o=function(o){this.apiClient=o||e.instance,this.createDefaultReports=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json"],p=null;return this.apiClient.callApi("/app/rest/reporting/default-reports","POST",t,i,n,o,e,r,s,a,p)},this.getTasksByProcessDefinitionId=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling getTasksByProcessDefinitionId";if(void 0==t||null==t)throw"Missing the required parameter 'processDefinitionId' when calling getTasksByProcessDefinitionId";var n={reportId:e},o={processDefinitionId:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=["String"];return this.apiClient.callApi("/app/rest/reporting/report-params/{reportId}/tasks","GET",n,o,r,s,i,a,p,l,c)},this.getReportsByParams=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling getReportsByParams";var o={reportId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/app/rest/reporting/report-params/{reportId}","POST",o,r,s,a,n,p,l,c,u)},this.getProcessDefinitions=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=[i];return this.apiClient.callApi("/app/rest/reporting/process-definitions","GET",t,n,o,r,e,s,a,p,l); -},this.getReportParams=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling getReportParams";var i={reportId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/app/rest/reporting/report-params/{reportId}","GET",i,o,r,s,t,a,p,l,c)},this.getReportList=function(){var e=null,t={},i={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=[n];return this.apiClient.callApi("/app/rest/reporting/reports","GET",t,i,o,r,e,s,a,p,l)},this.updateReport=function(e,t){var i={name:t};if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling updateReport";var n={reportId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/app/rest/reporting/reports/{reportId}","PUT",n,o,r,s,i,a,p,l,c)},this.exportToCsv=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling exportToCsv";if(void 0==t||null==t)throw"Missing the required parameter 'queryParams' when calling exportToCsv";if(void 0==t.reportName||null==t.reportName)throw"Missing the required parameter 'reportName' when calling exportToCsv";t.__reportName=t.reportName;var n={reportId:e},t={},o={},r={},s=[],a=["application/json"],p=["application/json"],l="String";return this.apiClient.callApi("/app/rest/reporting/reports/{reportId}/export-to-csv","POST",n,t,o,r,i,s,a,p,l)},this.saveReport=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling saveReport";if(void 0==t||null==t)throw"Missing the required parameter 'queryParams' when calling queryParams";if(void 0==t.reportName||null==t.reportName)throw"Missing the required parameter 'reportName' when calling exportToCsv";t.__reportName=t.reportName;var n={reportId:e},t={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/app/rest/reporting/reports/{reportId}","POST",n,t,o,r,i,s,a,p,l)},this.deleteReport=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling delete";var i={reportId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/app/rest/reporting/reports/{reportId}","DELETE",i,n,o,r,t,s,a,p,l)}};return o})},{"../../../alfrescoApiClient":301,"../model/ParameterValueRepresentation":128,"../model/ReportCharts":139,"../model/ReportParametersDefinition":140}],66:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ScriptFileApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.getControllers=function(){var e=null,t={},i={},n={},o={},r=[],s=["text/javascript"],a=[],p="String";return this.apiClient.callApi("/api/enterprise/script-files/controllers","GET",t,i,n,o,e,r,s,a,p)},this.getLibraries=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json","application/javascript"],p="String";return this.apiClient.callApi("/api/enterprise/script-files/libraries","GET",t,i,n,o,e,r,s,a,p)}};return t})},{"../../../alfrescoApiClient":301}],67:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/SystemPropertiesRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/SystemPropertiesRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.SystemPropertiesApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.SystemPropertiesRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getProperties=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/system/properties","GET",i,n,o,r,e,s,a,p,l)}};return i})},{"../../../alfrescoApiClient":301,"../model/SystemPropertiesRepresentation":147}],68:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ObjectNode","../model/TaskRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ObjectNode"),t("../model/TaskRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskActionsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ObjectNode,n.ActivitiPublicRestApi.TaskRepresentation))}(void 0,function(e,t,i){var n=function(t){this.apiClient=t||e.instance,this.assignTask=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling assignTask";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling assignTask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/assign","PUT",o,r,s,a,n,p,l,c,u)},this.attachForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling attachForm";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling attachForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/attach-form","PUT",n,o,r,s,i,a,p,l,c)},this.claimTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling claimTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/claim","PUT",i,n,o,r,t,s,a,p,l)},this.completeTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling completeTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/complete","PUT",i,n,o,r,t,s,a,p,l)},this.involveUser=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling involveUser";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling involveUser";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/involve","PUT",n,o,r,s,i,a,p,l,c)},this.removeForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling removeForm";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/remove-form","DELETE",i,n,o,r,t,s,a,p,l)},this.removeInvolvedUser=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling removeInvolvedUser";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling removeInvolvedUser";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/remove-involved","PUT",n,o,r,s,i,a,p,l,c)},this.unclaimTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling unclaimTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/unclaim","PUT",i,n,o,r,t,s,a,p,l)}};return n})},{"../../../alfrescoApiClient":301,"../model/ObjectNode":126,"../model/TaskRepresentation":151}],69:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/TaskRepresentation","../model/CommentRepresentation","../model/ObjectNode","../model/CompleteFormRepresentation","../model/RelatedContentRepresentation","../model/TaskFilterRequestRepresentation","../model/ResultListDataRepresentation","../model/FormValueRepresentation","../model/FormDefinitionRepresentation","../model/ChecklistOrderRepresentation","../model/SaveFormRepresentation","../model/TaskUpdateRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/TaskRepresentation"),t("../model/CommentRepresentation"),t("../model/ObjectNode"),t("../model/CompleteFormRepresentation"),t("../model/RelatedContentRepresentation"),t("../model/TaskFilterRequestRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/FormValueRepresentation"),t("../model/FormDefinitionRepresentation"),t("../model/ChecklistOrderRepresentation"),t("../model/SaveFormRepresentation"),t("../model/TaskUpdateRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.TaskRepresentation,n.ActivitiPublicRestApi.CommentRepresentation,n.ActivitiPublicRestApi.ObjectNode,n.ActivitiPublicRestApi.CompleteFormRepresentation,n.ActivitiPublicRestApi.RelatedContentRepresentation,n.ActivitiPublicRestApi.TaskFilterRequestRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.FormValueRepresentation,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.ChecklistOrderRepresentation,n.ActivitiPublicRestApi.SaveFormRepresentation,n.ActivitiPublicRestApi.TaskUpdateRepresentation))}(void 0,function(e,t,i,n,o,r,s,a,p,l,c,u,d){var f=function(n){this.apiClient=n||e.instance,this.addSubtask=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling addSubtask";if(void 0==i||null==i)throw"Missing the required parameter 'taskRepresentation' when calling addSubtask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","POST",o,r,s,a,n,p,l,c,u)},this.addTaskComment=function(e,t){var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'commentRequest' when calling addTaskComment";if(void 0==t||null==t)throw"Missing the required parameter 'taskId' when calling addTaskComment";var o={taskId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.assignTask=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling assignTask";if(void 0==i||null==i)throw"Missing the required parameter 'requestNode' when calling assignTask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/assign","PUT",o,r,s,a,n,p,l,c,u)},this.attachForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling attachForm";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling attachForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/attach-form","PUT",n,o,r,s,i,a,p,l,c)},this.claimTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling claimTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/claim","PUT",i,n,o,r,t,s,a,p,l)},this.completeTaskForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling completeTaskForm";if(void 0==t||null==t)throw"Missing the required parameter 'completeTaskFormRepresentation' when calling completeTaskForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}","POST",n,o,r,s,i,a,p,l,c)},this.completeTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling completeTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/complete","PUT",i,n,o,r,t,s,a,p,l)},this.createNewTask=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'taskRepresentation' when calling createNewTask";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/tasks","POST",n,o,r,s,i,a,p,l,c)},this.createRelatedContentOnTask=function(e,t,i){i=i||{};var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling createRelatedContentOnTask";if(void 0==t||null==t)throw"Missing the required parameter 'relatedContent' when calling createRelatedContentOnTask";var o={taskId:e},s={isRelatedContent:i.isRelatedContent},a={},p={},l=[],c=["application/json"],u=["application/json"],d=r;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/content","POST",o,s,a,p,n,l,c,u,d)},this.createRelatedContentOnTask=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling createRelatedContentOnTask";if(void 0==t||null==t)throw"Missing the required parameter 'file' when calling createRelatedContentOnTask";var o={taskId:e},s={isRelatedContent:i.isRelatedContent},a={},p={file:t},l=[],c=["multipart/form-data"],u=["application/json"],d=r;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/raw-content","POST",o,s,a,p,n,l,c,u,d)},this.deleteTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling deleteTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}","DELETE",i,n,o,r,t,s,a,p,l)},this.filterTasks=function(e){var t=e;void 0!=e&&null!=e||(console.log("a"),t=new s);var i={},n={},o={},r={},p=[],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/api/enterprise/tasks/filter","POST",i,n,o,r,t,p,l,c,u)},this.getChecklist=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getChecklist";var i={taskId:e},n={},o={},r={},s=[],p=["application/json"],l=["application/json"],c=a;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","GET",i,n,o,r,t,s,p,l,c)},this.getRelatedContentForTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRelatedContentForTask";var i={taskId:e},n={},o={},r={},s=[],p=["application/json"],l=["application/json"],c=a;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/content","GET",i,n,o,r,t,s,p,l,c)},this.getRestFieldValuesColumn=function(e,t,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRestFieldValues";if(void 0==t||null==t)throw"Missing the required parameter 'field' when calling getRestFieldValues";if(void 0==i||null==i)throw"Missing the required parameter 'column' when calling getRestFieldValues";var o={taskId:e,field:t,column:i},r={},s={},a={},l=[],c=["application/json"],u=["application/json"],d=[p];return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/form-values/{field}/{column}","GET",o,r,s,a,n,l,c,u,d)},this.getRestFieldValues=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRestFieldValues";if(void 0==t||null==t)throw"Missing the required parameter 'field' when calling getRestFieldValues";var n={taskId:e,field:t},o={},r={},s={},a=[],l=["application/json"],c=["application/json"],u=[p];return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/form-values/{field}","GET",n,o,r,s,i,a,l,c,u)},this.getTaskComments=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskComments";var n={taskId:e},o={latestFirst:t.latestFirst},r={},s={},p=[],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/comments","GET",n,o,r,s,i,p,l,c,u)},this.getTaskForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskForm";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],c=l;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}","GET",i,n,o,r,t,s,a,p,c)},this.getTask=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTask";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}","GET",n,o,r,s,i,a,p,l,c)},this.involveUser=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling involveUser";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling involveUser";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/involve","PUT",n,o,r,s,i,a,p,l,c)},this.listTasks=function(e){var t=e||{},i={},n={},o={},r={},s=[],p=["application/json"],l=["application/json"],c=a;return this.apiClient.callApi("/api/enterprise/tasks/query","POST",i,n,o,r,t,s,p,l,c)},this.orderChecklist=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling orderChecklist";if(void 0==t||null==t)throw"Missing the required parameter 'orderRepresentation' when calling orderChecklist";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","PUT",n,o,r,s,i,a,p,l,c)},this.removeForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling removeForm";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/remove-form","DELETE",i,n,o,r,t,s,a,p,l)},this.removeInvolvedUser=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling removeInvolvedUser";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling removeInvolvedUser";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/remove-involved","PUT",n,o,r,s,i,a,p,l,c)},this.saveTaskForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling saveTaskForm";if(void 0==t||null==t)throw"Missing the required parameter 'saveTaskFormRepresentation' when calling saveTaskForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/save-form","POST",n,o,r,s,i,a,p,l,c)},this.unclaimTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling unclaimTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/unclaim","PUT",i,n,o,r,t,s,a,p,l)},this.updateTask=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling updateTask";if(void 0==i||null==i)throw"Missing the required parameter 'updated' when calling updateTask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}","PUT",o,r,s,a,n,p,l,c,u)}};return f})},{"../../../alfrescoApiClient":301,"../model/ChecklistOrderRepresentation":91,"../model/CommentRepresentation":92,"../model/CompleteFormRepresentation":93,"../model/FormDefinitionRepresentation":104,"../model/FormValueRepresentation":112,"../model/ObjectNode":126,"../model/RelatedContentRepresentation":138,"../model/ResultListDataRepresentation":143,"../model/SaveFormRepresentation":145,"../model/TaskFilterRequestRepresentation":149,"../model/TaskRepresentation":151,"../model/TaskUpdateRepresentation":152}],70:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/TaskRepresentation","../model/ResultListDataRepresentation","../model/ChecklistOrderRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/TaskRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/ChecklistOrderRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskCheckListApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.TaskRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ChecklistOrderRepresentation))}(void 0,function(e,t,i,n){var o=function(n){this.apiClient=n||e.instance,this.addSubtask=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling addSubtask";if(void 0==i||null==i)throw"Missing the required parameter 'taskRepresentation' when calling addSubtask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","POST",o,r,s,a,n,p,l,c,u)},this.getChecklist=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getChecklist";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","GET",n,o,r,s,t,a,p,l,c)},this.orderChecklist=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling orderChecklist";if(void 0==t||null==t)throw"Missing the required parameter 'orderRepresentation' when calling orderChecklist";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","PUT",n,o,r,s,i,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":301,"../model/ChecklistOrderRepresentation":91,"../model/ResultListDataRepresentation":143,"../model/TaskRepresentation":151}],71:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/CompleteFormRepresentation","../model/FormValueRepresentation","../model/FormDefinitionRepresentation","../model/SaveFormRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/CompleteFormRepresentation"),t("../model/FormValueRepresentation"),t("../model/FormDefinitionRepresentation"),t("../model/SaveFormRepresentation"),t("../model/ProcessInstanceVariableRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskFormsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.CompleteFormRepresentation,n.ActivitiPublicRestApi.FormValueRepresentation,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.SaveFormRepresentation,n.ActivitiPublicRestApi.ProcessInstanceVariableRepresentation))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.completeTaskForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling completeTaskForm";if(void 0==t||null==t)throw"Missing the required parameter 'completeTaskFormRepresentation' when calling completeTaskForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}","POST",n,o,r,s,i,a,p,l,c)},this.getRestFieldValues=function(e,t,n){var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRestFieldValues";if(void 0==t||null==t)throw"Missing the required parameter 'field' when calling getRestFieldValues";if(void 0==n||null==n)throw"Missing the required parameter 'column' when calling getRestFieldValues";var r={taskId:e,field:t,column:n},s={},a={},p={},l=[],c=["application/json"],u=["application/json"],d=[i];return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/form-values/{field}/{column}","GET",r,s,a,p,o,l,c,u,d)},this.getRestFieldValues=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRestFieldValues";if(void 0==t||null==t)throw"Missing the required parameter 'field' when calling getRestFieldValues";var o={taskId:e,field:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[i];return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/form-values/{field}","GET",o,r,s,a,n,p,l,c,u)},this.getTaskForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskForm";var i={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}","GET",i,o,r,s,t,a,p,l,c)},this.getTaskFormVariables=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskFormVariables";var i={taskId:e},n={},o={},s={},a=[],p=["application/json"],l=["application/json"],c=[r];return this.apiClient.callApi("/app/rest/task-forms/{taskId}/variables","GET",i,n,o,s,t,a,p,l,c)},this.saveTaskForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling saveTaskForm";if(void 0==t||null==t)throw"Missing the required parameter 'saveTaskFormRepresentation' when calling saveTaskForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/save-form","POST",n,o,r,s,i,a,p,l,c)}};return s})},{"../../../alfrescoApiClient":301,"../model/CompleteFormRepresentation":93,"../model/FormDefinitionRepresentation":104,"../model/FormValueRepresentation":112,"../model/ProcessInstanceVariableRepresentation":133,"../model/SaveFormRepresentation":145}],72:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ArrayNode"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ArrayNode")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TemporaryApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ArrayNode))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.completeTasks=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling completeTasks";if(void 0==t||null==t)throw"Missing the required parameter 'processDefinitionKey' when calling completeTasks";var n={},o={userId:e,processDefinitionKey:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/temporary/generate-report-data/complete-tasks","GET",n,o,r,s,i,a,p,l,c)},this.generateData=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling generateData";if(void 0==t||null==t)throw"Missing the required parameter 'processDefinitionKey' when calling generateData";var n={},o={userId:e,processDefinitionKey:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/temporary/generate-report-data/start-process","GET",n,o,r,s,i,a,p,l,c)},this.getHeaders=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/temporary/example-headers","GET",i,n,o,r,e,s,a,p,l)},this.getOptions=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/temporary/example-options","GET",i,n,o,r,e,s,a,p,l)}};return i})},{"../../../alfrescoApiClient":301,"../model/ArrayNode":86}],73:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/UserActionRepresentation","../model/UserRepresentation","../model/ResultListDataRepresentation","../model/ResetPasswordRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/UserActionRepresentation"),t("../model/UserRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/ResetPasswordRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.UserActionRepresentation,n.ActivitiPublicRestApi.UserRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ResetPasswordRepresentation))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.executeAction=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling executeAction";if(void 0==t||null==t)throw"Missing the required parameter 'actionRequest' when calling executeAction";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/users/{userId}","POST",n,o,r,s,i,a,p,l,c)},this.getProfilePicture=function(e){var t=null; -if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getProfilePicture";var i={userId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/users/{userId}/picture","GET",i,n,o,r,t,s,a,p,l)},this.getUser=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getUser";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/users/{userId}","GET",n,o,r,s,t,a,p,l,c)},this.getUsers=function(e){e=e||{};var t=null,i={},o={filter:e.filter,email:e.email,externalId:e.externalId,externalIdCaseInsensitive:e.externalIdCaseInsensitive,excludeTaskId:e.excludeTaskId,excludeProcessId:e.excludeProcessId,groupId:e.groupId,tenantId:e.tenantId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/users","GET",i,o,r,s,t,a,p,l,c)},this.requestPasswordReset=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'resetPassword' when calling requestPasswordReset";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/idm/passwords","POST",i,n,o,r,t,s,a,p,l)},this.updateUser=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling updateUser";if(void 0==t||null==t)throw"Missing the required parameter 'userRequest' when calling updateUser";var o={userId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/users/{userId}","PUT",o,r,s,a,n,p,l,c,u)}};return r})},{"../../../alfrescoApiClient":301,"../model/ResetPasswordRepresentation":141,"../model/ResultListDataRepresentation":143,"../model/UserActionRepresentation":156,"../model/UserRepresentation":159}],74:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/UserProcessInstanceFilterRepresentation","../model/UserTaskFilterRepresentation","../model/ResultListDataRepresentation","../model/UserFilterOrderRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/UserProcessInstanceFilterRepresentation"),t("../model/UserTaskFilterRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/UserFilterOrderRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserFiltersApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.UserProcessInstanceFilterRepresentation,n.ActivitiPublicRestApi.UserTaskFilterRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.UserFilterOrderRepresentation))}(void 0,function(e,t,i,n,o){var r=function(o){this.apiClient=o||e.instance,this.createUserProcessInstanceFilter=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'userProcessInstanceFilterRepresentation' when calling createUserProcessInstanceFilter";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/filters/processes","POST",n,o,r,s,i,a,p,l,c)},this.createUserTaskFilter=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'userTaskFilterRepresentation' when calling createUserTaskFilter";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/filters/tasks","POST",n,o,r,s,t,a,p,l,c)},this.deleteUserProcessInstanceFilter=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling deleteUserProcessInstanceFilter";var i={userFilterId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/filters/processes/{userFilterId}","DELETE",i,n,o,r,t,s,a,p,l)},this.deleteUserTaskFilter=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling deleteUserTaskFilter";var i={userFilterId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/filters/tasks/{userFilterId}","DELETE",i,n,o,r,t,s,a,p,l)},this.getUserProcessInstanceFilter=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling getUserProcessInstanceFilter";var n={userFilterId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/filters/processes/{userFilterId}","GET",n,o,r,s,i,a,p,l,c)},this.getUserProcessInstanceFilters=function(e){e=e||{};var t=null,i={},o={appId:e.appId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/filters/processes","GET",i,o,r,s,t,a,p,l,c)},this.getUserTaskFilter=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling getUserTaskFilter";var n={userFilterId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/filters/tasks/{userFilterId}","GET",n,o,r,s,t,a,p,l,c)},this.getUserTaskFilters=function(e){e=e||{};var t=null,i={},o={appId:e.appId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/filters/tasks","GET",i,o,r,s,t,a,p,l,c)},this.orderUserProcessInstanceFilters=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'filterOrderRepresentation' when calling orderUserProcessInstanceFilters";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/filters/processes","PUT",i,n,o,r,t,s,a,p,l)},this.orderUserTaskFilters=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'filterOrderRepresentation' when calling orderUserTaskFilters";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/filters/tasks","PUT",i,n,o,r,t,s,a,p,l)},this.updateUserProcessInstanceFilter=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling updateUserProcessInstanceFilter";if(void 0==i||null==i)throw"Missing the required parameter 'userProcessInstanceFilterRepresentation' when calling updateUserProcessInstanceFilter";var o={userFilterId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/filters/processes/{userFilterId}","PUT",o,r,s,a,n,p,l,c,u)},this.updateUserTaskFilter=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling updateUserTaskFilter";if(void 0==t||null==t)throw"Missing the required parameter 'userTaskFilterRepresentation' when calling updateUserTaskFilter";var o={userFilterId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/filters/tasks/{userFilterId}","PUT",o,r,s,a,n,p,l,c,u)}};return r})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143,"../model/UserFilterOrderRepresentation":157,"../model/UserProcessInstanceFilterRepresentation":158,"../model/UserTaskFilterRepresentation":160}],75:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UsersWorkflowApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getUsers=function(e){e=e||{};var i=null,n={},o={filter:e.filter,email:e.email,externalId:e.externalId,externalIdCaseInsensitive:e.externalIdCaseInsensitive,excludeTaskId:e.excludeTaskId,excludeProcessId:e.excludeProcessId,groupId:e.groupId,tenantId:e.tenantId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/users","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":301,"../model/ResultListDataRepresentation":143}],76:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n){"function"==typeof e&&e.amd?e(["../../alfrescoApiClient","./model/AbstractGroupRepresentation","./model/AbstractRepresentation","./model/AbstractUserRepresentation","./model/AddGroupCapabilitiesRepresentation","./model/AppDefinition","./model/AppDefinitionPublishRepresentation","./model/AppDefinitionRepresentation","./model/AppDefinitionUpdateResultRepresentation","./model/AppModelDefinition","./model/ArrayNode","./model/BoxUserAccountCredentialsRepresentation","./model/BulkUserUpdateRepresentation","./model/ChangePasswordRepresentation","./model/ChecklistOrderRepresentation","./model/CommentRepresentation","./model/CompleteFormRepresentation","./model/ConditionRepresentation","./model/CreateEndpointBasicAuthRepresentation","./model/CreateProcessInstanceRepresentation","./model/CreateTenantRepresentation","./model/EndpointBasicAuthRepresentation","./model/EndpointConfigurationRepresentation","./model/EndpointRequestHeaderRepresentation","./model/EntityAttributeScopeRepresentation","./model/EntityVariableScopeRepresentation","./model/File","./model/FormDefinitionRepresentation","./model/FormFieldRepresentation","./model/FormJavascriptEventRepresentation","./model/FormOutcomeRepresentation","./model/FormRepresentation","./model/FormSaveRepresentation","./model/FormScopeRepresentation","./model/FormTabRepresentation","./model/FormValueRepresentation","./model/GroupCapabilityRepresentation","./model/GroupRepresentation","./model/ImageUploadRepresentation","./model/LayoutRepresentation","./model/LightAppRepresentation","./model/LightGroupRepresentation","./model/LightTenantRepresentation","./model/LightUserRepresentation","./model/MaplongListstring","./model/MapstringListEntityVariableScopeRepresentation","./model/MapstringListVariableScopeRepresentation","./model/Mapstringstring","./model/ModelRepresentation","./model/ObjectNode","./model/OptionRepresentation","./model/ProcessFilterRequestRepresentation","./model/ProcessInstanceFilterRepresentation","./model/ProcessInstanceFilterRequestRepresentation","./model/ProcessInstanceRepresentation","./model/ProcessInstanceVariableRepresentation","./model/ProcessScopeIdentifierRepresentation","./model/ProcessScopeRepresentation","./model/ProcessScopesRequestRepresentation","./model/PublishIdentityInfoRepresentation","./model/RelatedContentRepresentation","./model/ResetPasswordRepresentation","./model/RestVariable","./model/ResultListDataRepresentation","./model/RuntimeAppDefinitionSaveRepresentation","./model/SaveFormRepresentation","./model/SyncLogEntryRepresentation","./model/SystemPropertiesRepresentation","./model/TaskFilterRepresentation","./model/TaskFilterRequestRepresentation","./model/TaskQueryRequestRepresentation","./model/TaskRepresentation","./model/TaskUpdateRepresentation","./model/TenantEvent","./model/TenantRepresentation","./model/UserAccountCredentialsRepresentation","./model/UserActionRepresentation","./model/UserFilterOrderRepresentation","./model/UserProcessInstanceFilterRepresentation","./model/UserRepresentation","./model/UserTaskFilterRepresentation","./model/ValidationErrorRepresentation","./model/VariableScopeRepresentation","./api/AboutApi","./api/AdminEndpointsApi","./api/AdminGroupsApi","./api/AdminTenantsApi","./api/AdminUsersApi","./api/AlfrescoApi","./api/AppsApi","./api/AppsDefinitionApi","./api/AppsRuntimeApi","./api/CommentsApi","./api/ContentApi","./api/ContentRenditionApi","./api/EditorApi","./api/GroupsApi","./api/IDMSyncApi","./api/IntegrationApi","./api/IntegrationAccountApi","./api/IntegrationAlfrescoCloudApi","./api/IntegrationAlfrescoOnPremiseApi","./api/IntegrationBoxApi","./api/IntegrationDriveApi","./api/ModelBpmnApi","./api/ModelJsonBpmnApi","./api/ModelsApi","./api/ModelsHistoryApi","./api/ProcessApi","./api/ProcessDefinitionsApi","./api/ProcessDefinitionsFormApi","./api/ProcessInstancesApi","./api/ProcessInstancesInformationApi","./api/ProcessInstancesListingApi","./api/ProcessInstanceVariablesApi","./api/ProcessScopeApi","./api/ProfileApi","./api/ScriptFileApi","./api/SystemPropertiesApi","./api/TaskApi","./api/TaskActionsApi","./api/TaskCheckListApi","./api/TaskFormsApi","./api/TemporaryApi","./api/UserApi","./api/UserFiltersApi","./api/UsersWorkflowApi","./api/ReportApi"],n):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports&&(i.exports=n(t("../../alfrescoApiClient"),t("./model/AbstractGroupRepresentation"),t("./model/AbstractRepresentation"),t("./model/AbstractUserRepresentation"),t("./model/AddGroupCapabilitiesRepresentation"),t("./model/AppDefinition"),t("./model/AppDefinitionPublishRepresentation"),t("./model/AppDefinitionRepresentation"),t("./model/AppDefinitionUpdateResultRepresentation"),t("./model/AppModelDefinition"),t("./model/ArrayNode"),t("./model/BoxUserAccountCredentialsRepresentation"),t("./model/BulkUserUpdateRepresentation"),t("./model/ChangePasswordRepresentation"),t("./model/ChecklistOrderRepresentation"),t("./model/CommentRepresentation"),t("./model/CompleteFormRepresentation"),t("./model/ConditionRepresentation"),t("./model/CreateEndpointBasicAuthRepresentation"),t("./model/CreateProcessInstanceRepresentation"),t("./model/CreateTenantRepresentation"),t("./model/EndpointBasicAuthRepresentation"),t("./model/EndpointConfigurationRepresentation"),t("./model/EndpointRequestHeaderRepresentation"),t("./model/EntityAttributeScopeRepresentation"),t("./model/EntityVariableScopeRepresentation"),t("./model/File"),t("./model/FormDefinitionRepresentation"),t("./model/FormFieldRepresentation"),t("./model/FormJavascriptEventRepresentation"),t("./model/FormOutcomeRepresentation"),t("./model/FormRepresentation"),t("./model/FormSaveRepresentation"),t("./model/FormScopeRepresentation"),t("./model/FormTabRepresentation"),t("./model/FormValueRepresentation"),t("./model/GroupCapabilityRepresentation"),t("./model/GroupRepresentation"),t("./model/ImageUploadRepresentation"),t("./model/LayoutRepresentation"),t("./model/LightAppRepresentation"),t("./model/LightGroupRepresentation"),t("./model/LightTenantRepresentation"),t("./model/LightUserRepresentation"),t("./model/MaplongListstring"),t("./model/MapstringListEntityVariableScopeRepresentation"),t("./model/MapstringListVariableScopeRepresentation"),t("./model/Mapstringstring"),t("./model/ModelRepresentation"),t("./model/ObjectNode"),t("./model/OptionRepresentation"),t("./model/ProcessFilterRequestRepresentation"),t("./model/ProcessInstanceFilterRepresentation"),t("./model/ProcessInstanceFilterRequestRepresentation"),t("./model/ProcessInstanceRepresentation"),t("./model/ProcessInstanceVariableRepresentation"),t("./model/ProcessScopeIdentifierRepresentation"),t("./model/ProcessScopeRepresentation"),t("./model/ProcessScopesRequestRepresentation"),t("./model/PublishIdentityInfoRepresentation"),t("./model/RelatedContentRepresentation"),t("./model/ResetPasswordRepresentation"),t("./model/RestVariable"),t("./model/ResultListDataRepresentation"),t("./model/RuntimeAppDefinitionSaveRepresentation"),t("./model/SaveFormRepresentation"),t("./model/SyncLogEntryRepresentation"),t("./model/SystemPropertiesRepresentation"),t("./model/TaskFilterRepresentation"),t("./model/TaskFilterRequestRepresentation"),t("./model/TaskQueryRequestRepresentation"),t("./model/TaskRepresentation"),t("./model/TaskUpdateRepresentation"),t("./model/TenantEvent"),t("./model/TenantRepresentation"),t("./model/UserAccountCredentialsRepresentation"),t("./model/UserActionRepresentation"),t("./model/UserFilterOrderRepresentation"),t("./model/UserProcessInstanceFilterRepresentation"),t("./model/UserRepresentation"),t("./model/UserTaskFilterRepresentation"),t("./model/ValidationErrorRepresentation"),t("./model/VariableScopeRepresentation"),t("./api/AboutApi"),t("./api/AdminEndpointsApi"),t("./api/AdminGroupsApi"),t("./api/AdminTenantsApi"),t("./api/AdminUsersApi"),t("./api/AlfrescoApi"),t("./api/AppsApi"),t("./api/AppsDefinitionApi"),t("./api/AppsRuntimeApi"),t("./api/CommentsApi"),t("./api/ContentApi"),t("./api/ContentRenditionApi"),t("./api/EditorApi"),t("./api/GroupsApi"),t("./api/IDMSyncApi"),t("./api/IntegrationApi"),t("./api/IntegrationAccountApi"),t("./api/IntegrationAlfrescoCloudApi"),t("./api/IntegrationAlfrescoOnPremiseApi"),t("./api/IntegrationBoxApi"),t("./api/IntegrationDriveApi"),t("./api/ModelBpmnApi"),t("./api/ModelJsonBpmnApi"),t("./api/ModelsApi"),t("./api/ModelsHistoryApi"),t("./api/ProcessApi"),t("./api/ProcessDefinitionsApi"),t("./api/ProcessDefinitionsFormApi"),t("./api/ProcessInstancesApi"),t("./api/ProcessInstancesInformationApi"),t("./api/ProcessInstancesListingApi"),t("./api/ProcessInstanceVariablesApi"),t("./api/ProcessScopeApi"),t("./api/ProfileApi"),t("./api/ScriptFileApi"),t("./api/SystemPropertiesApi"),t("./api/TaskApi"),t("./api/TaskActionsApi"),t("./api/TaskCheckListApi"),t("./api/TaskFormsApi"),t("./api/TemporaryApi"),t("./api/UserApi"),t("./api/UserFiltersApi"),t("./api/UsersWorkflowApi"),t("./api/ReportApi")))}(function(e,t,i,n,o,r,s,a,p,l,c,u,d,f,y,m,h,v,A,b,g,C,R,P,w,S,T,I,j,O,E,M,k,F,x,N,_,D,B,q,L,U,G,V,z,H,K,Y,W,$,J,X,Q,Z,ee,te,ie,ne,oe,re,se,ae,pe,le,ce,ue,de,fe,ye,me,he,ve,Ae,be,ge,Ce,Re,Pe,we,Se,Te,Ie,je,Oe,Ee,Me,ke,Fe,xe,Ne,_e,De,Be,qe,Le,Ue,Ge,Ve,ze,He,Ke,Ye,We,$e,Je,Xe,Qe,Ze,et,tt,it,nt,ot,rt,st,at,pt,lt,ct,ut,dt,ft,yt,mt,ht,vt,At,bt){var gt={ApiClient:e,AbstractGroupRepresentation:t,AbstractRepresentation:i,AbstractUserRepresentation:n,AddGroupCapabilitiesRepresentation:o,AppDefinition:r,AppDefinitionPublishRepresentation:s,AppDefinitionRepresentation:a,AppDefinitionUpdateResultRepresentation:p,AppModelDefinition:l,ArrayNode:c,BoxUserAccountCredentialsRepresentation:u,BulkUserUpdateRepresentation:d,ChangePasswordRepresentation:f,ChecklistOrderRepresentation:y,CommentRepresentation:m,CompleteFormRepresentation:h,ConditionRepresentation:v,CreateEndpointBasicAuthRepresentation:A,CreateProcessInstanceRepresentation:b,CreateTenantRepresentation:g,EndpointBasicAuthRepresentation:C,EndpointConfigurationRepresentation:R,EndpointRequestHeaderRepresentation:P,EntityAttributeScopeRepresentation:w,EntityVariableScopeRepresentation:S,File:T,FormDefinitionRepresentation:I,FormFieldRepresentation:j,FormJavascriptEventRepresentation:O,FormOutcomeRepresentation:E,FormRepresentation:M,FormSaveRepresentation:k,FormScopeRepresentation:F,FormTabRepresentation:x,FormValueRepresentation:N,GroupCapabilityRepresentation:_,GroupRepresentation:D,ImageUploadRepresentation:B,LayoutRepresentation:q,LightAppRepresentation:L,LightGroupRepresentation:U,LightTenantRepresentation:G,LightUserRepresentation:V,MaplongListstring:z,MapstringListEntityVariableScopeRepresentation:H,MapstringListVariableScopeRepresentation:K,Mapstringstring:Y,ModelRepresentation:W,ObjectNode:$,OptionRepresentation:J,ProcessFilterRequestRepresentation:X,ProcessInstanceFilterRepresentation:Q,ProcessInstanceFilterRequestRepresentation:Z,ProcessInstanceRepresentation:ee,ProcessInstanceVariableRepresentation:te,ProcessScopeIdentifierRepresentation:ie,ProcessScopeRepresentation:ne,ProcessScopesRequestRepresentation:oe,PublishIdentityInfoRepresentation:re,RelatedContentRepresentation:se,ResetPasswordRepresentation:ae,RestVariable:pe,ResultListDataRepresentation:le,RuntimeAppDefinitionSaveRepresentation:ce,SaveFormRepresentation:ue,SyncLogEntryRepresentation:de,SystemPropertiesRepresentation:fe,TaskFilterRepresentation:ye,TaskFilterRequestRepresentation:me,TaskQueryRequestRepresentation:he,TaskRepresentation:ve,TaskUpdateRepresentation:Ae,TenantEvent:be,TenantRepresentation:ge,UserAccountCredentialsRepresentation:Ce,UserActionRepresentation:Re,UserFilterOrderRepresentation:Pe,UserProcessInstanceFilterRepresentation:we,UserRepresentation:Se,UserTaskFilterRepresentation:Te,ValidationErrorRepresentation:Ie,VariableScopeRepresentation:je,AboutApi:Oe,AdminEndpointsApi:Ee,AdminGroupsApi:Me,AdminTenantsApi:ke,AdminUsersApi:Fe,AlfrescoApi:xe,AppsApi:Ne,AppsDefinitionApi:_e,AppsRuntimeApi:De,CommentsApi:Be,ContentApi:qe,ContentRenditionApi:Le,EditorApi:Ue,GroupsApi:Ge,IDMSyncApi:Ve,IntegrationApi:ze,IntegrationAccountApi:He,IntegrationAlfrescoCloudApi:Ke,IntegrationAlfrescoOnPremiseApi:Ye,IntegrationBoxApi:We,IntegrationDriveApi:$e,ModelBpmnApi:Je,ModelJsonBpmnApi:Xe,ModelsApi:Qe,ModelsHistoryApi:Ze,ProcessApi:et,ProcessDefinitionsApi:tt,ProcessDefinitionsFormApi:it,ProcessInstancesApi:nt,ProcessInstancesInformationApi:ot,ProcessInstancesListingApi:rt,ProcessScopeApi:at,ProcessInstanceVariablesApi:st,ProfileApi:pt,ScriptFileApi:lt,SystemPropertiesApi:ct,TaskApi:ut,TaskActionsApi:dt,TaskCheckListApi:ft,TaskFormsApi:yt,TemporaryApi:mt,UserApi:ht,UserFiltersApi:vt,UsersWorkflowApi:At,ReportApi:bt};return gt})},{"../../alfrescoApiClient":301,"./api/AboutApi":31,"./api/AdminEndpointsApi":32,"./api/AdminGroupsApi":33,"./api/AdminTenantsApi":34,"./api/AdminUsersApi":35,"./api/AlfrescoApi":36,"./api/AppsApi":37,"./api/AppsDefinitionApi":38,"./api/AppsRuntimeApi":39,"./api/CommentsApi":40,"./api/ContentApi":41,"./api/ContentRenditionApi":42,"./api/EditorApi":43,"./api/GroupsApi":44,"./api/IDMSyncApi":45,"./api/IntegrationAccountApi":46,"./api/IntegrationAlfrescoCloudApi":47,"./api/IntegrationAlfrescoOnPremiseApi":48,"./api/IntegrationApi":49,"./api/IntegrationBoxApi":50,"./api/IntegrationDriveApi":51,"./api/ModelBpmnApi":52,"./api/ModelJsonBpmnApi":53,"./api/ModelsApi":54,"./api/ModelsHistoryApi":55,"./api/ProcessApi":56,"./api/ProcessDefinitionsApi":57,"./api/ProcessDefinitionsFormApi":58,"./api/ProcessInstanceVariablesApi":59,"./api/ProcessInstancesApi":60,"./api/ProcessInstancesInformationApi":61,"./api/ProcessInstancesListingApi":62,"./api/ProcessScopeApi":63,"./api/ProfileApi":64,"./api/ReportApi":65,"./api/ScriptFileApi":66,"./api/SystemPropertiesApi":67,"./api/TaskActionsApi":68,"./api/TaskApi":69,"./api/TaskCheckListApi":70,"./api/TaskFormsApi":71,"./api/TemporaryApi":72,"./api/UserApi":73,"./api/UserFiltersApi":74,"./api/UsersWorkflowApi":75,"./model/AbstractGroupRepresentation":77,"./model/AbstractRepresentation":78,"./model/AbstractUserRepresentation":79,"./model/AddGroupCapabilitiesRepresentation":80,"./model/AppDefinition":81,"./model/AppDefinitionPublishRepresentation":82,"./model/AppDefinitionRepresentation":83,"./model/AppDefinitionUpdateResultRepresentation":84,"./model/AppModelDefinition":85,"./model/ArrayNode":86,"./model/BoxUserAccountCredentialsRepresentation":87,"./model/BulkUserUpdateRepresentation":88,"./model/ChangePasswordRepresentation":89,"./model/ChecklistOrderRepresentation":91,"./model/CommentRepresentation":92,"./model/CompleteFormRepresentation":93,"./model/ConditionRepresentation":94,"./model/CreateEndpointBasicAuthRepresentation":95,"./model/CreateProcessInstanceRepresentation":96,"./model/CreateTenantRepresentation":97,"./model/EndpointBasicAuthRepresentation":98,"./model/EndpointConfigurationRepresentation":99,"./model/EndpointRequestHeaderRepresentation":100,"./model/EntityAttributeScopeRepresentation":101,"./model/EntityVariableScopeRepresentation":102,"./model/File":103,"./model/FormDefinitionRepresentation":104,"./model/FormFieldRepresentation":105,"./model/FormJavascriptEventRepresentation":106,"./model/FormOutcomeRepresentation":107,"./model/FormRepresentation":108,"./model/FormSaveRepresentation":109,"./model/FormScopeRepresentation":110,"./model/FormTabRepresentation":111,"./model/FormValueRepresentation":112,"./model/GroupCapabilityRepresentation":113,"./model/GroupRepresentation":114,"./model/ImageUploadRepresentation":115,"./model/LayoutRepresentation":116,"./model/LightAppRepresentation":117,"./model/LightGroupRepresentation":118,"./model/LightTenantRepresentation":119,"./model/LightUserRepresentation":120,"./model/MaplongListstring":121,"./model/MapstringListEntityVariableScopeRepresentation":122,"./model/MapstringListVariableScopeRepresentation":123,"./model/Mapstringstring":124,"./model/ModelRepresentation":125,"./model/ObjectNode":126,"./model/OptionRepresentation":127,"./model/ProcessFilterRequestRepresentation":129,"./model/ProcessInstanceFilterRepresentation":130,"./model/ProcessInstanceFilterRequestRepresentation":131,"./model/ProcessInstanceRepresentation":132,"./model/ProcessInstanceVariableRepresentation":133,"./model/ProcessScopeIdentifierRepresentation":134,"./model/ProcessScopeRepresentation":135,"./model/ProcessScopesRequestRepresentation":136,"./model/PublishIdentityInfoRepresentation":137,"./model/RelatedContentRepresentation":138,"./model/ResetPasswordRepresentation":141,"./model/RestVariable":142,"./model/ResultListDataRepresentation":143,"./model/RuntimeAppDefinitionSaveRepresentation":144,"./model/SaveFormRepresentation":145,"./model/SyncLogEntryRepresentation":146,"./model/SystemPropertiesRepresentation":147,"./model/TaskFilterRepresentation":148,"./model/TaskFilterRequestRepresentation":149,"./model/TaskQueryRequestRepresentation":150,"./model/TaskRepresentation":151,"./model/TaskUpdateRepresentation":152,"./model/TenantEvent":153,"./model/TenantRepresentation":154,"./model/UserAccountCredentialsRepresentation":155,"./model/UserActionRepresentation":156,"./model/UserFilterOrderRepresentation":157,"./model/UserProcessInstanceFilterRepresentation":158,"./model/UserRepresentation":159,"./model/UserTaskFilterRepresentation":160,"./model/ValidationErrorRepresentation":161,"./model/VariableScopeRepresentation":162}],77:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AbstractGroupRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("externalId")&&(n.externalId=e.convertToType(i.externalId,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("status")&&(n.status=e.convertToType(i.status,"String"))),n},t.prototype.externalId=void 0,t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.status=void 0,t})},{"../../../alfrescoApiClient":301}],78:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AbstractRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(e,i){return e&&(i=e||new t),i},t})},{"../../../alfrescoApiClient":301}],79:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AbstractUserRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("email")&&(n.email=e.convertToType(i.email,"String")),i.hasOwnProperty("externalId")&&(n.externalId=e.convertToType(i.externalId,"String")),i.hasOwnProperty("firstName")&&(n.firstName=e.convertToType(i.firstName,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastName")&&(n.lastName=e.convertToType(i.lastName,"String")),i.hasOwnProperty("pictureId")&&(n.pictureId=e.convertToType(i.pictureId,"Integer"))),n},t.prototype.email=void 0,t.prototype.externalId=void 0,t.prototype.firstName=void 0,t.prototype.id=void 0,t.prototype.lastName=void 0,t.prototype.pictureId=void 0,t})},{"../../../alfrescoApiClient":301}],80:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AddGroupCapabilitiesRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("capabilities")&&(n.capabilities=e.convertToType(i.capabilities,["String"]))),n},t.prototype.capabilities=void 0,t})},{"../../../alfrescoApiClient":301}],81:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AppModelDefinition","../model/PublishIdentityInfoRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./AppModelDefinition"),t("./PublishIdentityInfoRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppDefinition=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AppModelDefinition,n.ActivitiPublicRestApi.PublishIdentityInfoRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("icon")&&(r.icon=e.convertToType(o.icon,"String")),o.hasOwnProperty("models")&&(r.models=e.convertToType(o.models,[t])),o.hasOwnProperty("publishIdentityInfo")&&(r.publishIdentityInfo=e.convertToType(o.publishIdentityInfo,[i])),o.hasOwnProperty("theme")&&(r.theme=e.convertToType(o.theme,"String"))),r},n.prototype.icon=void 0,n.prototype.models=void 0,n.prototype.publishIdentityInfo=void 0,n.prototype.theme=void 0,n})},{"../../../alfrescoApiClient":301,"./AppModelDefinition":85, -"./PublishIdentityInfoRepresentation":137}],82:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppDefinitionPublishRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("comment")&&(n.comment=e.convertToType(i.comment,"String")),i.hasOwnProperty("force")&&(n.force=e.convertToType(i.force,"Boolean"))),n},t.prototype.comment=void 0,t.prototype.force=void 0,t})},{"../../../alfrescoApiClient":301}],83:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppDefinitionRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("defaultAppId")&&(n.defaultAppId=e.convertToType(i.defaultAppId,"String")),i.hasOwnProperty("deploymentId")&&(n.deploymentId=e.convertToType(i.deploymentId,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("icon")&&(n.icon=e.convertToType(i.icon,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("modelId")&&(n.modelId=e.convertToType(i.modelId,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("theme")&&(n.theme=e.convertToType(i.theme,"String"))),n},t.prototype.defaultAppId=void 0,t.prototype.deploymentId=void 0,t.prototype.description=void 0,t.prototype.icon=void 0,t.prototype.id=void 0,t.prototype.modelId=void 0,t.prototype.name=void 0,t.prototype.tenantId=void 0,t.prototype.theme=void 0,t})},{"../../../alfrescoApiClient":301}],84:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AppDefinitionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./AppDefinitionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppDefinitionUpdateResultRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AppDefinitionRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appDefinition")&&(o.appDefinition=t.constructFromObject(n.appDefinition)),n.hasOwnProperty("customData")&&(o.customData=e.convertToType(n.customData,Object)),n.hasOwnProperty("error")&&(o.error=e.convertToType(n.error,"Boolean")),n.hasOwnProperty("errorDescription")&&(o.errorDescription=e.convertToType(n.errorDescription,"String")),n.hasOwnProperty("errorType")&&(o.errorType=e.convertToType(n.errorType,"Integer")),n.hasOwnProperty("message")&&(o.message=e.convertToType(n.message,"String")),n.hasOwnProperty("messageKey")&&(o.messageKey=e.convertToType(n.messageKey,"String"))),o},i.prototype.appDefinition=void 0,i.prototype.customData=void 0,i.prototype.error=void 0,i.prototype.errorDescription=void 0,i.prototype.errorType=void 0,i.prototype.message=void 0,i.prototype.messageKey=void 0,i})},{"../../../alfrescoApiClient":301,"./AppDefinitionRepresentation":83}],85:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppModelDefinition=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("createdBy")&&(n.createdBy=e.convertToType(i.createdBy,"Integer")),i.hasOwnProperty("createdByFullName")&&(n.createdByFullName=e.convertToType(i.createdByFullName,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastUpdated")&&(n.lastUpdated=e.convertToType(i.lastUpdated,"Date")),i.hasOwnProperty("lastUpdatedBy")&&(n.lastUpdatedBy=e.convertToType(i.lastUpdatedBy,"Integer")),i.hasOwnProperty("lastUpdatedByFullName")&&(n.lastUpdatedByFullName=e.convertToType(i.lastUpdatedByFullName,"String")),i.hasOwnProperty("modelType")&&(n.modelType=e.convertToType(i.modelType,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("stencilSetId")&&(n.stencilSetId=e.convertToType(i.stencilSetId,"Integer")),i.hasOwnProperty("version")&&(n.version=e.convertToType(i.version,"Integer"))),n},t.prototype.createdBy=void 0,t.prototype.createdByFullName=void 0,t.prototype.description=void 0,t.prototype.id=void 0,t.prototype.lastUpdated=void 0,t.prototype.lastUpdatedBy=void 0,t.prototype.lastUpdatedByFullName=void 0,t.prototype.modelType=void 0,t.prototype.name=void 0,t.prototype.stencilSetId=void 0,t.prototype.version=void 0,t})},{"../../../alfrescoApiClient":301}],86:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ArrayNode=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("array")&&(n.array=e.convertToType(i.array,"Boolean")),i.hasOwnProperty("bigDecimal")&&(n.bigDecimal=e.convertToType(i.bigDecimal,"Boolean")),i.hasOwnProperty("bigInteger")&&(n.bigInteger=e.convertToType(i.bigInteger,"Boolean")),i.hasOwnProperty("binary")&&(n.binary=e.convertToType(i.binary,"Boolean")),i.hasOwnProperty("boolean")&&(n.boolean=e.convertToType(i.boolean,"Boolean")),i.hasOwnProperty("containerNode")&&(n.containerNode=e.convertToType(i.containerNode,"Boolean")),i.hasOwnProperty("double")&&(n.double=e.convertToType(i.double,"Boolean")),i.hasOwnProperty("float")&&(n.float=e.convertToType(i.float,"Boolean")),i.hasOwnProperty("floatingPointNumber")&&(n.floatingPointNumber=e.convertToType(i.floatingPointNumber,"Boolean")),i.hasOwnProperty("int")&&(n.int=e.convertToType(i.int,"Boolean")),i.hasOwnProperty("integralNumber")&&(n.integralNumber=e.convertToType(i.integralNumber,"Boolean")),i.hasOwnProperty("long")&&(n.long=e.convertToType(i.long,"Boolean")),i.hasOwnProperty("missingNode")&&(n.missingNode=e.convertToType(i.missingNode,"Boolean")),i.hasOwnProperty("nodeType")&&(n.nodeType=e.convertToType(i.nodeType,"String")),i.hasOwnProperty("null")&&(n.null=e.convertToType(i.null,"Boolean")),i.hasOwnProperty("number")&&(n.number=e.convertToType(i.number,"Boolean")),i.hasOwnProperty("object")&&(n.object=e.convertToType(i.object,"Boolean")),i.hasOwnProperty("pojo")&&(n.pojo=e.convertToType(i.pojo,"Boolean")),i.hasOwnProperty("short")&&(n.short=e.convertToType(i.short,"Boolean")),i.hasOwnProperty("textual")&&(n.textual=e.convertToType(i.textual,"Boolean")),i.hasOwnProperty("valueNode")&&(n.valueNode=e.convertToType(i.valueNode,"Boolean"))),n},t.prototype.array=void 0,t.prototype.bigDecimal=void 0,t.prototype.bigInteger=void 0,t.prototype.binary=void 0,t.prototype.boolean=void 0,t.prototype.containerNode=void 0,t.prototype.double=void 0,t.prototype.float=void 0,t.prototype.floatingPointNumber=void 0,t.prototype.int=void 0,t.prototype.integralNumber=void 0,t.prototype.long=void 0,t.prototype.missingNode=void 0,t.prototype.nodeType=void 0,t.prototype.null=void 0,t.prototype.number=void 0,t.prototype.object=void 0,t.prototype.pojo=void 0,t.prototype.short=void 0,t.prototype.textual=void 0,t.prototype.valueNode=void 0,t.NodeTypeEnum={ARRAY:"ARRAY",BINARY:"BINARY",BOOLEAN:"BOOLEAN",MISSING:"MISSING",NULL:"NULL",NUMBER:"NUMBER",OBJECT:"OBJECT",POJO:"POJO",STRING:"STRING"},t})},{"../../../alfrescoApiClient":301}],87:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.BoxUserAccountCredentialsRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("authenticationURL")&&(n.authenticationURL=e.convertToType(i.authenticationURL,"String")),i.hasOwnProperty("expireDate")&&(n.expireDate=e.convertToType(i.expireDate,"Date")),i.hasOwnProperty("ownerEmail")&&(n.ownerEmail=e.convertToType(i.ownerEmail,"String"))),n},t.prototype.authenticationURL=void 0,t.prototype.expireDate=void 0,t.prototype.ownerEmail=void 0,t})},{"../../../alfrescoApiClient":301}],88:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.BulkUserUpdateRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("accountType")&&(n.accountType=e.convertToType(i.accountType,"String")),i.hasOwnProperty("password")&&(n.password=e.convertToType(i.password,"String")),i.hasOwnProperty("sendNotifications")&&(n.sendNotifications=e.convertToType(i.sendNotifications,"Boolean")),i.hasOwnProperty("status")&&(n.status=e.convertToType(i.status,"String")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("users")&&(n.users=e.convertToType(i.users,["Integer"]))),n},t.prototype.accountType=void 0,t.prototype.password=void 0,t.prototype.sendNotifications=void 0,t.prototype.status=void 0,t.prototype.tenantId=void 0,t.prototype.users=void 0,t})},{"../../../alfrescoApiClient":301}],89:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ChangePasswordRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("newPassword")&&(n.newPassword=e.convertToType(i.newPassword,"String")),i.hasOwnProperty("oldPassword")&&(n.oldPassword=e.convertToType(i.oldPassword,"String"))),n},t.prototype.newPassword=void 0,t.prototype.oldPassword=void 0,t})},{"../../../alfrescoApiClient":301}],90:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.Chart=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String"))),n},t.prototype.id=void 0,t.prototype.type=void 0,t})},{"../../../alfrescoApiClient":301}],91:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ChecklistOrderRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("order")&&(n.order=e.convertToType(i.order,["String"]))),n},t.prototype.order=void 0,t})},{"../../../alfrescoApiClient":301}],92:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightUserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightUserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CommentRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightUserRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("created")&&(o.created=e.convertToType(n.created,"Date")),n.hasOwnProperty("createdBy")&&(o.createdBy=t.constructFromObject(n.createdBy)),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("message")&&(o.message=e.convertToType(n.message,"String"))),o},i.prototype.created=void 0,i.prototype.createdBy=void 0,i.prototype.id=void 0,i.prototype.message=void 0,i})},{"../../../alfrescoApiClient":301,"./LightUserRepresentation":120}],93:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CompleteFormRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("outcome")&&(n.outcome=e.convertToType(i.outcome,"String")),i.hasOwnProperty("values")&&(n.values=e.convertToType(i.values,Object))),n},t.prototype.outcome=void 0,t.prototype.values=void 0,t})},{"../../../alfrescoApiClient":301}],94:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ConditionRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("leftFormFieldId")&&(n.leftFormFieldId=e.convertToType(i.leftFormFieldId,"String")),i.hasOwnProperty("leftRestResponseId")&&(n.leftRestResponseId=e.convertToType(i.leftRestResponseId,"String")),i.hasOwnProperty("nextConditionOperator")&&(n.nextConditionOperator=e.convertToType(i.nextConditionOperator,"String")),i.hasOwnProperty("operator")&&(n.operator=e.convertToType(i.operator,"String")),i.hasOwnProperty("rightFormFieldId")&&(n.rightFormFieldId=e.convertToType(i.rightFormFieldId,"String")),i.hasOwnProperty("rightRestResponseId")&&(n.rightRestResponseId=e.convertToType(i.rightRestResponseId,"String")),i.hasOwnProperty("rightType")&&(n.rightType=e.convertToType(i.rightType,"String")),i.hasOwnProperty("rightValue")&&(n.rightValue=e.convertToType(i.rightValue,Object))),n},t.prototype.leftFormFieldId=void 0,t.prototype.leftRestResponseId=void 0,t.prototype.nextConditionOperator=void 0,t.prototype.operator=void 0,t.prototype.rightFormFieldId=void 0,t.prototype.rightRestResponseId=void 0,t.prototype.rightType=void 0,t.prototype.rightValue=void 0,t})},{"../../../alfrescoApiClient":301}],95:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CreateEndpointBasicAuthRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("password")&&(n.password=e.convertToType(i.password,"String")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("username")&&(n.username=e.convertToType(i.username,"String"))),n},t.prototype.name=void 0,t.prototype.password=void 0,t.prototype.tenantId=void 0,t.prototype.username=void 0,t})},{"../../../alfrescoApiClient":301}],96:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CreateProcessInstanceRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("outcome")&&(n.outcome=e.convertToType(i.outcome,"String")),i.hasOwnProperty("processDefinitionId")&&(n.processDefinitionId=e.convertToType(i.processDefinitionId,"String")),i.hasOwnProperty("values")&&(n.values=e.convertToType(i.values,Object))),n},t.prototype.name=void 0,t.prototype.outcome=void 0,t.prototype.processDefinitionId=void 0,t.prototype.values=void 0,t})},{"../../../alfrescoApiClient":301}],97:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CreateTenantRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("active")&&(n.active=e.convertToType(i.active,"Boolean")),i.hasOwnProperty("domain")&&(n.domain=e.convertToType(i.domain,"String")),i.hasOwnProperty("maxUsers")&&(n.maxUsers=e.convertToType(i.maxUsers,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.active=void 0,t.prototype.domain=void 0,t.prototype.maxUsers=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":301}],98:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EndpointBasicAuthRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("created")&&(n.created=e.convertToType(i.created,"Date")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastUpdated")&&(n.lastUpdated=e.convertToType(i.lastUpdated,"Date")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("username")&&(n.username=e.convertToType(i.username,"String"))),n},t.prototype.created=void 0,t.prototype.id=void 0,t.prototype.lastUpdated=void 0,t.prototype.name=void 0,t.prototype.tenantId=void 0,t.prototype.username=void 0,t})},{"../../../alfrescoApiClient":301}],99:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/EndpointRequestHeaderRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./EndpointRequestHeaderRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EndpointConfigurationRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.EndpointRequestHeaderRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("basicAuthId")&&(o.basicAuthId=e.convertToType(n.basicAuthId,"Integer")),n.hasOwnProperty("basicAuthName")&&(o.basicAuthName=e.convertToType(n.basicAuthName,"String")),n.hasOwnProperty("host")&&(o.host=e.convertToType(n.host,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("path")&&(o.path=e.convertToType(n.path,"String")),n.hasOwnProperty("port")&&(o.port=e.convertToType(n.port,"String")),n.hasOwnProperty("protocol")&&(o.protocol=e.convertToType(n.protocol,"String")),n.hasOwnProperty("requestHeaders")&&(o.requestHeaders=e.convertToType(n.requestHeaders,[t])),n.hasOwnProperty("tenantId")&&(o.tenantId=e.convertToType(n.tenantId,"Integer"))),o},i.prototype.basicAuthId=void 0,i.prototype.basicAuthName=void 0,i.prototype.host=void 0,i.prototype.id=void 0,i.prototype.name=void 0,i.prototype.path=void 0,i.prototype.port=void 0,i.prototype.protocol=void 0,i.prototype.requestHeaders=void 0,i.prototype.tenantId=void 0,i})},{"../../../alfrescoApiClient":301,"./EndpointRequestHeaderRepresentation":100}],100:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EndpointRequestHeaderRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("value")&&(n.value=e.convertToType(i.value,"String"))),n},t.prototype.name=void 0,t.prototype.value=void 0,t})},{"../../../alfrescoApiClient":301}],101:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EntityAttributeScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String"))),n},t.prototype.name=void 0,t.prototype.type=void 0,t})},{"../../../alfrescoApiClient":301}],102:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/EntityAttributeScopeRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./EntityAttributeScopeRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EntityVariableScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.EntityAttributeScopeRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("attributes")&&(o.attributes=e.convertToType(n.attributes,[t])),n.hasOwnProperty("entityName")&&(o.entityName=e.convertToType(n.entityName,"String")),n.hasOwnProperty("mappedDataModel")&&(o.mappedDataModel=e.convertToType(n.mappedDataModel,"Integer")),n.hasOwnProperty("mappedVariableName")&&(o.mappedVariableName=e.convertToType(n.mappedVariableName,"String"))),o},i.prototype.attributes=void 0,i.prototype.entityName=void 0,i.prototype.mappedDataModel=void 0,i.prototype.mappedVariableName=void 0,i})},{"../../../alfrescoApiClient":301,"./EntityAttributeScopeRepresentation":101}],103:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.File=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("absolute")&&(n.absolute=e.convertToType(i.absolute,"Boolean")),i.hasOwnProperty("absoluteFile")&&(n.absoluteFile=e.convertToType(i.absoluteFile,File)),i.hasOwnProperty("absolutePath")&&(n.absolutePath=e.convertToType(i.absolutePath,"String")),i.hasOwnProperty("canonicalFile")&&(n.canonicalFile=e.convertToType(i.canonicalFile,File)),i.hasOwnProperty("canonicalPath")&&(n.canonicalPath=e.convertToType(i.canonicalPath,"String")),i.hasOwnProperty("directory")&&(n.directory=e.convertToType(i.directory,"Boolean")),i.hasOwnProperty("file")&&(n.file=e.convertToType(i.file,"Boolean")),i.hasOwnProperty("freeSpace")&&(n.freeSpace=e.convertToType(i.freeSpace,"Integer")),i.hasOwnProperty("hidden")&&(n.hidden=e.convertToType(i.hidden,"Boolean")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("parent")&&(n.parent=e.convertToType(i.parent,"String")),i.hasOwnProperty("parentFile")&&(n.parentFile=e.convertToType(i.parentFile,File)),i.hasOwnProperty("path")&&(n.path=e.convertToType(i.path,"String")),i.hasOwnProperty("totalSpace")&&(n.totalSpace=e.convertToType(i.totalSpace,"Integer")),i.hasOwnProperty("usableSpace")&&(n.usableSpace=e.convertToType(i.usableSpace,"Integer"))),n},t.prototype.absolute=void 0,t.prototype.absoluteFile=void 0,t.prototype.absolutePath=void 0,t.prototype.canonicalFile=void 0,t.prototype.canonicalPath=void 0,t.prototype.directory=void 0,t.prototype.file=void 0,t.prototype.freeSpace=void 0,t.prototype.hidden=void 0,t.prototype.name=void 0,t.prototype.parent=void 0,t.prototype.parentFile=void 0,t.prototype.path=void 0,t.prototype.totalSpace=void 0,t.prototype.usableSpace=void 0,t})},{"../../../alfrescoApiClient":301}],104:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormFieldRepresentation","../model/FormJavascriptEventRepresentation","../model/FormOutcomeRepresentation","../model/FormTabRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormFieldRepresentation"),t("./FormJavascriptEventRepresentation"),t("./FormOutcomeRepresentation"),t("./FormTabRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormDefinitionRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormFieldRepresentation,n.ActivitiPublicRestApi.FormJavascriptEventRepresentation,n.ActivitiPublicRestApi.FormOutcomeRepresentation,n.ActivitiPublicRestApi.FormTabRepresentation)); -}(void 0,function(e,t,i,n,o){var r=function(){};return r.constructFromObject=function(s,a){return s&&(a=s||new r,s.hasOwnProperty("className")&&(a.className=e.convertToType(s.className,"String")),s.hasOwnProperty("customFieldTemplates")&&(a.customFieldTemplates=e.convertToType(s.customFieldTemplates,{String:"String"})),s.hasOwnProperty("fields")&&(a.fields=e.convertToType(s.fields,[t])),s.hasOwnProperty("gridsterForm")&&(a.gridsterForm=e.convertToType(s.gridsterForm,"Boolean")),s.hasOwnProperty("id")&&(a.id=e.convertToType(s.id,"Integer")),s.hasOwnProperty("javascriptEvents")&&(a.javascriptEvents=e.convertToType(s.javascriptEvents,[i])),s.hasOwnProperty("metadata")&&(a.metadata=e.convertToType(s.metadata,{String:"String"})),s.hasOwnProperty("name")&&(a.name=e.convertToType(s.name,"String")),s.hasOwnProperty("outcomeTarget")&&(a.outcomeTarget=e.convertToType(s.outcomeTarget,"String")),s.hasOwnProperty("outcomes")&&(a.outcomes=e.convertToType(s.outcomes,[n])),s.hasOwnProperty("processDefinitionId")&&(a.processDefinitionId=e.convertToType(s.processDefinitionId,"String")),s.hasOwnProperty("processDefinitionKey")&&(a.processDefinitionKey=e.convertToType(s.processDefinitionKey,"String")),s.hasOwnProperty("processDefinitionName")&&(a.processDefinitionName=e.convertToType(s.processDefinitionName,"String")),s.hasOwnProperty("selectedOutcome")&&(a.selectedOutcome=e.convertToType(s.selectedOutcome,"String")),s.hasOwnProperty("style")&&(a.style=e.convertToType(s.style,"String")),s.hasOwnProperty("tabs")&&(a.tabs=e.convertToType(s.tabs,[o])),s.hasOwnProperty("taskDefinitionKey")&&(a.taskDefinitionKey=e.convertToType(s.taskDefinitionKey,"String")),s.hasOwnProperty("taskId")&&(a.taskId=e.convertToType(s.taskId,"String")),s.hasOwnProperty("taskName")&&(a.taskName=e.convertToType(s.taskName,"String"))),a},r.prototype.className=void 0,r.prototype.customFieldTemplates=void 0,r.prototype.fields=void 0,r.prototype.gridsterForm=void 0,r.prototype.id=void 0,r.prototype.javascriptEvents=void 0,r.prototype.metadata=void 0,r.prototype.name=void 0,r.prototype.outcomeTarget=void 0,r.prototype.outcomes=void 0,r.prototype.processDefinitionId=void 0,r.prototype.processDefinitionKey=void 0,r.prototype.processDefinitionName=void 0,r.prototype.selectedOutcome=void 0,r.prototype.style=void 0,r.prototype.tabs=void 0,r.prototype.taskDefinitionKey=void 0,r.prototype.taskId=void 0,r.prototype.taskName=void 0,r})},{"../../../alfrescoApiClient":301,"./FormFieldRepresentation":105,"./FormJavascriptEventRepresentation":106,"./FormOutcomeRepresentation":107,"./FormTabRepresentation":111}],105:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ConditionRepresentation","../model/LayoutRepresentation","../model/OptionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ConditionRepresentation"),t("./LayoutRepresentation"),t("./OptionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormFieldRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ConditionRepresentation,n.ActivitiPublicRestApi.LayoutRepresentation,n.ActivitiPublicRestApi.OptionRepresentation))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("className")&&(s.className=e.convertToType(r.className,"String")),r.hasOwnProperty("col")&&(s.col=e.convertToType(r.col,"Integer")),r.hasOwnProperty("colspan")&&(s.colspan=e.convertToType(r.colspan,"Integer")),r.hasOwnProperty("hasEmptyValue")&&(s.hasEmptyValue=e.convertToType(r.hasEmptyValue,"Boolean")),r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"String")),r.hasOwnProperty("layout")&&(s.layout=i.constructFromObject(r.layout)),r.hasOwnProperty("maxLength")&&(s.maxLength=e.convertToType(r.maxLength,"Integer")),r.hasOwnProperty("maxValue")&&(s.maxValue=e.convertToType(r.maxValue,"String")),r.hasOwnProperty("minLength")&&(s.minLength=e.convertToType(r.minLength,"Integer")),r.hasOwnProperty("minValue")&&(s.minValue=e.convertToType(r.minValue,"String")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("optionType")&&(s.optionType=e.convertToType(r.optionType,"String")),r.hasOwnProperty("options")&&(s.options=e.convertToType(r.options,[n])),r.hasOwnProperty("overrideId")&&(s.overrideId=e.convertToType(r.overrideId,"Boolean")),r.hasOwnProperty("params")&&(s.params=e.convertToType(r.params,Object)),r.hasOwnProperty("placeholder")&&(s.placeholder=e.convertToType(r.placeholder,"String")),r.hasOwnProperty("readOnly")&&(s.readOnly=e.convertToType(r.readOnly,"Boolean")),r.hasOwnProperty("regexPattern")&&(s.regexPattern=e.convertToType(r.regexPattern,"String")),r.hasOwnProperty("required")&&(s.required=e.convertToType(r.required,"Boolean")),r.hasOwnProperty("restIdProperty")&&(s.restIdProperty=e.convertToType(r.restIdProperty,"String")),r.hasOwnProperty("restLabelProperty")&&(s.restLabelProperty=e.convertToType(r.restLabelProperty,"String")),r.hasOwnProperty("restResponsePath")&&(s.restResponsePath=e.convertToType(r.restResponsePath,"String")),r.hasOwnProperty("restUrl")&&(s.restUrl=e.convertToType(r.restUrl,"String")),r.hasOwnProperty("row")&&(s.row=e.convertToType(r.row,"Integer")),r.hasOwnProperty("sizeX")&&(s.sizeX=e.convertToType(r.sizeX,"Integer")),r.hasOwnProperty("sizeY")&&(s.sizeY=e.convertToType(r.sizeY,"Integer")),r.hasOwnProperty("tab")&&(s.tab=e.convertToType(r.tab,"String")),r.hasOwnProperty("type")&&(s.type=e.convertToType(r.type,"String")),r.hasOwnProperty("value")&&(s.value=e.convertToType(r.value,Object)),r.hasOwnProperty("visibilityCondition")&&(s.visibilityCondition=t.constructFromObject(r.visibilityCondition))),s},o.prototype.className=void 0,o.prototype.col=void 0,o.prototype.colspan=void 0,o.prototype.hasEmptyValue=void 0,o.prototype.id=void 0,o.prototype.layout=void 0,o.prototype.maxLength=void 0,o.prototype.maxValue=void 0,o.prototype.minLength=void 0,o.prototype.minValue=void 0,o.prototype.name=void 0,o.prototype.optionType=void 0,o.prototype.options=void 0,o.prototype.overrideId=void 0,o.prototype.params=void 0,o.prototype.placeholder=void 0,o.prototype.readOnly=void 0,o.prototype.regexPattern=void 0,o.prototype.required=void 0,o.prototype.restIdProperty=void 0,o.prototype.restLabelProperty=void 0,o.prototype.restResponsePath=void 0,o.prototype.restUrl=void 0,o.prototype.row=void 0,o.prototype.sizeX=void 0,o.prototype.sizeY=void 0,o.prototype.tab=void 0,o.prototype.type=void 0,o.prototype.value=void 0,o.prototype.visibilityCondition=void 0,o})},{"../../../alfrescoApiClient":301,"./ConditionRepresentation":94,"./LayoutRepresentation":116,"./OptionRepresentation":127}],106:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormJavascriptEventRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("event")&&(n.event=e.convertToType(i.event,"String")),i.hasOwnProperty("javascriptLogic")&&(n.javascriptLogic=e.convertToType(i.javascriptLogic,"String"))),n},t.prototype.event=void 0,t.prototype.javascriptLogic=void 0,t})},{"../../../alfrescoApiClient":301}],107:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormOutcomeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":301}],108:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormDefinitionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormDefinitionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormDefinitionRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("description")&&(o.description=e.convertToType(n.description,"String")),n.hasOwnProperty("formDefinition")&&(o.formDefinition=t.constructFromObject(n.formDefinition)),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("lastUpdated")&&(o.lastUpdated=e.convertToType(n.lastUpdated,"Date")),n.hasOwnProperty("lastUpdatedBy")&&(o.lastUpdatedBy=e.convertToType(n.lastUpdatedBy,"Integer")),n.hasOwnProperty("lastUpdatedByFullName")&&(o.lastUpdatedByFullName=e.convertToType(n.lastUpdatedByFullName,"String")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("referenceId")&&(o.referenceId=e.convertToType(n.referenceId,"Integer")),n.hasOwnProperty("stencilSetId")&&(o.stencilSetId=e.convertToType(n.stencilSetId,"Integer")),n.hasOwnProperty("version")&&(o.version=e.convertToType(n.version,"Integer"))),o},i.prototype.description=void 0,i.prototype.formDefinition=void 0,i.prototype.id=void 0,i.prototype.lastUpdated=void 0,i.prototype.lastUpdatedBy=void 0,i.prototype.lastUpdatedByFullName=void 0,i.prototype.name=void 0,i.prototype.referenceId=void 0,i.prototype.stencilSetId=void 0,i.prototype.version=void 0,i})},{"../../../alfrescoApiClient":301,"./FormDefinitionRepresentation":104}],109:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormRepresentation","../model/ProcessScopeIdentifierRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormRepresentation"),t("./ProcessScopeIdentifierRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormSaveRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormRepresentation,n.ActivitiPublicRestApi.ProcessScopeIdentifierRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("comment")&&(r.comment=e.convertToType(o.comment,"String")),o.hasOwnProperty("formImageBase64")&&(r.formImageBase64=e.convertToType(o.formImageBase64,"String")),o.hasOwnProperty("formRepresentation")&&(r.formRepresentation=t.constructFromObject(o.formRepresentation)),o.hasOwnProperty("newVersion")&&(r.newVersion=e.convertToType(o.newVersion,"Boolean")),o.hasOwnProperty("processScopeIdentifiers")&&(r.processScopeIdentifiers=e.convertToType(o.processScopeIdentifiers,[i])),o.hasOwnProperty("reusable")&&(r.reusable=e.convertToType(o.reusable,"Boolean"))),r},n.prototype.comment=void 0,n.prototype.formImageBase64=void 0,n.prototype.formRepresentation=void 0,n.prototype.newVersion=void 0,n.prototype.processScopeIdentifiers=void 0,n.prototype.reusable=void 0,n})},{"../../../alfrescoApiClient":301,"./FormRepresentation":108,"./ProcessScopeIdentifierRepresentation":134}],110:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormFieldRepresentation","../model/FormOutcomeRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormFieldRepresentation"),t("./FormOutcomeRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormFieldRepresentation,n.ActivitiPublicRestApi.FormOutcomeRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("description")&&(r.description=e.convertToType(o.description,"String")),o.hasOwnProperty("fieldVariables")&&(r.fieldVariables=e.convertToType(o.fieldVariables,[t])),o.hasOwnProperty("fields")&&(r.fields=e.convertToType(o.fields,[t])),o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"Integer")),o.hasOwnProperty("name")&&(r.name=e.convertToType(o.name,"String")),o.hasOwnProperty("outcomes")&&(r.outcomes=e.convertToType(o.outcomes,[i]))),r},n.prototype.description=void 0,n.prototype.fieldVariables=void 0,n.prototype.fields=void 0,n.prototype.id=void 0,n.prototype.name=void 0,n.prototype.outcomes=void 0,n})},{"../../../alfrescoApiClient":301,"./FormFieldRepresentation":105,"./FormOutcomeRepresentation":107}],111:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ConditionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ConditionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormTabRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ConditionRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("title")&&(o.title=e.convertToType(n.title,"String")),n.hasOwnProperty("visibilityCondition")&&(o.visibilityCondition=t.constructFromObject(n.visibilityCondition))),o},i.prototype.id=void 0,i.prototype.title=void 0,i.prototype.visibilityCondition=void 0,i})},{"../../../alfrescoApiClient":301,"./ConditionRepresentation":94}],112:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormValueRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":301}],113:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.GroupCapabilityRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":301}],114:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/GroupCapabilityRepresentation","../model/GroupRepresentation","../model/UserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./GroupCapabilityRepresentation"),t("./GroupRepresentation"),t("./UserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.GroupRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.GroupCapabilityRepresentation,n.ActivitiPublicRestApi.GroupRepresentation,n.ActivitiPublicRestApi.UserRepresentation))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("capabilities")&&(s.capabilities=e.convertToType(r.capabilities,[t])),r.hasOwnProperty("externalId")&&(s.externalId=e.convertToType(r.externalId,"String")),r.hasOwnProperty("groups")&&(s.groups=e.convertToType(r.groups,[i])),r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"Integer")),r.hasOwnProperty("lastSyncTimeStamp")&&(s.lastSyncTimeStamp=e.convertToType(r.lastSyncTimeStamp,"Date")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("parentGroupId")&&(s.parentGroupId=e.convertToType(r.parentGroupId,"Integer")),r.hasOwnProperty("status")&&(s.status=e.convertToType(r.status,"String")),r.hasOwnProperty("tenantId")&&(s.tenantId=e.convertToType(r.tenantId,"Integer")),r.hasOwnProperty("type")&&(s.type=e.convertToType(r.type,"Integer")),r.hasOwnProperty("userCount")&&(s.userCount=e.convertToType(r.userCount,"Integer")),r.hasOwnProperty("users")&&(s.users=e.convertToType(r.users,[n]))),s},o.prototype.capabilities=void 0,o.prototype.externalId=void 0,o.prototype.groups=void 0,o.prototype.id=void 0,o.prototype.lastSyncTimeStamp=void 0,o.prototype.name=void 0,o.prototype.parentGroupId=void 0,o.prototype.status=void 0,o.prototype.tenantId=void 0,o.prototype.type=void 0,o.prototype.userCount=void 0,o.prototype.users=void 0,o})},{"../../../alfrescoApiClient":301,"./GroupCapabilityRepresentation":113,"./GroupRepresentation":114,"./UserRepresentation":159}],115:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ImageUploadRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("created")&&(n.created=e.convertToType(i.created,"Date")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("userId")&&(n.userId=e.convertToType(i.userId,"Integer"))),n},t.prototype.created=void 0,t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.userId=void 0,t})},{"../../../alfrescoApiClient":301}],116:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LayoutRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("colspan")&&(n.colspan=e.convertToType(i.colspan,"Integer")),i.hasOwnProperty("column")&&(n.column=e.convertToType(i.column,"Integer")),i.hasOwnProperty("row")&&(n.row=e.convertToType(i.row,"Integer"))),n},t.prototype.colspan=void 0,t.prototype.column=void 0,t.prototype.row=void 0,t})},{"../../../alfrescoApiClient":301}],117:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LightAppRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("icon")&&(n.icon=e.convertToType(i.icon,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("theme")&&(n.theme=e.convertToType(i.theme,"String"))),n},t.prototype.description=void 0,t.prototype.icon=void 0,t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.theme=void 0,t})},{"../../../alfrescoApiClient":301}],118:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightGroupRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightGroupRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LightGroupRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightGroupRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("externalId")&&(o.externalId=e.convertToType(n.externalId,"String")),n.hasOwnProperty("groups")&&(o.groups=e.convertToType(n.groups,[t])),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("status")&&(o.status=e.convertToType(n.status,"String"))),o},i.prototype.externalId=void 0,i.prototype.groups=void 0,i.prototype.id=void 0,i.prototype.name=void 0,i.prototype.status=void 0,i})},{"../../../alfrescoApiClient":301,"./LightGroupRepresentation":118}],119:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LightTenantRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":301}],120:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LightUserRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("email")&&(n.email=e.convertToType(i.email,"String")),i.hasOwnProperty("externalId")&&(n.externalId=e.convertToType(i.externalId,"String")),i.hasOwnProperty("firstName")&&(n.firstName=e.convertToType(i.firstName,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastName")&&(n.lastName=e.convertToType(i.lastName,"String")),i.hasOwnProperty("pictureId")&&(n.pictureId=e.convertToType(i.pictureId,"Integer"))),n},t.prototype.email=void 0,t.prototype.externalId=void 0,t.prototype.firstName=void 0,t.prototype.id=void 0,t.prototype.lastName=void 0,t.prototype.pictureId=void 0,t})},{"../../../alfrescoApiClient":301}],121:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.MaplongListstring=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){var e=this;return e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,e.constructFromObject(i,n,Array)),n},t})},{"../../../alfrescoApiClient":301}],122:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.MapstringListEntityVariableScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){var e=this;return e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,e.constructFromObject(i,n,Array)),n},t})},{"../../../alfrescoApiClient":301}],123:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.MapstringListVariableScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){var e=this;return e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,e.constructFromObject(i,n,Array)),n},t})},{"../../../alfrescoApiClient":301}],124:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.Mapstringstring=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){var e=this;return e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,e.constructFromObject(i,n,String)),n},t})},{"../../../alfrescoApiClient":301}],125:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("comment")&&(n.comment=e.convertToType(i.comment,"String")),i.hasOwnProperty("createdBy")&&(n.createdBy=e.convertToType(i.createdBy,"Integer")),i.hasOwnProperty("createdByFullName")&&(n.createdByFullName=e.convertToType(i.createdByFullName,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("favorite")&&(n.favorite=e.convertToType(i.favorite,"Boolean")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastUpdated")&&(n.lastUpdated=e.convertToType(i.lastUpdated,"Date")),i.hasOwnProperty("lastUpdatedBy")&&(n.lastUpdatedBy=e.convertToType(i.lastUpdatedBy,"Integer")),i.hasOwnProperty("lastUpdatedByFullName")&&(n.lastUpdatedByFullName=e.convertToType(i.lastUpdatedByFullName,"String")),i.hasOwnProperty("latestVersion")&&(n.latestVersion=e.convertToType(i.latestVersion,"Boolean")),i.hasOwnProperty("modelType")&&(n.modelType=e.convertToType(i.modelType,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("permission")&&(n.permission=e.convertToType(i.permission,"String")),i.hasOwnProperty("referenceId")&&(n.referenceId=e.convertToType(i.referenceId,"Integer")),i.hasOwnProperty("stencilSet")&&(n.stencilSet=e.convertToType(i.stencilSet,"Integer")),i.hasOwnProperty("version")&&(n.version=e.convertToType(i.version,"Integer"))),n},t.prototype.comment=void 0,t.prototype.createdBy=void 0,t.prototype.createdByFullName=void 0,t.prototype.description=void 0, -t.prototype.favorite=void 0,t.prototype.id=void 0,t.prototype.lastUpdated=void 0,t.prototype.lastUpdatedBy=void 0,t.prototype.lastUpdatedByFullName=void 0,t.prototype.latestVersion=void 0,t.prototype.modelType=void 0,t.prototype.name=void 0,t.prototype.permission=void 0,t.prototype.referenceId=void 0,t.prototype.stencilSet=void 0,t.prototype.version=void 0,t})},{"../../../alfrescoApiClient":301}],126:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ObjectNode=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(e,i){return e&&(i=e||new t),i},t})},{"../../../alfrescoApiClient":301}],127:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.OptionRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":301}],128:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ParameterValueRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("version")&&(n.version=e.convertToType(i.version,"String")),i.hasOwnProperty("value")&&(n.value=e.convertToType(i.value,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.version=void 0,t.prototype.value=void 0,t})},{"../../../alfrescoApiClient":301}],129:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessFilterRequestRepresentation.js=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("processDefinitionId")&&(n.processDefinitionId=e.convertToType(i.processDefinitionId,"Integer")),i.hasOwnProperty("appDefinitionId")&&(n.appDefinitionId=e.convertToType(i.appDefinitionId,"Integer")),i.hasOwnProperty("sort")&&(n.sort=e.convertToType(i.sort,"String")),i.hasOwnProperty("state")&&(n.state=e.convertToType(i.state,"String")),i.hasOwnProperty("page")&&(n.page=e.convertToType(i.page,"Integer")),i.hasOwnProperty("size")&&(n.size=e.convertToType(i.size,"Integer"))),n},t.prototype.processDefinitionId=void 0,t.prototype.appDefinitionId=void 0,t.prototype.state=void 0,t.prototype.sort=void 0,t.prototype.page=void 0,t.prototype.size=void 0,t})},{"../../../alfrescoApiClient":301}],130:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceFilterRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("asc")&&(n.asc=e.convertToType(i.asc,"Boolean")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("processDefinitionId")&&(n.processDefinitionId=e.convertToType(i.processDefinitionId,"String")),i.hasOwnProperty("processDefinitionKey")&&(n.processDefinitionKey=e.convertToType(i.processDefinitionKey,"String")),i.hasOwnProperty("sort")&&(n.sort=e.convertToType(i.sort,"String")),i.hasOwnProperty("state")&&(n.state=e.convertToType(i.state,"String"))),n},t.prototype.asc=void 0,t.prototype.name=void 0,t.prototype.processDefinitionId=void 0,t.prototype.processDefinitionKey=void 0,t.prototype.sort=void 0,t.prototype.state=void 0,t})},{"../../../alfrescoApiClient":301}],131:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessInstanceFilterRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ProcessInstanceFilterRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceFilterRequestRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessInstanceFilterRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appDefinitionId")&&(o.appDefinitionId=e.convertToType(n.appDefinitionId,"Integer")),n.hasOwnProperty("filter")&&(o.filter=t.constructFromObject(n.filter)),n.hasOwnProperty("filterId")&&(o.filterId=e.convertToType(n.filterId,"Integer")),n.hasOwnProperty("page")&&(o.page=e.convertToType(n.page,"Integer")),n.hasOwnProperty("size")&&(o.size=e.convertToType(n.size,"Integer"))),o},i.prototype.appDefinitionId=void 0,i.prototype.filter=void 0,i.prototype.filterId=void 0,i.prototype.page=void 0,i.prototype.size=void 0,i})},{"../../../alfrescoApiClient":301,"./ProcessInstanceFilterRepresentation":130}],132:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightUserRepresentation","../model/RestVariable"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightUserRepresentation"),t("./RestVariable")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightUserRepresentation,n.ActivitiPublicRestApi.RestVariable))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("businessKey")&&(r.businessKey=e.convertToType(o.businessKey,"String")),o.hasOwnProperty("ended")&&(r.ended=e.convertToType(o.ended,"Date")),o.hasOwnProperty("graphicalNotationDefined")&&(r.graphicalNotationDefined=e.convertToType(o.graphicalNotationDefined,"Boolean")),o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"String")),o.hasOwnProperty("name")&&(r.name=e.convertToType(o.name,"String")),o.hasOwnProperty("processDefinitionCategory")&&(r.processDefinitionCategory=e.convertToType(o.processDefinitionCategory,"String")),o.hasOwnProperty("processDefinitionDeploymentId")&&(r.processDefinitionDeploymentId=e.convertToType(o.processDefinitionDeploymentId,"String")),o.hasOwnProperty("processDefinitionDescription")&&(r.processDefinitionDescription=e.convertToType(o.processDefinitionDescription,"String")),o.hasOwnProperty("processDefinitionId")&&(r.processDefinitionId=e.convertToType(o.processDefinitionId,"String")),o.hasOwnProperty("processDefinitionKey")&&(r.processDefinitionKey=e.convertToType(o.processDefinitionKey,"String")),o.hasOwnProperty("processDefinitionName")&&(r.processDefinitionName=e.convertToType(o.processDefinitionName,"String")),o.hasOwnProperty("processDefinitionVersion")&&(r.processDefinitionVersion=e.convertToType(o.processDefinitionVersion,"Integer")),o.hasOwnProperty("startFormDefined")&&(r.startFormDefined=e.convertToType(o.startFormDefined,"Boolean")),o.hasOwnProperty("started")&&(r.started=e.convertToType(o.started,"Date")),o.hasOwnProperty("startedBy")&&(r.startedBy=t.constructFromObject(o.startedBy)),o.hasOwnProperty("tenantId")&&(r.tenantId=e.convertToType(o.tenantId,"String")),o.hasOwnProperty("variables")&&(r.variables=e.convertToType(o.variables,[i]))),r},n.prototype.businessKey=void 0,n.prototype.ended=void 0,n.prototype.graphicalNotationDefined=void 0,n.prototype.id=void 0,n.prototype.name=void 0,n.prototype.processDefinitionCategory=void 0,n.prototype.processDefinitionDeploymentId=void 0,n.prototype.processDefinitionDescription=void 0,n.prototype.processDefinitionId=void 0,n.prototype.processDefinitionKey=void 0,n.prototype.processDefinitionName=void 0,n.prototype.processDefinitionVersion=void 0,n.prototype.startFormDefined=void 0,n.prototype.started=void 0,n.prototype.startedBy=void 0,n.prototype.tenantId=void 0,n.prototype.variables=void 0,n})},{"../../../alfrescoApiClient":301,"./LightUserRepresentation":120,"./RestVariable":142}],133:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceVariableRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String")),i.hasOwnProperty("name")&&(n.value=e.convertToType(i.value,Object))),n},t.prototype.id=void 0,t.prototype.type=void 0,t.prototype.value=void 0,t})},{"../../../alfrescoApiClient":301}],134:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessScopeIdentifierRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("processActivityId")&&(n.processActivityId=e.convertToType(i.processActivityId,"String")),i.hasOwnProperty("processModelId")&&(n.processModelId=e.convertToType(i.processModelId,"Integer"))),n},t.prototype.processActivityId=void 0,t.prototype.processModelId=void 0,t})},{"../../../alfrescoApiClient":301}],135:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormScopeRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormScopeRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormScopeRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("activityIds")&&(o.activityIds=e.convertToType(n.activityIds,["String"])),n.hasOwnProperty("activityIdsByCollapsedSubProcessIdMap")&&(o.activityIdsByCollapsedSubProcessIdMap=e.convertToType(n.activityIdsByCollapsedSubProcessIdMap,{String:Array})),n.hasOwnProperty("activityIdsByDecisionTableIdMap")&&(o.activityIdsByDecisionTableIdMap=e.convertToType(n.activityIdsByDecisionTableIdMap,{String:Array})),n.hasOwnProperty("activityIdsByFormIdMap")&&(o.activityIdsByFormIdMap=e.convertToType(n.activityIdsByFormIdMap,{String:Array})),n.hasOwnProperty("activityIdsWithExcludedSubProcess")&&(o.activityIdsWithExcludedSubProcess=e.convertToType(n.activityIdsWithExcludedSubProcess,["String"])),n.hasOwnProperty("customStencilVariables")&&(o.customStencilVariables=e.convertToType(n.customStencilVariables,{String:Array})),n.hasOwnProperty("entityVariables")&&(o.entityVariables=e.convertToType(n.entityVariables,{String:Array})),n.hasOwnProperty("executionVariables")&&(o.executionVariables=e.convertToType(n.executionVariables,{String:Array})),n.hasOwnProperty("fieldToVariableMappings")&&(o.fieldToVariableMappings=e.convertToType(n.fieldToVariableMappings,{String:Array})),n.hasOwnProperty("forms")&&(o.forms=e.convertToType(n.forms,[t])),n.hasOwnProperty("metadataVariables")&&(o.metadataVariables=e.convertToType(n.metadataVariables,{String:Array})),n.hasOwnProperty("modelId")&&(o.modelId=e.convertToType(n.modelId,"Integer")),n.hasOwnProperty("processModelType")&&(o.processModelType=e.convertToType(n.processModelType,"Integer")),n.hasOwnProperty("responseVariables")&&(o.responseVariables=e.convertToType(n.responseVariables,{String:Array}))),o},i.prototype.activityIds=void 0,i.prototype.activityIdsByCollapsedSubProcessIdMap=void 0,i.prototype.activityIdsByDecisionTableIdMap=void 0,i.prototype.activityIdsByFormIdMap=void 0,i.prototype.activityIdsWithExcludedSubProcess=void 0,i.prototype.customStencilVariables=void 0,i.prototype.entityVariables=void 0,i.prototype.executionVariables=void 0,i.prototype.fieldToVariableMappings=void 0,i.prototype.forms=void 0,i.prototype.metadataVariables=void 0,i.prototype.modelId=void 0,i.prototype.processModelType=void 0,i.prototype.responseVariables=void 0,i})},{"../../../alfrescoApiClient":301,"./FormScopeRepresentation":110}],136:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessScopeIdentifierRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ProcessScopeIdentifierRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessScopesRequestRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessScopeIdentifierRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("identifiers")&&(o.identifiers=e.convertToType(n.identifiers,[t])),n.hasOwnProperty("overriddenModel")&&(o.overriddenModel=e.convertToType(n.overriddenModel,"String"))),o},i.prototype.identifiers=void 0,i.prototype.overriddenModel=void 0,i})},{"../../../alfrescoApiClient":301,"./ProcessScopeIdentifierRepresentation":134}],137:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightGroupRepresentation","../model/LightUserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightGroupRepresentation"),t("./LightUserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.PublishIdentityInfoRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightGroupRepresentation,n.ActivitiPublicRestApi.LightUserRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("group")&&(r.group=t.constructFromObject(o.group)),o.hasOwnProperty("person")&&(r.person=i.constructFromObject(o.person)),o.hasOwnProperty("type")&&(r.type=e.convertToType(o.type,"String"))),r},n.prototype.group=void 0,n.prototype.person=void 0,n.prototype.type=void 0,n})},{"../../../alfrescoApiClient":301,"./LightGroupRepresentation":118,"./LightUserRepresentation":120}],138:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightUserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightUserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.RelatedContentRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightUserRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("contentAvailable")&&(o.contentAvailable=e.convertToType(n.contentAvailable,"Boolean")),n.hasOwnProperty("created")&&(o.created=e.convertToType(n.created,"Date")),n.hasOwnProperty("createdBy")&&(o.createdBy=t.constructFromObject(n.createdBy)),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("link")&&(o.link=e.convertToType(n.link,"Boolean")),n.hasOwnProperty("linkUrl")&&(o.linkUrl=e.convertToType(n.linkUrl,"String")),n.hasOwnProperty("mimeType")&&(o.mimeType=e.convertToType(n.mimeType,"String")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("previewStatus")&&(o.previewStatus=e.convertToType(n.previewStatus,"String")),n.hasOwnProperty("simpleType")&&(o.simpleType=e.convertToType(n.simpleType,"String")),n.hasOwnProperty("source")&&(o.source=e.convertToType(n.source,"String")),n.hasOwnProperty("sourceId")&&(o.sourceId=e.convertToType(n.sourceId,"String")),n.hasOwnProperty("thumbnailStatus")&&(o.thumbnailStatus=e.convertToType(n.thumbnailStatus,"String"))),o},i.prototype.contentAvailable=void 0,i.prototype.created=void 0,i.prototype.createdBy=void 0,i.prototype.id=void 0,i.prototype.link=void 0,i.prototype.linkUrl=void 0,i.prototype.mimeType=void 0,i.prototype.name=void 0,i.prototype.previewStatus=void 0,i.prototype.simpleType=void 0,i.prototype.source=void 0,i.prototype.sourceId=void 0,i.prototype.thumbnailStatus=void 0,i})},{"../../../alfrescoApiClient":301,"./LightUserRepresentation":120}],139:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","./Chart"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./Chart")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ReportCharts=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.Chart))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("elements")&&(o.elements=e.convertToType(n.elements,[t]))),o},i.prototype.elements=void 0,i})},{"../../../alfrescoApiClient":301,"./Chart":90}],140:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ReportParametersDefinition=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("definition")&&(n.definition=e.convertToType(i.definition,"String")),i.hasOwnProperty("created")&&(n.created=e.convertToType(i.created,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.definition=void 0,t.prototype.created=void 0,t})},{"../../../alfrescoApiClient":301}],141:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ResetPasswordRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("email")&&(n.email=e.convertToType(i.email,"String"))),n},t.prototype.email=void 0,t})},{"../../../alfrescoApiClient":301}],142:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.RestVariable=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("scope")&&(n.scope=e.convertToType(i.scope,"String")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String")),i.hasOwnProperty("value")&&(n.value=e.convertToType(i.value,Object)),i.hasOwnProperty("valueUrl")&&(n.valueUrl=e.convertToType(i.valueUrl,"String"))),n},t.prototype.name=void 0,t.prototype.scope=void 0,t.prototype.type=void 0,t.prototype.value=void 0,t.prototype.valueUrl=void 0,t})},{"../../../alfrescoApiClient":301}],143:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AbstractRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./AbstractRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ResultListDataRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AbstractRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(t,n){return t&&(n=t||new i,t.hasOwnProperty("data")&&(n.data=e.convertToType(t.data,"object")),t.hasOwnProperty("size")&&(n.size=e.convertToType(t.size,"Integer")),t.hasOwnProperty("start")&&(n.start=e.convertToType(t.start,"Integer")),t.hasOwnProperty("total")&&(n.total=e.convertToType(t.total,"Integer"))),n},i.prototype.data=void 0,i.prototype.size=void 0,i.prototype.start=void 0,i.prototype.total=void 0,i})},{"../../../alfrescoApiClient":301,"./AbstractRepresentation":78}],144:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AppDefinitionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./AppDefinitionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.RuntimeAppDefinitionSaveRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AppDefinitionRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appDefinitions")&&(o.appDefinitions=e.convertToType(n.appDefinitions,[t]))),o},i.prototype.appDefinitions=void 0,i})},{"../../../alfrescoApiClient":301,"./AppDefinitionRepresentation":83}],145:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.SaveFormRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("values")&&(n.values=e.convertToType(i.values,Object))),n},t.prototype.values=void 0,t})},{"../../../alfrescoApiClient":301}],146:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.SyncLogEntryRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("timeStamp")&&(n.timeStamp=e.convertToType(i.timeStamp,"Date")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String"))),n},t.prototype.id=void 0,t.prototype.timeStamp=void 0,t.prototype.type=void 0,t})},{"../../../alfrescoApiClient":301}],147:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.SystemPropertiesRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("allowInvolveByEmail")&&(n.allowInvolveByEmail=e.convertToType(i.allowInvolveByEmail,"Boolean"))),n},t.prototype.allowInvolveByEmail=void 0,t})},{"../../../alfrescoApiClient":301}],148:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskFilterRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("asc")&&(n.asc=e.convertToType(i.asc,"Boolean")),i.hasOwnProperty("assignment")&&(n.assignment=e.convertToType(i.assignment,"String")),i.hasOwnProperty("dueAfter")&&(n.dueAfter=e.convertToType(i.dueAfter,"Date")),i.hasOwnProperty("dueBefore")&&(n.dueBefore=e.convertToType(i.dueBefore,"Date")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("processDefinitionId")&&(n.processDefinitionId=e.convertToType(i.processDefinitionId,"String")),i.hasOwnProperty("processDefinitionKey")&&(n.processDefinitionKey=e.convertToType(i.processDefinitionKey,"String")),i.hasOwnProperty("sort")&&(n.sort=e.convertToType(i.sort,"String")),i.hasOwnProperty("state")&&(n.state=e.convertToType(i.state,"String"))),n},t.prototype.asc=void 0,t.prototype.assignment=void 0,t.prototype.dueAfter=void 0,t.prototype.dueBefore=void 0,t.prototype.name=void 0,t.prototype.processDefinitionId=void 0,t.prototype.processDefinitionKey=void 0,t.prototype.sort=void 0,t.prototype.state=void 0,t})},{"../../../alfrescoApiClient":301}],149:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/TaskFilterRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./TaskFilterRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskFilterRequestRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.TaskFilterRepresentation))}(void 0,function(e,t){var i=function(){this.hasOwnProperty("filter")||this.hasOwnProperty("filterId")||(this.filter=new t); -};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appDefinitionId")&&(o.appDefinitionId=e.convertToType(n.appDefinitionId,"Integer")),n.hasOwnProperty("filter")&&(o.filter=t.constructFromObject(n.filter)),n.hasOwnProperty("filterId")&&(o.filterId=e.convertToType(n.filterId,"Integer")),n.hasOwnProperty("page")&&(o.page=e.convertToType(n.page,"Integer")),n.hasOwnProperty("size")&&(o.size=e.convertToType(n.size,"Integer"))),o},i.prototype.appDefinitionId=void 0,i.prototype.filter=void 0,i.prototype.filterId=void 0,i.prototype.page=void 0,i.prototype.size=void 0,i})},{"../../../alfrescoApiClient":301,"./TaskFilterRepresentation":148}],150:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskQueryRequestRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("processInstanceId")&&(n.processInstanceId=e.convertToType(i.processInstanceId,"Integer")),i.hasOwnProperty("text")&&(n.text=TaskFilterRepresentation.constructFromObject(i.text,"String")),i.hasOwnProperty("assignment")&&(n.assignment=e.convertToType(i.assignment)),i.hasOwnProperty("state")&&(n.state=e.convertToType(i.state,"String")),i.hasOwnProperty("sort")&&(n.sort=e.convertToType(i.sort,"String")),i.hasOwnProperty("page")&&(n.page=e.convertToType(i.page,"Integer")),i.hasOwnProperty("size")&&(n.size=e.convertToType(i.size,"Integer"))),n},t.prototype.processInstanceId=void 0,t.prototype.text=void 0,t.prototype.assignment=void 0,t.prototype.state=void 0,t.prototype.sort=void 0,t.prototype.page=void 0,t.prototype.size=void 0,t})},{"../../../alfrescoApiClient":301}],151:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightUserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightUserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightUserRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("adhocTaskCanBeReassigned")&&(o.adhocTaskCanBeReassigned=e.convertToType(n.adhocTaskCanBeReassigned,"Boolean")),n.hasOwnProperty("assignee")&&(o.assignee=t.constructFromObject(n.assignee)),n.hasOwnProperty("category")&&(o.category=e.convertToType(n.category,"String")),n.hasOwnProperty("created")&&(o.created=e.convertToType(n.created,"Date")),n.hasOwnProperty("description")&&(o.description=e.convertToType(n.description,"String")),n.hasOwnProperty("dueDate")&&(o.dueDate=e.convertToType(n.dueDate,"Date")),n.hasOwnProperty("duration")&&(o.duration=e.convertToType(n.duration,"Integer")),n.hasOwnProperty("endDate")&&(o.endDate=e.convertToType(n.endDate,"Date")),n.hasOwnProperty("formKey")&&(o.formKey=e.convertToType(n.formKey,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("initiatorCanCompleteTask")&&(o.initiatorCanCompleteTask=e.convertToType(n.initiatorCanCompleteTask,"Boolean")),n.hasOwnProperty("involvedPeople")&&(o.involvedPeople=e.convertToType(n.involvedPeople,[t])),n.hasOwnProperty("memberOfCandidateGroup")&&(o.memberOfCandidateGroup=e.convertToType(n.memberOfCandidateGroup,"Boolean")),n.hasOwnProperty("memberOfCandidateUsers")&&(o.memberOfCandidateUsers=e.convertToType(n.memberOfCandidateUsers,"Boolean")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("parentTaskId")&&(o.parentTaskId=e.convertToType(n.parentTaskId,"String")),n.hasOwnProperty("parentTaskName")&&(o.parentTaskName=e.convertToType(n.parentTaskName,"String")),n.hasOwnProperty("priority")&&(o.priority=e.convertToType(n.priority,"Integer")),n.hasOwnProperty("processDefinitionCategory")&&(o.processDefinitionCategory=e.convertToType(n.processDefinitionCategory,"String")),n.hasOwnProperty("processDefinitionDeploymentId")&&(o.processDefinitionDeploymentId=e.convertToType(n.processDefinitionDeploymentId,"String")),n.hasOwnProperty("processDefinitionDescription")&&(o.processDefinitionDescription=e.convertToType(n.processDefinitionDescription,"String")),n.hasOwnProperty("processDefinitionId")&&(o.processDefinitionId=e.convertToType(n.processDefinitionId,"String")),n.hasOwnProperty("processDefinitionKey")&&(o.processDefinitionKey=e.convertToType(n.processDefinitionKey,"String")),n.hasOwnProperty("processDefinitionName")&&(o.processDefinitionName=e.convertToType(n.processDefinitionName,"String")),n.hasOwnProperty("processDefinitionVersion")&&(o.processDefinitionVersion=e.convertToType(n.processDefinitionVersion,"Integer")),n.hasOwnProperty("processInstanceId")&&(o.processInstanceId=e.convertToType(n.processInstanceId,"String")),n.hasOwnProperty("processInstanceName")&&(o.processInstanceName=e.convertToType(n.processInstanceName,"String")),n.hasOwnProperty("processInstanceStartUserId")&&(o.processInstanceStartUserId=e.convertToType(n.processInstanceStartUserId,"String"))),o},i.prototype.adhocTaskCanBeReassigned=void 0,i.prototype.assignee=void 0,i.prototype.category=void 0,i.prototype.created=void 0,i.prototype.description=void 0,i.prototype.dueDate=void 0,i.prototype.duration=void 0,i.prototype.endDate=void 0,i.prototype.formKey=void 0,i.prototype.id=void 0,i.prototype.initiatorCanCompleteTask=void 0,i.prototype.involvedPeople=void 0,i.prototype.memberOfCandidateGroup=void 0,i.prototype.memberOfCandidateUsers=void 0,i.prototype.name=void 0,i.prototype.parentTaskId=void 0,i.prototype.parentTaskName=void 0,i.prototype.priority=void 0,i.prototype.processDefinitionCategory=void 0,i.prototype.processDefinitionDeploymentId=void 0,i.prototype.processDefinitionDescription=void 0,i.prototype.processDefinitionId=void 0,i.prototype.processDefinitionKey=void 0,i.prototype.processDefinitionName=void 0,i.prototype.processDefinitionVersion=void 0,i.prototype.processInstanceId=void 0,i.prototype.processInstanceName=void 0,i.prototype.processInstanceStartUserId=void 0,i})},{"../../../alfrescoApiClient":301,"./LightUserRepresentation":120}],152:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskUpdateRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("descriptionSet")&&(n.descriptionSet=e.convertToType(i.descriptionSet,"Boolean")),i.hasOwnProperty("dueDate")&&(n.dueDate=e.convertToType(i.dueDate,"Date")),i.hasOwnProperty("dueDateSet")&&(n.dueDateSet=e.convertToType(i.dueDateSet,"Boolean")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("nameSet")&&(n.nameSet=e.convertToType(i.nameSet,"Boolean"))),n},t.prototype.description=void 0,t.prototype.descriptionSet=void 0,t.prototype.dueDate=void 0,t.prototype.dueDateSet=void 0,t.prototype.name=void 0,t.prototype.nameSet=void 0,t})},{"../../../alfrescoApiClient":301}],153:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TenantEvent=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("eventTime")&&(n.eventTime=e.convertToType(i.eventTime,"Date")),i.hasOwnProperty("eventType")&&(n.eventType=e.convertToType(i.eventType,"String")),i.hasOwnProperty("extraInfo")&&(n.extraInfo=e.convertToType(i.extraInfo,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("userId")&&(n.userId=e.convertToType(i.userId,"Integer")),i.hasOwnProperty("userName")&&(n.userName=e.convertToType(i.userName,"String"))),n},t.prototype.eventTime=void 0,t.prototype.eventType=void 0,t.prototype.extraInfo=void 0,t.prototype.id=void 0,t.prototype.tenantId=void 0,t.prototype.userId=void 0,t.prototype.userName=void 0,t})},{"../../../alfrescoApiClient":301}],154:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TenantRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("active")&&(n.active=e.convertToType(i.active,"Boolean")),i.hasOwnProperty("created")&&(n.created=e.convertToType(i.created,"Date")),i.hasOwnProperty("domain")&&(n.domain=e.convertToType(i.domain,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastUpdate")&&(n.lastUpdate=e.convertToType(i.lastUpdate,"Date")),i.hasOwnProperty("logoId")&&(n.logoId=e.convertToType(i.logoId,"Integer")),i.hasOwnProperty("maxUsers")&&(n.maxUsers=e.convertToType(i.maxUsers,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.active=void 0,t.prototype.created=void 0,t.prototype.domain=void 0,t.prototype.id=void 0,t.prototype.lastUpdate=void 0,t.prototype.logoId=void 0,t.prototype.maxUsers=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":301}],155:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserAccountCredentialsRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("password")&&(n.password=e.convertToType(i.password,"String")),i.hasOwnProperty("username")&&(n.username=e.convertToType(i.username,"String"))),n},t.prototype.password=void 0,t.prototype.username=void 0,t})},{"../../../alfrescoApiClient":301}],156:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserActionRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("action")&&(n.action=e.convertToType(i.action,"String")),i.hasOwnProperty("newPassword")&&(n.newPassword=e.convertToType(i.newPassword,"String")),i.hasOwnProperty("oldPassword")&&(n.oldPassword=e.convertToType(i.oldPassword,"String"))),n},t.prototype.action=void 0,t.prototype.newPassword=void 0,t.prototype.oldPassword=void 0,t})},{"../../../alfrescoApiClient":301}],157:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserFilterOrderRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("appId")&&(n.appId=e.convertToType(i.appId,"Integer")),i.hasOwnProperty("order")&&(n.order=e.convertToType(i.order,["Integer"]))),n},t.prototype.appId=void 0,t.prototype.order=void 0,t})},{"../../../alfrescoApiClient":301}],158:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessInstanceFilterRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ProcessInstanceFilterRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserProcessInstanceFilterRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessInstanceFilterRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appId")&&(o.appId=e.convertToType(n.appId,"Integer")),n.hasOwnProperty("filter")&&(o.filter=t.constructFromObject(n.filter)),n.hasOwnProperty("icon")&&(o.icon=e.convertToType(n.icon,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("index")&&(o.index=e.convertToType(n.index,"Integer")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("recent")&&(o.recent=e.convertToType(n.recent,"Boolean"))),o},i.prototype.appId=void 0,i.prototype.filter=void 0,i.prototype.icon=void 0,i.prototype.id=void 0,i.prototype.index=void 0,i.prototype.name=void 0,i.prototype.recent=void 0,i})},{"../../../alfrescoApiClient":301,"./ProcessInstanceFilterRepresentation":130}],159:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/GroupRepresentation","../model/LightAppRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./GroupRepresentation"),t("./LightAppRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.GroupRepresentation,n.ActivitiPublicRestApi.LightAppRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("apps")&&(r.apps=e.convertToType(o.apps,[i])),o.hasOwnProperty("capabilities")&&(r.capabilities=e.convertToType(o.capabilities,["String"])),o.hasOwnProperty("company")&&(r.company=e.convertToType(o.company,"String")),o.hasOwnProperty("created")&&(r.created=e.convertToType(o.created,"Date")),o.hasOwnProperty("email")&&(r.email=e.convertToType(o.email,"String")),o.hasOwnProperty("externalId")&&(r.externalId=e.convertToType(o.externalId,"String")),o.hasOwnProperty("firstName")&&(r.firstName=e.convertToType(o.firstName,"String")),o.hasOwnProperty("fullname")&&(r.fullname=e.convertToType(o.fullname,"String")),o.hasOwnProperty("groups")&&(r.groups=e.convertToType(o.groups,[t])),o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"Integer")),o.hasOwnProperty("lastName")&&(r.lastName=e.convertToType(o.lastName,"String")),o.hasOwnProperty("lastUpdate")&&(r.lastUpdate=e.convertToType(o.lastUpdate,"Date")),o.hasOwnProperty("latestSyncTimeStamp")&&(r.latestSyncTimeStamp=e.convertToType(o.latestSyncTimeStamp,"Date")),o.hasOwnProperty("password")&&(r.password=e.convertToType(o.password,"String")),o.hasOwnProperty("pictureId")&&(r.pictureId=e.convertToType(o.pictureId,"Integer")),o.hasOwnProperty("status")&&(r.status=e.convertToType(o.status,"String")),o.hasOwnProperty("tenantId")&&(r.tenantId=e.convertToType(o.tenantId,"Integer")),o.hasOwnProperty("tenantName")&&(r.tenantName=e.convertToType(o.tenantName,"String")),o.hasOwnProperty("tenantPictureId")&&(r.tenantPictureId=e.convertToType(o.tenantPictureId,"Integer")),o.hasOwnProperty("type")&&(r.type=e.convertToType(o.type,"String"))),r},n.prototype.apps=void 0,n.prototype.capabilities=void 0,n.prototype.company=void 0,n.prototype.created=void 0,n.prototype.email=void 0,n.prototype.externalId=void 0,n.prototype.firstName=void 0,n.prototype.fullname=void 0,n.prototype.groups=void 0,n.prototype.id=void 0,n.prototype.lastName=void 0,n.prototype.lastUpdate=void 0,n.prototype.latestSyncTimeStamp=void 0,n.prototype.password=void 0,n.prototype.pictureId=void 0,n.prototype.status=void 0,n.prototype.tenantId=void 0,n.prototype.tenantName=void 0,n.prototype.tenantPictureId=void 0,n.prototype.type=void 0,n})},{"../../../alfrescoApiClient":301,"./GroupRepresentation":114,"./LightAppRepresentation":117}],160:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/TaskFilterRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./TaskFilterRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserTaskFilterRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.TaskFilterRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appId")&&(o.appId=e.convertToType(n.appId,"Integer")),n.hasOwnProperty("filter")&&(o.filter=t.constructFromObject(n.filter)),n.hasOwnProperty("icon")&&(o.icon=e.convertToType(n.icon,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("index")&&(o.index=e.convertToType(n.index,"Integer")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("recent")&&(o.recent=e.convertToType(n.recent,"Boolean"))),o},i.prototype.appId=void 0,i.prototype.filter=void 0,i.prototype.icon=void 0,i.prototype.id=void 0,i.prototype.index=void 0,i.prototype.name=void 0,i.prototype.recent=void 0,i})},{"../../../alfrescoApiClient":301,"./TaskFilterRepresentation":148}],161:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ValidationErrorRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("defaultDescription")&&(n.defaultDescription=e.convertToType(i.defaultDescription,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("problem")&&(n.problem=e.convertToType(i.problem,"String")),i.hasOwnProperty("problemReference")&&(n.problemReference=e.convertToType(i.problemReference,"String")),i.hasOwnProperty("validatorSetName")&&(n.validatorSetName=e.convertToType(i.validatorSetName,"String")),i.hasOwnProperty("warning")&&(n.warning=e.convertToType(i.warning,"Boolean"))),n},t.prototype.defaultDescription=void 0,t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.problem=void 0,t.prototype.problemReference=void 0,t.prototype.validatorSetName=void 0,t.prototype.warning=void 0,t})},{"../../../alfrescoApiClient":301}],162:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.VariableScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("mapVariable")&&(n.mapVariable=e.convertToType(i.mapVariable,"String")),i.hasOwnProperty("mappedColumn")&&(n.mappedColumn=e.convertToType(i.mappedColumn,"String")),i.hasOwnProperty("mappedDataModel")&&(n.mappedDataModel=e.convertToType(i.mappedDataModel,"Integer")),i.hasOwnProperty("mappedEntity")&&(n.mappedEntity=e.convertToType(i.mappedEntity,"String")),i.hasOwnProperty("mappedVariableName")&&(n.mappedVariableName=e.convertToType(i.mappedVariableName,"String")),i.hasOwnProperty("processVariableName")&&(n.processVariableName=e.convertToType(i.processVariableName,"String")),i.hasOwnProperty("processVariableType")&&(n.processVariableType=e.convertToType(i.processVariableType,"String"))),n},t.prototype.mapVariable=void 0,t.prototype.mappedColumn=void 0,t.prototype.mappedDataModel=void 0,t.prototype.mappedEntity=void 0,t.prototype.mappedVariableName=void 0,t.prototype.processVariableName=void 0,t.prototype.processVariableType=void 0,t})},{"../../../alfrescoApiClient":301}],163:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/Error","../model/LoginTicketEntry","../model/LoginRequest","../model/ValidateTicketEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/Error"),t("../model/LoginTicketEntry"),t("../model/LoginRequest"),t("../model/ValidateTicketEntry")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.AuthenticationApi=r(n.AlfrescoAuthRestApi.ApiClient,n.AlfrescoAuthRestApi.Error,n.AlfrescoAuthRestApi.LoginTicketEntry,n.AlfrescoAuthRestApi.LoginRequest,n.AlfrescoAuthRestApi.ValidateTicketEntry))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.createTicket=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'loginRequest' when calling createTicket";var n={},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/tickets","POST",n,o,r,s,t,a,p,l,c)},this.deleteTicket=function(){var e=null,t={},i={},n={},o={},r=["basicAuth"],s=["application/json"],a=["application/json"],p=null;return this.apiClient.callApi("/tickets/-me-","DELETE",t,i,n,o,e,r,s,a,p)},this.validateTicket=function(){var e=null,t={},i={},n={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=o;return this.apiClient.callApi("/tickets/-me-","GET",t,i,n,r,e,s,a,p,l)}};return r})},{"../../../alfrescoApiClient":301,"../model/Error":165,"../model/LoginRequest":167,"../model/LoginTicketEntry":168,"../model/ValidateTicketEntry":170}],164:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n){"function"==typeof e&&e.amd?e(["../../alfrescoApiClient","./model/Error","./model/ErrorError","./model/LoginRequest","./model/LoginTicketEntry","./model/LoginTicketEntryEntry","./model/ValidateTicketEntry","./model/ValidateTicketEntryEntry","./api/AuthenticationApi"],n):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports&&(i.exports=n(t("../../alfrescoApiClient"),t("./model/Error"),t("./model/ErrorError"),t("./model/LoginRequest"),t("./model/LoginTicketEntry"),t("./model/LoginTicketEntryEntry"),t("./model/ValidateTicketEntry"),t("./model/ValidateTicketEntryEntry"),t("./api/AuthenticationApi")))}(function(e,t,i,n,o,r,s,a,p){var l={ApiClient:e,Error:t,ErrorError:i,LoginRequest:n,LoginTicketEntry:o,LoginTicketEntryEntry:r,ValidateTicketEntry:s,ValidateTicketEntryEntry:a,AuthenticationApi:p};return l})},{"../../alfrescoApiClient":301,"./api/AuthenticationApi":163,"./model/Error":165,"./model/ErrorError":166,"./model/LoginRequest":167,"./model/LoginTicketEntry":168,"./model/LoginTicketEntryEntry":169,"./model/ValidateTicketEntry":170,"./model/ValidateTicketEntryEntry":171}],165:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","./ErrorError"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ErrorError")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.Error=r(n.AlfrescoAuthRestApi.ApiClient,n.AlfrescoAuthRestApi.ErrorError))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=n||new i,e.hasOwnProperty("error")&&(n.error=t.constructFromObject(e.error))),n},i.prototype.error=void 0,i})},{"../../../alfrescoApiClient":301,"./ErrorError":166}],166:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.ErrorError=r(n.AlfrescoAuthRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i,n){this.briefSummary=e,this.descriptionURL=t,this.stackTrace=i,this.statusCode=n};return t.constructFromObject=function(i,n){return i&&(n=n||new t,i.hasOwnProperty("errorKey")&&(n.errorKey=e.convertToType(i.errorKey,"String")),i.hasOwnProperty("briefSummary")&&(n.briefSummary=e.convertToType(i.briefSummary,"String")),i.hasOwnProperty("descriptionURL")&&(n.descriptionURL=e.convertToType(i.descriptionURL,"String")),i.hasOwnProperty("logId")&&(n.logId=e.convertToType(i.logId,"String")),i.hasOwnProperty("stackTrace")&&(n.stackTrace=e.convertToType(i.stackTrace,"String")),i.hasOwnProperty("statusCode")&&(n.statusCode=e.convertToType(i.statusCode,"Integer"))),n},t.prototype.errorKey=void 0,t.prototype.briefSummary=void 0,t.prototype.descriptionURL=void 0,t.prototype.logId=void 0,t.prototype.stackTrace=void 0,t.prototype.statusCode=void 0,t})},{"../../../alfrescoApiClient":301}],167:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.LoginRequest=r(n.AlfrescoAuthRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=n||new t,i.hasOwnProperty("userId")&&(n.userId=e.convertToType(i.userId,"String")),i.hasOwnProperty("password")&&(n.password=e.convertToType(i.password,"String"))),n},t.prototype.userId=void 0,t.prototype.password=void 0,t})},{"../../../alfrescoApiClient":301}],168:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","./LoginTicketEntryEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LoginTicketEntryEntry")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.LoginTicketEntry=r(n.AlfrescoAuthRestApi.ApiClient,n.AlfrescoAuthRestApi.LoginTicketEntryEntry))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=n||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../../../alfrescoApiClient":301,"./LoginTicketEntryEntry":169}],169:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.LoginTicketEntryEntry=r(n.AlfrescoAuthRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=n||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("userId")&&(n.userId=e.convertToType(i.userId,"String"))),n},t.prototype.id=void 0,t.prototype.userId=void 0,t})},{"../../../alfrescoApiClient":301}],170:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){ -return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","./ValidateTicketEntryEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ValidateTicketEntryEntry")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.ValidateTicketEntry=r(n.AlfrescoAuthRestApi.ApiClient,n.AlfrescoAuthRestApi.ValidateTicketEntryEntry))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=n||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../../../alfrescoApiClient":301,"./ValidateTicketEntryEntry":171}],171:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.ValidateTicketEntryEntry=r(n.AlfrescoAuthRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=n||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.id=void 0,t})},{"../../../alfrescoApiClient":301}],172:[function(t,i,n){(function(n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["superagent"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("superagent")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ApiClient=r(n.superagent))}(void 0,function(e){var i=function(){this.basePath="https://localhost/alfresco/api/-default-/public/alfresco/versions/1".replace(/\/+$/,""),this.authentications={basicAuth:{type:"basic"}},this.defaultHeaders={},this.timeout=6e4};return i.prototype.paramToString=function(e){return void 0==e||null==e?"":e instanceof Date?e.toJSON():e.toString()},i.prototype.buildUrl=function(e,t){e.match(/^\//)||(e="/"+e);var i=this.basePath+e,n=this;return i=i.replace(/\{([\w-]+)\}/g,function(e,i){var o;return o=t.hasOwnProperty(i)?n.paramToString(t[i]):e,encodeURIComponent(o)})},i.prototype.isJsonMime=function(e){return Boolean(null!=e&&e.match(/^application\/json(;.*)?$/i))},i.prototype.jsonPreferredMime=function(e){for(var t=0;tt?e.substring(0,n):e,r=n>t?e.substring(n):"",s=i.parseDateTime(o),a=i.parseDateTimeZone(r);return s.setTime(s.getTime()+6e4*a),s},i.parseDateTime=function(e){var t=(e.split("+"),e.split(/[^0-9]/).map(function(e){return parseInt(e,10)}));return new Date(Date.UTC(t[0],t[1]-1||0,t[2]||1,t[3]||0,t[4]||0,t[5]||0,t[6]||0))},i.parseDateTimeZone=function(e){var t=/([\+\-])(\d{2}):?(\d{2})?/.exec(e);return null!==t?parseInt(t[1]+"1")*-1*(60*parseInt(t[2]))+parseInt(t[3]||0):0},i.convertToType=function(e,t){switch(t){case"Binary":return e;case"Boolean":return Boolean(e);case"Integer":return parseInt(e,10);case"Number":return parseFloat(e);case"String":return null!==e&&void 0!==e?String(e):e;case"Date":return e?this.parseDate(String(e)):null;default:if(t===Object)return e;if("function"==typeof t)return t.constructFromObject(e);if(Array.isArray(t)){var n=t[0];return e?e.map(function(e){return i.convertToType(e,n)}):null}if("object"===("undefined"==typeof t?"undefined":o(t))){var r,s;for(var a in t)if(t.hasOwnProperty(a)){r=a,s=t[a];break}var p={};for(var a in e)if(e.hasOwnProperty(a)){var l=i.convertToType(a,r),c=i.convertToType(e[a],s);p[l]=c}return p}return e}},i.instance=new i,i})}).call(this,t("buffer").Buffer)},{buffer:4,fs:3,superagent:25}],173:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/Error","../model/AssocTargetBody","../model/NodeAssocPaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/Error"),t("../model/AssocTargetBody"),t("../model/NodeAssocPaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.AssociationsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.AssocTargetBody,n.AlfrescoCoreRestApi.NodeAssocPaging))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.addAssoc=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling addAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'assocTargetBody' when calling addAssoc";var n={sourceId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{sourceId}/targets","POST",n,o,r,s,i,a,p,l,c)},this.listSourceNodeAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'targetId' when calling listSourceNodeAssociations";var o={targetId:e},r={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{targetId}/sources","GET",o,r,s,a,i,p,l,c,u)},this.listTargetAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling listTargetAssociations";var o={sourceId:e},r={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{sourceId}/targets","GET",o,r,s,a,i,p,l,c,u)},this.removeAssoc=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling removeAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'targetId' when calling removeAssoc";var o={sourceId:e,targetId:t},r={assocType:i.assocType},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{sourceId}/targets/{targetId}","DELETE",o,r,s,a,n,p,l,c,u)}};return o})},{"../ApiClient":172,"../model/AssocTargetBody":196,"../model/Error":214,"../model/NodeAssocPaging":228}],174:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/Error","../model/AssocTargetBody","../model/NodeEntry","../model/NodeBody1","../model/AssocChildBody","../model/NodeSharedLinkEntry","../model/SharedLinkBody","../model/CopyBody","../model/RenditionBody","../model/SiteBody","../model/SiteEntry","../model/EmailSharedLinkBody","../model/NodeSharedLinkPaging","../model/DeletedNodeEntry","../model/DeletedNodesPaging","../model/NodePaging","../model/RenditionEntry","../model/RenditionPaging","../model/NodeAssocPaging","../model/NodeChildAssocPaging","../model/MoveBody","../model/NodeBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/Error"),t("../model/AssocTargetBody"),t("../model/NodeEntry"),t("../model/NodeBody1"),t("../model/AssocChildBody"),t("../model/NodeSharedLinkEntry"),t("../model/SharedLinkBody"),t("../model/CopyBody"),t("../model/RenditionBody"),t("../model/SiteBody"),t("../model/SiteEntry"),t("../model/EmailSharedLinkBody"),t("../model/NodeSharedLinkPaging"),t("../model/DeletedNodeEntry"),t("../model/DeletedNodesPaging"),t("../model/NodePaging"),t("../model/RenditionEntry"),t("../model/RenditionPaging"),t("../model/NodeAssocPaging"),t("../model/NodeChildAssocPaging"),t("../model/MoveBody"),t("../model/NodeBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ChangesApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.AssocTargetBody,n.AlfrescoCoreRestApi.NodeEntry,n.AlfrescoCoreRestApi.NodeBody1,n.AlfrescoCoreRestApi.AssocChildBody,n.AlfrescoCoreRestApi.NodeSharedLinkEntry,n.AlfrescoCoreRestApi.SharedLinkBody,n.AlfrescoCoreRestApi.CopyBody,n.AlfrescoCoreRestApi.RenditionBody,n.AlfrescoCoreRestApi.SiteBody,n.AlfrescoCoreRestApi.SiteEntry,n.AlfrescoCoreRestApi.EmailSharedLinkBody,n.AlfrescoCoreRestApi.NodeSharedLinkPaging,n.AlfrescoCoreRestApi.DeletedNodeEntry,n.AlfrescoCoreRestApi.DeletedNodesPaging,n.AlfrescoCoreRestApi.NodePaging,n.AlfrescoCoreRestApi.RenditionEntry,n.AlfrescoCoreRestApi.RenditionPaging,n.AlfrescoCoreRestApi.NodeAssocPaging,n.AlfrescoCoreRestApi.NodeChildAssocPaging,n.AlfrescoCoreRestApi.MoveBody,n.AlfrescoCoreRestApi.NodeBody))}(void 0,function(e,t,i,n,o,r,s,a,p,l,c,u,d,f,y,m,h,v,A,b,g,C,R){var P=function(t){this.apiClient=t||e.instance,this.addAssoc=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling addAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'assocTargetBody' when calling addAssoc";var n={sourceId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{sourceId}/targets","POST",n,o,r,s,i,a,p,l,c)},this.addNode=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addNode";if(void 0==t||null==t)throw"Missing the required parameter 'nodeBody' when calling addNode";var r={nodeId:e},s={autoRename:i.autoRename,include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json","multipart/form-data"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}/children","POST",r,s,a,p,o,l,c,u,d)},this.addSecondaryChildAssoc=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling addSecondaryChildAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'assocChildBody' when calling addSecondaryChildAssoc";var n={parentId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{parentId}/secondary-children","POST",n,o,r,s,i,a,p,l,c)},this.addSharedLink=function(e,t){t=t||{};var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'sharedLinkBody' when calling addSharedLink";var n={},o={include:this.apiClient.buildCollectionParam(t.include,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=s;return this.apiClient.callApi("/shared-links","POST",n,o,r,a,i,p,l,c,u)},this.copyNode=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling copyNode";if(void 0==t||null==t)throw"Missing the required parameter 'copyBody' when calling copyNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}/copy","POST",r,s,a,p,o,l,c,u,d)},this.createRendition=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling createRendition";if(void 0==t||null==t)throw"Missing the required parameter 'renditionBody' when calling createRendition";var n={nodeId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/renditions","POST",n,o,r,s,i,a,p,l,c)},this.createSite=function(e,t){t=t||{};var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'siteBody' when calling createSite";var n={},o={skipConfiguration:t.skipConfiguration,skipAddToFavorites:t.skipAddToFavorites},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=u;return this.apiClient.callApi("/sites","POST",n,o,r,s,i,a,p,l,c)},this.deleteNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling deleteNode";var n={nodeId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}","DELETE",n,o,r,s,i,a,p,l,c)},this.deleteSharedLink=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling deleteSharedLink";var i={sharedId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/shared-links/{sharedId}","DELETE",i,n,o,r,t,s,a,p,l)},this.deleteSite=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling deleteSite";var n={siteId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/sites/{siteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.emailSharedLink=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling emailSharedLink";if(void 0==t||null==t)throw"Missing the required parameter 'emailSharedLinkBody' when calling emailSharedLink";var n={sharedId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/shared-links/{sharedId}/email","POST",n,o,r,s,i,a,p,l,c)},this.findSharedLinks=function(e){e=e||{};var t=null,i={},n={where:e.where,include:this.apiClient.buildCollectionParam(e.include,"csv"),fields:this.apiClient.buildCollectionParam(e.fields,"csv")},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=f;return this.apiClient.callApi("/shared-links","GET",i,n,o,r,t,s,a,p,l)},this.getDeletedNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getDeletedNode";var n={nodeId:e},o={include:this.apiClient.buildCollectionParam(t.include,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=y;return this.apiClient.callApi("/deleted-nodes/{nodeId}","GET",n,o,r,s,i,a,p,l,c)},this.getDeletedNodes=function(e){e=e||{};var t=null,i={},n={skipCount:e.skipCount,maxItems:e.maxItems,include:this.apiClient.buildCollectionParam(e.include,"csv")},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=m;return this.apiClient.callApi("/deleted-nodes","GET",i,n,o,r,t,s,a,p,l)},this.getFileContent=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getFileContent";var n={nodeId:e},o={attachment:t.attachment},r={"If-Modified-Since":t.ifModifiedSince},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/content","GET",n,o,r,s,i,a,p,l,c)},this.getNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNode";var o={nodeId:e},r={include:this.apiClient.buildCollectionParam(t.include,"csv"),relativePath:t.relativePath,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{nodeId}","GET",o,r,s,a,i,p,l,c,u)},this.getNodeChildren=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNodeChildren";var n={nodeId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,orderBy:t.orderBy,where:t.where,include:this.apiClient.buildCollectionParam(t.include,"csv"),relativePath:t.relativePath,includeSource:t.includeSource,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=h;return this.apiClient.callApi("/nodes/{nodeId}/children","GET",n,o,r,s,i,a,p,l,c)},this.getRendition=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRendition";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getRendition";var n={nodeId:e,renditionId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=v;return this.apiClient.callApi("/nodes/{nodeId}/renditions/{renditionId}","GET",n,o,r,s,i,a,p,l,c)},this.getRenditionContent=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRenditionContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getRenditionContent";var o={nodeId:e,renditionId:t},r={attachment:i.attachment},s={"If-Modified-Since":i.ifModifiedSince},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{nodeId}/renditions/{renditionId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getRenditions=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRenditions";var i={nodeId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=A;return this.apiClient.callApi("/nodes/{nodeId}/renditions","GET",i,n,o,r,t,s,a,p,l)},this.getSharedLink=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLink";var n={sharedId:e},o={include:this.apiClient.buildCollectionParam(t.include,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=s;return this.apiClient.callApi("/shared-links/{sharedId}","GET",n,o,r,a,i,p,l,c,u)},this.getSharedLinkContent=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkContent";var n={sharedId:e},o={attachment:t.attachment},r={"If-Modified-Since":t.ifModifiedSince},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/shared-links/{sharedId}/content","GET",n,o,r,s,i,a,p,l,c)},this.getSharedLinkRenditionContent=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkRenditionContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getSharedLinkRenditionContent";var o={sharedId:e,renditionId:t},r={attachment:i.attachment},s={"If-Modified-Since":i.ifModifiedSince},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/shared-links/{sharedId}/renditions/{renditionId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getSharedLinkRenditions=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkRenditions";var i={sharedId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=A;return this.apiClient.callApi("/shared-links/{sharedId}/renditions","GET",i,n,o,r,t,s,a,p,l)},this.listParents=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'childId' when calling listParents";var n={childId:e},o={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=b;return this.apiClient.callApi("/nodes/{childId}/parents","GET",n,o,r,s,i,a,p,l,c)},this.listSecondaryChildAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling listSecondaryChildAssociations";var n={parentId:e},o={assocType:t.assocType,where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=g;return this.apiClient.callApi("/nodes/{parentId}/secondary-children","GET",n,o,r,s,i,a,p,l,c)},this.listSourceNodeAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'targetId' when calling listSourceNodeAssociations";var n={targetId:e},o={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=b;return this.apiClient.callApi("/nodes/{targetId}/sources","GET",n,o,r,s,i,a,p,l,c)},this.listTargetAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling listTargetAssociations";var n={sourceId:e},o={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=b;return this.apiClient.callApi("/nodes/{sourceId}/targets","GET",n,o,r,s,i,a,p,l,c)},this.liveSearchNodes=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'term' when calling liveSearchNodes";var n={},o={skipCount:t.skipCount,maxItems:t.maxItems,term:e,rootNodeId:t.rootNodeId,nodeType:t.nodeType,include:t.include,orderBy:t.orderBy,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=h;return this.apiClient.callApi("/queries/live-search-nodes","GET",n,o,r,s,i,a,p,l,c)},this.moveNode=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling moveNode";if(void 0==t||null==t)throw"Missing the required parameter 'moveBody' when calling moveNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}/move","POST",r,s,a,p,o,l,c,u,d)},this.purgeDeletedNode=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling purgeDeletedNode";var i={nodeId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/deleted-nodes/{nodeId}","DELETE",i,n,o,r,t,s,a,p,l)},this.removeAssoc=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling removeAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'targetId' when calling removeAssoc";var o={sourceId:e,targetId:t},r={assocType:i.assocType},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{sourceId}/targets/{targetId}","DELETE",o,r,s,a,n,p,l,c,u)},this.removeSecondaryChildAssoc=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling removeSecondaryChildAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'childId' when calling removeSecondaryChildAssoc";var o={parentId:e,childId:t},r={assocType:i.assocType},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{parentId}/secondary-children/{childId}","DELETE",o,r,s,a,n,p,l,c,u)},this.restoreNode=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling restoreNode";var i={nodeId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/deleted-nodes/{nodeId}/restore","POST",i,o,r,s,t,a,p,l,c)},this.updateFileContent=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateFileContent";if(void 0==t||null==t)throw"Missing the required parameter 'contentBody' when calling updateFileContent";var r={nodeId:e},s={majorVersion:i.majorVersion,comment:i.comment,include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/octet-stream"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}/content","PUT",r,s,a,p,o,l,c,u,d)},this.updateNode=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateNode";if(void 0==t||null==t)throw"Missing the required parameter 'nodeBody' when calling updateNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}","PUT",r,s,a,p,o,l,c,u,d)}};return P})},{"../ApiClient":172,"../model/AssocChildBody":194,"../model/AssocTargetBody":196,"../model/CopyBody":206,"../model/DeletedNodeEntry":208,"../model/DeletedNodesPaging":211,"../model/EmailSharedLinkBody":213,"../model/Error":214,"../model/MoveBody":224,"../model/NodeAssocPaging":228,"../model/NodeBody":230,"../model/NodeBody1":231,"../model/NodeChildAssocPaging":234,"../model/NodeEntry":236,"../model/NodePaging":240,"../model/NodeSharedLinkEntry":243,"../model/NodeSharedLinkPaging":244,"../model/RenditionBody":267,"../model/RenditionEntry":268,"../model/RenditionPaging":269,"../model/SharedLinkBody":271,"../model/SiteBody":273,"../model/SiteEntry":277}],175:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/NodeEntry","../model/NodeBody1","../model/Error","../model/AssocChildBody","../model/NodePaging","../model/NodeAssocPaging","../model/NodeChildAssocPaging","../model/MoveBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/NodeEntry"),t("../model/NodeBody1"),t("../model/Error"),t("../model/AssocChildBody"),t("../model/NodePaging"),t("../model/NodeAssocPaging"),t("../model/NodeChildAssocPaging"),t("../model/MoveBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ChildAssociationsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeEntry,n.AlfrescoCoreRestApi.NodeBody1,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.AssocChildBody,n.AlfrescoCoreRestApi.NodePaging,n.AlfrescoCoreRestApi.NodeAssocPaging,n.AlfrescoCoreRestApi.NodeChildAssocPaging,n.AlfrescoCoreRestApi.MoveBody))}(void 0,function(e,t,i,n,o,r,s,a,p){var l=function(i){this.apiClient=i||e.instance,this.addNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addNode";if(void 0==i||null==i)throw"Missing the required parameter 'nodeBody' when calling addNode";var r={nodeId:e},s={autoRename:n.autoRename,include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json","multipart/form-data"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/children","POST",r,s,a,p,o,l,c,u,d)},this.addSecondaryChildAssoc=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling addSecondaryChildAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'assocChildBody' when calling addSecondaryChildAssoc";var n={parentId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{parentId}/secondary-children","POST",n,o,r,s,i,a,p,l,c)},this.deleteNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling deleteNode";var n={nodeId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}","DELETE",n,o,r,s,i,a,p,l,c)},this.getNodeChildren=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNodeChildren";var n={nodeId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,orderBy:t.orderBy,where:t.where,include:this.apiClient.buildCollectionParam(t.include,"csv"),relativePath:t.relativePath,includeSource:t.includeSource,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/nodes/{nodeId}/children","GET",n,o,s,a,i,p,l,c,u); -},this.listParents=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'childId' when calling listParents";var n={childId:e},o={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=s;return this.apiClient.callApi("/nodes/{childId}/parents","GET",n,o,r,a,i,p,l,c,u)},this.listSecondaryChildAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling listSecondaryChildAssociations";var n={parentId:e},o={assocType:t.assocType,where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/nodes/{parentId}/secondary-children","GET",n,o,r,s,i,p,l,c,u)},this.moveNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling moveNode";if(void 0==i||null==i)throw"Missing the required parameter 'moveBody' when calling moveNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/move","POST",r,s,a,p,o,l,c,u,d)},this.removeSecondaryChildAssoc=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling removeSecondaryChildAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'childId' when calling removeSecondaryChildAssoc";var o={parentId:e,childId:t},r={assocType:i.assocType},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{parentId}/secondary-children/{childId}","DELETE",o,r,s,a,n,p,l,c,u)}};return l})},{"../ApiClient":172,"../model/AssocChildBody":194,"../model/Error":214,"../model/MoveBody":224,"../model/NodeAssocPaging":228,"../model/NodeBody1":231,"../model/NodeChildAssocPaging":234,"../model/NodeEntry":236,"../model/NodePaging":240}],176:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/CommentBody","../model/CommentEntry","../model/Error","../model/CommentPaging","../model/CommentBody1"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/CommentBody"),t("../model/CommentEntry"),t("../model/Error"),t("../model/CommentPaging"),t("../model/CommentBody1")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.CommentBody,n.AlfrescoCoreRestApi.CommentEntry,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.CommentPaging,n.AlfrescoCoreRestApi.CommentBody1))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.addComment=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addComment";if(void 0==t||null==t)throw"Missing the required parameter 'commentBody' when calling addComment";var o={nodeId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/nodes/{nodeId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.getComments=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getComments";var n={nodeId:e},r={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/nodes/{nodeId}/comments","GET",n,r,s,a,i,p,l,c,u)},this.removeComment=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling removeComment";if(void 0==t||null==t)throw"Missing the required parameter 'commentId' when calling removeComment";var n={nodeId:e,commentId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/comments/{commentId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateComment=function(e,t,n,o){o=o||{};var r=n;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateComment";if(void 0==t||null==t)throw"Missing the required parameter 'commentId' when calling updateComment";if(void 0==n||null==n)throw"Missing the required parameter 'commentBody' when calling updateComment";var s={nodeId:e,commentId:t},a={fields:this.apiClient.buildCollectionParam(o.fields,"csv")},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f=i;return this.apiClient.callApi("/nodes/{nodeId}/comments/{commentId}","PUT",s,a,p,l,r,c,u,d,f)}};return s})},{"../ApiClient":172,"../model/CommentBody":199,"../model/CommentBody1":200,"../model/CommentEntry":201,"../model/CommentPaging":202,"../model/Error":214}],177:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/FavoriteEntry","../model/FavoriteBody","../model/Error","../model/FavoritePaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/FavoriteEntry"),t("../model/FavoriteBody"),t("../model/Error"),t("../model/FavoritePaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoritesApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.FavoriteEntry,n.AlfrescoCoreRestApi.FavoriteBody,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.FavoritePaging))}(void 0,function(e,t,i,n,o){var r=function(i){this.apiClient=i||e.instance,this.addFavorite=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling addFavorite";if(void 0==i||null==i)throw"Missing the required parameter 'favoriteBody' when calling addFavorite";var o={personId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/people/{personId}/favorites","POST",o,r,s,a,n,p,l,c,u)},this.getFavorite=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavorite";if(void 0==i||null==i)throw"Missing the required parameter 'favoriteId' when calling getFavorite";var r={personId:e,favoriteId:i},s={fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/people/{personId}/favorites/{favoriteId}","GET",r,s,a,p,o,l,c,u,d)},this.getFavorites=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavorites";var n={personId:e},r={skipCount:t.skipCount,maxItems:t.maxItems,where:t.where,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/people/{personId}/favorites","GET",n,r,s,a,i,p,l,c,u)},this.removeFavoriteSite=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling removeFavoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'favoriteId' when calling removeFavoriteSite";var n={personId:e,favoriteId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/people/{personId}/favorites/{favoriteId}","DELETE",n,o,r,s,i,a,p,l,c)}};return r})},{"../ApiClient":172,"../model/Error":214,"../model/FavoriteBody":217,"../model/FavoriteEntry":218,"../model/FavoritePaging":219}],178:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/PersonNetworkEntry","../model/Error"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/PersonNetworkEntry"),t("../model/Error")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NetworksApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PersonNetworkEntry,n.AlfrescoCoreRestApi.Error))}(void 0,function(e,t,i){var n=function(i){this.apiClient=i||e.instance,this.getNetwork=function(e,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getNetwork";var o={networkId:e},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/networks/{networkId}","GET",o,r,s,a,n,p,l,c,u)}};return n})},{"../ApiClient":172,"../model/Error":214,"../model/PersonNetworkEntry":253}],179:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/NodeEntry","../model/NodeBody1","../model/Error","../model/CopyBody","../model/DeletedNodeEntry","../model/DeletedNodesPaging","../model/NodePaging","../model/MoveBody","../model/NodeBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/NodeEntry"),t("../model/NodeBody1"),t("../model/Error"),t("../model/CopyBody"),t("../model/DeletedNodeEntry"),t("../model/DeletedNodesPaging"),t("../model/NodePaging"),t("../model/MoveBody"),t("../model/NodeBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodesApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeEntry,n.AlfrescoCoreRestApi.NodeBody1,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.CopyBody,n.AlfrescoCoreRestApi.DeletedNodeEntry,n.AlfrescoCoreRestApi.DeletedNodesPaging,n.AlfrescoCoreRestApi.NodePaging,n.AlfrescoCoreRestApi.MoveBody,n.AlfrescoCoreRestApi.NodeBody))}(void 0,function(e,t,i,n,o,r,s,a,p,l){var c=function(i){this.apiClient=i||e.instance,this.addNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addNode";if(void 0==i||null==i)throw"Missing the required parameter 'nodeBody' when calling addNode";var r={nodeId:e},s={autoRename:n.autoRename,include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json","multipart/form-data"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/children","POST",r,s,a,p,o,l,c,u,d)},this.copyNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling copyNode";if(void 0==i||null==i)throw"Missing the required parameter 'copyBody' when calling copyNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/copy","POST",r,s,a,p,o,l,c,u,d)},this.deleteNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling deleteNode";var n={nodeId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}","DELETE",n,o,r,s,i,a,p,l,c)},this.getDeletedNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getDeletedNode";var n={nodeId:e},o={include:this.apiClient.buildCollectionParam(t.include,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/deleted-nodes/{nodeId}","GET",n,o,s,a,i,p,l,c,u)},this.getDeletedNodes=function(e){e=e||{};var t=null,i={},n={skipCount:e.skipCount,maxItems:e.maxItems,include:this.apiClient.buildCollectionParam(e.include,"csv")},o={},r={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=s;return this.apiClient.callApi("/deleted-nodes","GET",i,n,o,r,t,a,p,l,c)},this.getFileContent=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getFileContent";var n={nodeId:e},o={attachment:t.attachment},r={"If-Modified-Since":t.ifModifiedSince},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c="Binary";return this.apiClient.callApi("/nodes/{nodeId}/content","GET",n,o,r,s,i,a,p,l,c)},this.getNode=function(e,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNode";var o={nodeId:e},r={include:this.apiClient.buildCollectionParam(i.include,"csv"),relativePath:i.relativePath,fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/nodes/{nodeId}","GET",o,r,s,a,n,p,l,c,u)},this.getNodeChildren=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNodeChildren";var n={nodeId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,orderBy:t.orderBy,where:t.where,include:this.apiClient.buildCollectionParam(t.include,"csv"),relativePath:t.relativePath,includeSource:t.includeSource,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/nodes/{nodeId}/children","GET",n,o,r,s,i,p,l,c,u)},this.moveNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling moveNode";if(void 0==i||null==i)throw"Missing the required parameter 'moveBody' when calling moveNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/move","POST",r,s,a,p,o,l,c,u,d)},this.purgeDeletedNode=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling purgeDeletedNode";var i={nodeId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/deleted-nodes/{nodeId}","DELETE",i,n,o,r,t,s,a,p,l)},this.restoreNode=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling restoreNode";var n={nodeId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/deleted-nodes/{nodeId}/restore","POST",n,o,r,s,i,a,p,l,c)},this.updateFileContent=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateFileContent";if(void 0==i||null==i)throw"Missing the required parameter 'contentBody' when calling updateFileContent";var r={nodeId:e},s={majorVersion:n.majorVersion,comment:n.comment,include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/octet-stream"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/content","PUT",r,s,a,p,o,l,c,u,d)},this.updateNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateNode";if(void 0==i||null==i)throw"Missing the required parameter 'nodeBody' when calling updateNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}","PUT",r,s,a,p,o,l,c,u,d)}};return c})},{"../ApiClient":172,"../model/CopyBody":206,"../model/DeletedNodeEntry":208,"../model/DeletedNodesPaging":211,"../model/Error":214,"../model/MoveBody":224,"../model/NodeBody":230,"../model/NodeBody1":231,"../model/NodeEntry":236,"../model/NodePaging":240}],180:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/FavoriteEntry","../model/FavoriteBody","../model/Error","../model/SiteMembershipBody","../model/SiteMembershipRequestEntry","../model/FavoriteSiteBody","../model/InlineResponse201","../model/ActivityPaging","../model/SiteEntry","../model/SitePaging","../model/FavoritePaging","../model/PersonEntry","../model/PersonNetworkEntry","../model/PersonNetworkPaging","../model/PreferenceEntry","../model/PreferencePaging","../model/SiteMembershipRequestPaging","../model/SiteMembershipBody1"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/FavoriteEntry"),t("../model/FavoriteBody"),t("../model/Error"),t("../model/SiteMembershipBody"),t("../model/SiteMembershipRequestEntry"),t("../model/FavoriteSiteBody"),t("../model/InlineResponse201"),t("../model/ActivityPaging"),t("../model/SiteEntry"),t("../model/SitePaging"),t("../model/FavoritePaging"),t("../model/PersonEntry"),t("../model/PersonNetworkEntry"),t("../model/PersonNetworkPaging"),t("../model/PreferenceEntry"),t("../model/PreferencePaging"),t("../model/SiteMembershipRequestPaging"),t("../model/SiteMembershipBody1")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PeopleApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.FavoriteEntry,n.AlfrescoCoreRestApi.FavoriteBody,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.SiteMembershipBody,n.AlfrescoCoreRestApi.SiteMembershipRequestEntry,n.AlfrescoCoreRestApi.FavoriteSiteBody,n.AlfrescoCoreRestApi.InlineResponse201,n.AlfrescoCoreRestApi.ActivityPaging,n.AlfrescoCoreRestApi.SiteEntry,n.AlfrescoCoreRestApi.SitePaging,n.AlfrescoCoreRestApi.FavoritePaging,n.AlfrescoCoreRestApi.PersonEntry,n.AlfrescoCoreRestApi.PersonNetworkEntry,n.AlfrescoCoreRestApi.PersonNetworkPaging,n.AlfrescoCoreRestApi.PreferenceEntry,n.AlfrescoCoreRestApi.PreferencePaging,n.AlfrescoCoreRestApi.SiteMembershipRequestPaging,n.AlfrescoCoreRestApi.SiteMembershipBody1))}(void 0,function(e,t,i,n,o,r,s,a,p,l,c,u,d,f,y,m,h,v,A){var b=function(i){this.apiClient=i||e.instance,this.addFavorite=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling addFavorite";if(void 0==i||null==i)throw"Missing the required parameter 'favoriteBody' when calling addFavorite";var o={personId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/people/{personId}/favorites","POST",o,r,s,a,n,p,l,c,u)},this.addSiteMembershipRequest=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling addSiteMembershipRequest";if(void 0==t||null==t)throw"Missing the required parameter 'siteMembershipBody' when calling addSiteMembershipRequest";var n={personId:e},o={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/people/{personId}/site-membership-requests","POST",n,o,s,a,i,p,l,c,u)},this.deleteFavoriteSite=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling deleteFavoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling deleteFavoriteSite";var n={personId:e,siteId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/people/{personId}/favorite-sites/{siteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.favoriteSite=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling favoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'favoriteSiteBody' when calling favoriteSite";var n={personId:e},o={},r={},s={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/people/{personId}/favorite-sites","POST",n,o,r,s,i,p,l,c,u)},this.getActivities=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getActivities";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,who:t.who,siteId:t.siteId,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],l=["application/json"],c=["application/json"],u=p;return this.apiClient.callApi("/people/{personId}/activities","GET",n,o,r,s,i,a,l,c,u)},this.getFavorite=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavorite";if(void 0==i||null==i)throw"Missing the required parameter 'favoriteId' when calling getFavorite";var r={personId:e,favoriteId:i},s={fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/people/{personId}/favorites/{favoriteId}","GET",r,s,a,p,o,l,c,u,d)},this.getFavoriteSite=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling getFavoriteSite";var o={personId:e,siteId:t},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],c=["application/json"],u=["application/json"],d=l;return this.apiClient.callApi("/people/{personId}/favorite-sites/{siteId}","GET",o,r,s,a,n,p,c,u,d)},this.getFavoriteSites=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavoriteSites";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],u=c;return this.apiClient.callApi("/people/{personId}/favorite-sites","GET",n,o,r,s,i,a,p,l,u)},this.getFavorites=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavorites";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,where:t.where,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=u;return this.apiClient.callApi("/people/{personId}/favorites","GET",n,o,r,s,i,a,p,l,c)},this.getPerson=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPerson";var n={personId:e},o={fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=d;return this.apiClient.callApi("/people/{personId}","GET",n,o,r,s,i,a,p,l,c)},this.getPersonNetwork=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPersonNetwork";if(void 0==t||null==t)throw"Missing the required parameter 'networkId' when calling getPersonNetwork";var o={personId:e,networkId:t},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=f;return this.apiClient.callApi("/people/{personId}/networks/{networkId}","GET",o,r,s,a,n,p,l,c,u)},this.getPersonNetworks=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPersonNetworks";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=y;return this.apiClient.callApi("/people/{personId}/networks","GET",n,o,r,s,i,a,p,l,c)},this.getPreference=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPreference";if(void 0==t||null==t)throw"Missing the required parameter 'preferenceName' when calling getPreference";var o={personId:e,preferenceName:t},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=m;return this.apiClient.callApi("/people/{personId}/preferences/{preferenceName}","GET",o,r,s,a,n,p,l,c,u)},this.getPreferences=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPreferences";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=h;return this.apiClient.callApi("/people/{personId}/preferences","GET",n,o,r,s,i,a,p,l,c)},this.getSiteMembership=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getSiteMembership";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,orderBy:t.orderBy,relations:this.apiClient.buildCollectionParam(t.relations,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],u=c;return this.apiClient.callApi("/people/{personId}/sites","GET",n,o,r,s,i,a,p,l,u)},this.getSiteMembershipRequest=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getSiteMembershipRequest";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling getSiteMembershipRequest";var o={personId:e,siteId:t},s={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=r;return this.apiClient.callApi("/people/{personId}/site-membership-requests/{siteId}","GET",o,s,a,p,n,l,c,u,d)},this.getSiteMembershipRequests=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getSiteMembershipRequests";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=v;return this.apiClient.callApi("/people/{personId}/site-membership-requests","GET",n,o,r,s,i,a,p,l,c)},this.removeFavoriteSite=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling removeFavoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'favoriteId' when calling removeFavoriteSite";var n={personId:e,favoriteId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/people/{personId}/favorites/{favoriteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.removeSiteMembershipRequest=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling removeSiteMembershipRequest";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling removeSiteMembershipRequest";var n={personId:e,siteId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/people/{personId}/site-membership-requests/{siteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateSiteMembershipRequest=function(e,t,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling updateSiteMembershipRequest";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling updateSiteMembershipRequest";if(void 0==i||null==i)throw"Missing the required parameter 'siteMembershipBody' when calling updateSiteMembershipRequest";var o={personId:e,siteId:t},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/people/{personId}/site-membership-requests/{siteId}","PUT",o,r,s,a,n,p,l,c,u)}};return b})},{"../ApiClient":172,"../model/ActivityPaging":192,"../model/Error":214,"../model/FavoriteBody":217,"../model/FavoriteEntry":218,"../model/FavoritePaging":219,"../model/FavoriteSiteBody":221,"../model/InlineResponse201":222,"../model/PersonEntry":251,"../model/PersonNetworkEntry":253,"../model/PersonNetworkPaging":254,"../model/PreferenceEntry":257,"../model/PreferencePaging":258,"../model/SiteEntry":277,"../model/SiteMembershipBody":283,"../model/SiteMembershipBody1":284,"../model/SiteMembershipRequestEntry":286,"../model/SiteMembershipRequestPaging":287,"../model/SitePaging":289}],181:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/Error","../model/NodePaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/Error"),t("../model/NodePaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SearchApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.NodePaging))}(void 0,function(e,t,i){var n=function(t){this.apiClient=t||e.instance,this.findNodes=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'term' when calling findNodes";var o={},r={skipCount:t.skipCount,maxItems:t.maxItems,term:e,rootNodeId:t.rootNodeId,nodeType:t.nodeType,include:t.include,orderBy:t.orderBy,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/queries/nodes","GET",o,r,s,a,n,p,l,c,u)}};return n})},{"../ApiClient":172,"../model/Error":214,"../model/NodePaging":240}],182:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/RatingEntry","../model/Error","../model/RatingPaging","../model/RatingBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/RatingEntry"),t("../model/Error"),t("../model/RatingPaging"),t("../model/RatingBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RatingEntry,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.RatingPaging,n.AlfrescoCoreRestApi.RatingBody))}(void 0,function(e,t,i,n,o){var r=function(i){this.apiClient=i||e.instance,this.getRating=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRating";if(void 0==i||null==i)throw"Missing the required parameter 'ratingId' when calling getRating"; -var r={nodeId:e,ratingId:i},s={fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/ratings/{ratingId}","GET",r,s,a,p,o,l,c,u,d)},this.getRatings=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRatings";var o={nodeId:e},r={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{nodeId}/ratings","GET",o,r,s,a,i,p,l,c,u)},this.rate=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling rate";if(void 0==i||null==i)throw"Missing the required parameter 'ratingBody' when calling rate";var o={nodeId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/nodes/{nodeId}/ratings","POST",o,r,s,a,n,p,l,c,u)},this.removeRating=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling removeRating";if(void 0==t||null==t)throw"Missing the required parameter 'ratingId' when calling removeRating";var n={nodeId:e,ratingId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/ratings/{ratingId}","DELETE",n,o,r,s,i,a,p,l,c)}};return r})},{"../ApiClient":172,"../model/Error":214,"../model/RatingBody":262,"../model/RatingEntry":263,"../model/RatingPaging":264}],183:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/RenditionBody","../model/Error","../model/RenditionEntry","../model/RenditionPaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/RenditionBody"),t("../model/Error"),t("../model/RenditionEntry"),t("../model/RenditionPaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RenditionBody,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.RenditionEntry,n.AlfrescoCoreRestApi.RenditionPaging))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.createRendition=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling createRendition";if(void 0==t||null==t)throw"Missing the required parameter 'renditionBody' when calling createRendition";var n={nodeId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/renditions","POST",n,o,r,s,i,a,p,l,c)},this.getRendition=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRendition";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getRendition";var o={nodeId:e,renditionId:t},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{nodeId}/renditions/{renditionId}","GET",o,r,s,a,i,p,l,c,u)},this.getRenditionContent=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRenditionContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getRenditionContent";var o={nodeId:e,renditionId:t},r={attachment:i.attachment},s={"If-Modified-Since":i.ifModifiedSince},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{nodeId}/renditions/{renditionId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getRenditions=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRenditions";var i={nodeId:e},n={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/nodes/{nodeId}/renditions","GET",i,n,r,s,t,a,p,l,c)},this.getSharedLinkRenditionContent=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkRenditionContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getSharedLinkRenditionContent";var o={sharedId:e,renditionId:t},r={attachment:i.attachment},s={"If-Modified-Since":i.ifModifiedSince},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/shared-links/{sharedId}/renditions/{renditionId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getSharedLinkRenditions=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkRenditions";var i={sharedId:e},n={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/shared-links/{sharedId}/renditions","GET",i,n,r,s,t,a,p,l,c)}};return r})},{"../ApiClient":172,"../model/Error":214,"../model/RenditionBody":267,"../model/RenditionEntry":268,"../model/RenditionPaging":269}],184:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/Error","../model/NodeSharedLinkEntry","../model/SharedLinkBody","../model/EmailSharedLinkBody","../model/NodeSharedLinkPaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/Error"),t("../model/NodeSharedLinkEntry"),t("../model/SharedLinkBody"),t("../model/EmailSharedLinkBody"),t("../model/NodeSharedLinkPaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SharedlinksApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.NodeSharedLinkEntry,n.AlfrescoCoreRestApi.SharedLinkBody,n.AlfrescoCoreRestApi.EmailSharedLinkBody,n.AlfrescoCoreRestApi.NodeSharedLinkPaging))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.addSharedLink=function(e,t){t=t||{};var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'sharedLinkBody' when calling addSharedLink";var o={},r={include:this.apiClient.buildCollectionParam(t.include,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/shared-links","POST",o,r,s,a,n,p,l,c,u)},this.deleteSharedLink=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling deleteSharedLink";var i={sharedId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/shared-links/{sharedId}","DELETE",i,n,o,r,t,s,a,p,l)},this.emailSharedLink=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling emailSharedLink";if(void 0==t||null==t)throw"Missing the required parameter 'emailSharedLinkBody' when calling emailSharedLink";var n={sharedId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/shared-links/{sharedId}/email","POST",n,o,r,s,i,a,p,l,c)},this.findSharedLinks=function(e){e=e||{};var t=null,i={},n={where:e.where,include:this.apiClient.buildCollectionParam(e.include,"csv"),fields:this.apiClient.buildCollectionParam(e.fields,"csv")},o={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=r;return this.apiClient.callApi("/shared-links","GET",i,n,o,s,t,a,p,l,c)},this.getSharedLink=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLink";var o={sharedId:e},r={include:this.apiClient.buildCollectionParam(t.include,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/shared-links/{sharedId}","GET",o,r,s,a,n,p,l,c,u)},this.getSharedLinkContent=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkContent";var n={sharedId:e},o={attachment:t.attachment},r={"If-Modified-Since":t.ifModifiedSince},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/shared-links/{sharedId}/content","GET",n,o,r,s,i,a,p,l,c)}};return s})},{"../ApiClient":172,"../model/EmailSharedLinkBody":213,"../model/Error":214,"../model/NodeSharedLinkEntry":243,"../model/NodeSharedLinkPaging":244,"../model/SharedLinkBody":271}],185:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/SiteMemberEntry","../model/Error","../model/SiteMemberBody","../model/SiteBody","../model/SiteEntry","../model/SiteContainerEntry","../model/SiteContainerPaging","../model/SiteMemberPaging","../model/SitePaging","../model/SiteMemberRoleBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/SiteMemberEntry"),t("../model/Error"),t("../model/SiteMemberBody"),t("../model/SiteBody"),t("../model/SiteEntry"),t("../model/SiteContainerEntry"),t("../model/SiteContainerPaging"),t("../model/SiteMemberPaging"),t("../model/SitePaging"),t("../model/SiteMemberRoleBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SitesApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteMemberEntry,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.SiteMemberBody,n.AlfrescoCoreRestApi.SiteBody,n.AlfrescoCoreRestApi.SiteEntry,n.AlfrescoCoreRestApi.SiteContainerEntry,n.AlfrescoCoreRestApi.SiteContainerPaging,n.AlfrescoCoreRestApi.SiteMemberPaging,n.AlfrescoCoreRestApi.SitePaging,n.AlfrescoCoreRestApi.SiteMemberRoleBody))}(void 0,function(e,t,i,n,o,r,s,a,p,l,c){var u=function(i){this.apiClient=i||e.instance,this.addSiteMember=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling addSiteMember";if(void 0==i||null==i)throw"Missing the required parameter 'siteMemberBody' when calling addSiteMember";var o={siteId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/sites/{siteId}/members","POST",o,r,s,a,n,p,l,c,u)},this.createSite=function(e,t){t=t||{};var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'siteBody' when calling createSite";var n={},o={skipConfiguration:t.skipConfiguration,skipAddToFavorites:t.skipAddToFavorites},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/sites","POST",n,o,s,a,i,p,l,c,u)},this.deleteSite=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling deleteSite";var n={siteId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/sites/{siteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.getSite=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSite";var n={siteId:e},o={relations:this.apiClient.buildCollectionParam(t.relations,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/sites/{siteId}","GET",n,o,s,a,i,p,l,c,u)},this.getSiteContainer=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSiteContainer";if(void 0==t||null==t)throw"Missing the required parameter 'containerId' when calling getSiteContainer";var o={siteId:e,containerId:t},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=s;return this.apiClient.callApi("/sites/{siteId}/containers/{containerId}","GET",o,r,a,p,n,l,c,u,d)},this.getSiteContainers=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSiteContainers";var n={siteId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/sites/{siteId}/containers","GET",n,o,r,s,i,p,l,c,u)},this.getSiteMember=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSiteMember";if(void 0==i||null==i)throw"Missing the required parameter 'personId' when calling getSiteMember";var r={siteId:e,personId:i},s={fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/sites/{siteId}/members/{personId}","GET",r,s,a,p,o,l,c,u,d)},this.getSiteMembers=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSiteMembers";var n={siteId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],l=["application/json"],c=["application/json"],u=p;return this.apiClient.callApi("/sites/{siteId}/members","GET",n,o,r,s,i,a,l,c,u)},this.getSites=function(e){e=e||{};var t=null,i={},n={skipCount:e.skipCount,maxItems:e.maxItems,orderBy:e.orderBy,relations:this.apiClient.buildCollectionParam(e.relations,"csv"),fields:this.apiClient.buildCollectionParam(e.fields,"csv")},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],c=l;return this.apiClient.callApi("/sites","GET",i,n,o,r,t,s,a,p,c)},this.removeSiteMember=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling removeSiteMember";if(void 0==t||null==t)throw"Missing the required parameter 'personId' when calling removeSiteMember";var n={siteId:e,personId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/sites/{siteId}/members/{personId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateSiteMember=function(e,i,n){var o=n;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling updateSiteMember";if(void 0==i||null==i)throw"Missing the required parameter 'personId' when calling updateSiteMember";if(void 0==n||null==n)throw"Missing the required parameter 'siteMemberRoleBody' when calling updateSiteMember";var r={siteId:e,personId:i},s={},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/sites/{siteId}/members/{personId}","PUT",r,s,a,p,o,l,c,u,d)}};return u})},{"../ApiClient":172,"../model/Error":214,"../model/SiteBody":273,"../model/SiteContainerEntry":275,"../model/SiteContainerPaging":276,"../model/SiteEntry":277,"../model/SiteMemberBody":279,"../model/SiteMemberEntry":280,"../model/SiteMemberPaging":281,"../model/SiteMemberRoleBody":282,"../model/SitePaging":289}],186:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/TagBody","../model/Error","../model/TagEntry","../model/TagPaging","../model/TagBody1"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/TagBody"),t("../model/Error"),t("../model/TagEntry"),t("../model/TagPaging"),t("../model/TagBody1")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.TagBody,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.TagEntry,n.AlfrescoCoreRestApi.TagPaging,n.AlfrescoCoreRestApi.TagBody1))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.addTag=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addTag";if(void 0==t||null==t)throw"Missing the required parameter 'tagBody' when calling addTag";var o={nodeId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{nodeId}/tags","POST",o,r,s,a,i,p,l,c,u)},this.getNodeTags=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNodeTags";var n={nodeId:e},r={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/nodes/{nodeId}/tags","GET",n,r,s,a,i,p,l,c,u)},this.getTag=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'tagId' when calling getTag";var o={tagId:e},r={fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/tags/{tagId}","GET",o,r,s,a,i,p,l,c,u)},this.getTags=function(e){e=e||{};var t=null,i={},n={skipCount:e.skipCount,maxItems:e.maxItems,fields:this.apiClient.buildCollectionParam(e.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/tags","GET",i,n,r,s,t,a,p,l,c)},this.removeTag=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling removeTag";if(void 0==t||null==t)throw"Missing the required parameter 'tagId' when calling removeTag";var n={nodeId:e,tagId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/tags/{tagId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateTag=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'tagId' when calling updateTag";if(void 0==t||null==t)throw"Missing the required parameter 'tagBody' when calling updateTag";var o={tagId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/tags/{tagId}","PUT",o,r,s,a,i,p,l,c,u)}};return s})},{"../ApiClient":172,"../model/Error":214,"../model/TagBody":292,"../model/TagBody1":293,"../model/TagEntry":294,"../model/TagPaging":295}],187:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.WebscriptApi=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.allowedMethod=["GET","POST","PUT","DELETE"],this.executeWebScript=function(e,t,i,n,o,r){if(n=n||"alfresco",o=o||"service",r=r||null,!e||this.allowedMethod.indexOf(e)===-1)throw"method allowed value GET, POST, PUT and DELETE";if(!t)throw"Missing the required parameter scriptPath when calling executeWebScript";var s={},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json","text/html"],d={};return this.apiClient.callApi("/"+o+"/"+t,e,s,i,a,p,r,l,c,u,d,n)}};return t})},{"../ApiClient":172}],188:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n){"function"==typeof e&&e.amd?e(["./ApiClient","./model/Activity","./model/ActivityActivitySummary","./model/ActivityEntry","./model/ActivityPaging","./model/ActivityPagingList","./model/AssocChildBody","./model/AssocInfo","./model/AssocTargetBody","./model/ChildAssocInfo","./model/Comment","./model/CommentBody","./model/CommentBody1","./model/CommentEntry","./model/CommentPaging","./model/CommentPagingList","./model/Company","./model/ContentInfo","./model/CopyBody","./model/DeletedNode","./model/DeletedNodeEntry","./model/DeletedNodeMinimal","./model/DeletedNodeMinimalEntry","./model/DeletedNodesPaging","./model/DeletedNodesPagingList","./model/EmailSharedLinkBody","./model/Error","./model/ErrorError","./model/Favorite","./model/FavoriteBody","./model/FavoriteEntry","./model/FavoritePaging","./model/FavoritePagingList","./model/FavoriteSiteBody","./model/InlineResponse201","./model/InlineResponse201Entry","./model/MoveBody","./model/NetworkQuota","./model/NodeAssocMinimal","./model/NodeAssocMinimalEntry","./model/NodeAssocPaging","./model/NodeAssocPagingList","./model/NodeBody","./model/NodeBody1","./model/NodeChildAssocMinimal","./model/NodeChildAssocMinimalEntry","./model/NodeChildAssocPaging","./model/NodeChildAssocPagingList","./model/NodeEntry","./model/NodeFull","./model/NodeMinimal","./model/NodeMinimalEntry","./model/NodePaging","./model/NodePagingList","./model/NodeSharedLink","./model/NodeSharedLinkEntry","./model/NodeSharedLinkPaging","./model/NodeSharedLinkPagingList","./model/NodesnodeIdchildrenContent","./model/Pagination","./model/PathElement","./model/PathInfo","./model/Person","./model/PersonEntry","./model/PersonNetwork","./model/PersonNetworkEntry","./model/PersonNetworkPaging","./model/PersonNetworkPagingList","./model/Preference","./model/PreferenceEntry","./model/PreferencePaging","./model/PreferencePagingList","./model/Rating","./model/RatingAggregate","./model/RatingBody","./model/RatingEntry","./model/RatingPaging","./model/RatingPagingList","./model/Rendition","./model/RenditionBody","./model/RenditionEntry","./model/RenditionPaging","./model/RenditionPagingList","./model/SharedLinkBody","./model/Site","./model/SiteBody","./model/SiteContainer","./model/SiteContainerEntry","./model/SiteContainerPaging","./model/SiteEntry","./model/SiteMember","./model/SiteMemberBody","./model/SiteMemberEntry","./model/SiteMemberPaging","./model/SiteMemberRoleBody","./model/SiteMembershipBody","./model/SiteMembershipBody1","./model/SiteMembershipRequest","./model/SiteMembershipRequestEntry","./model/SiteMembershipRequestPaging","./model/SiteMembershipRequestPagingList","./model/SitePaging","./model/SitePagingList","./model/Tag","./model/TagBody","./model/TagBody1","./model/TagEntry","./model/TagPaging","./model/TagPagingList","./model/UserInfo","./api/AssociationsApi","./api/ChangesApi","./api/ChildAssociationsApi","./api/CommentsApi","./api/FavoritesApi","./api/NetworksApi","./api/NodesApi","./api/PeopleApi","./api/RatingsApi","./api/RenditionsApi","./api/QueriesApi","./api/SharedlinksApi","./api/SitesApi","./api/TagsApi","./api/WebscriptApi"],n):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports&&(i.exports=n(t("./ApiClient"),t("./model/Activity"),t("./model/ActivityActivitySummary"),t("./model/ActivityEntry"),t("./model/ActivityPaging"),t("./model/ActivityPagingList"),t("./model/AssocChildBody"),t("./model/AssocInfo"),t("./model/AssocTargetBody"),t("./model/ChildAssocInfo"),t("./model/Comment"),t("./model/CommentBody"),t("./model/CommentBody1"),t("./model/CommentEntry"),t("./model/CommentPaging"),t("./model/CommentPagingList"),t("./model/Company"),t("./model/ContentInfo"),t("./model/CopyBody"),t("./model/DeletedNode"),t("./model/DeletedNodeEntry"),t("./model/DeletedNodeMinimal"),t("./model/DeletedNodeMinimalEntry"),t("./model/DeletedNodesPaging"),t("./model/DeletedNodesPagingList"),t("./model/EmailSharedLinkBody"),t("./model/Error"),t("./model/ErrorError"),t("./model/Favorite"),t("./model/FavoriteBody"),t("./model/FavoriteEntry"),t("./model/FavoritePaging"),t("./model/FavoritePagingList"),t("./model/FavoriteSiteBody"),t("./model/InlineResponse201"),t("./model/InlineResponse201Entry"),t("./model/MoveBody"),t("./model/NetworkQuota"),t("./model/NodeAssocMinimal"),t("./model/NodeAssocMinimalEntry"),t("./model/NodeAssocPaging"),t("./model/NodeAssocPagingList"),t("./model/NodeBody"),t("./model/NodeBody1"),t("./model/NodeChildAssocMinimal"),t("./model/NodeChildAssocMinimalEntry"),t("./model/NodeChildAssocPaging"),t("./model/NodeChildAssocPagingList"),t("./model/NodeEntry"),t("./model/NodeFull"),t("./model/NodeMinimal"),t("./model/NodeMinimalEntry"),t("./model/NodePaging"),t("./model/NodePagingList"),t("./model/NodeSharedLink"),t("./model/NodeSharedLinkEntry"),t("./model/NodeSharedLinkPaging"),t("./model/NodeSharedLinkPagingList"),t("./model/NodesnodeIdchildrenContent"),t("./model/Pagination"),t("./model/PathElement"),t("./model/PathInfo"),t("./model/Person"),t("./model/PersonEntry"),t("./model/PersonNetwork"),t("./model/PersonNetworkEntry"),t("./model/PersonNetworkPaging"),t("./model/PersonNetworkPagingList"),t("./model/Preference"),t("./model/PreferenceEntry"),t("./model/PreferencePaging"),t("./model/PreferencePagingList"),t("./model/Rating"),t("./model/RatingAggregate"),t("./model/RatingBody"),t("./model/RatingEntry"),t("./model/RatingPaging"),t("./model/RatingPagingList"),t("./model/Rendition"),t("./model/RenditionBody"),t("./model/RenditionEntry"),t("./model/RenditionPaging"),t("./model/RenditionPagingList"),t("./model/SharedLinkBody"),t("./model/Site"),t("./model/SiteBody"),t("./model/SiteContainer"),t("./model/SiteContainerEntry"),t("./model/SiteContainerPaging"),t("./model/SiteEntry"),t("./model/SiteMember"),t("./model/SiteMemberBody"),t("./model/SiteMemberEntry"),t("./model/SiteMemberPaging"),t("./model/SiteMemberRoleBody"),t("./model/SiteMembershipBody"),t("./model/SiteMembershipBody1"),t("./model/SiteMembershipRequest"),t("./model/SiteMembershipRequestEntry"),t("./model/SiteMembershipRequestPaging"),t("./model/SiteMembershipRequestPagingList"),t("./model/SitePaging"),t("./model/SitePagingList"),t("./model/Tag"),t("./model/TagBody"),t("./model/TagBody1"),t("./model/TagEntry"),t("./model/TagPaging"),t("./model/TagPagingList"),t("./model/UserInfo"),t("./api/AssociationsApi"),t("./api/ChangesApi"),t("./api/ChildAssociationsApi"),t("./api/CommentsApi"),t("./api/FavoritesApi"),t("./api/NetworksApi"),t("./api/NodesApi"),t("./api/PeopleApi"),t("./api/RatingsApi"),t("./api/RenditionsApi"),t("./api/QueriesApi"),t("./api/SharedlinksApi"),t("./api/SitesApi"),t("./api/TagsApi"),t("./api/WebscriptApi")))}(function(e,t,i,n,o,r,s,a,p,l,c,u,d,f,y,m,h,v,A,b,g,C,R,P,w,S,T,I,j,O,E,M,k,F,x,N,_,D,B,q,L,U,G,V,z,H,K,Y,W,$,J,X,Q,Z,ee,te,ie,ne,oe,re,se,ae,pe,le,ce,ue,de,fe,ye,me,he,ve,Ae,be,ge,Ce,Re,Pe,we,Se,Te,Ie,je,Oe,Ee,Me,ke,Fe,xe,Ne,_e,De,Be,qe,Le,Ue,Ge,Ve,ze,He,Ke,Ye,We,$e,Je,Xe,Qe,Ze,et,tt,it,nt,ot,rt,st,at,pt,lt,ct,ut,dt,ft,yt,mt,ht){var vt={ApiClient:e,Activity:t,ActivityActivitySummary:i,ActivityEntry:n,ActivityPaging:o,ActivityPagingList:r,AssocChildBody:s,AssocInfo:a,AssocTargetBody:p,ChildAssocInfo:l,Comment:c,CommentBody:u,CommentBody1:d,CommentEntry:f,CommentPaging:y,CommentPagingList:m,Company:h,ContentInfo:v,CopyBody:A,DeletedNode:b,DeletedNodeEntry:g,DeletedNodeMinimal:C,DeletedNodeMinimalEntry:R,DeletedNodesPaging:P,DeletedNodesPagingList:w,EmailSharedLinkBody:S,Error:T,ErrorError:I,Favorite:j,FavoriteBody:O,FavoriteEntry:E,FavoritePaging:M,FavoritePagingList:k,FavoriteSiteBody:F,InlineResponse201:x,InlineResponse201Entry:N,MoveBody:_,NetworkQuota:D,NodeAssocMinimal:B,NodeAssocMinimalEntry:q,NodeAssocPaging:L,NodeAssocPagingList:U,NodeBody:G,NodeBody1:V,NodeChildAssocMinimal:z,NodeChildAssocMinimalEntry:H,NodeChildAssocPaging:K,NodeChildAssocPagingList:Y,NodeEntry:W,NodeFull:$,NodeMinimal:J,NodeMinimalEntry:X,NodePaging:Q,NodePagingList:Z,NodeSharedLink:ee,NodeSharedLinkEntry:te,NodeSharedLinkPaging:ie,NodeSharedLinkPagingList:ne,NodesnodeIdchildrenContent:oe,Pagination:re,PathElement:se,PathInfo:ae,Person:pe,PersonEntry:le,PersonNetwork:ce,PersonNetworkEntry:ue,PersonNetworkPaging:de,PersonNetworkPagingList:fe,Preference:ye,PreferenceEntry:me,PreferencePaging:he,PreferencePagingList:ve,Rating:Ae,RatingAggregate:be,RatingBody:ge,RatingEntry:Ce,RatingPaging:Re,RatingPagingList:Pe,Rendition:we,RenditionBody:Se,RenditionEntry:Te,RenditionPaging:Ie,RenditionPagingList:je,SharedLinkBody:Oe,Site:Ee,SiteBody:Me,SiteContainer:ke,SiteContainerEntry:Fe,SiteContainerPaging:xe,SiteEntry:Ne,SiteMember:_e,SiteMemberBody:De,SiteMemberEntry:Be,SiteMemberPaging:qe,SiteMemberRoleBody:Le,SiteMembershipBody:Ue,SiteMembershipBody1:Ge,SiteMembershipRequest:Ve,SiteMembershipRequestEntry:ze,SiteMembershipRequestPaging:He,SiteMembershipRequestPagingList:Ke,SitePaging:Ye,SitePagingList:We,Tag:$e,TagBody:Je,TagBody1:Xe,TagEntry:Qe,TagPaging:Ze,TagPagingList:et,UserInfo:tt,AssociationsApi:it,ChangesApi:nt,ChildAssociationsApi:ot,CommentsApi:rt,FavoritesApi:st,NetworksApi:at,NodesApi:pt,PeopleApi:lt,QueriesApi:dt,RatingsApi:ct,RenditionsApi:ut,SharedlinksApi:ft,SitesApi:yt,TagsApi:mt,WebscriptApi:ht};return vt})},{"./ApiClient":172,"./api/AssociationsApi":173,"./api/ChangesApi":174,"./api/ChildAssociationsApi":175,"./api/CommentsApi":176,"./api/FavoritesApi":177,"./api/NetworksApi":178,"./api/NodesApi":179,"./api/PeopleApi":180,"./api/QueriesApi":181,"./api/RatingsApi":182,"./api/RenditionsApi":183,"./api/SharedlinksApi":184,"./api/SitesApi":185,"./api/TagsApi":186,"./api/WebscriptApi":187,"./model/Activity":189,"./model/ActivityActivitySummary":190,"./model/ActivityEntry":191,"./model/ActivityPaging":192,"./model/ActivityPagingList":193,"./model/AssocChildBody":194,"./model/AssocInfo":195,"./model/AssocTargetBody":196,"./model/ChildAssocInfo":197,"./model/Comment":198,"./model/CommentBody":199,"./model/CommentBody1":200,"./model/CommentEntry":201,"./model/CommentPaging":202,"./model/CommentPagingList":203,"./model/Company":204,"./model/ContentInfo":205,"./model/CopyBody":206,"./model/DeletedNode":207,"./model/DeletedNodeEntry":208,"./model/DeletedNodeMinimal":209,"./model/DeletedNodeMinimalEntry":210,"./model/DeletedNodesPaging":211,"./model/DeletedNodesPagingList":212,"./model/EmailSharedLinkBody":213,"./model/Error":214,"./model/ErrorError":215,"./model/Favorite":216,"./model/FavoriteBody":217,"./model/FavoriteEntry":218,"./model/FavoritePaging":219,"./model/FavoritePagingList":220,"./model/FavoriteSiteBody":221,"./model/InlineResponse201":222,"./model/InlineResponse201Entry":223,"./model/MoveBody":224,"./model/NetworkQuota":225,"./model/NodeAssocMinimal":226,"./model/NodeAssocMinimalEntry":227,"./model/NodeAssocPaging":228,"./model/NodeAssocPagingList":229,"./model/NodeBody":230,"./model/NodeBody1":231,"./model/NodeChildAssocMinimal":232,"./model/NodeChildAssocMinimalEntry":233,"./model/NodeChildAssocPaging":234,"./model/NodeChildAssocPagingList":235,"./model/NodeEntry":236,"./model/NodeFull":237,"./model/NodeMinimal":238,"./model/NodeMinimalEntry":239,"./model/NodePaging":240,"./model/NodePagingList":241,"./model/NodeSharedLink":242,"./model/NodeSharedLinkEntry":243,"./model/NodeSharedLinkPaging":244,"./model/NodeSharedLinkPagingList":245,"./model/NodesnodeIdchildrenContent":246,"./model/Pagination":247,"./model/PathElement":248,"./model/PathInfo":249,"./model/Person":250,"./model/PersonEntry":251,"./model/PersonNetwork":252, -"./model/PersonNetworkEntry":253,"./model/PersonNetworkPaging":254,"./model/PersonNetworkPagingList":255,"./model/Preference":256,"./model/PreferenceEntry":257,"./model/PreferencePaging":258,"./model/PreferencePagingList":259,"./model/Rating":260,"./model/RatingAggregate":261,"./model/RatingBody":262,"./model/RatingEntry":263,"./model/RatingPaging":264,"./model/RatingPagingList":265,"./model/Rendition":266,"./model/RenditionBody":267,"./model/RenditionEntry":268,"./model/RenditionPaging":269,"./model/RenditionPagingList":270,"./model/SharedLinkBody":271,"./model/Site":272,"./model/SiteBody":273,"./model/SiteContainer":274,"./model/SiteContainerEntry":275,"./model/SiteContainerPaging":276,"./model/SiteEntry":277,"./model/SiteMember":278,"./model/SiteMemberBody":279,"./model/SiteMemberEntry":280,"./model/SiteMemberPaging":281,"./model/SiteMemberRoleBody":282,"./model/SiteMembershipBody":283,"./model/SiteMembershipBody1":284,"./model/SiteMembershipRequest":285,"./model/SiteMembershipRequestEntry":286,"./model/SiteMembershipRequestPaging":287,"./model/SiteMembershipRequestPagingList":288,"./model/SitePaging":289,"./model/SitePagingList":290,"./model/Tag":291,"./model/TagBody":292,"./model/TagBody1":293,"./model/TagEntry":294,"./model/TagPaging":295,"./model/TagPagingList":296,"./model/UserInfo":297}],189:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ActivityActivitySummary"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ActivityActivitySummary")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Activity=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ActivityActivitySummary))}(void 0,function(e,t){var i=function(e,t,i,n){this.postPersonId=e,this.id=t,this.feedPersonId=i,this.activityType=n};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("postPersonId")&&(o.postPersonId=e.convertToType(n.postPersonId,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("siteId")&&(o.siteId=e.convertToType(n.siteId,"String")),n.hasOwnProperty("postedAt")&&(o.postedAt=e.convertToType(n.postedAt,"Date")),n.hasOwnProperty("feedPersonId")&&(o.feedPersonId=e.convertToType(n.feedPersonId,"String")),n.hasOwnProperty("activitySummary")&&(o.activitySummary=t.constructFromObject(n.activitySummary)),n.hasOwnProperty("activityType")&&(o.activityType=e.convertToType(n.activityType,"String"))),o},i.prototype.postPersonId=void 0,i.prototype.id=void 0,i.prototype.siteId=void 0,i.prototype.postedAt=void 0,i.prototype.feedPersonId=void 0,i.prototype.activitySummary=void 0,i.prototype.activityType=void 0,i.ActivityTypeEnum={COMMENTS_COMMENT_CREATED:"org.alfresco.comments.comment-created",COMMENTS_COMMENT_UPDATED:"org.alfresco.comments.comment-updated",COMMENTS_COMMENT_DELETED:"org.alfresco.comments.comment-deleted",DOCUMENTLIBRARY_FILES_ADDED:"org.alfresco.documentlibrary.files-added",DOCUMENTLIBRARY_FILES_UPDATED:"org.alfresco.documentlibrary.files-updated",DOCUMENTLIBRARY_FILES_DELETED:"org.alfresco.documentlibrary.files-deleted",DOCUMENTLIBRARY_FILE_ADDED:"org.alfresco.documentlibrary.file-added",DOCUMENTLIBRARY_FILE_CREATED:"org.alfresco.documentlibrary.file-created",DOCUMENTLIBRARY_FILE_DELETED:"org.alfresco.documentlibrary.file-deleted",DOCUMENTLIBRARY_FILE_DOWNLOADED:"org.alfresco.documentlibrary.file-downloaded",DOCUMENTLIBRARY_FILE_LIKED:"org.alfresco.documentlibrary.file-liked",DOCUMENTLIBRARY_FILE_PREVIEWED:"org.alfresco.documentlibrary.file-previewed",DOCUMENTLIBRARY_INLINE_EDIT:"org.alfresco.documentlibrary.inline-edit",DOCUMENTLIBRARY_FOLDER_LIKED:"org.alfresco.documentlibrary.folder-liked",SITE_USER_JOINED:"org.alfresco.site.user-joined",SITE_USER_LEFT:"org.alfresco.site.user-left",SITE_USER_ROLE_CHANGED:"org.alfresco.site.user-role-changed",SITE_GROUP_ADDED:"org.alfresco.site.group-added",SITE_GROUP_REMOVED:"org.alfresco.site.group-removed",SITE_GROUP_ROLE_CHANGED:"org.alfresco.site.group-role-changed",DISCUSSIONS_REPLY_CREATED:"org.alfresco.discussions.reply-created",SUBSCRIPTIONS_FOLLOWED:"org.alfresco.subscriptions.followed",SUBSCRIPTIONS_SUBSCRIBED:"org.alfresco.subscriptions.subscribed"},i})},{"../ApiClient":172,"./ActivityActivitySummary":190}],190:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ActivityActivitySummary=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("firstName")&&(n.firstName=e.convertToType(i.firstName,"String")),i.hasOwnProperty("lastName")&&(n.lastName=e.convertToType(i.lastName,"String")),i.hasOwnProperty("parentObjectId")&&(n.parentObjectId=e.convertToType(i.parentObjectId,"String")),i.hasOwnProperty("title")&&(n.title=e.convertToType(i.title,"String")),i.hasOwnProperty("objectId")&&(n.objectId=e.convertToType(i.objectId,"String"))),n},t.prototype.firstName=void 0,t.prototype.lastName=void 0,t.prototype.parentObjectId=void 0,t.prototype.title=void 0,t.prototype.objectId=void 0,t})},{"../ApiClient":172}],191:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Activity"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Activity")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ActivityEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Activity))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Activity":189}],192:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ActivityPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ActivityPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ActivityPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ActivityPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./ActivityPagingList":193}],193:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ActivityEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ActivityEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ActivityPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ActivityEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./ActivityEntry":191,"./Pagination":247}],194:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.AssocChildBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("childId")&&(n.childId=e.convertToType(i.childId,"String")),i.hasOwnProperty("assocType")&&(n.assocType=e.convertToType(i.assocType,"String"))),n},t.prototype.childId=void 0,t.prototype.assocType=void 0,t})},{"../ApiClient":172}],195:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.AssocInfo=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("assocType")&&(n.assocType=e.convertToType(i.assocType,"String"))),n},t.prototype.assocType=void 0,t})},{"../ApiClient":172}],196:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.AssocTargetBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("targetId")&&(n.targetId=e.convertToType(i.targetId,"String")),i.hasOwnProperty("assocType")&&(n.assocType=e.convertToType(i.assocType,"String"))),n},t.prototype.targetId=void 0,t.prototype.assocType=void 0,t})},{"../ApiClient":172}],197:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ChildAssocInfo=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("assocType")&&(n.assocType=e.convertToType(i.assocType,"String")),i.hasOwnProperty("isPrimary")&&(n.isPrimary=e.convertToType(i.isPrimary,"Boolean"))),n},t.prototype.assocType=void 0,t.prototype.isPrimary=void 0,t})},{"../ApiClient":172}],198:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Person"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Person")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Comment=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Person))}(void 0,function(e,t){var i=function(e,t,i,n,o,r,s,a,p){this.id=e,this.content=t,this.createdBy=i,this.createdAt=n,this.edited=o,this.modifiedBy=r,this.modifiedAt=s,this.canEdit=a,this.canDelete=p};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("content")&&(o.content=e.convertToType(n.content,"String")),n.hasOwnProperty("createdBy")&&(o.createdBy=t.constructFromObject(n.createdBy)),n.hasOwnProperty("createdAt")&&(o.createdAt=e.convertToType(n.createdAt,"Date")),n.hasOwnProperty("edited")&&(o.edited=e.convertToType(n.edited,"Boolean")),n.hasOwnProperty("modifiedBy")&&(o.modifiedBy=t.constructFromObject(n.modifiedBy)),n.hasOwnProperty("modifiedAt")&&(o.modifiedAt=e.convertToType(n.modifiedAt,"Date")),n.hasOwnProperty("canEdit")&&(o.canEdit=e.convertToType(n.canEdit,"Boolean")),n.hasOwnProperty("canDelete")&&(o.canDelete=e.convertToType(n.canDelete,"Boolean"))),o},i.prototype.id=void 0,i.prototype.content=void 0,i.prototype.createdBy=void 0,i.prototype.createdAt=void 0,i.prototype.edited=void 0,i.prototype.modifiedBy=void 0,i.prototype.modifiedAt=void 0,i.prototype.canEdit=void 0,i.prototype.canDelete=void 0,i})},{"../ApiClient":172,"./Person":250}],199:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.content=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("content")&&(n.content=e.convertToType(i.content,"String"))),n},t.prototype.content=void 0,t})},{"../ApiClient":172}],200:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentBody1=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.content=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("content")&&(n.content=e.convertToType(i.content,"String"))),n},t.prototype.content=void 0,t})},{"../ApiClient":172}],201:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Comment"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Comment")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Comment))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Comment":198}],202:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./CommentPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./CommentPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.CommentPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./CommentPagingList":203}],203:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./CommentEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./CommentEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.CommentEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./CommentEntry":201,"./Pagination":247}],204:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Company=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("organization")&&(n.organization=e.convertToType(i.organization,"String")),i.hasOwnProperty("address1")&&(n.address1=e.convertToType(i.address1,"String")),i.hasOwnProperty("address2")&&(n.address2=e.convertToType(i.address2,"String")),i.hasOwnProperty("address3")&&(n.address3=e.convertToType(i.address3,"String")),i.hasOwnProperty("postcode")&&(n.postcode=e.convertToType(i.postcode,"String")),i.hasOwnProperty("telephone")&&(n.telephone=e.convertToType(i.telephone,"String")),i.hasOwnProperty("fax")&&(n.fax=e.convertToType(i.fax,"String")),i.hasOwnProperty("email")&&(n.email=e.convertToType(i.email,"String"))),n},t.prototype.organization=void 0,t.prototype.address1=void 0,t.prototype.address2=void 0,t.prototype.address3=void 0,t.prototype.postcode=void 0,t.prototype.telephone=void 0,t.prototype.fax=void 0,t.prototype.email=void 0,t})},{"../ApiClient":172}],205:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ContentInfo=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("mimeType")&&(n.mimeType=e.convertToType(i.mimeType,"String")),i.hasOwnProperty("mimeTypeName")&&(n.mimeTypeName=e.convertToType(i.mimeTypeName,"String")),i.hasOwnProperty("sizeInBytes")&&(n.sizeInBytes=e.convertToType(i.sizeInBytes,"Integer")),i.hasOwnProperty("encoding")&&(n.encoding=e.convertToType(i.encoding,"String"))),n},t.prototype.mimeType=void 0,t.prototype.mimeTypeName=void 0,t.prototype.sizeInBytes=void 0,t.prototype.encoding=void 0,t})},{"../ApiClient":172}],206:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CopyBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("targetParentId")&&(n.targetParentId=e.convertToType(i.targetParentId,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.targetParentId=void 0,t.prototype.name=void 0,t})},{"../ApiClient":172}],207:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./NodeFull","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./NodeFull"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNode=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.NodeFull,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n){var o=function(e,t){i.call(this),this.archivedByUser=e,this.archivedAt=t};return o.constructFromObject=function(t,r){return t&&(r=t||new o,i.constructFromObject(t,r),t.hasOwnProperty("archivedByUser")&&(r.archivedByUser=n.constructFromObject(t.archivedByUser)),t.hasOwnProperty("archivedAt")&&(r.archivedAt=e.convertToType(t.archivedAt,"Date"))),r},o.prototype=Object.create(i.prototype),o.prototype.constructor=o,o.prototype.archivedByUser=void 0,o.prototype.archivedAt=void 0,o})},{"../ApiClient":172,"./ContentInfo":205,"./NodeFull":237,"./UserInfo":297}],208:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./DeletedNode"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./DeletedNode")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodeEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.DeletedNode))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./DeletedNode":207}],209:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./NodeMinimal","./PathElement","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./NodeMinimal"),t("./PathElement"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodeMinimal=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.NodeMinimal,n.AlfrescoCoreRestApi.PathElement,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n,o){var r=function(e,t){i.call(this),this.archivedByUser=e,this.archivedAt=t};return r.constructFromObject=function(t,n){return t&&(n=t||new r,i.constructFromObject(t,n),t.hasOwnProperty("archivedByUser")&&(n.archivedByUser=o.constructFromObject(t.archivedByUser)),t.hasOwnProperty("archivedAt")&&(n.archivedAt=e.convertToType(t.archivedAt,"Date"))),n},r.prototype=Object.create(i.prototype),r.prototype.constructor=r,r.prototype.archivedByUser=void 0,r.prototype.archivedAt=void 0,r})},{"../ApiClient":172,"./ContentInfo":205,"./NodeMinimal":238,"./PathElement":248,"./UserInfo":297}],210:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./DeletedNodeMinimal"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./DeletedNodeMinimal")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodeMinimalEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.DeletedNodeMinimal))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./DeletedNodeMinimal":209}],211:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./DeletedNodesPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./DeletedNodesPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodesPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.DeletedNodesPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./DeletedNodesPagingList":212}],212:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./DeletedNodeMinimalEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./DeletedNodeMinimalEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodesPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.DeletedNodeMinimalEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./DeletedNodeMinimalEntry":210,"./Pagination":247}],213:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.EmailSharedLinkBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("client")&&(n.client=e.convertToType(i.client,"String")),i.hasOwnProperty("message")&&(n.message=e.convertToType(i.message,"String")),i.hasOwnProperty("locale")&&(n.locale=e.convertToType(i.locale,"String")),i.hasOwnProperty("recipientEmails")&&(n.recipientEmails=e.convertToType(i.recipientEmails,["String"]))),n},t.prototype.client=void 0,t.prototype.message=void 0,t.prototype.locale=void 0,t.prototype.recipientEmails=void 0,t})},{"../ApiClient":172}],214:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ErrorError"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ErrorError")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Error=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ErrorError))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("error")&&(n.error=t.constructFromObject(e.error))),n},i.prototype.error=void 0,i})},{"../ApiClient":172,"./ErrorError":215}],215:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ErrorError=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i,n){this.briefSummary=e,this.descriptionURL=t,this.stackTrace=i,this.statusCode=n};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("errorKey")&&(n.errorKey=e.convertToType(i.errorKey,"String")),i.hasOwnProperty("briefSummary")&&(n.briefSummary=e.convertToType(i.briefSummary,"String")),i.hasOwnProperty("descriptionURL")&&(n.descriptionURL=e.convertToType(i.descriptionURL,"String")),i.hasOwnProperty("logId")&&(n.logId=e.convertToType(i.logId,"String")),i.hasOwnProperty("stackTrace")&&(n.stackTrace=e.convertToType(i.stackTrace,"String")),i.hasOwnProperty("statusCode")&&(n.statusCode=e.convertToType(i.statusCode,"Integer"))),n},t.prototype.errorKey=void 0,t.prototype.briefSummary=void 0,t.prototype.descriptionURL=void 0,t.prototype.logId=void 0,t.prototype.stackTrace=void 0,t.prototype.statusCode=void 0,t})},{"../ApiClient":172}],216:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Favorite=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.targetGuid=e, -this.target=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("targetGuid")&&(n.targetGuid=e.convertToType(i.targetGuid,"String")),i.hasOwnProperty("createdAt")&&(n.createdAt=e.convertToType(i.createdAt,"Date")),i.hasOwnProperty("target")&&(n.target=e.convertToType(i.target,Object))),n},t.prototype.targetGuid=void 0,t.prototype.createdAt=void 0,t.prototype.target=void 0,t})},{"../ApiClient":172}],217:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoriteBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.target=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("target")&&(n.target=e.convertToType(i.target,Object))),n},t.prototype.target=void 0,t})},{"../ApiClient":172}],218:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Favorite"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Favorite")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoriteEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Favorite))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Favorite":216}],219:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./FavoritePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./FavoritePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoritePaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.FavoritePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./FavoritePagingList":220}],220:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./FavoriteEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./FavoriteEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoritePagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.FavoriteEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./FavoriteEntry":218,"./Pagination":247}],221:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoriteSiteBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.id=void 0,t})},{"../ApiClient":172}],222:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./InlineResponse201Entry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./InlineResponse201Entry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.InlineResponse201=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.InlineResponse201Entry))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./InlineResponse201Entry":223}],223:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.InlineResponse201Entry=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.id=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.id=void 0,t})},{"../ApiClient":172}],224:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.MoveBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("targetParentId")&&(n.targetParentId=e.convertToType(i.targetParentId,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.targetParentId=void 0,t.prototype.name=void 0,t})},{"../ApiClient":172}],225:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NetworkQuota=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i){this.id=e,this.limit=t,this.usage=i};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("limit")&&(n.limit=e.convertToType(i.limit,"Integer")),i.hasOwnProperty("usage")&&(n.usage=e.convertToType(i.usage,"Integer"))),n},t.prototype.id=void 0,t.prototype.limit=void 0,t.prototype.usage=void 0,t})},{"../ApiClient":172}],226:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./AssocInfo","./ContentInfo","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./AssocInfo"),t("./ContentInfo"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeAssocMinimal=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.AssocInfo,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"String")),r.hasOwnProperty("parentId")&&(s.parentId=e.convertToType(r.parentId,"String")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("nodeType")&&(s.nodeType=e.convertToType(r.nodeType,"String")),r.hasOwnProperty("isFolder")&&(s.isFolder=e.convertToType(r.isFolder,"Boolean")),r.hasOwnProperty("isFile")&&(s.isFile=e.convertToType(r.isFile,"Boolean")),r.hasOwnProperty("modifiedAt")&&(s.modifiedAt=e.convertToType(r.modifiedAt,"Date")),r.hasOwnProperty("modifiedByUser")&&(s.modifiedByUser=n.constructFromObject(r.modifiedByUser)),r.hasOwnProperty("createdAt")&&(s.createdAt=e.convertToType(r.createdAt,"Date")),r.hasOwnProperty("createdByUser")&&(s.createdByUser=n.constructFromObject(r.createdByUser)),r.hasOwnProperty("content")&&(s.content=i.constructFromObject(r.content)),r.hasOwnProperty("association")&&(s.association=t.constructFromObject(r.association))),s},o.prototype.id=void 0,o.prototype.parentId=void 0,o.prototype.name=void 0,o.prototype.nodeType=void 0,o.prototype.isFolder=void 0,o.prototype.isFile=void 0,o.prototype.modifiedAt=void 0,o.prototype.modifiedByUser=void 0,o.prototype.createdAt=void 0,o.prototype.createdByUser=void 0,o.prototype.content=void 0,o.prototype.association=void 0,o})},{"../ApiClient":172,"./AssocInfo":195,"./ContentInfo":205,"./UserInfo":297}],227:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeAssocMinimal"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeAssocMinimal")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeAssocMinimalEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeAssocMinimal))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./NodeAssocMinimal":226}],228:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeAssocPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeAssocPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeAssocPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeAssocPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./NodeAssocPagingList":229}],229:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeAssocMinimalEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeAssocMinimalEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeAssocPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeAssocMinimalEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./NodeAssocMinimalEntry":227,"./Pagination":247}],230:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("nodeType")&&(n.nodeType=e.convertToType(i.nodeType,"String")),i.hasOwnProperty("aspectNames")&&(n.aspectNames=e.convertToType(i.aspectNames,["String"])),i.hasOwnProperty("properties")&&(n.properties=e.convertToType(i.properties,{String:"String"}))),n},t.prototype.name=void 0,t.prototype.nodeType=void 0,t.prototype.aspectNames=void 0,t.prototype.properties=void 0,t})},{"../ApiClient":172}],231:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodesnodeIdchildrenContent"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodesnodeIdchildrenContent")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeBody1=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodesnodeIdchildrenContent))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("nodeType")&&(o.nodeType=e.convertToType(n.nodeType,"String")),n.hasOwnProperty("relativePath")&&(o.relativePath=e.convertToType(n.relativePath,"String")),n.hasOwnProperty("content")&&(o.content=t.constructFromObject(n.content)),n.hasOwnProperty("aspectNames")&&(o.aspectNames=e.convertToType(n.aspectNames,["String"])),n.hasOwnProperty("properties")&&(o.properties=e.convertToType(n.properties,{String:"String"}))),o},i.prototype.name=void 0,i.prototype.nodeType=void 0,i.prototype.relativePath=void 0,i.prototype.content=void 0,i.prototype.aspectNames=void 0,i.prototype.properties=void 0,i})},{"../ApiClient":172,"./NodesnodeIdchildrenContent":246}],232:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ChildAssocInfo","./ContentInfo","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ChildAssocInfo"),t("./ContentInfo"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeChildAssocMinimal=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ChildAssocInfo,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"String")),r.hasOwnProperty("parentId")&&(s.parentId=e.convertToType(r.parentId,"String")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("nodeType")&&(s.nodeType=e.convertToType(r.nodeType,"String")),r.hasOwnProperty("isFolder")&&(s.isFolder=e.convertToType(r.isFolder,"Boolean")),r.hasOwnProperty("isFile")&&(s.isFile=e.convertToType(r.isFile,"Boolean")),r.hasOwnProperty("modifiedAt")&&(s.modifiedAt=e.convertToType(r.modifiedAt,"Date")),r.hasOwnProperty("modifiedByUser")&&(s.modifiedByUser=n.constructFromObject(r.modifiedByUser)),r.hasOwnProperty("createdAt")&&(s.createdAt=e.convertToType(r.createdAt,"Date")),r.hasOwnProperty("createdByUser")&&(s.createdByUser=n.constructFromObject(r.createdByUser)),r.hasOwnProperty("content")&&(s.content=i.constructFromObject(r.content)),r.hasOwnProperty("association")&&(s.association=t.constructFromObject(r.association))),s},o.prototype.id=void 0,o.prototype.parentId=void 0,o.prototype.name=void 0,o.prototype.nodeType=void 0,o.prototype.isFolder=void 0,o.prototype.isFile=void 0,o.prototype.modifiedAt=void 0,o.prototype.modifiedByUser=void 0,o.prototype.createdAt=void 0,o.prototype.createdByUser=void 0,o.prototype.content=void 0,o.prototype.association=void 0,o})},{"../ApiClient":172,"./ChildAssocInfo":197,"./ContentInfo":205,"./UserInfo":297}],233:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeChildAssocMinimal"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeChildAssocMinimal")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeChildAssocMinimalEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeChildAssocMinimal))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./NodeChildAssocMinimal":232}],234:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeChildAssocPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeChildAssocPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeChildAssocPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeChildAssocPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./NodeChildAssocPagingList":235}],235:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeChildAssocMinimalEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeChildAssocMinimalEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeChildAssocPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeChildAssocMinimalEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./NodeChildAssocMinimalEntry":233,"./Pagination":247}],236:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeFull"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeFull")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeFull))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./NodeFull":237}],237:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeFull=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"String")),o.hasOwnProperty("parentId")&&(r.parentId=e.convertToType(o.parentId,"String")),o.hasOwnProperty("name")&&(r.name=e.convertToType(o.name,"String")),o.hasOwnProperty("nodeType")&&(r.nodeType=e.convertToType(o.nodeType,"String")),o.hasOwnProperty("isFolder")&&(r.isFolder=e.convertToType(o.isFolder,"Boolean")),o.hasOwnProperty("isFile")&&(r.isFile=e.convertToType(o.isFile,"Boolean")),o.hasOwnProperty("modifiedAt")&&(r.modifiedAt=e.convertToType(o.modifiedAt,"Date")),o.hasOwnProperty("modifiedByUser")&&(r.modifiedByUser=i.constructFromObject(o.modifiedByUser)),o.hasOwnProperty("createdAt")&&(r.createdAt=e.convertToType(o.createdAt,"Date")),o.hasOwnProperty("createdByUser")&&(r.createdByUser=i.constructFromObject(o.createdByUser)),o.hasOwnProperty("content")&&(r.content=t.constructFromObject(o.content)),o.hasOwnProperty("aspectNames")&&(r.aspectNames=e.convertToType(o.aspectNames,["String"])),o.hasOwnProperty("properties")&&(r.properties=e.convertToType(o.properties,{String:"String"})),o.hasOwnProperty("allowableOperations")&&(r.allowableOperations=e.convertToType(o.allowableOperations,["String"]))),r},n.prototype.id=void 0,n.prototype.parentId=void 0,n.prototype.name=void 0,n.prototype.nodeType=void 0,n.prototype.isFolder=void 0,n.prototype.isFile=void 0,n.prototype.modifiedAt=void 0,n.prototype.modifiedByUser=void 0,n.prototype.createdAt=void 0,n.prototype.createdByUser=void 0,n.prototype.content=void 0,n.prototype.aspectNames=void 0,n.prototype.properties=void 0,n.prototype.allowableOperations=void 0,n})},{"../ApiClient":172,"./ContentInfo":205,"./UserInfo":297}],238:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./PathElement","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./PathElement"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeMinimal=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.PathElement,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"String")),r.hasOwnProperty("parentId")&&(s.parentId=e.convertToType(r.parentId,"String")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("nodeType")&&(s.nodeType=e.convertToType(r.nodeType,"String")),r.hasOwnProperty("isFolder")&&(s.isFolder=e.convertToType(r.isFolder,"Boolean")),r.hasOwnProperty("isFile")&&(s.isFile=e.convertToType(r.isFile,"Boolean")),r.hasOwnProperty("modifiedAt")&&(s.modifiedAt=e.convertToType(r.modifiedAt,"Date")),r.hasOwnProperty("modifiedByUser")&&(s.modifiedByUser=n.constructFromObject(r.modifiedByUser)),r.hasOwnProperty("createdAt")&&(s.createdAt=e.convertToType(r.createdAt,"Date")),r.hasOwnProperty("createdByUser")&&(s.createdByUser=n.constructFromObject(r.createdByUser)),r.hasOwnProperty("content")&&(s.content=t.constructFromObject(r.content)),r.hasOwnProperty("path")&&(s.path=i.constructFromObject(r.path)),r.hasOwnProperty("properties")&&(s.properties=r.properties)),s},o.prototype.id=void 0,o.prototype.parentId=void 0,o.prototype.name=void 0,o.prototype.nodeType=void 0,o.prototype.isFolder=void 0,o.prototype.isFile=void 0,o.prototype.modifiedAt=void 0,o.prototype.modifiedByUser=void 0,o.prototype.createdAt=void 0,o.prototype.createdByUser=void 0,o.prototype.content=void 0,o.prototype.path=void 0,o})},{"../ApiClient":172,"./ContentInfo":205,"./PathElement":248,"./UserInfo":297}],239:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeMinimal"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeMinimal")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeMinimalEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeMinimal))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./NodeMinimal":238}],240:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodePaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./NodePagingList":241}],241:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeMinimalEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeMinimalEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodePagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeMinimalEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./NodeMinimalEntry":239,"./Pagination":247}],242:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeSharedLink=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"String")),o.hasOwnProperty("nodeId")&&(r.nodeId=e.convertToType(o.nodeId,"String")),o.hasOwnProperty("name")&&(r.name=e.convertToType(o.name,"String")),o.hasOwnProperty("modifiedAt")&&(r.modifiedAt=e.convertToType(o.modifiedAt,"Date")),o.hasOwnProperty("modifiedByUser")&&(r.modifiedByUser=i.constructFromObject(o.modifiedByUser)),o.hasOwnProperty("sharedByUser")&&(r.sharedByUser=i.constructFromObject(o.sharedByUser)),o.hasOwnProperty("content")&&(r.content=t.constructFromObject(o.content)),o.hasOwnProperty("allowableOperations")&&(r.allowableOperations=e.convertToType(o.allowableOperations,["String"]))),r},n.prototype.id=void 0,n.prototype.nodeId=void 0,n.prototype.name=void 0,n.prototype.modifiedAt=void 0,n.prototype.modifiedByUser=void 0,n.prototype.sharedByUser=void 0,n.prototype.content=void 0,n.prototype.allowableOperations=void 0,n})},{"../ApiClient":172,"./ContentInfo":205,"./UserInfo":297}],243:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeSharedLink"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeSharedLink")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeSharedLinkEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeSharedLink))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./NodeSharedLink":242}],244:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){ -return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeSharedLinkPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeSharedLinkPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeSharedLinkPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeSharedLinkPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./NodeSharedLinkPagingList":245}],245:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeSharedLinkEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeSharedLinkEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeSharedLinkPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeSharedLinkEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./NodeSharedLinkEntry":243,"./Pagination":247}],246:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodesnodeIdchildrenContent=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("mimeType")&&(n.mimeType=e.convertToType(i.mimeType,"String")),i.hasOwnProperty("encoding")&&(n.encoding=e.convertToType(i.encoding,"String"))),n},t.prototype.mimeType=void 0,t.prototype.encoding=void 0,t})},{"../ApiClient":172}],247:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Pagination=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i,n){this.count=e,this.hasMoreItems=t,this.skipCount=i,this.maxItems=n};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("count")&&(n.count=e.convertToType(i.count,"Integer")),i.hasOwnProperty("hasMoreItems")&&(n.hasMoreItems=e.convertToType(i.hasMoreItems,"Boolean")),i.hasOwnProperty("totalItems")&&(n.totalItems=e.convertToType(i.totalItems,"Integer")),i.hasOwnProperty("skipCount")&&(n.skipCount=e.convertToType(i.skipCount,"Integer")),i.hasOwnProperty("maxItems")&&(n.maxItems=e.convertToType(i.maxItems,"Integer"))),n},t.prototype.count=void 0,t.prototype.hasMoreItems=void 0,t.prototype.totalItems=void 0,t.prototype.skipCount=void 0,t.prototype.maxItems=void 0,t})},{"../ApiClient":172}],248:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PathElement=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../ApiClient":172}],249:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./PathElement"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./PathElement")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PathInfo=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PathElement))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("elements")&&(o.elements=e.convertToType(n.elements,[t])),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("isComplete")&&(o.isComplete=e.convertToType(n.isComplete,"Boolean"))),o},i.prototype.elements=void 0,i.prototype.name=void 0,i.prototype.isComplete=void 0,i})},{"../ApiClient":172,"./PathElement":248}],250:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Company"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Company")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Person=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Company))}(void 0,function(e,t){var i=function(e,t,i,n,o){this.id=e,this.firstName=t,this.lastName=i,this.email=n,this.enabled=o};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("firstName")&&(o.firstName=e.convertToType(n.firstName,"String")),n.hasOwnProperty("lastName")&&(o.lastName=e.convertToType(n.lastName,"String")),n.hasOwnProperty("description")&&(o.description=e.convertToType(n.description,"String")),n.hasOwnProperty("avatarId")&&(o.avatarId=e.convertToType(n.avatarId,"String")),n.hasOwnProperty("email")&&(o.email=e.convertToType(n.email,"String")),n.hasOwnProperty("skypeId")&&(o.skypeId=e.convertToType(n.skypeId,"String")),n.hasOwnProperty("googleId")&&(o.googleId=e.convertToType(n.googleId,"String")),n.hasOwnProperty("instantMessageId")&&(o.instantMessageId=e.convertToType(n.instantMessageId,"String")),n.hasOwnProperty("jobTitle")&&(o.jobTitle=e.convertToType(n.jobTitle,"String")),n.hasOwnProperty("location")&&(o.location=e.convertToType(n.location,"String")),n.hasOwnProperty("company")&&(o.company=t.constructFromObject(n.company)),n.hasOwnProperty("mobile")&&(o.mobile=e.convertToType(n.mobile,"String")),n.hasOwnProperty("telephone")&&(o.telephone=e.convertToType(n.telephone,"String")),n.hasOwnProperty("statusUpdatedAt")&&(o.statusUpdatedAt=e.convertToType(n.statusUpdatedAt,"Date")),n.hasOwnProperty("userStatus")&&(o.userStatus=e.convertToType(n.userStatus,"String")),n.hasOwnProperty("enabled")&&(o.enabled=e.convertToType(n.enabled,"Boolean")),n.hasOwnProperty("emailNotificationsEnabled")&&(o.emailNotificationsEnabled=e.convertToType(n.emailNotificationsEnabled,"Boolean"))),o},i.prototype.id=void 0,i.prototype.firstName=void 0,i.prototype.lastName=void 0,i.prototype.description=void 0,i.prototype.avatarId=void 0,i.prototype.email=void 0,i.prototype.skypeId=void 0,i.prototype.googleId=void 0,i.prototype.instantMessageId=void 0,i.prototype.jobTitle=void 0,i.prototype.location=void 0,i.prototype.company=void 0,i.prototype.mobile=void 0,i.prototype.telephone=void 0,i.prototype.statusUpdatedAt=void 0,i.prototype.userStatus=void 0,i.prototype.enabled=!0,i.prototype.emailNotificationsEnabled=void 0,i})},{"../ApiClient":172,"./Company":204}],251:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Person"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Person")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Person))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Person":250}],252:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NetworkQuota"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NetworkQuota")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonNetwork=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NetworkQuota))}(void 0,function(e,t){var i=function(e,t){this.id=e,this.isEnabled=t};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("homeNetwork")&&(o.homeNetwork=e.convertToType(n.homeNetwork,"Boolean")),n.hasOwnProperty("isEnabled")&&(o.isEnabled=e.convertToType(n.isEnabled,"Boolean")),n.hasOwnProperty("createdAt")&&(o.createdAt=e.convertToType(n.createdAt,"Date")),n.hasOwnProperty("paidNetwork")&&(o.paidNetwork=e.convertToType(n.paidNetwork,"Boolean")),n.hasOwnProperty("subscriptionLevel")&&(o.subscriptionLevel=e.convertToType(n.subscriptionLevel,"String")),n.hasOwnProperty("quotas")&&(o.quotas=e.convertToType(n.quotas,[t]))),o},i.prototype.id=void 0,i.prototype.homeNetwork=void 0,i.prototype.isEnabled=void 0,i.prototype.createdAt=void 0,i.prototype.paidNetwork=void 0,i.prototype.subscriptionLevel=void 0,i.prototype.quotas=void 0,i.SubscriptionLevelEnum={FREE:"Free",STANDARD:"Standard",ENTERPRISE:"Enterprise"},i})},{"../ApiClient":172,"./NetworkQuota":225}],253:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./PersonNetwork"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./PersonNetwork")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonNetworkEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PersonNetwork))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./PersonNetwork":252}],254:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./PersonNetworkPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./PersonNetworkPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonNetworkPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PersonNetworkPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./PersonNetworkPagingList":255}],255:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./PersonNetworkEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./PersonNetworkEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonNetworkPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.PersonNetworkEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./Pagination":247,"./PersonNetworkEntry":253}],256:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Preference=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.id=e,this.value=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("value")&&(n.value=e.convertToType(i.value,"String"))),n},t.prototype.id=void 0,t.prototype.value=void 0,t})},{"../ApiClient":172}],257:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Preference"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Preference")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PreferenceEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Preference))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Preference":256}],258:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./PreferencePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./PreferencePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PreferencePaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PreferencePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./PreferencePagingList":259}],259:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./PreferenceEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./PreferenceEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PreferencePagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.PreferenceEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./Pagination":247,"./PreferenceEntry":257}],260:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./RatingAggregate"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./RatingAggregate")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Rating=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RatingAggregate))}(void 0,function(e,t){var i=function(e){this.id=e};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("aggregate")&&(o.aggregate=t.constructFromObject(n.aggregate)),n.hasOwnProperty("ratedAt")&&(o.ratedAt=e.convertToType(n.ratedAt,"Date")),n.hasOwnProperty("myRating")&&(o.myRating=e.convertToType(n.myRating,"String"))),o},i.prototype.id=void 0,i.prototype.aggregate=void 0,i.prototype.ratedAt=void 0,i.prototype.myRating=void 0,i})},{"../ApiClient":172,"./RatingAggregate":261}],261:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingAggregate=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.numberOfRatings=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("average")&&(n.average=e.convertToType(i.average,"Integer")),i.hasOwnProperty("numberOfRatings")&&(n.numberOfRatings=e.convertToType(i.numberOfRatings,"Integer"))),n},t.prototype.average=void 0,t.prototype.numberOfRatings=void 0,t})},{"../ApiClient":172}],262:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.id=e,this.myRating=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("myRating")&&(n.myRating=e.convertToType(i.myRating,"String"))),n},t.prototype.id="likes",t.prototype.myRating=void 0,t.IdEnum={LIKES:"likes",FIVESTAR:"fiveStar"},t})},{"../ApiClient":172}],263:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Rating"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Rating")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Rating))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Rating":260}],264:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./RatingPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./RatingPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RatingPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./RatingPagingList":265}],265:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./RatingEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./RatingEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.RatingEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./Pagination":247,"./RatingEntry":263}],266:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Rendition=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("content")&&(o.content=t.constructFromObject(n.content)),n.hasOwnProperty("status")&&(o.status=e.convertToType(n.status,"String"))),o},i.prototype.id=void 0,i.prototype.content=void 0,i.prototype.status=void 0,i})},{"../ApiClient":172,"./ContentInfo":205}],267:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.id=void 0,t})},{"../ApiClient":172}],268:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Rendition"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Rendition")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Rendition))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Rendition":266}],269:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./RenditionPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./RenditionPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RenditionPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./RenditionPagingList":270}],270:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./RenditionEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./RenditionEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.RenditionEntry))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./Pagination":247,"./RenditionEntry":268}],271:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SharedLinkBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("nodeId")&&(n.nodeId=e.convertToType(i.nodeId,"String"))),n},t.prototype.nodeId=void 0,t})},{"../ApiClient":172}],272:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Site=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i,n){this.id=e,this.guid=t,this.title=i,this.visibility=n};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("guid")&&(n.guid=e.convertToType(i.guid,"String")),i.hasOwnProperty("title")&&(n.title=e.convertToType(i.title,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("visibility")&&(n.visibility=e.convertToType(i.visibility,"String")),i.hasOwnProperty("role")&&(n.role=e.convertToType(i.role,"String"))),n},t.prototype.id=void 0,t.prototype.guid=void 0,t.prototype.title=void 0,t.prototype.description=void 0,t.prototype.visibility=void 0,t.prototype.role=void 0,t.VisibilityEnum={PRIVATE:"PRIVATE",MODERATED:"MODERATED",PUBLIC:"PUBLIC"},t})},{"../ApiClient":172}],273:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.title=e,this.visibility=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("title")&&(n.title=e.convertToType(i.title,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("visibility")&&(n.visibility=e.convertToType(i.visibility,"String"))),n},t.prototype.id=void 0,t.prototype.title=void 0,t.prototype.description=void 0,t.prototype.visibility="PUBLIC",t.VisibilityEnum={PUBLIC:"PUBLIC",PRIVATE:"PRIVATE",MODERATED:"MODERATED"},t})},{"../ApiClient":172}],274:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}), -n.AlfrescoCoreRestApi.SiteContainer=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.id=e,this.folderId=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("folderId")&&(n.folderId=e.convertToType(i.folderId,"String"))),n},t.prototype.id=void 0,t.prototype.folderId=void 0,t})},{"../ApiClient":172}],275:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SiteContainer"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SiteContainer")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteContainerEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteContainer))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./SiteContainer":274}],276:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SitePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SitePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteContainerPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SitePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./SitePagingList":290}],277:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Site"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Site")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Site))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Site":272}],278:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Person"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Person")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMember=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Person))}(void 0,function(e,t){var i=function(e,t,i){this.id=e,this.person=t,this.role=i};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("person")&&(o.person=t.constructFromObject(n.person)),n.hasOwnProperty("role")&&(o.role=e.convertToType(n.role,"String"))),o},i.prototype.id=void 0,i.prototype.person=void 0,i.prototype.role=void 0,i.RoleEnum={SITECONSUMER:"SiteConsumer",SITECOLLABORATOR:"SiteCollaborator",SITECONTRIBUTOR:"SiteContributor",SITEMANAGER:"SiteManager"},i})},{"../ApiClient":172,"./Person":250}],279:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMemberBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("role")&&(n.role=e.convertToType(i.role,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.role=void 0,t.prototype.id=void 0,t.RoleEnum={SITECONSUMER:"SiteConsumer",SITECOLLABORATOR:"SiteCollaborator",SITECONTRIBUTOR:"SiteContributor",SITEMANAGER:"SiteManager"},t})},{"../ApiClient":172}],280:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SiteMember"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SiteMember")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMemberEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteMember))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./SiteMember":278}],281:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SitePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SitePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMemberPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SitePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./SitePagingList":290}],282:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMemberRoleBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("role")&&(n.role=e.convertToType(i.role,"String"))),n},t.prototype.role=void 0,t.RoleEnum={SITECONSUMER:"SiteConsumer",SITECOLLABORATOR:"SiteCollaborator",SITECONTRIBUTOR:"SiteContributor",SITEMANAGER:"SiteManager"},t})},{"../ApiClient":172}],283:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("message")&&(n.message=e.convertToType(i.message,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("title")&&(n.title=e.convertToType(i.title,"String"))),n},t.prototype.message=void 0,t.prototype.id=void 0,t.prototype.title=void 0,t})},{"../ApiClient":172}],284:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipBody1=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("message")&&(n.message=e.convertToType(i.message,"String"))),n},t.prototype.message=void 0,t})},{"../ApiClient":172}],285:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Site"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Site")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipRequest=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Site))}(void 0,function(e,t){var i=function(e,t,i){this.id=e,this.createdAt=t,this.entry=i};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("createdAt")&&(o.createdAt=e.convertToType(n.createdAt,"Date")),n.hasOwnProperty("entry")&&(o.entry=t.constructFromObject(n.entry))),o},i.prototype.id=void 0,i.prototype.createdAt=void 0,i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Site":272}],286:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SiteMembershipRequest"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SiteMembershipRequest")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipRequestEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteMembershipRequest))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./SiteMembershipRequest":285}],287:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SiteMembershipRequestPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SiteMembershipRequestPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipRequestPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteMembershipRequestPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./SiteMembershipRequestPagingList":288}],288:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./SiteMembershipRequestEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./SiteMembershipRequestEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipRequestPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.SiteMembershipRequestEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./Pagination":247,"./SiteMembershipRequestEntry":286}],289:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SitePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SitePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SitePaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SitePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./SitePagingList":290}],290:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SitePagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t){var i=function(e){this.pagination=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("pagination")&&(n.pagination=t.constructFromObject(e.pagination))),n},i.prototype.pagination=void 0,i})},{"../ApiClient":172,"./Pagination":247}],291:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Tag=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.id=e,this.tag=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("tag")&&(n.tag=e.convertToType(i.tag,"String"))),n},t.prototype.id=void 0,t.prototype.tag=void 0,t})},{"../ApiClient":172}],292:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.tag=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("tag")&&(n.tag=e.convertToType(i.tag,"String"))),n},t.prototype.tag=void 0,t})},{"../ApiClient":172}],293:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagBody1=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("tag")&&(n.tag=e.convertToType(i.tag,"String"))),n},t.prototype.tag=void 0,t})},{"../ApiClient":172}],294:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Tag"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Tag")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Tag))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":172,"./Tag":291}],295:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./TagPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./TagPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.TagPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":172,"./TagPagingList":296}],296:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./TagEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./TagEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.TagEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":172,"./Pagination":247,"./TagEntry":294}],297:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.UserInfo=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("displayName")&&(n.displayName=e.convertToType(i.displayName,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.displayName=void 0,t.prototype.id=void 0,t})},{"../ApiClient":172}],298:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CustomModelApi=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.private=!0,this.createCustomModel=function(e,t,i,n,o){if(void 0==n||null==n)throw"Missing the required parameter 'namespaceUri' when calling createCustomModel";if(void 0==o||null==o)throw"Missing the required parameter 'namespacePrefix' when calling createCustomModel";var r={status:e,description:t,name:i,namespaceUri:n,namespacePrefix:o},s={},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm","POST",s,a,p,l,r,c,u,d,f)},this.createCustomType=function(e,t,i,n,o){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling createCustomType";if(void 0==t||null==t)throw"Missing the required parameter 'name' when calling createCustomType";var r={name:t,parentName:i,title:n,description:o},s={modelName:e},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm/{modelName}/types","POST",s,a,p,l,r,c,u,d,f)},this.createCustomAspect=function(e,t,i,n,o){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling createCustomAspect";if(void 0==t||null==t)throw"Missing the required parameter 'name' when calling createCustomAspect";var r={name:t,parentName:i,title:n,description:o},s={modelName:e},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm/{modelName}/aspects","POST",s,a,p,l,r,c,u,d,f)},this.createCustomConstraint=function(e,t,i,n){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling createCustomConstraint";if(void 0==i||null==i)throw"Missing the required parameter 'type' when calling createCustomConstraint";if(void 0==t||null==t)throw"Missing the required parameter 'name' when calling createCustomConstraint";var o={name:t,type:i,parameters:n},r={modelName:e},s={},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d={};return this.apiClient.callApi("cmm/{modelName}/constraints","POST",r,s,a,p,o,l,c,u,d)},this.activateCustomModel=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling activateCustomModel";var t={status:"ACTIVE"},i={modelName:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}?select=status","PUT",i,n,o,r,t,s,a,p,l)},this.deactivateCustomModel=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling deactivateCustomModel";var t={status:"DRAFT"},i={modelName:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}?select=status","PUT",i,n,o,r,t,s,a,p,l)},this.addPropertyToAspect=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling addPropertyToAspect";if(void 0==t||null==t)throw"Missing the required parameter 'aspectName' when calling addPropertyToAspect";var n={name:t,properties:i},o={modelName:e,aspectName:t},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u={};return this.apiClient.callApi("cmm/{modelName}/aspects/{aspectName}?select=props","PUT",o,r,s,a,n,p,l,c,u)},this.addPropertyToType=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling addPropertyToType";if(void 0==t||null==t)throw"Missing the required parameter 'typeName' when calling addPropertyToType";var n={name:t,properties:i},o={modelName:e,typeName:t},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u={};return this.apiClient.callApi("cmm/{modelName}/types/{typeName}?select=props","PUT",o,r,s,a,n,p,l,c,u)},this.updateCustomModel=function(e,t,i,n){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling updateCustomModel";var o={name:e,description:t,namespaceUri:i,namespacePrefix:n},r={modelName:e},s={},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d={};return this.apiClient.callApi("cmm/{modelName}","PUT",r,s,a,p,o,l,c,u,d)},this.updateCustomType=function(e,t,i,n,o){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling UpdateCustomType";if(void 0==t||null==t)throw"Missing the required parameter 'typeName' when calling UpdateCustomType";var r={name:e,parentName:n,title:o,description:i},s={modelName:e,typeName:t},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm/{modelName}/types/{typeName}","PUT",s,a,p,l,r,c,u,d,f)},this.updateCustomAspect=function(e,t,i,n,o){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling updateCustomAspect";if(void 0==t||null==t)throw"Missing the required parameter 'aspectName' when calling updateCustomAspect";var r={name:e,parentName:n,title:o,description:i},s={modelName:e,aspectName:t},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm/{modelName}/aspects/{aspectName}","PUT",s,a,p,l,r,c,u,d,f)},this.getAllCustomModel=function(){var e={},t={},i={},n={},o={},r=["basicAuth"],s=["application/json"],a=["application/json"],p={};return this.apiClient.callApi("cmm","GET",t,i,n,o,e,r,s,a,p)},this.getCustomModel=function(e,t){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomModel";var i={},n={modelName:e},t=t||{},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}","GET",n,t,o,r,i,s,a,p,l)},this.getAllCustomType=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getAllCustomType";var t={},i={modelName:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}/types","GET",i,n,o,r,t,s,a,p,l)},this.getCustomType=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomType";if(void 0==t||null==t)throw"Missing the required parameter 'typeName' when calling getCustomType";var n={},o={modelName:e,typeName:t},i=i||{},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c={};return this.apiClient.callApi("cmm/{modelName}/types/{typeName}","GET",o,i,r,s,n,a,p,l,c)},this.getAllCustomAspect=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getAllCustomAspect";var t={},i={modelName:e},n=n||{},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}/aspects","GET",i,n,o,r,t,s,a,p,l)},this.getCustomAspect=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomAspect";if(void 0==t||null==t)throw"Missing the required parameter 'aspectName' when calling getCustomAspect";var n={},o={modelName:e,aspectName:t},i=i||{},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c={};return this.apiClient.callApi("cmm/{modelName}/aspects/{aspectName}","GET",o,i,r,s,n,a,p,l,c)},this.getAllCustomConstraints=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getAllCustomConstraints";var t={},i={modelName:e},n=n||{},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}/constraints","GET",i,n,o,r,t,s,a,p,l)},this.getCustomConstraints=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomConstraints";if(void 0==t||null==t)throw"Missing the required parameter 'constraintName' when calling getCustomConstraints";var n={},o={modelName:e,constraintName:t},i=i||{},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c={};return this.apiClient.callApi("cmm/{modelName}/constraints{constraintName}","GET",o,i,r,s,n,a,p,l,c)},this.deleteCustomModel=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling deleteCustomModel";var t={},i={modelName:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}","DELETE",i,n,o,r,t,s,a,p,l)},this.deleteCustomType=function(e,t){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomConstraints";if(void 0==t||null==t)throw"Missing the required parameter 'modelName' when calling deleteCustomType";var i={},n={modelName:e,typeName:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c={};return this.apiClient.callApi("cmm/{modelName}/types/{typeName}","DELETE",n,o,r,s,i,a,p,l,c)}};return t})},{"../../../alfrescoApiClient":301}],299:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n){"function"==typeof e&&e.amd?e(["../../alfrescoApiClient","./api/CustomModelApi"],n):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports&&(i.exports=n(t("../../alfrescoApiClient"),t("./api/CustomModelApi")))}(function(e,t){var i={ApiClient:e,CustomModelApi:t};return i})},{"../../alfrescoApiClient":301,"./api/CustomModelApi":298}],300:[function(e,t,i){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=e("./alfresco-core-rest-api/src/index.js"),r=e("./alfresco-private-rest-api/src/index.js"),s=e("./alfresco-auth-rest-api/src/index"),a=e("./alfresco-activiti-rest-api/src/index"),p=e("./alfrescoContent"),l=e("./alfrescoNode"),c=e("./alfrescoUpload"),u=e("event-emitter"),d=e("./ecmAuth"),f=e("./bpmAuth"),y=e("./ecmClient"),m=e("./bpmClient"),h=e("./ecmPrivateClient"),v=e("lodash"),A=function(){function e(t){n(this,e),t||(t={}),this.config={hostEcm:t.hostEcm||"http://127.0.0.1:8080",hostBpm:t.hostBpm||"http://127.0.0.1:9999",contextRoot:t.contextRoot||"alfresco",contextRootBpm:t.contextRootBpm||"activiti-app",provider:t.provider||"ECM",ticketEcm:t.ticketEcm, -ticketBpm:t.ticketBpm,accessToken:t.accessToken,disableCsrf:t.disableCsrf||!1},this.bpmAuth=new f(this.config),this.ecmAuth=new d(this.config),this.ecmPrivateClient=new h(this.config),this.ecmClient=new y(this.config),this.bpmClient=new m(this.config),this.setAuthenticationClientECMBPM(this.ecmAuth.getAuthentication(),this.bpmAuth.getAuthentication()),this.initObjects(),u.call(this)}return e.prototype.changeCsrfConfig=function(e){this.config.disableCsrf=e,this.bpmAuth.changeCsrfConfig(e)},e.prototype.changeEcmHost=function(e){this.config.hostEcm=e,this.ecmAuth.changeHost(),this.ecmClient.changeHost()},e.prototype.changeBpmHost=function(e){this.config.hostBpm=e,this.bpmAuth.changeHost(),this.bpmClient.changeHost()},e.prototype.initObjects=function(){a.ApiClient.instance=this.bpmClient,this.activiti={},this.activitiStore=a,this._instantiateObjects(this.activitiStore,this.activiti),o.ApiClient.instance=this.ecmClient,this.core={},this.coreStore=o,this._instantiateObjects(this.coreStore,this.core),r.ApiClient.instance=this.ecmPrivateClient,this.corePrivateStore=r,this._instantiateObjects(this.corePrivateStore,this.core),this.nodes=this.node=new l,this.content=new p(this.ecmAuth,this.ecmClient),this.upload=new c,this.webScript=this.core.webscriptApi},e.prototype._instantiateObjects=function(e,t){var i=this,n=Object.keys(e);n.forEach(function(n){t[n]=e[n];var o=i._stringToObject(n,e),r=v.lowerFirst(n);t[r]=o})},e.prototype._stringToObject=function(e,t){try{if("function"==typeof t[e])return new t[e]}catch(t){console.log(e+" "+t)}},e.prototype.login=function(e,t){var i=this;if(this._isBpmConfiguration()){var n=this.bpmAuth.login(e,t);return n.then(function(e){i.config.ticketBpm=e},function(){}),n}if(this._isEcmConfiguration()){var o=this.ecmAuth.login(e,t);return o.then(function(e){i.setAuthenticationClientECMBPM(i.ecmAuth.getAuthentication(),null),i.config.ticketEcm=e},function(){}),o}if(this._isEcmBpmConfiguration()){var r=this._loginBPMECM(e,t);return r.then(function(e){i.config.ticketEcm=e[0],i.config.ticketBpm=e[1]},function(){}),r}},e.prototype.setAuthenticationClientECMBPM=function(e,t){this.ecmClient.setAuthentications(e),this.ecmPrivateClient.setAuthentications(e),this.bpmClient.setAuthentications(t)},e.prototype.loginTicket=function(e,t){return this.config.ticketEcm=e,this.config.ticketBpm=t,this.ecmAuth.validateTicket()},e.prototype._loginBPMECM=function(e,t){var i=this,n=this.ecmAuth.login(e,t),o=this.bpmAuth.login(e,t);return this.promise=new Promise(function(e,t){Promise.all([n,o]).then(function(t){i.promise.emit("success"),e(t)},function(e){401===e.status&&i.promise.emit("unauthorized"),i.promise.emit("error"),t(e)})}),u(this.promise),this.promise},e.prototype.logout=function(){var e=this;if(this.config.provider&&"BPM"===this.config.provider.toUpperCase())return this.bpmAuth.logout();if(this.config.provider&&"ECM"===this.config.provider.toUpperCase()){var t=this.ecmAuth.logout();return t.then(function(){e.config.ticket=void 0},function(){}),t}return this.config.provider&&"ALL"===this.config.provider.toUpperCase()?this._logoutBPMECM():void 0},e.prototype._logoutBPMECM=function(){var e=this,t=this.ecmAuth.logout(),i=this.bpmAuth.logout();return this.promise=new Promise(function(n,o){Promise.all([t,i]).then(function(t){e.config.ticket=void 0,e.promise.emit("logout"),n("logout")},function(t){401===t.status&&e.promise.emit("unauthorized"),e.promise.emit("error"),o(t)})}),u(this.promise),this.promise},e.prototype.isLoggedIn=function(){return this.config.provider&&"BPM"===this.config.provider.toUpperCase()?this.bpmAuth.isLoggedIn():this.config.provider&&"ECM"===this.config.provider.toUpperCase()?this.ecmAuth.isLoggedIn():this.config.provider&&"ALL"===this.config.provider.toUpperCase()?this.ecmAuth.isLoggedIn()&&this.bpmAuth.isLoggedIn():void 0},e.prototype.setTicket=function(e,t){this.ecmAuth.setTicket(e),this.bpmAuth.setTicket(t)},e.prototype.getTicketBpm=function(){return this.bpmAuth.getTicket()},e.prototype.getTicketEcm=function(){return this.ecmAuth.getTicket()},e.prototype.getTicket=function(){return[this.ecmAuth.getTicket(),this.bpmAuth.getTicket()]},e.prototype._isBpmConfiguration=function(){return this.config.provider&&"BPM"===this.config.provider.toUpperCase()},e.prototype._isEcmConfiguration=function(){return this.config.provider&&"ECM"===this.config.provider.toUpperCase()},e.prototype._isOauthConfiguration=function(){return this.config.provider&&"OAUTH"===this.config.provider.toUpperCase()},e.prototype._isEcmBpmConfiguration=function(){return this.config.provider&&"ALL"===this.config.provider.toUpperCase()},e}();u(A.prototype),t.exports=A,t.exports.Activiti=a,t.exports.Core=o,t.exports.Auth=s},{"./alfresco-activiti-rest-api/src/index":76,"./alfresco-auth-rest-api/src/index":164,"./alfresco-core-rest-api/src/index.js":188,"./alfresco-private-rest-api/src/index.js":299,"./alfrescoContent":302,"./alfrescoNode":303,"./alfrescoUpload":304,"./bpmAuth":305,"./bpmClient":306,"./ecmAuth":307,"./ecmClient":308,"./ecmPrivateClient":309,"event-emitter":21,lodash:23}],301:[function(e,t,i){(function(i){"use strict";function n(e,t){for(var i=Object.getOwnPropertyNames(t),n=0;n>e/4).toString(16):([1e16]+1e16).replace(/[01]/g,this.token)},t.prototype.progress=function(e,t){if(e.lengthComputable&&this.promise){var i=Math.round(e.loaded/e.total*100);t.emit("progress",{total:e.total,loaded:e.loaded,percent:i})}},t.prototype.buildUrlCustomBasePath=function(e,t,i){t.match(/^\//)||(t="/"+t);var n=e+t,o=this;return n=n.replace(/\{([\w-]+)\}/g,function(e,t){var n;return n=i.hasOwnProperty(t)?o.paramToString(i[t]):e,encodeURIComponent(n)})},t}(p);a(u.prototype),t.exports=u}).call(this,e("_process"))},{"./alfresco-core-rest-api/src/ApiClient":172,_process:24,"event-emitter":21,lodash:23,superagent:25}],302:[function(e,t,i){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=function(){function e(t,i){n(this,e),this.ecmAuth=t,this.ecmClient=i}return e.prototype.getDocumentThumbnailUrl=function(e){return this.ecmClient.basePath+"/nodes/"+e+"/renditions/doclib/content?attachment=false&alf_ticket="+this.ecmAuth.getTicket()},e.prototype.getDocumentPreviewUrl=function(e){return this.ecmClient.basePath+"/nodes/"+e+"/renditions/imgpreview/content?attachment=false&alf_ticket="+this.ecmAuth.getTicket()},e.prototype.getContentUrl=function(e){return this.ecmClient.basePath+"/nodes/"+e+"/content?attachment=false&alf_ticket="+this.ecmAuth.getTicket()},e}();t.exports=o},{}],303:[function(e,t,i){"use strict";function n(e,t){for(var i=Object.getOwnPropertyNames(t),n=0;n0||t<0)?new j(i):(e<0?i=i.takeRight(-e):e&&(i=i.drop(e)),t!==ne&&(t=Tp(t),i=t<0?i.dropRight(-t):i.take(t-e)),i)},j.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},j.prototype.toArray=function(){return this.take(De)},on(j.prototype,function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),o=/^(?:head|last)$/.test(t),r=i[o?"take"+("last"==t?"Right":""):t],s=o||/^find/.test(t);r&&(i.prototype[t]=function(){var t=this.__wrapped__,a=o?[1]:arguments,p=t instanceof j,l=a[0],c=p||gd(t),u=function(e){var t=r.apply(i,m([e],a));return o&&d?t[0]:t};c&&n&&"function"==typeof l&&1!=l.length&&(p=c=!1);var d=this.__chain__,f=!!this.__actions__.length,y=s&&!d,h=p&&!f;if(!s&&c){t=h?t:new j(this);var v=e.apply(t,a);return v.__actions__.push({func:ia,args:[u],thisArg:ne}),new b(v,d)}return y&&h?e.apply(this,a):(v=this.thru(u),y?o?v.value()[0]:v.value():v)})}),p(["pop","push","shift","sort","splice","unshift"],function(e){var t=mc[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",o=/^(?:pop|shift)$/.test(e);i.prototype[e]=function(){var e=arguments;if(o&&!this.__chain__){var i=this.value();return t.apply(gd(i)?i:[],e)}return this[n](function(i){return t.apply(gd(i)?i:[],e)})}}),on(j.prototype,function(e,t){var n=i[t];if(n){var o=n.name+"",r=pu[o]||(pu[o]=[]);r.push({name:t,func:n})}}),pu[ir(ne,ve).name]=[{name:"wrapper",func:ne}],j.prototype.clone=J,j.prototype.reverse=ee,j.prototype.value=te,i.prototype.at=Zu,i.prototype.chain=na,i.prototype.commit=oa,i.prototype.next=ra,i.prototype.plant=aa,i.prototype.reverse=pa,i.prototype.toJSON=i.prototype.valueOf=i.prototype.value=la,i.prototype.first=i.prototype.head,_c&&(i.prototype[_c]=sa),i},Pn=Rn();"function"==typeof e&&"object"==typeof e.amd&&e.amd?(sn._=Pn,e(function(){return Pn})):pn?((pn.exports=Pn)._=Pn,an._=Pn):sn._=Pn}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],24:[function(e,t,i){function n(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function r(e){if(u===setTimeout)return setTimeout(e,0);if((u===n||!u)&&setTimeout)return u=setTimeout,setTimeout(e,0);try{return u(e,0)}catch(t){try{return u.call(null,e,0)}catch(t){return u.call(this,e,0)}}}function s(e){if(d===clearTimeout)return clearTimeout(e);if((d===o||!d)&&clearTimeout)return d=clearTimeout,clearTimeout(e);try{return d(e)}catch(t){try{return d.call(null,e)}catch(t){return d.call(this,e)}}}function a(){h&&y&&(h=!1,y.length?m=y.concat(m):v=-1,m.length&&p())}function p(){if(!h){var e=r(a);h=!0;for(var t=m.length;t;){for(y=m,m=[];++v1)for(var i=1;i=0?"&":"?")+e),this._sort){var t=this.url.indexOf("?");if(t>=0){var i=this.url.substring(t+1).split("&");h(this._sort)?i.sort(this._sort):i.sort(),this.url=this.url.substring(0,t)+"?"+i.join("&")}}},c.prototype._isHost=function(e){return e&&"object"==typeof e&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},c.prototype.end=function(e){return this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||n,this._appendQueryString(),this._end()},c.prototype._end=function(){var e=this,t=this.xhr=b.getXHR(),i=this._formData||this._data;this._setTimeouts(),t.onreadystatechange=function(){var i=t.readyState;if(i>=2&&e._responseTimeoutTimer&&clearTimeout(e._responseTimeoutTimer),4==i){var n;try{n=t.status}catch(e){n=0}if(!n){if(e.timedout||e._aborted)return;return e.crossDomainError()}e.emit("end")}};var n=function(t,i){i.total>0&&(i.percent=i.loaded/i.total*100),i.direction=t,e.emit("progress",i)};if(this.hasListeners("progress"))try{t.onprogress=n.bind(null,"download"),t.upload&&(t.upload.onprogress=n.bind(null,"upload"))}catch(e){}try{this.username&&this.password?t.open(this.method,this.url,!0,this.username,this.password):t.open(this.method,this.url,!0)}catch(e){return this.callback(e)}if(this._withCredentials&&(t.withCredentials=!0),!this._formData&&"GET"!=this.method&&"HEAD"!=this.method&&"string"!=typeof i&&!this._isHost(i)){var o=this._header["content-type"],r=this._serializer||b.serialize[o?o.split(";")[0]:""];!r&&p(o)&&(r=b.serialize["application/json"]),r&&(i=r(i))}for(var s in this.header)null!=this.header[s]&&t.setRequestHeader(s,this.header[s]);return this._responseType&&(t.responseType=this._responseType),this.emit("request",this),t.send("undefined"!=typeof i?i:null),this},b.get=function(e,t,i){var n=b("GET",e);return"function"==typeof t&&(i=t,t=null),t&&n.query(t),i&&n.end(i),n},b.head=function(e,t,i){var n=b("HEAD",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n},b.options=function(e,t,i){var n=b("OPTIONS",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n},b.del=u,b.delete=u,b.patch=function(e,t,i){var n=b("PATCH",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n},b.post=function(e,t,i){var n=b("POST",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n},b.put=function(e,t,i){var n=b("PUT",e);return"function"==typeof t&&(i=t,t=null),t&&n.send(t),i&&n.end(i),n}},{"./is-function":26,"./is-object":27,"./request-base":28,"./response-base":29,"./should-retry":30,emitter:6}],26:[function(e,t,i){function n(e){var t=o(e)?Object.prototype.toString.call(e):"";return"[object Function]"===t}var o=e("./is-object");t.exports=n},{"./is-object":27}],27:[function(e,t,i){function n(e){return null!==e&&"object"==typeof e}t.exports=n},{}],28:[function(e,t,i){function n(e){if(e)return o(e)}function o(e){for(var t in n.prototype)e[t]=n.prototype[t];return e}var r=e("./is-object");t.exports=n,n.prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,this},n.prototype.parse=function(e){return this._parser=e,this},n.prototype.responseType=function(e){return this._responseType=e,this},n.prototype.serialize=function(e){return this._serializer=e,this},n.prototype.timeout=function(e){return e&&"object"==typeof e?("undefined"!=typeof e.deadline&&(this._timeout=e.deadline),"undefined"!=typeof e.response&&(this._responseTimeout=e.response),this):(this._timeout=e,this._responseTimeout=0,this)},n.prototype.retry=function(e){return 0!==arguments.length&&e!==!0||(e=1),e<=0&&(e=0),this._maxRetries=e,this._retries=0,this},n.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this._end()},n.prototype.then=function(e,t){if(!this._fullfilledPromise){var i=this;this._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise(function(e,t){i.end(function(i,n){i?t(i):e(n)})})}return this._fullfilledPromise.then(e,t)},n.prototype.catch=function(e){return this.then(void 0,e)},n.prototype.use=function(e){return e(this),this},n.prototype.ok=function(e){if("function"!=typeof e)throw Error("Callback required");return this._okCallback=e,this},n.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):e.status>=200&&e.status<300)},n.prototype.get=function(e){return this._header[e.toLowerCase()]},n.prototype.getHeader=n.prototype.get,n.prototype.set=function(e,t){if(r(e)){for(var i in e)this.set(i,e[i]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},n.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},n.prototype.field=function(e,t){if(null===e||void 0===e)throw new Error(".field(name, val) name can not be empty");if(this._data&&console.error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()"),r(e)){for(var i in e)this.field(i,e[i]);return this}if(Array.isArray(t)){for(var n in t)this.field(e,t[n]);return this}if(null===t||void 0===t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=""+t),this._getFormData().append(e,t),this},n.prototype.abort=function(){return this._aborted?this:(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort"),this)},n.prototype.withCredentials=function(){return this._withCredentials=!0,this},n.prototype.redirects=function(e){return this._maxRedirects=e,this},n.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},n.prototype.send=function(e){var t=r(e),i=this._header["content-type"];if(this._formData&&console.error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()"),t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw Error("Can't merge these send calls");if(t&&r(this._data))for(var n in e)this._data[n]=e[n];else"string"==typeof e?(i||this.type("form"),i=this._header["content-type"],"application/x-www-form-urlencoded"==i?this._data=this._data?this._data+"&"+e:e:this._data=(this._data||"")+e):this._data=e;return!t||this._isHost(e)?this:(i||this.type("json"),this)},n.prototype.sortQuery=function(e){return this._sort="undefined"==typeof e||e,this},n.prototype._timeoutError=function(e,t){if(!this._aborted){var i=new Error(e+t+"ms exceeded");i.timeout=t,i.code="ECONNABORTED",this.timedout=!0,this.abort(),this.callback(i)}},n.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout(function(){e._timeoutError("Timeout of ",e._timeout)},this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout(function(){e._timeoutError("Response timeout of ",e._responseTimeout)},this._responseTimeout))}},{"./is-object":27}],29:[function(e,t,i){function n(e){if(e)return o(e)}function o(e){for(var t in n.prototype)e[t]=n.prototype[t];return e}var r=e("./utils");t.exports=n,n.prototype.get=function(e){return this.header[e.toLowerCase()]},n.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=r.type(t);var i=r.params(t);for(var n in i)this[n]=i[n];this.links={};try{e.link&&(this.links=r.parseLinks(e.link))}catch(e){}},n.prototype._setStatusProperties=function(e){var t=e/100|0;this.status=this.statusCode=e,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.accepted=202==e,this.noContent=204==e,this.badRequest=400==e,this.unauthorized=401==e,this.notAcceptable=406==e,this.forbidden=403==e,this.notFound=404==e}},{"./utils":31}],30:[function(e,t,i){var n=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];t.exports=function(e,t){return!!(e&&e.code&&~n.indexOf(e.code))||(!!(t&&t.status&&t.status>=500)||!!(e&&"timeout"in e&&"ECONNABORTED"==e.code))}},{}],31:[function(e,t,i){i.type=function(e){return e.split(/ *; */).shift()},i.params=function(e){return e.split(/ *; */).reduce(function(e,t){var i=t.split(/ *= */),n=i.shift(),o=i.shift();return n&&o&&(e[n]=o),e},{})},i.parseLinks=function(e){return e.split(/ *, */).reduce(function(e,t){var i=t.split(/ *; */),n=i[0].slice(1,-1),o=i[1].split(/ *= */)[1].slice(1,-1);return e[o]=n,e},{})},i.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&delete e.cookie,e}},{}],32:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AboutApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.getAppVersion=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json"],p={String:"String"};return this.apiClient.callApi("/api/enterprise/app-version","GET",t,i,n,o,e,r,s,a,p)}};return t})},{"../../../alfrescoApiClient":302}],33:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/CreateEndpointBasicAuthRepresentation","../model/EndpointBasicAuthRepresentation","../model/EndpointConfigurationRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/CreateEndpointBasicAuthRepresentation"),t("../model/EndpointBasicAuthRepresentation"),t("../model/EndpointConfigurationRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AdminEndpointsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.CreateEndpointBasicAuthRepresentation,n.ActivitiPublicRestApi.EndpointBasicAuthRepresentation,n.ActivitiPublicRestApi.EndpointConfigurationRepresentation))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.createBasicAuthConfiguration=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'createRepresentation' when calling createBasicAuthConfiguration";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/admin/basic-auths","POST",n,o,r,s,t,a,p,l,c)},this.createEndpointConfiguration=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'representation' when calling createEndpointConfiguration";var i={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/admin/endpoints","POST",i,o,r,s,t,a,p,l,c)},this.getBasicAuthConfiguration=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'basicAuthId' when calling getBasicAuthConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'tenantId' when calling getBasicAuthConfiguration";var o={basicAuthId:e},r={tenantId:t},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/admin/basic-auths/{basicAuthId}","GET",o,r,s,a,n,p,l,c,u)},this.getBasicAuthConfigurations=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getBasicAuthConfigurations";var n={},o={tenantId:e},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[i];return this.apiClient.callApi("/api/enterprise/admin/basic-auths","GET",n,o,r,s,t,a,p,l,c)},this.getEndpointConfiguration=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'endpointConfigurationId' when calling getEndpointConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'tenantId' when calling getEndpointConfiguration";var o={endpointConfigurationId:e},r={tenantId:t},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/admin/endpoints/{endpointConfigurationId}","GET",o,r,s,a,i,p,l,c,u)},this.getEndpointConfigurations=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getEndpointConfigurations";var i={},o={tenantId:e},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[n];return this.apiClient.callApi("/api/enterprise/admin/endpoints","GET",i,o,r,s,t,a,p,l,c)},this.removeBasicAuthonfiguration=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'basicAuthId' when calling removeBasicAuthonfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'tenantId' when calling removeBasicAuthonfiguration";var n={basicAuthId:e},o={tenantId:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/basic-auths/{basicAuthId}","DELETE",n,o,r,s,i,a,p,l,c)},this.removeEndpointConfiguration=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'endpointConfigurationId' when calling removeEndpointConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'tenantId' when calling removeEndpointConfiguration";var n={endpointConfigurationId:e},o={tenantId:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/endpoints/{endpointConfigurationId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateBasicAuthConfiguration=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'basicAuthId' when calling updateBasicAuthConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'createRepresentation' when calling updateBasicAuthConfiguration";var o={basicAuthId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/admin/basic-auths/{basicAuthId}","PUT",o,r,s,a,n,p,l,c,u)},this.updateEndpointConfiguration=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'endpointConfigurationId' when calling updateEndpointConfiguration";if(void 0==t||null==t)throw"Missing the required parameter 'representation' when calling updateEndpointConfiguration";var o={endpointConfigurationId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/admin/endpoints/{endpointConfigurationId}","PUT",o,r,s,a,i,p,l,c,u)}};return o})},{"../../../alfrescoApiClient":302,"../model/CreateEndpointBasicAuthRepresentation":96,"../model/EndpointBasicAuthRepresentation":99,"../model/EndpointConfigurationRepresentation":100}],34:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AddGroupCapabilitiesRepresentation","../model/GroupRepresentation","../model/ResultListDataRepresentation","../model/AbstractGroupRepresentation","../model/LightGroupRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/AddGroupCapabilitiesRepresentation"),t("../model/GroupRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/AbstractGroupRepresentation"),t("../model/LightGroupRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AdminGroupsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AddGroupCapabilitiesRepresentation,n.ActivitiPublicRestApi.GroupRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.AbstractGroupRepresentation,n.ActivitiPublicRestApi.LightGroupRepresentation))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.activate=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling activate";var i={groupId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/action/activate","POST",i,n,o,r,t,s,a,p,l)},this.addAllUsersToGroup=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling addAllUsersToGroup";var i={groupId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/add-all-users","POST",i,n,o,r,t,s,a,p,l)},this.addGroupCapabilities=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling addGroupCapabilities";if(void 0==t||null==t)throw"Missing the required parameter 'addGroupCapabilitiesRepresentation' when calling addGroupCapabilities";var n={groupId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/capabilities","POST",n,o,r,s,i,a,p,l,c)},this.addGroupMember=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling addGroupMember";if(void 0==t||null==t)throw"Missing the required parameter 'userId' when calling addGroupMember";var n={groupId:e,userId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/members/{userId}","POST",n,o,r,s,i,a,p,l,c)},this.addRelatedGroup=function(e,t,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling addRelatedGroup";if(void 0==t||null==t)throw"Missing the required parameter 'relatedGroupId' when calling addRelatedGroup";if(void 0==i||null==i)throw"Missing the required parameter 'type' when calling addRelatedGroup";var o={groupId:e,relatedGroupId:t},r={type:i},s={},a={},p=[],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/related-groups/{relatedGroupId}","POST",o,r,s,a,n,p,l,c,u)},this.createNewGroup=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'groupRepresentation' when calling createNewGroup";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/admin/groups","POST",n,o,r,s,t,a,p,l,c)},this.deleteGroupCapability=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling deleteGroupCapability";if(void 0==t||null==t)throw"Missing the required parameter 'groupCapabilityId' when calling deleteGroupCapability";var n={groupId:e,groupCapabilityId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/capabilities/{groupCapabilityId}","DELETE",n,o,r,s,i,a,p,l,c)},this.deleteGroupMember=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling deleteGroupMember";if(void 0==t||null==t)throw"Missing the required parameter 'userId' when calling deleteGroupMember";var n={groupId:e,userId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/members/{userId}","DELETE",n,o,r,s,i,a,p,l,c); +},this.deleteGroup=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling deleteGroup";var i={groupId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}","DELETE",i,n,o,r,t,s,a,p,l)},this.deleteRelatedGroup=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling deleteRelatedGroup";if(void 0==t||null==t)throw"Missing the required parameter 'relatedGroupId' when calling deleteRelatedGroup";var n={groupId:e,relatedGroupId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/related-groups/{relatedGroupId}","DELETE",n,o,r,s,i,a,p,l,c)},this.getCapabilities=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getCapabilities";var i={groupId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=["String"];return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/potential-capabilities","GET",i,n,o,r,t,s,a,p,l)},this.getGroupUsers=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getGroupUsers";var o={groupId:e},r={filter:t.filter,page:t.page,pageSize:t.pageSize},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/users","GET",o,r,s,a,i,p,l,c,u)},this.getGroup=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getGroup";var n={groupId:e},r={includeAllUsers:t.includeAllUsers,summary:t.summary},s={},a={},p=[],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}","GET",n,r,s,a,i,p,l,c,u)},this.getGroups=function(e){e=e||{};var t=null,i={},n={tenantId:e.tenantId,functional:e.functional,summary:e.summary},o={},s={},a=[],p=["application/json"],l=["application/json"],c=[r];return this.apiClient.callApi("/api/enterprise/admin/groups","GET",i,n,o,s,t,a,p,l,c)},this.getRelatedGroups=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getRelatedGroups";var i={groupId:e},n={},o={},s={},a=[],p=["application/json"],l=["application/json"],c=[r];return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}/related-groups","GET",i,n,o,s,t,a,p,l,c)},this.updateGroup=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling updateGroup";if(void 0==t||null==t)throw"Missing the required parameter 'groupRepresentation' when calling updateGroup";var o={groupId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/admin/groups/{groupId}","PUT",o,r,s,a,n,p,l,c,u)}};return s})},{"../../../alfrescoApiClient":302,"../model/AbstractGroupRepresentation":78,"../model/AddGroupCapabilitiesRepresentation":81,"../model/GroupRepresentation":115,"../model/LightGroupRepresentation":119,"../model/ResultListDataRepresentation":144}],35:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightTenantRepresentation","../model/CreateTenantRepresentation","../model/TenantEvent","../model/TenantRepresentation","../model/ImageUploadRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/LightTenantRepresentation"),t("../model/CreateTenantRepresentation"),t("../model/TenantEvent"),t("../model/TenantRepresentation"),t("../model/ImageUploadRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AdminTenantsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightTenantRepresentation,n.ActivitiPublicRestApi.CreateTenantRepresentation,n.ActivitiPublicRestApi.TenantEvent,n.ActivitiPublicRestApi.TenantRepresentation,n.ActivitiPublicRestApi.ImageUploadRepresentation))}(void 0,function(e,t,i,n,o,r){var s=function(i){this.apiClient=i||e.instance,this.createTenant=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'createTenantRepresentation' when calling createTenant";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/admin/tenants","POST",n,o,r,s,i,a,p,l,c)},this.deleteTenant=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling deleteTenant";var i={tenantId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}","DELETE",i,n,o,r,t,s,a,p,l)},this.getTenantEvents=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getTenantEvents";var i={tenantId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[n];return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}/events","GET",i,o,r,s,t,a,p,l,c)},this.getTenantLogo=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getTenantLogo";var i={tenantId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}/logo","GET",i,n,o,r,t,s,a,p,l)},this.getTenant=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling getTenant";var i={tenantId:e},n={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}","GET",i,n,r,s,t,a,p,l,c)},this.getTenants=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=[t];return this.apiClient.callApi("/api/enterprise/admin/tenants","GET",i,n,o,r,e,s,a,p,l)},this.update=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling update";if(void 0==t||null==t)throw"Missing the required parameter 'createTenantRepresentation' when calling update";var n={tenantId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}","PUT",n,r,s,a,i,p,l,c,u)},this.uploadTenantLogo=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'tenantId' when calling uploadTenantLogo";if(void 0==t||null==t)throw"Missing the required parameter 'file' when calling uploadTenantLogo";var n={tenantId:e},o={},s={},a={file:t},p=[],l=["multipart/form-data"],c=["application/json"],u=r;return this.apiClient.callApi("/api/enterprise/admin/tenants/{tenantId}/logo","POST",n,o,s,a,i,p,l,c,u)}};return s})},{"../../../alfrescoApiClient":302,"../model/CreateTenantRepresentation":98,"../model/ImageUploadRepresentation":116,"../model/LightTenantRepresentation":120,"../model/TenantEvent":154,"../model/TenantRepresentation":155}],36:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/BulkUserUpdateRepresentation","../model/UserRepresentation","../model/AbstractUserRepresentation","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/BulkUserUpdateRepresentation"),t("../model/UserRepresentation"),t("../model/AbstractUserRepresentation"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AdminUsersApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.BulkUserUpdateRepresentation,n.ActivitiPublicRestApi.UserRepresentation,n.ActivitiPublicRestApi.AbstractUserRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.bulkUpdateUsers=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'update' when calling bulkUpdateUsers";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/admin/users","PUT",i,n,o,r,t,s,a,p,l)},this.createNewUser=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'userRepresentation' when calling createNewUser";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/admin/users","POST",n,o,r,s,t,a,p,l,c)},this.getUser=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getUser";var o={userId:e},r={summary:t.summary},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/admin/users/{userId}","GET",o,r,s,a,i,p,l,c,u)},this.getUsers=function(e){e=e||{};var t=null,i={},n={filter:e.filter,status:e.status,accountType:e.accountType,sort:e.sort,company:e.company,start:e.start,page:e.page,size:e.size,groupId:e.groupId,tenantId:e.tenantId,summary:e.summary},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/admin/users","GET",i,n,r,s,t,a,p,l,c)},this.updateUserDetails=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling updateUserDetails";if(void 0==t||null==t)throw"Missing the required parameter 'userRepresentation' when calling updateUserDetails";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/admin/users/{userId}","PUT",n,o,r,s,i,a,p,l,c)}};return r})},{"../../../alfrescoApiClient":302,"../model/AbstractUserRepresentation":80,"../model/BulkUserUpdateRepresentation":89,"../model/ResultListDataRepresentation":144,"../model/UserRepresentation":160}],37:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AlfrescoApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.getAllNetworks=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks","GET",i,n,o,r,e,s,a,p,l)},this.getAllSites=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getAllSites";var n={networkId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites","GET",n,o,r,s,i,a,p,l,c)},this.getAllSites=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getAllSites";var n={repositoryId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites","GET",n,o,r,s,i,a,p,l,c)},this.getContentInFolder=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInFolder";if(void 0==i||null==i)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={networkId:e,folderId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInFolder=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInFolder";if(void 0==i||null==i)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={repositoryId:e,folderId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInSite";if(void 0==i||null==i)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={networkId:e,siteId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInSite";if(void 0==i||null==i)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={repositoryId:e,siteId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getRepositories=function(e){e=e||{};var i=null,n={},o={tenantId:e.tenantId,includeAccounts:e.includeAccounts},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/profile/accounts/alfresco","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],38:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/RuntimeAppDefinitionSaveRepresentation","../model/ResultListDataRepresentation","../model/AppDefinitionRepresentation","../model/AppDefinitionPublishRepresentation","../model/AppDefinitionUpdateResultRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/RuntimeAppDefinitionSaveRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/AppDefinitionRepresentation"),t("../model/AppDefinitionPublishRepresentation"),t("../model/AppDefinitionUpdateResultRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.RuntimeAppDefinitionSaveRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.AppDefinitionRepresentation,n.ActivitiPublicRestApi.AppDefinitionPublishRepresentation,n.ActivitiPublicRestApi.AppDefinitionUpdateResultRepresentation))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.deployAppDefinitions=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'saveObject' when calling deployAppDefinitions";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/runtime-app-definitions","POST",i,n,o,r,t,s,a,p,l)},this.exportAppDefinition=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling exportAppDefinition";var i={modelId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/export","GET",i,n,o,r,t,s,a,p,l)},this.getAppDefinitions=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=i;return this.apiClient.callApi("/api/enterprise/runtime-app-definitions","GET",t,n,o,r,e,s,a,p,l)},this.importAppDefinition=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling importAppDefinition";var i={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/app-definitions/import","POST",i,o,r,s,t,a,p,l,c)},this.importAppDefinition=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling importAppDefinition";if(void 0==t||null==t)throw"Missing the required parameter 'file' when calling importAppDefinition";var o={modelId:e},r={},s={},a={file:t},p=[],l=["multipart/form-data"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/import","POST",o,r,s,a,i,p,l,c,u)},this.publishAppDefinition=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling publishAppDefinition";if(void 0==t||null==t)throw"Missing the required parameter 'publishModel' when calling publishAppDefinition";var n={modelId:e},o={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/publish","POST",n,o,s,a,i,p,l,c,u)}};return s})},{"../../../alfrescoApiClient":302,"../model/AppDefinitionPublishRepresentation":83,"../model/AppDefinitionRepresentation":84,"../model/AppDefinitionUpdateResultRepresentation":85,"../model/ResultListDataRepresentation":144,"../model/RuntimeAppDefinitionSaveRepresentation":145}],39:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AppDefinitionRepresentation","../model/AppDefinitionPublishRepresentation","../model/AppDefinitionUpdateResultRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/AppDefinitionRepresentation"),t("../model/AppDefinitionPublishRepresentation"),t("../model/AppDefinitionUpdateResultRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppsDefinitionApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AppDefinitionRepresentation,n.ActivitiPublicRestApi.AppDefinitionPublishRepresentation,n.ActivitiPublicRestApi.AppDefinitionUpdateResultRepresentation))}(void 0,function(e,t,i,n){var o=function(i){this.apiClient=i||e.instance,this.exportAppDefinition=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling exportAppDefinition";var i={modelId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/export","GET",i,n,o,r,t,s,a,p,l)},this.importAppDefinition=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling importAppDefinition";var n={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/app-definitions/import","POST",n,o,r,s,i,a,p,l,c)},this.importAppDefinition=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling importAppDefinition";if(void 0==i||null==i)throw"Missing the required parameter 'file' when calling importAppDefinition";var o={modelId:e},r={},s={},a={file:i},p=[],l=["multipart/form-data"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/import","POST",o,r,s,a,n,p,l,c,u)},this.publishAppDefinition=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling publishAppDefinition";if(void 0==t||null==t)throw"Missing the required parameter 'publishModel' when calling publishAppDefinition";var o={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/api/enterprise/app-definitions/{modelId}/publish","POST",o,r,s,a,i,p,l,c,u)}};return o})},{"../../../alfrescoApiClient":302,"../model/AppDefinitionPublishRepresentation":83,"../model/AppDefinitionRepresentation":84,"../model/AppDefinitionUpdateResultRepresentation":85}],40:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/RuntimeAppDefinitionSaveRepresentation","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/RuntimeAppDefinitionSaveRepresentation"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppsRuntimeApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.RuntimeAppDefinitionSaveRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t,i){var n=function(t){this.apiClient=t||e.instance,this.deployAppDefinitions=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'saveObject' when calling deployAppDefinitions";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/runtime-app-definitions","POST",i,n,o,r,t,s,a,p,l)},this.getAppDefinitions=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=i;return this.apiClient.callApi("/api/enterprise/runtime-app-definitions","GET",t,n,o,r,e,s,a,p,l)}};return n})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144,"../model/RuntimeAppDefinitionSaveRepresentation":145}],41:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/CommentRepresentation","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/CommentRepresentation"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CommentsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.CommentRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t,i){var n=function(n){this.apiClient=n||e.instance,this.addProcessInstanceComment=function(e,i){var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'commentRequest' when calling addProcessInstanceComment";if(void 0==i||null==i)throw"Missing the required parameter 'processInstanceId' when calling addProcessInstanceComment";var o={processInstanceId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.addTaskComment=function(e,i){var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'commentRequest' when calling addTaskComment";if(void 0==i||null==i)throw"Missing the required parameter 'taskId' when calling addTaskComment";var o={taskId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.getProcessInstanceComments=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceComments";var o={processInstanceId:e},r={latestFirst:t.latestFirst},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/comments","GET",o,r,s,a,n,p,l,c,u)},this.getTaskComments=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskComments";var o={taskId:e},r={latestFirst:t.latestFirst},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/comments","GET",o,r,s,a,n,p,l,c,u)}};return n})},{"../../../alfrescoApiClient":302,"../model/CommentRepresentation":93,"../model/ResultListDataRepresentation":144}],42:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/RelatedContentRepresentation","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/RelatedContentRepresentation"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ContentApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.RelatedContentRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t,i){var n=function(n){this.apiClient=n||e.instance,this.createRelatedContentOnProcessInstance=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling createRelatedContentOnProcessInstance";if(void 0==i||null==i)throw"Missing the required parameter 'relatedContent' when calling createRelatedContentOnProcessInstance";var o={processInstanceId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/content","POST",o,r,s,a,n,p,l,c,u)},this.createRelatedContentOnProcessInstance=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling createRelatedContentOnProcessInstance";if(void 0==i||null==i)throw"Missing the required parameter 'file' when calling createRelatedContentOnProcessInstance";var o={processInstanceId:e},r={},s={},a={file:i},p=[],l=["multipart/form-data"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/raw-content","POST",o,r,s,a,n,p,l,c,u)},this.createRelatedContentOnTask=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling createRelatedContentOnTask";if(void 0==i||null==i)throw"Missing the required parameter 'relatedContent' when calling createRelatedContentOnTask";var r={taskId:e},s={isRelatedContent:n.isRelatedContent},a={},p={},l=[],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/content","POST",r,s,a,p,o,l,c,u,d)},this.createRelatedContentOnTask=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling createRelatedContentOnTask";if(void 0==i||null==i)throw"Missing the required parameter 'file' when calling createRelatedContentOnTask";var r={taskId:e},s={isRelatedContent:n.isRelatedContent},a={},p={file:i},l=[],c=["multipart/form-data"],u=["application/json"],d=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/raw-content","POST",r,s,a,p,o,l,c,u,d)},this.createTemporaryRawRelatedContent=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling createTemporaryRawRelatedContent";var n={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/content/raw","POST",n,o,r,s,i,a,p,l,c)},this.createTemporaryRelatedContent=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'relatedContent' when calling createTemporaryRelatedContent";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/content","POST",n,o,r,s,i,a,p,l,c)},this.deleteContent=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'contentId' when calling deleteContent";var i={contentId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/content/{contentId}","DELETE",i,n,o,r,t,s,a,p,l)},this.getContent=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'contentId' when calling getContent";var n={contentId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/content/{contentId}","GET",n,o,r,s,i,a,p,l,c)},this.getProcessInstanceContent=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceContent";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/field-content","GET",n,o,r,s,t,a,p,l,c)},this.getRawContent=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'contentId' when calling getRawContent";var i={contentId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=Object,c=null,u="blob";return this.apiClient.callApi("/api/enterprise/content/{contentId}/raw","GET",i,n,o,r,t,s,a,p,l,c,u)},this.getRawContentUrl=function(e){return this.apiClient.basePath+"/api/enterprise/content/"+e+"/raw"},this.getContentThumbnailUrl=function(e){return this.apiClient.basePath+"/app/rest/content/"+e+"/rendition/thumbnail"},this.getRelatedContentForProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getRelatedContentForProcessInstance";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/content","GET",n,o,r,s,t,a,p,l,c)},this.getRelatedContentForTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRelatedContentForTask";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i; +return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/content","GET",n,o,r,s,t,a,p,l,c)}};return n})},{"../../../alfrescoApiClient":302,"../model/RelatedContentRepresentation":139,"../model/ResultListDataRepresentation":144}],43:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ContentRenditionApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.getRawContent=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'contentId' when calling getRawContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionType' when calling getRawContent";var n={contentId:e,renditionType:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/content/{contentId}/rendition/{renditionType}","GET",n,o,r,s,i,a,p,l,c)}};return t})},{"../../../alfrescoApiClient":302}],44:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormRepresentation","../model/FormSaveRepresentation","../model/ValidationErrorRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/FormRepresentation"),t("../model/FormSaveRepresentation"),t("../model/ValidationErrorRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EditorApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormRepresentation,n.ActivitiPublicRestApi.FormSaveRepresentation,n.ActivitiPublicRestApi.ValidationErrorRepresentation))}(void 0,function(e,t,i,n){var o=function(i){this.apiClient=i||e.instance,this.getFormHistory=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'formId' when calling getFormHistory";if(void 0==i||null==i)throw"Missing the required parameter 'formHistoryId' when calling getFormHistory";var o={formId:e,formHistoryId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/editor/form-models/{formId}/history/{formHistoryId}","GET",o,r,s,a,n,p,l,c,u)},this.getForm=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'formId' when calling getForm";var n={formId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/editor/form-models/{formId}","GET",n,o,r,s,i,a,p,l,c)},this.getForms=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=[t];return this.apiClient.callApi("/api/enterprise/editor/form-models/values","GET",i,n,o,r,e,s,a,p,l)},this.saveForm=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'formId' when calling saveForm";if(void 0==i||null==i)throw"Missing the required parameter 'saveRepresentation' when calling saveForm";var o={formId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/editor/form-models/{formId}","PUT",o,r,s,a,n,p,l,c,u)},this.validateModel=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'formId' when calling validateModel";if(void 0==t||null==t)throw"Missing the required parameter 'saveRepresentation' when calling validateModel";var o={formId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[n];return this.apiClient.callApi("/api/enterprise/editor/form-models/{formId}/validate","PUT",o,r,s,a,i,p,l,c,u)}};return o})},{"../../../alfrescoApiClient":302,"../model/FormRepresentation":109,"../model/FormSaveRepresentation":110,"../model/ValidationErrorRepresentation":162}],45:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.GroupsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getGroups=function(e){e=e||{};var i=null,n={},o={filter:e.filter,groupId:e.groupId,externalId:e.externalId,externalIdCaseInsensitive:e.externalIdCaseInsensitive,tenantId:e.tenantId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/groups","GET",n,o,r,s,i,a,p,l,c)},this.getUsersForGroup=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'groupId' when calling getUsersForGroup";var n={groupId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/groups/{groupId}/users","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],46:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/SyncLogEntryRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/SyncLogEntryRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IDMSyncApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.SyncLogEntryRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getLogFile=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'syncLogEntryId' when calling getLogFile";var i={syncLogEntryId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/idm-sync-log-entries/{syncLogEntryId}/logfile","GET",i,n,o,r,t,s,a,p,l)},this.getSyncLogEntries=function(e){e=e||{};var i=null,n={},o={tenantId:e.tenantId,page:e.page,size:e.size},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[t];return this.apiClient.callApi("/api/enterprise/idm-sync-log-entries","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/SyncLogEntryRepresentation":147}],47:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationAccountApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getAccounts=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/account/integration","GET",i,n,o,r,e,s,a,p,l)}};return i})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],48:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationAlfrescoCloudApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.getAllNetworks=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks","GET",i,n,o,r,e,s,a,p,l)},this.getAllSites=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getAllSites";var n={networkId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites","GET",n,o,r,s,i,a,p,l,c)},this.getContentInFolder=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInFolder";if(void 0==i||null==i)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={networkId:e,folderId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInSite";if(void 0==i||null==i)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={networkId:e,siteId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)}};return i})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],49:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationAlfrescoOnPremiseApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getAllSites=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getAllSites";var n={repositoryId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites","GET",n,o,r,s,i,a,p,l,c)},this.getContentInFolder=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInFolder";if(void 0==i||null==i)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={repositoryId:e,folderId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInSite";if(void 0==i||null==i)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={repositoryId:e,siteId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getRepositories=function(e){e=e||{};var i=null,n={},o={tenantId:e.tenantId,includeAccounts:e.includeAccounts},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/profile/accounts/alfresco","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],50:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/UserAccountCredentialsRepresentation","../model/ResultListDataRepresentation","../model/BoxUserAccountCredentialsRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/UserAccountCredentialsRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/BoxUserAccountCredentialsRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.UserAccountCredentialsRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.BoxUserAccountCredentialsRepresentation))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/box/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/google-drive/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.createRepositoryAccount=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling createRepositoryAccount";if(void 0==t||null==t)throw"Missing the required parameter 'credentials' when calling createRepositoryAccount";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","POST",n,o,r,s,i,a,p,l,c)},this.deleteRepositoryAccount=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling deleteRepositoryAccount";var i={userId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","DELETE",i,n,o,r,t,s,a,p,l)},this.getAllNetworks=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks","GET",t,n,o,r,e,s,a,p,l)},this.getAllSites=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getAllSites";var n={networkId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites","GET",n,o,r,s,t,a,p,l,c)},this.getAllSites=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getAllSites";var n={repositoryId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites","GET",n,o,r,s,t,a,p,l,c)},this.getBoxPluginStatus=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json"],p="Boolean";return this.apiClient.callApi("/api/enterprise/integration/box/status","GET",t,i,n,o,e,r,s,a,p)},this.getContentInFolder=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInFolder";if(void 0==t||null==t)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={networkId:e,folderId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInFolder=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInFolder";if(void 0==t||null==t)throw"Missing the required parameter 'folderId' when calling getContentInFolder";var o={repositoryId:e,folderId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/folders/{folderId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getContentInSite";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={networkId:e,siteId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco-cloud/networks/{networkId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getContentInSite=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'repositoryId' when calling getContentInSite";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling getContentInSite";var o={repositoryId:e,siteId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/integration/alfresco/{repositoryId}/sites/{siteId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getFiles=function(e){e=e||{};var t=null,n={},o={filter:e.filter,parent:e.parent},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/box/files","GET",n,o,r,s,t,a,p,l,c)},this.getFiles=function(e){e=e||{};var t=null,n={},o={filter:e.filter,parent:e.parent,currentFolderOnly:e.currentFolderOnly},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/google-drive/files","GET",n,o,r,s,t,a,p,l,c)},this.getRepositories=function(e){e=e||{};var t=null,n={},o={tenantId:e.tenantId,includeAccounts:e.includeAccounts},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/profile/accounts/alfresco","GET",n,o,r,s,t,a,p,l,c)},this.getRepositoryAccount=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getRepositoryAccount";var i={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","GET",i,o,r,s,t,a,p,l,c)},this.updateRepositoryAccount=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling updateRepositoryAccount";if(void 0==t||null==t)throw"Missing the required parameter 'credentials' when calling updateRepositoryAccount";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","PUT",n,o,r,s,i,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":302,"../model/BoxUserAccountCredentialsRepresentation":88,"../model/ResultListDataRepresentation":144,"../model/UserAccountCredentialsRepresentation":156}],51:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/UserAccountCredentialsRepresentation","../model/ResultListDataRepresentation","../model/BoxUserAccountCredentialsRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/UserAccountCredentialsRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/BoxUserAccountCredentialsRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationBoxApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.UserAccountCredentialsRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.BoxUserAccountCredentialsRepresentation))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/box/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.createRepositoryAccount=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling createRepositoryAccount";if(void 0==t||null==t)throw"Missing the required parameter 'credentials' when calling createRepositoryAccount";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","POST",n,o,r,s,i,a,p,l,c)},this.deleteRepositoryAccount=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling deleteRepositoryAccount";var i={userId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","DELETE",i,n,o,r,t,s,a,p,l)},this.getBoxPluginStatus=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json"],p="Boolean";return this.apiClient.callApi("/api/enterprise/integration/box/status","GET",t,i,n,o,e,r,s,a,p)},this.getFiles=function(e){e=e||{};var t=null,n={},o={filter:e.filter,parent:e.parent},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/integration/box/files","GET",n,o,r,s,t,a,p,l,c)},this.getRepositoryAccount=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getRepositoryAccount";var i={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","GET",i,o,r,s,t,a,p,l,c)},this.updateRepositoryAccount=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling updateRepositoryAccount";if(void 0==t||null==t)throw"Missing the required parameter 'credentials' when calling updateRepositoryAccount";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/integration/box/{userId}/account","PUT",n,o,r,s,i,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":302,"../model/BoxUserAccountCredentialsRepresentation":88,"../model/ResultListDataRepresentation":144,"../model/UserAccountCredentialsRepresentation":156}],52:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.IntegrationDriveApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.confirmAuthorisation=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'code' when calling confirmAuthorisation";var i={},n={code:e},o={},r={},s=[],a=["application/json"],p=["text/html","application/json"],l=null;return this.apiClient.callApi("/api/enterprise/integration/google-drive/confirm-auth-request","GET",i,n,o,r,t,s,a,p,l)},this.getFiles=function(e){e=e||{};var i=null,n={},o={filter:e.filter,parent:e.parent,currentFolderOnly:e.currentFolderOnly},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/integration/google-drive/files","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],53:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelBpmnApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.getHistoricProcessModelBpmn20Xml=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processModelId' when calling getHistoricProcessModelBpmn20Xml";if(void 0==t||null==t)throw"Missing the required parameter 'processModelHistoryId' when calling getHistoricProcessModelBpmn20Xml";var n={processModelId:e,processModelHistoryId:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/models/{processModelId}/history/{processModelHistoryId}/bpmn20","GET",n,o,r,s,i,a,p,l,c)},this.getProcessModelBpmn20Xml=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processModelId' when calling getProcessModelBpmn20Xml";var i={processModelId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/models/{processModelId}/bpmn20","GET",i,n,o,r,t,s,a,p,l)}};return t})},{"../../../alfrescoApiClient":302}],54:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ObjectNode"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ObjectNode")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelJsonBpmnApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getHistoricEditorDisplayJsonClient=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processModelId' when calling getHistoricEditorDisplayJsonClient";if(void 0==i||null==i)throw"Missing the required parameter 'processModelHistoryId' when calling getHistoricEditorDisplayJsonClient";var o={processModelId:e,processModelHistoryId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/app/rest/models/{processModelId}/history/{processModelHistoryId}/model-json","GET",o,r,s,a,n,p,l,c,u)},this.getEditorDisplayJsonClient=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processModelId' when calling getEditorDisplayJsonClient";var n={processModelId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/app/rest/models/{processModelId}/model-json","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/ObjectNode":127}],55:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ModelRepresentation","../model/ObjectNode","../model/ResultListDataRepresentation","../model/ValidationErrorRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ModelRepresentation"),t("../model/ObjectNode"),t("../model/ResultListDataRepresentation"),t("../model/ValidationErrorRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ModelRepresentation,n.ActivitiPublicRestApi.ObjectNode,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ValidationErrorRepresentation))}(void 0,function(e,t,i,n,o){var r=function(r){this.apiClient=r||e.instance,this.createModel=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'modelRepresentation' when calling createModel";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/models","POST",n,o,r,s,i,a,p,l,c)},this.deleteModel=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling deleteModel";var n={modelId:e},o={cascade:t.cascade,deleteRuntimeApp:t.deleteRuntimeApp +},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/models/{modelId}","DELETE",n,o,r,s,i,a,p,l,c)},this.duplicateModel=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling duplicateModel";if(void 0==i||null==i)throw"Missing the required parameter 'modelRepresentation' when calling duplicateModel";var o={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}/clone","POST",o,r,s,a,n,p,l,c,u)},this.getModelJSON=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getModelJSON";var n={modelId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/models/{modelId}/editor/json","GET",n,o,r,s,t,a,p,l,c)},this.getModelThumbnail=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getModelThumbnail";var i={modelId:e},n={},o={},r={},s=[],a=["application/json"],p=["image/png","application/json"],l=["String"];return this.apiClient.callApi("/api/enterprise/models/{modelId}/thumbnail","GET",i,n,o,r,t,s,a,p,l)},this.getModel=function(e,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getModel";var o={modelId:e},r={includePermissions:i.includePermissions},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}","GET",o,r,s,a,n,p,l,c,u)},this.getModelsToIncludeInAppDefinition=function(){var e=null,t={},i={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=n;return this.apiClient.callApi("/api/enterprise/models-for-app-definition","GET",t,i,o,r,e,s,a,p,l)},this.getModels=function(e){e=e||{};var t=null,i={},o={filter:e.filter,filterText:e.filterText,sort:e.sort,modelType:e.modelType,referenceId:e.referenceId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/models","GET",i,o,r,s,t,a,p,l,c)},this.importNewVersion=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling importNewVersion";if(void 0==i||null==i)throw"Missing the required parameter 'file' when calling importNewVersion";var o={modelId:e},r={},s={},a={file:i},p=[],l=["multipart/form-data"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}/newversion","POST",o,r,s,a,n,p,l,c,u)},this.importProcessModel=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling importProcessModel";var n={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/process-models/import","POST",n,o,r,s,i,a,p,l,c)},this.saveModel=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling saveModel";if(void 0==i||null==i)throw"Missing the required parameter 'values' when calling saveModel";var o={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}/editor/json","POST",o,r,s,a,n,p,l,c,u)},this.updateModel=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling updateModel";if(void 0==i||null==i)throw"Missing the required parameter 'updatedModel' when calling updateModel";var o={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}","PUT",o,r,s,a,n,p,l,c,u)},this.validateModel=function(e,t){t=t||{};var i=t.values;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling validateModel";var n={modelId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[o];return this.apiClient.callApi("/api/enterprise/models/{modelId}/editor/validate","POST",n,r,s,a,i,p,l,c,u)}};return r})},{"../../../alfrescoApiClient":302,"../model/ModelRepresentation":126,"../model/ObjectNode":127,"../model/ResultListDataRepresentation":144,"../model/ValidationErrorRepresentation":162}],56:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation","../model/ModelRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation"),t("../model/ModelRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelsHistoryApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ModelRepresentation))}(void 0,function(e,t,i){var n=function(n){this.apiClient=n||e.instance,this.getModelHistoryCollection=function(e,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getModelHistoryCollection";var o={modelId:e},r={includeLatestVersion:i.includeLatestVersion},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/models/{modelId}/history","GET",o,r,s,a,n,p,l,c,u)},this.getProcessModelHistory=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'modelId' when calling getProcessModelHistory";if(void 0==t||null==t)throw"Missing the required parameter 'modelHistoryId' when calling getProcessModelHistory";var o={modelId:e,modelHistoryId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/models/{modelId}/history/{modelHistoryId}","GET",o,r,s,a,n,p,l,c,u)}};return n})},{"../../../alfrescoApiClient":302,"../model/ModelRepresentation":126,"../model/ResultListDataRepresentation":144}],57:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessInstanceFilterRequestRepresentation","../model/ResultListDataRepresentation","../model/FormDefinitionRepresentation","../model/ProcessInstanceRepresentation","../model/ProcessFilterRequestRepresentation","../model/FormValueRepresentation","../model/CreateProcessInstanceRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ProcessInstanceFilterRequestRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/FormDefinitionRepresentation"),t("../model/ProcessInstanceRepresentation"),t("../model/ProcessFilterRequestRepresentation"),t("../model/FormValueRepresentation"),t("../model/CreateProcessInstanceRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessInstanceFilterRequestRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.ProcessInstanceRepresentation,n.ActivitiPublicRestApi.ProcessFilterRequestRepresentation,n.ActivitiPublicRestApi.FormValueRepresentation,n.ActivitiPublicRestApi.CreateProcessInstanceRepresentation))}(void 0,function(e,t,i,n,o,r,s,a){var p=function(t){this.apiClient=t||e.instance,this.deleteProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling deleteProcessInstance";var i={processInstanceId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}","DELETE",i,n,o,r,t,s,a,p,l)},this.filterProcessInstances=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'filterRequest' when calling filterProcessInstances";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/filter","POST",n,o,r,s,t,a,p,l,c)},this.getProcessDefinitionStartForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processDefinitionId' when calling getProcessInstanceContent";var i={processDefinitionId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form","GET",i,o,r,s,t,a,p,l,c)},this.getProcessDefinitions=function(e){e=e||{};var t=null,n={},o={latest:e.latest,appDefinitionId:e.appDefinitionId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-definitions","GET",n,o,r,s,t,a,p,l,c)},this.getProcessInstanceContent=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceContent";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/field-content","GET",n,o,r,s,t,a,p,l,c)},this.getProcessInstanceStartForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceStartForm";var i={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/start-form","GET",i,o,r,s,t,a,p,l,c)},this.getProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstance";var i={processInstanceId:e},n={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}","GET",i,n,r,s,t,a,p,l,c)},this.getProcessInstances=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'requestNode' when calling getProcessInstances";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/query","POST",n,o,r,s,t,a,p,l,c)},this.getRestFieldValues=function(e,t){var i=null,n={processDefinitionId:e,field:t},o={},r={},a={},p=[],l=["application/json"],c=["application/json"],u=[s];return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}","GET",n,o,r,a,i,p,l,c,u)},this.getRestTableFieldValues=function(e,t,i){var n=null,o={processDefinitionId:e,field:t,column:i},r={},a={},p={},l=[],c=["application/json"],u=["application/json"],d=[s];return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}/{column}","GET",o,r,a,p,n,l,c,u,d)},this.startNewProcessInstance=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'startRequest' when calling startNewProcessInstance";var i={},n={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/process-instances","POST",i,n,r,s,t,a,p,l,c)}};return p})},{"../../../alfrescoApiClient":302,"../model/CreateProcessInstanceRepresentation":97,"../model/FormDefinitionRepresentation":105,"../model/FormValueRepresentation":113,"../model/ProcessFilterRequestRepresentation":130,"../model/ProcessInstanceFilterRequestRepresentation":132,"../model/ProcessInstanceRepresentation":133,"../model/ResultListDataRepresentation":144}],58:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessDefinitionsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getProcessDefinitions=function(e){e=e||{};var i=null,n={},o={latest:e.latest,appDefinitionId:e.appDefinitionId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/process-definitions","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],59:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormDefinitionRepresentation","../model/FormValueRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/FormDefinitionRepresentation"),t("../model/FormValueRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessDefinitionsFormApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.FormValueRepresentation))}(void 0,function(e,t,i){var n=function(n){this.apiClient=n||e.instance,this.getProcessDefinitionStartForm=function(e){var i=null,n={processDefinitionId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form","GET",n,o,r,s,i,a,p,l,c)},this.getRestFieldValues=function(e,t){var n=null,o={processDefinitionId:e,field:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[i];return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}","GET",o,r,s,a,n,p,l,c,u)},this.getRestTableFieldValues=function(e,t,n){var o=null,r={processDefinitionId:e,field:t,column:n},s={},a={},p={},l=[],c=["application/json"],u=["application/json"],d=[i];return this.apiClient.callApi("/api/enterprise/process-definitions/{processDefinitionId}/start-form-values/{field}/{column}","GET",r,s,a,p,o,l,c,u,d)}};return n})},{"../../../alfrescoApiClient":302,"../model/FormDefinitionRepresentation":105,"../model/FormValueRepresentation":113}],60:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/RestVariable"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/RestVariable")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceVariablesApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.RestVariable))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getProcessInstanceVariables=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceVariables";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[t];return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables","GET",n,o,r,s,i,a,p,l,c)},this.createProcessInstanceVariables=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling createProcessInstanceVariables";if(void 0==i||null==i)throw"Missing the required parameter 'restVariables' when calling createProcessInstanceVariables";var o={processInstanceId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[t];return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables","POST",o,r,s,a,n,p,l,c,u)},this.createOrUpdateProcessInstanceVariables=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling createOrUpdateProcessInstanceVariables";if(void 0==i||null==i)throw"Missing the required parameter 'restVariables' when calling createOrUpdateProcessInstanceVariables";var o={processInstanceId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[t];return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables","PUT",o,r,s,a,n,p,l,c,u)},this.getProcessInstanceVariable=function(e,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceVariable";if(void 0==i||null==i)throw"Missing the required parameter 'variableName' when calling getProcessInstanceVariable";var o={processInstanceId:e,variableName:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}","GET",o,r,s,a,n,p,l,c,u)},this.updateProcessInstanceVariable=function(e,i,n){var o=n;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling updateProcessInstanceVariable";if(void 0==i||null==i)throw"Missing the required parameter 'variableName' when calling updateProcessInstanceVariable";var r={processInstanceId:e,variableName:i},s={},a={},p={},l=[],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}","PUT",r,s,a,p,o,l,c,u,d)},this.deleteProcessInstanceVariable=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling deleteProcessInstanceVariable";if(void 0==t||null==t)throw"Missing the required parameter 'variableName' when calling deleteProcessInstanceVariable";var n={processInstanceId:e,variableName:t},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/variables/{variableName}","DELETE",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/RestVariable":143}],61:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/CommentRepresentation","../model/ResultListDataRepresentation","../model/FormDefinitionRepresentation","../model/ProcessInstanceRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/CommentRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/FormDefinitionRepresentation"),t("../model/ProcessInstanceRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstancesApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.CommentRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.ProcessInstanceRepresentation))}(void 0,function(e,t,i,n,o){var r=function(r){this.apiClient=r||e.instance,this.addProcessInstanceComment=function(e,i){var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'commentRequest' when calling addProcessInstanceComment";if(void 0==i||null==i)throw"Missing the required parameter 'processInstanceId' when calling addProcessInstanceComment";var o={processInstanceId:i},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.deleteProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling deleteProcessInstance";var i={processInstanceId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}","DELETE",i,n,o,r,t,s,a,p,l)},this.getProcessInstanceComments=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceComments";var o={processInstanceId:e},r={latestFirst:t.latestFirst},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/comments","GET",o,r,s,a,n,p,l,c,u)},this.getProcessInstanceStartForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceStartForm";var i={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/start-form","GET",i,o,r,s,t,a,p,l,c)},this.getProcessInstance=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstance";var i={processInstanceId:e},n={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}","GET",i,n,r,s,t,a,p,l,c)}};return r})},{"../../../alfrescoApiClient":302,"../model/CommentRepresentation":93,"../model/FormDefinitionRepresentation":105,"../model/ProcessInstanceRepresentation":133,"../model/ResultListDataRepresentation":144}],62:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation","../model/CreateProcessInstanceRepresentation","../model/ProcessInstanceRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation"),t("../model/CreateProcessInstanceRepresentation"),t("../model/ProcessInstanceRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstancesInformationApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.CreateProcessInstanceRepresentation,n.ActivitiPublicRestApi.ProcessInstanceRepresentation))}(void 0,function(e,t,i,n){var o=function(i){this.apiClient=i||e.instance,this.getProcessInstanceContent=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'processInstanceId' when calling getProcessInstanceContent";var n={processInstanceId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/process-instances/{processInstanceId}/field-content","GET",n,o,r,s,i,a,p,l,c)},this.startNewProcessInstance=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'startRequest' when calling startNewProcessInstance";var i={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/process-instances","POST",i,o,r,s,t,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":302,"../model/CreateProcessInstanceRepresentation":97,"../model/ProcessInstanceRepresentation":133,"../model/ResultListDataRepresentation":144}],63:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessInstanceFilterRequestRepresentation","../model/ResultListDataRepresentation","../model/ObjectNode"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ProcessInstanceFilterRequestRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/ObjectNode")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstancesListingApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessInstanceFilterRequestRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ObjectNode))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.filterProcessInstances=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'filterRequest' when calling filterProcessInstances";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/filter","POST",n,o,r,s,t,a,p,l,c)},this.getProcessInstances=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'requestNode' when calling getProcessInstances";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/process-instances/query","POST",n,o,r,s,t,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":302,"../model/ObjectNode":127,"../model/ProcessInstanceFilterRequestRepresentation":132,"../model/ResultListDataRepresentation":144}],64:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessScopesRequestRepresentation","../model/ProcessScopeRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ProcessScopesRequestRepresentation"),t("../model/ProcessScopeRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessScopeApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessScopesRequestRepresentation,n.ActivitiPublicRestApi.ProcessScopeRepresentation))}(void 0,function(e,t,i){var n=function(t){this.apiClient=t||e.instance,this.getRuntimeProcessScopes=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'processScopesRequest' when calling getRuntimeProcessScopes";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=[i];return this.apiClient.callApi("/api/enterprise/process-scopes","POST",n,o,r,s,t,a,p,l,c)}};return n})},{"../../../alfrescoApiClient":302,"../model/ProcessScopeRepresentation":136,"../model/ProcessScopesRequestRepresentation":137}],65:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ChangePasswordRepresentation","../model/UserRepresentation","../model/ImageUploadRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ChangePasswordRepresentation"),t("../model/UserRepresentation"),t("../model/ImageUploadRepresentation"),t("../model/File")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProfileApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ChangePasswordRepresentation,n.ActivitiPublicRestApi.UserRepresentation,n.ActivitiPublicRestApi.ImageUploadRepresentation,n.ActivitiPublicRestApi.File))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.changePassword=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'changePasswordRepresentation' when calling changePassword";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/profile-password","POST",i,n,o,r,t,s,a,p,l)},this.getProfilePicture=function(){var e=null,t={},i={},n={},r={},s=[],a=["application/json"],p=["application/json"],l=o;return this.apiClient.callApi("/api/enterprise/profile-picture","GET",t,i,n,r,e,s,a,p,l)},this.getProfilePictureUrl=function(){return this.apiClient.basePath+"/app/rest/admin/profile-picture"},this.getProfile=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=i;return this.apiClient.callApi("/api/enterprise/profile","GET",t,n,o,r,e,s,a,p,l)},this.updateProfile=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'userRepresentation' when calling updateProfile";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/profile","POST",n,o,r,s,t,a,p,l,c)},this.uploadProfilePicture=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'file' when calling uploadProfilePicture";var i={},o={},r={},s={file:e},a=[],p=["multipart/form-data"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/profile-picture","POST",i,o,r,s,t,a,p,l,c)}};return r})},{"../../../alfrescoApiClient":302,"../model/ChangePasswordRepresentation":90,"../model/File":104,"../model/ImageUploadRepresentation":116,"../model/UserRepresentation":160}],66:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ReportCharts","../model/ParameterValueRepresentation","../model/ReportParametersDefinition"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ReportCharts"),t("../model/ParameterValueRepresentation"),t("../model/ReportParametersDefinition")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ReportApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ReportCharts,n.ActivitiPublicRestApi.ParameterValueRepresentation,n.ActivitiPublicRestApi.ReportParametersDefinition))}(void 0,function(e,t,i,n){var o=function(o){this.apiClient=o||e.instance,this.createDefaultReports=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json"],p=null;return this.apiClient.callApi("/app/rest/reporting/default-reports","POST",t,i,n,o,e,r,s,a,p)},this.getTasksByProcessDefinitionId=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling getTasksByProcessDefinitionId";if(void 0==t||null==t)throw"Missing the required parameter 'processDefinitionId' when calling getTasksByProcessDefinitionId"; +var n={reportId:e},o={processDefinitionId:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=["String"];return this.apiClient.callApi("/app/rest/reporting/report-params/{reportId}/tasks","GET",n,o,r,s,i,a,p,l,c)},this.getReportsByParams=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling getReportsByParams";var o={reportId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/app/rest/reporting/report-params/{reportId}","POST",o,r,s,a,n,p,l,c,u)},this.getProcessDefinitions=function(){var e=null,t={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=[i];return this.apiClient.callApi("/app/rest/reporting/process-definitions","GET",t,n,o,r,e,s,a,p,l)},this.getReportParams=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling getReportParams";var i={reportId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/app/rest/reporting/report-params/{reportId}","GET",i,o,r,s,t,a,p,l,c)},this.getReportList=function(){var e=null,t={},i={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=[n];return this.apiClient.callApi("/app/rest/reporting/reports","GET",t,i,o,r,e,s,a,p,l)},this.updateReport=function(e,t){var i={name:t};if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling updateReport";var n={reportId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/app/rest/reporting/reports/{reportId}","PUT",n,o,r,s,i,a,p,l,c)},this.exportToCsv=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling exportToCsv";if(void 0==t||null==t)throw"Missing the required parameter 'queryParams' when calling exportToCsv";if(void 0==t.reportName||null==t.reportName)throw"Missing the required parameter 'reportName' when calling exportToCsv";t.__reportName=t.reportName;var n={reportId:e},t={},o={},r={},s=[],a=["application/json"],p=["application/json"],l="String";return this.apiClient.callApi("/app/rest/reporting/reports/{reportId}/export-to-csv","POST",n,t,o,r,i,s,a,p,l)},this.saveReport=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling saveReport";if(void 0==t||null==t)throw"Missing the required parameter 'queryParams' when calling queryParams";if(void 0==t.reportName||null==t.reportName)throw"Missing the required parameter 'reportName' when calling exportToCsv";t.__reportName=t.reportName;var n={reportId:e},t={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/app/rest/reporting/reports/{reportId}","POST",n,t,o,r,i,s,a,p,l)},this.deleteReport=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'reportId' when calling delete";var i={reportId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/app/rest/reporting/reports/{reportId}","DELETE",i,n,o,r,t,s,a,p,l)}};return o})},{"../../../alfrescoApiClient":302,"../model/ParameterValueRepresentation":129,"../model/ReportCharts":140,"../model/ReportParametersDefinition":141}],67:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ScriptFileApi=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.getControllers=function(){var e=null,t={},i={},n={},o={},r=[],s=["text/javascript"],a=[],p="String";return this.apiClient.callApi("/api/enterprise/script-files/controllers","GET",t,i,n,o,e,r,s,a,p)},this.getLibraries=function(){var e=null,t={},i={},n={},o={},r=[],s=["application/json"],a=["application/json","application/javascript"],p="String";return this.apiClient.callApi("/api/enterprise/script-files/libraries","GET",t,i,n,o,e,r,s,a,p)}};return t})},{"../../../alfrescoApiClient":302}],68:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/SystemPropertiesRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/SystemPropertiesRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.SystemPropertiesApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.SystemPropertiesRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getProperties=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/system/properties","GET",i,n,o,r,e,s,a,p,l)}};return i})},{"../../../alfrescoApiClient":302,"../model/SystemPropertiesRepresentation":148}],69:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ObjectNode","../model/TaskRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ObjectNode"),t("../model/TaskRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskActionsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ObjectNode,n.ActivitiPublicRestApi.TaskRepresentation))}(void 0,function(e,t,i){var n=function(t){this.apiClient=t||e.instance,this.assignTask=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling assignTask";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling assignTask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/assign","PUT",o,r,s,a,n,p,l,c,u)},this.attachForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling attachForm";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling attachForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/attach-form","PUT",n,o,r,s,i,a,p,l,c)},this.claimTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling claimTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/claim","PUT",i,n,o,r,t,s,a,p,l)},this.completeTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling completeTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/complete","PUT",i,n,o,r,t,s,a,p,l)},this.involveUser=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling involveUser";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling involveUser";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/involve","PUT",n,o,r,s,i,a,p,l,c)},this.removeForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling removeForm";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/remove-form","DELETE",i,n,o,r,t,s,a,p,l)},this.removeInvolvedUser=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling removeInvolvedUser";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling removeInvolvedUser";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/remove-involved","PUT",n,o,r,s,i,a,p,l,c)},this.unclaimTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling unclaimTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/unclaim","PUT",i,n,o,r,t,s,a,p,l)}};return n})},{"../../../alfrescoApiClient":302,"../model/ObjectNode":127,"../model/TaskRepresentation":152}],70:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/TaskRepresentation","../model/CommentRepresentation","../model/ObjectNode","../model/CompleteFormRepresentation","../model/RelatedContentRepresentation","../model/TaskFilterRequestRepresentation","../model/ResultListDataRepresentation","../model/FormValueRepresentation","../model/FormDefinitionRepresentation","../model/ChecklistOrderRepresentation","../model/SaveFormRepresentation","../model/TaskUpdateRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/TaskRepresentation"),t("../model/CommentRepresentation"),t("../model/ObjectNode"),t("../model/CompleteFormRepresentation"),t("../model/RelatedContentRepresentation"),t("../model/TaskFilterRequestRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/FormValueRepresentation"),t("../model/FormDefinitionRepresentation"),t("../model/ChecklistOrderRepresentation"),t("../model/SaveFormRepresentation"),t("../model/TaskUpdateRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.TaskRepresentation,n.ActivitiPublicRestApi.CommentRepresentation,n.ActivitiPublicRestApi.ObjectNode,n.ActivitiPublicRestApi.CompleteFormRepresentation,n.ActivitiPublicRestApi.RelatedContentRepresentation,n.ActivitiPublicRestApi.TaskFilterRequestRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.FormValueRepresentation,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.ChecklistOrderRepresentation,n.ActivitiPublicRestApi.SaveFormRepresentation,n.ActivitiPublicRestApi.TaskUpdateRepresentation))}(void 0,function(e,t,i,n,o,r,s,a,p,l,c,u,d){var f=function(n){this.apiClient=n||e.instance,this.addSubtask=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling addSubtask";if(void 0==i||null==i)throw"Missing the required parameter 'taskRepresentation' when calling addSubtask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","POST",o,r,s,a,n,p,l,c,u)},this.addTaskComment=function(e,t){var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'commentRequest' when calling addTaskComment";if(void 0==t||null==t)throw"Missing the required parameter 'taskId' when calling addTaskComment";var o={taskId:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.assignTask=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling assignTask";if(void 0==i||null==i)throw"Missing the required parameter 'requestNode' when calling assignTask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/assign","PUT",o,r,s,a,n,p,l,c,u)},this.attachForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling attachForm";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling attachForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/attach-form","PUT",n,o,r,s,i,a,p,l,c)},this.claimTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling claimTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/claim","PUT",i,n,o,r,t,s,a,p,l)},this.completeTaskForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling completeTaskForm";if(void 0==t||null==t)throw"Missing the required parameter 'completeTaskFormRepresentation' when calling completeTaskForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}","POST",n,o,r,s,i,a,p,l,c)},this.completeTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling completeTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/complete","PUT",i,n,o,r,t,s,a,p,l)},this.createNewTask=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'taskRepresentation' when calling createNewTask";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/tasks","POST",n,o,r,s,i,a,p,l,c)},this.createRelatedContentOnTask=function(e,t,i){i=i||{};var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling createRelatedContentOnTask";if(void 0==t||null==t)throw"Missing the required parameter 'relatedContent' when calling createRelatedContentOnTask";var o={taskId:e},s={isRelatedContent:i.isRelatedContent},a={},p={},l=[],c=["application/json"],u=["application/json"],d=r;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/content","POST",o,s,a,p,n,l,c,u,d)},this.createRelatedContentOnTask=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling createRelatedContentOnTask";if(void 0==t||null==t)throw"Missing the required parameter 'file' when calling createRelatedContentOnTask";var o={taskId:e},s={isRelatedContent:i.isRelatedContent},a={},p={file:t},l=[],c=["multipart/form-data"],u=["application/json"],d=r;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/raw-content","POST",o,s,a,p,n,l,c,u,d)},this.deleteTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling deleteTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}","DELETE",i,n,o,r,t,s,a,p,l)},this.filterTasks=function(e){var t=e;void 0!=e&&null!=e||(console.log("a"),t=new s);var i={},n={},o={},r={},p=[],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/api/enterprise/tasks/filter","POST",i,n,o,r,t,p,l,c,u)},this.getChecklist=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getChecklist";var i={taskId:e},n={},o={},r={},s=[],p=["application/json"],l=["application/json"],c=a;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","GET",i,n,o,r,t,s,p,l,c)},this.getRelatedContentForTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRelatedContentForTask";var i={taskId:e},n={},o={},r={},s=[],p=["application/json"],l=["application/json"],c=a;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/content","GET",i,n,o,r,t,s,p,l,c)},this.getRestFieldValuesColumn=function(e,t,i){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRestFieldValues";if(void 0==t||null==t)throw"Missing the required parameter 'field' when calling getRestFieldValues";if(void 0==i||null==i)throw"Missing the required parameter 'column' when calling getRestFieldValues";var o={taskId:e,field:t,column:i},r={},s={},a={},l=[],c=["application/json"],u=["application/json"],d=[p];return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/form-values/{field}/{column}","GET",o,r,s,a,n,l,c,u,d)},this.getRestFieldValues=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRestFieldValues";if(void 0==t||null==t)throw"Missing the required parameter 'field' when calling getRestFieldValues";var n={taskId:e,field:t},o={},r={},s={},a=[],l=["application/json"],c=["application/json"],u=[p];return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/form-values/{field}","GET",n,o,r,s,i,a,l,c,u)},this.getTaskComments=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskComments";var n={taskId:e},o={latestFirst:t.latestFirst},r={},s={},p=[],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/comments","GET",n,o,r,s,i,p,l,c,u)},this.getTaskForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskForm";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],c=l;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}","GET",i,n,o,r,t,s,a,p,c)},this.getTask=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTask";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}","GET",n,o,r,s,i,a,p,l,c)},this.involveUser=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling involveUser";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling involveUser";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/involve","PUT",n,o,r,s,i,a,p,l,c)},this.listTasks=function(e){var t=e||{},i={},n={},o={},r={},s=[],p=["application/json"],l=["application/json"],c=a;return this.apiClient.callApi("/api/enterprise/tasks/query","POST",i,n,o,r,t,s,p,l,c)},this.orderChecklist=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling orderChecklist";if(void 0==t||null==t)throw"Missing the required parameter 'orderRepresentation' when calling orderChecklist";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","PUT",n,o,r,s,i,a,p,l,c)},this.removeForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling removeForm";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/remove-form","DELETE",i,n,o,r,t,s,a,p,l)},this.removeInvolvedUser=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling removeInvolvedUser";if(void 0==t||null==t)throw"Missing the required parameter 'requestNode' when calling removeInvolvedUser";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/remove-involved","PUT",n,o,r,s,i,a,p,l,c)},this.saveTaskForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling saveTaskForm";if(void 0==t||null==t)throw"Missing the required parameter 'saveTaskFormRepresentation' when calling saveTaskForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/save-form","POST",n,o,r,s,i,a,p,l,c)},this.unclaimTask=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling unclaimTask";var i={taskId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/action/unclaim","PUT",i,n,o,r,t,s,a,p,l)},this.updateTask=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling updateTask";if(void 0==i||null==i)throw"Missing the required parameter 'updated' when calling updateTask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}","PUT",o,r,s,a,n,p,l,c,u)}};return f})},{"../../../alfrescoApiClient":302,"../model/ChecklistOrderRepresentation":92,"../model/CommentRepresentation":93,"../model/CompleteFormRepresentation":94,"../model/FormDefinitionRepresentation":105,"../model/FormValueRepresentation":113,"../model/ObjectNode":127,"../model/RelatedContentRepresentation":139,"../model/ResultListDataRepresentation":144,"../model/SaveFormRepresentation":146,"../model/TaskFilterRequestRepresentation":150,"../model/TaskRepresentation":152,"../model/TaskUpdateRepresentation":153}],71:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/TaskRepresentation","../model/ResultListDataRepresentation","../model/ChecklistOrderRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/TaskRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/ChecklistOrderRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskCheckListApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.TaskRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ChecklistOrderRepresentation))}(void 0,function(e,t,i,n){var o=function(n){this.apiClient=n||e.instance,this.addSubtask=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling addSubtask";if(void 0==i||null==i)throw"Missing the required parameter 'taskRepresentation' when calling addSubtask";var o={taskId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","POST",o,r,s,a,n,p,l,c,u)},this.getChecklist=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getChecklist";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","GET",n,o,r,s,t,a,p,l,c)},this.orderChecklist=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling orderChecklist";if(void 0==t||null==t)throw"Missing the required parameter 'orderRepresentation' when calling orderChecklist";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/tasks/{taskId}/checklist","PUT",n,o,r,s,i,a,p,l,c)}};return o})},{"../../../alfrescoApiClient":302,"../model/ChecklistOrderRepresentation":92,"../model/ResultListDataRepresentation":144,"../model/TaskRepresentation":152}],72:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/CompleteFormRepresentation","../model/FormValueRepresentation","../model/FormDefinitionRepresentation","../model/SaveFormRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/CompleteFormRepresentation"),t("../model/FormValueRepresentation"),t("../model/FormDefinitionRepresentation"),t("../model/SaveFormRepresentation"),t("../model/ProcessInstanceVariableRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskFormsApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.CompleteFormRepresentation,n.ActivitiPublicRestApi.FormValueRepresentation,n.ActivitiPublicRestApi.FormDefinitionRepresentation,n.ActivitiPublicRestApi.SaveFormRepresentation,n.ActivitiPublicRestApi.ProcessInstanceVariableRepresentation))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.completeTaskForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling completeTaskForm";if(void 0==t||null==t)throw"Missing the required parameter 'completeTaskFormRepresentation' when calling completeTaskForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}","POST",n,o,r,s,i,a,p,l,c)},this.getRestFieldValues=function(e,t,n){var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRestFieldValues";if(void 0==t||null==t)throw"Missing the required parameter 'field' when calling getRestFieldValues";if(void 0==n||null==n)throw"Missing the required parameter 'column' when calling getRestFieldValues";var r={taskId:e,field:t,column:n},s={},a={},p={},l=[],c=["application/json"],u=["application/json"],d=[i];return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/form-values/{field}/{column}","GET",r,s,a,p,o,l,c,u,d)},this.getRestFieldValues=function(e,t){var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getRestFieldValues";if(void 0==t||null==t)throw"Missing the required parameter 'field' when calling getRestFieldValues";var o={taskId:e,field:t},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=[i];return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/form-values/{field}","GET",o,r,s,a,n,p,l,c,u)},this.getTaskForm=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskForm";var i={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}","GET",i,o,r,s,t,a,p,l,c)},this.getTaskFormVariables=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling getTaskFormVariables";var i={taskId:e},n={},o={},s={},a=[],p=["application/json"],l=["application/json"],c=[r];return this.apiClient.callApi("/app/rest/task-forms/{taskId}/variables","GET",i,n,o,s,t,a,p,l,c)},this.saveTaskForm=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'taskId' when calling saveTaskForm";if(void 0==t||null==t)throw"Missing the required parameter 'saveTaskFormRepresentation' when calling saveTaskForm";var n={taskId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/task-forms/{taskId}/save-form","POST",n,o,r,s,i,a,p,l,c)}};return s})},{"../../../alfrescoApiClient":302,"../model/CompleteFormRepresentation":94,"../model/FormDefinitionRepresentation":105,"../model/FormValueRepresentation":113,"../model/ProcessInstanceVariableRepresentation":134,"../model/SaveFormRepresentation":146}],73:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ArrayNode"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ArrayNode")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TemporaryApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ArrayNode))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.completeTasks=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling completeTasks";if(void 0==t||null==t)throw"Missing the required parameter 'processDefinitionKey' when calling completeTasks";var n={},o={userId:e,processDefinitionKey:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/temporary/generate-report-data/complete-tasks","GET",n,o,r,s,i,a,p,l,c)},this.generateData=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling generateData";if(void 0==t||null==t)throw"Missing the required parameter 'processDefinitionKey' when calling generateData";var n={},o={userId:e,processDefinitionKey:t},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/temporary/generate-report-data/start-process","GET",n,o,r,s,i,a,p,l,c)},this.getHeaders=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/temporary/example-headers","GET",i,n,o,r,e,s,a,p,l)},this.getOptions=function(){var e=null,i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=t;return this.apiClient.callApi("/api/enterprise/temporary/example-options","GET",i,n,o,r,e,s,a,p,l)}};return i})},{"../../../alfrescoApiClient":302,"../model/ArrayNode":87}],74:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/UserActionRepresentation","../model/UserRepresentation","../model/ResultListDataRepresentation","../model/ResetPasswordRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/UserActionRepresentation"),t("../model/UserRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/ResetPasswordRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.UserActionRepresentation,n.ActivitiPublicRestApi.UserRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.ResetPasswordRepresentation)); +}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.executeAction=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling executeAction";if(void 0==t||null==t)throw"Missing the required parameter 'actionRequest' when calling executeAction";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/api/enterprise/users/{userId}","POST",n,o,r,s,i,a,p,l,c)},this.getProfilePicture=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getProfilePicture";var i={userId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/users/{userId}/picture","GET",i,n,o,r,t,s,a,p,l)},this.getUser=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling getUser";var n={userId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/users/{userId}","GET",n,o,r,s,t,a,p,l,c)},this.getUsers=function(e){e=e||{};var t=null,i={},o={filter:e.filter,email:e.email,externalId:e.externalId,externalIdCaseInsensitive:e.externalIdCaseInsensitive,excludeTaskId:e.excludeTaskId,excludeProcessId:e.excludeProcessId,groupId:e.groupId,tenantId:e.tenantId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/users","GET",i,o,r,s,t,a,p,l,c)},this.requestPasswordReset=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'resetPassword' when calling requestPasswordReset";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/idm/passwords","POST",i,n,o,r,t,s,a,p,l)},this.updateUser=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'userId' when calling updateUser";if(void 0==t||null==t)throw"Missing the required parameter 'userRequest' when calling updateUser";var o={userId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/users/{userId}","PUT",o,r,s,a,n,p,l,c,u)}};return r})},{"../../../alfrescoApiClient":302,"../model/ResetPasswordRepresentation":142,"../model/ResultListDataRepresentation":144,"../model/UserActionRepresentation":157,"../model/UserRepresentation":160}],75:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/UserProcessInstanceFilterRepresentation","../model/UserTaskFilterRepresentation","../model/ResultListDataRepresentation","../model/UserFilterOrderRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/UserProcessInstanceFilterRepresentation"),t("../model/UserTaskFilterRepresentation"),t("../model/ResultListDataRepresentation"),t("../model/UserFilterOrderRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserFiltersApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.UserProcessInstanceFilterRepresentation,n.ActivitiPublicRestApi.UserTaskFilterRepresentation,n.ActivitiPublicRestApi.ResultListDataRepresentation,n.ActivitiPublicRestApi.UserFilterOrderRepresentation))}(void 0,function(e,t,i,n,o){var r=function(o){this.apiClient=o||e.instance,this.createUserProcessInstanceFilter=function(e){var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'userProcessInstanceFilterRepresentation' when calling createUserProcessInstanceFilter";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/filters/processes","POST",n,o,r,s,i,a,p,l,c)},this.createUserTaskFilter=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'userTaskFilterRepresentation' when calling createUserTaskFilter";var n={},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/filters/tasks","POST",n,o,r,s,t,a,p,l,c)},this.deleteUserProcessInstanceFilter=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling deleteUserProcessInstanceFilter";var i={userFilterId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/filters/processes/{userFilterId}","DELETE",i,n,o,r,t,s,a,p,l)},this.deleteUserTaskFilter=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling deleteUserTaskFilter";var i={userFilterId:e},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/filters/tasks/{userFilterId}","DELETE",i,n,o,r,t,s,a,p,l)},this.getUserProcessInstanceFilter=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling getUserProcessInstanceFilter";var n={userFilterId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/filters/processes/{userFilterId}","GET",n,o,r,s,i,a,p,l,c)},this.getUserProcessInstanceFilters=function(e){e=e||{};var t=null,i={},o={appId:e.appId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/filters/processes","GET",i,o,r,s,t,a,p,l,c)},this.getUserTaskFilter=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling getUserTaskFilter";var n={userFilterId:e},o={},r={},s={},a=[],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/api/enterprise/filters/tasks/{userFilterId}","GET",n,o,r,s,t,a,p,l,c)},this.getUserTaskFilters=function(e){e=e||{};var t=null,i={},o={appId:e.appId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/api/enterprise/filters/tasks","GET",i,o,r,s,t,a,p,l,c)},this.orderUserProcessInstanceFilters=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'filterOrderRepresentation' when calling orderUserProcessInstanceFilters";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/filters/processes","PUT",i,n,o,r,t,s,a,p,l)},this.orderUserTaskFilters=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'filterOrderRepresentation' when calling orderUserTaskFilters";var i={},n={},o={},r={},s=[],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/api/enterprise/filters/tasks","PUT",i,n,o,r,t,s,a,p,l)},this.updateUserProcessInstanceFilter=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling updateUserProcessInstanceFilter";if(void 0==i||null==i)throw"Missing the required parameter 'userProcessInstanceFilterRepresentation' when calling updateUserProcessInstanceFilter";var o={userFilterId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/api/enterprise/filters/processes/{userFilterId}","PUT",o,r,s,a,n,p,l,c,u)},this.updateUserTaskFilter=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'userFilterId' when calling updateUserTaskFilter";if(void 0==t||null==t)throw"Missing the required parameter 'userTaskFilterRepresentation' when calling updateUserTaskFilter";var o={userFilterId:e},r={},s={},a={},p=[],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/api/enterprise/filters/tasks/{userFilterId}","PUT",o,r,s,a,n,p,l,c,u)}};return r})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144,"../model/UserFilterOrderRepresentation":158,"../model/UserProcessInstanceFilterRepresentation":159,"../model/UserTaskFilterRepresentation":161}],76:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ResultListDataRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/ResultListDataRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UsersWorkflowApi=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ResultListDataRepresentation))}(void 0,function(e,t){var i=function(i){this.apiClient=i||e.instance,this.getUsers=function(e){e=e||{};var i=null,n={},o={filter:e.filter,email:e.email,externalId:e.externalId,externalIdCaseInsensitive:e.externalIdCaseInsensitive,excludeTaskId:e.excludeTaskId,excludeProcessId:e.excludeProcessId,groupId:e.groupId,tenantId:e.tenantId},r={},s={},a=[],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/api/enterprise/users","GET",n,o,r,s,i,a,p,l,c)}};return i})},{"../../../alfrescoApiClient":302,"../model/ResultListDataRepresentation":144}],77:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n){"function"==typeof e&&e.amd?e(["../../alfrescoApiClient","./model/AbstractGroupRepresentation","./model/AbstractRepresentation","./model/AbstractUserRepresentation","./model/AddGroupCapabilitiesRepresentation","./model/AppDefinition","./model/AppDefinitionPublishRepresentation","./model/AppDefinitionRepresentation","./model/AppDefinitionUpdateResultRepresentation","./model/AppModelDefinition","./model/ArrayNode","./model/BoxUserAccountCredentialsRepresentation","./model/BulkUserUpdateRepresentation","./model/ChangePasswordRepresentation","./model/ChecklistOrderRepresentation","./model/CommentRepresentation","./model/CompleteFormRepresentation","./model/ConditionRepresentation","./model/CreateEndpointBasicAuthRepresentation","./model/CreateProcessInstanceRepresentation","./model/CreateTenantRepresentation","./model/EndpointBasicAuthRepresentation","./model/EndpointConfigurationRepresentation","./model/EndpointRequestHeaderRepresentation","./model/EntityAttributeScopeRepresentation","./model/EntityVariableScopeRepresentation","./model/File","./model/FormDefinitionRepresentation","./model/FormFieldRepresentation","./model/FormJavascriptEventRepresentation","./model/FormOutcomeRepresentation","./model/FormRepresentation","./model/FormSaveRepresentation","./model/FormScopeRepresentation","./model/FormTabRepresentation","./model/FormValueRepresentation","./model/GroupCapabilityRepresentation","./model/GroupRepresentation","./model/ImageUploadRepresentation","./model/LayoutRepresentation","./model/LightAppRepresentation","./model/LightGroupRepresentation","./model/LightTenantRepresentation","./model/LightUserRepresentation","./model/MaplongListstring","./model/MapstringListEntityVariableScopeRepresentation","./model/MapstringListVariableScopeRepresentation","./model/Mapstringstring","./model/ModelRepresentation","./model/ObjectNode","./model/OptionRepresentation","./model/ProcessFilterRequestRepresentation","./model/ProcessInstanceFilterRepresentation","./model/ProcessInstanceFilterRequestRepresentation","./model/ProcessInstanceRepresentation","./model/ProcessInstanceVariableRepresentation","./model/ProcessScopeIdentifierRepresentation","./model/ProcessScopeRepresentation","./model/ProcessScopesRequestRepresentation","./model/PublishIdentityInfoRepresentation","./model/RelatedContentRepresentation","./model/ResetPasswordRepresentation","./model/RestVariable","./model/ResultListDataRepresentation","./model/RuntimeAppDefinitionSaveRepresentation","./model/SaveFormRepresentation","./model/SyncLogEntryRepresentation","./model/SystemPropertiesRepresentation","./model/TaskFilterRepresentation","./model/TaskFilterRequestRepresentation","./model/TaskQueryRequestRepresentation","./model/TaskRepresentation","./model/TaskUpdateRepresentation","./model/TenantEvent","./model/TenantRepresentation","./model/UserAccountCredentialsRepresentation","./model/UserActionRepresentation","./model/UserFilterOrderRepresentation","./model/UserProcessInstanceFilterRepresentation","./model/UserRepresentation","./model/UserTaskFilterRepresentation","./model/ValidationErrorRepresentation","./model/VariableScopeRepresentation","./api/AboutApi","./api/AdminEndpointsApi","./api/AdminGroupsApi","./api/AdminTenantsApi","./api/AdminUsersApi","./api/AlfrescoApi","./api/AppsApi","./api/AppsDefinitionApi","./api/AppsRuntimeApi","./api/CommentsApi","./api/ContentApi","./api/ContentRenditionApi","./api/EditorApi","./api/GroupsApi","./api/IDMSyncApi","./api/IntegrationApi","./api/IntegrationAccountApi","./api/IntegrationAlfrescoCloudApi","./api/IntegrationAlfrescoOnPremiseApi","./api/IntegrationBoxApi","./api/IntegrationDriveApi","./api/ModelBpmnApi","./api/ModelJsonBpmnApi","./api/ModelsApi","./api/ModelsHistoryApi","./api/ProcessApi","./api/ProcessDefinitionsApi","./api/ProcessDefinitionsFormApi","./api/ProcessInstancesApi","./api/ProcessInstancesInformationApi","./api/ProcessInstancesListingApi","./api/ProcessInstanceVariablesApi","./api/ProcessScopeApi","./api/ProfileApi","./api/ScriptFileApi","./api/SystemPropertiesApi","./api/TaskApi","./api/TaskActionsApi","./api/TaskCheckListApi","./api/TaskFormsApi","./api/TemporaryApi","./api/UserApi","./api/UserFiltersApi","./api/UsersWorkflowApi","./api/ReportApi"],n):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports&&(i.exports=n(t("../../alfrescoApiClient"),t("./model/AbstractGroupRepresentation"),t("./model/AbstractRepresentation"),t("./model/AbstractUserRepresentation"),t("./model/AddGroupCapabilitiesRepresentation"),t("./model/AppDefinition"),t("./model/AppDefinitionPublishRepresentation"),t("./model/AppDefinitionRepresentation"),t("./model/AppDefinitionUpdateResultRepresentation"),t("./model/AppModelDefinition"),t("./model/ArrayNode"),t("./model/BoxUserAccountCredentialsRepresentation"),t("./model/BulkUserUpdateRepresentation"),t("./model/ChangePasswordRepresentation"),t("./model/ChecklistOrderRepresentation"),t("./model/CommentRepresentation"),t("./model/CompleteFormRepresentation"),t("./model/ConditionRepresentation"),t("./model/CreateEndpointBasicAuthRepresentation"),t("./model/CreateProcessInstanceRepresentation"),t("./model/CreateTenantRepresentation"),t("./model/EndpointBasicAuthRepresentation"),t("./model/EndpointConfigurationRepresentation"),t("./model/EndpointRequestHeaderRepresentation"),t("./model/EntityAttributeScopeRepresentation"),t("./model/EntityVariableScopeRepresentation"),t("./model/File"),t("./model/FormDefinitionRepresentation"),t("./model/FormFieldRepresentation"),t("./model/FormJavascriptEventRepresentation"),t("./model/FormOutcomeRepresentation"),t("./model/FormRepresentation"),t("./model/FormSaveRepresentation"),t("./model/FormScopeRepresentation"),t("./model/FormTabRepresentation"),t("./model/FormValueRepresentation"),t("./model/GroupCapabilityRepresentation"),t("./model/GroupRepresentation"),t("./model/ImageUploadRepresentation"),t("./model/LayoutRepresentation"),t("./model/LightAppRepresentation"),t("./model/LightGroupRepresentation"),t("./model/LightTenantRepresentation"),t("./model/LightUserRepresentation"),t("./model/MaplongListstring"),t("./model/MapstringListEntityVariableScopeRepresentation"),t("./model/MapstringListVariableScopeRepresentation"),t("./model/Mapstringstring"),t("./model/ModelRepresentation"),t("./model/ObjectNode"),t("./model/OptionRepresentation"),t("./model/ProcessFilterRequestRepresentation"),t("./model/ProcessInstanceFilterRepresentation"),t("./model/ProcessInstanceFilterRequestRepresentation"),t("./model/ProcessInstanceRepresentation"),t("./model/ProcessInstanceVariableRepresentation"),t("./model/ProcessScopeIdentifierRepresentation"),t("./model/ProcessScopeRepresentation"),t("./model/ProcessScopesRequestRepresentation"),t("./model/PublishIdentityInfoRepresentation"),t("./model/RelatedContentRepresentation"),t("./model/ResetPasswordRepresentation"),t("./model/RestVariable"),t("./model/ResultListDataRepresentation"),t("./model/RuntimeAppDefinitionSaveRepresentation"),t("./model/SaveFormRepresentation"),t("./model/SyncLogEntryRepresentation"),t("./model/SystemPropertiesRepresentation"),t("./model/TaskFilterRepresentation"),t("./model/TaskFilterRequestRepresentation"),t("./model/TaskQueryRequestRepresentation"),t("./model/TaskRepresentation"),t("./model/TaskUpdateRepresentation"),t("./model/TenantEvent"),t("./model/TenantRepresentation"),t("./model/UserAccountCredentialsRepresentation"),t("./model/UserActionRepresentation"),t("./model/UserFilterOrderRepresentation"),t("./model/UserProcessInstanceFilterRepresentation"),t("./model/UserRepresentation"),t("./model/UserTaskFilterRepresentation"),t("./model/ValidationErrorRepresentation"),t("./model/VariableScopeRepresentation"),t("./api/AboutApi"),t("./api/AdminEndpointsApi"),t("./api/AdminGroupsApi"),t("./api/AdminTenantsApi"),t("./api/AdminUsersApi"),t("./api/AlfrescoApi"),t("./api/AppsApi"),t("./api/AppsDefinitionApi"),t("./api/AppsRuntimeApi"),t("./api/CommentsApi"),t("./api/ContentApi"),t("./api/ContentRenditionApi"),t("./api/EditorApi"),t("./api/GroupsApi"),t("./api/IDMSyncApi"),t("./api/IntegrationApi"),t("./api/IntegrationAccountApi"),t("./api/IntegrationAlfrescoCloudApi"),t("./api/IntegrationAlfrescoOnPremiseApi"),t("./api/IntegrationBoxApi"),t("./api/IntegrationDriveApi"),t("./api/ModelBpmnApi"),t("./api/ModelJsonBpmnApi"),t("./api/ModelsApi"),t("./api/ModelsHistoryApi"),t("./api/ProcessApi"),t("./api/ProcessDefinitionsApi"),t("./api/ProcessDefinitionsFormApi"),t("./api/ProcessInstancesApi"),t("./api/ProcessInstancesInformationApi"),t("./api/ProcessInstancesListingApi"),t("./api/ProcessInstanceVariablesApi"),t("./api/ProcessScopeApi"),t("./api/ProfileApi"),t("./api/ScriptFileApi"),t("./api/SystemPropertiesApi"),t("./api/TaskApi"),t("./api/TaskActionsApi"),t("./api/TaskCheckListApi"),t("./api/TaskFormsApi"),t("./api/TemporaryApi"),t("./api/UserApi"),t("./api/UserFiltersApi"),t("./api/UsersWorkflowApi"),t("./api/ReportApi")))}(function(e,t,i,n,o,r,s,a,p,l,c,u,d,f,y,m,h,v,A,b,g,C,R,P,w,S,T,I,j,O,E,M,k,F,x,N,_,D,B,q,L,U,G,V,z,H,K,Y,W,$,J,X,Q,Z,ee,te,ie,ne,oe,re,se,ae,pe,le,ce,ue,de,fe,ye,me,he,ve,Ae,be,ge,Ce,Re,Pe,we,Se,Te,Ie,je,Oe,Ee,Me,ke,Fe,xe,Ne,_e,De,Be,qe,Le,Ue,Ge,Ve,ze,He,Ke,Ye,We,$e,Je,Xe,Qe,Ze,et,tt,it,nt,ot,rt,st,at,pt,lt,ct,ut,dt,ft,yt,mt,ht,vt,At,bt){var gt={ApiClient:e,AbstractGroupRepresentation:t,AbstractRepresentation:i,AbstractUserRepresentation:n,AddGroupCapabilitiesRepresentation:o,AppDefinition:r,AppDefinitionPublishRepresentation:s,AppDefinitionRepresentation:a,AppDefinitionUpdateResultRepresentation:p,AppModelDefinition:l,ArrayNode:c,BoxUserAccountCredentialsRepresentation:u,BulkUserUpdateRepresentation:d,ChangePasswordRepresentation:f,ChecklistOrderRepresentation:y,CommentRepresentation:m,CompleteFormRepresentation:h,ConditionRepresentation:v,CreateEndpointBasicAuthRepresentation:A,CreateProcessInstanceRepresentation:b,CreateTenantRepresentation:g,EndpointBasicAuthRepresentation:C,EndpointConfigurationRepresentation:R,EndpointRequestHeaderRepresentation:P,EntityAttributeScopeRepresentation:w,EntityVariableScopeRepresentation:S,File:T,FormDefinitionRepresentation:I,FormFieldRepresentation:j,FormJavascriptEventRepresentation:O,FormOutcomeRepresentation:E,FormRepresentation:M,FormSaveRepresentation:k,FormScopeRepresentation:F,FormTabRepresentation:x,FormValueRepresentation:N,GroupCapabilityRepresentation:_,GroupRepresentation:D,ImageUploadRepresentation:B,LayoutRepresentation:q,LightAppRepresentation:L,LightGroupRepresentation:U,LightTenantRepresentation:G,LightUserRepresentation:V,MaplongListstring:z,MapstringListEntityVariableScopeRepresentation:H,MapstringListVariableScopeRepresentation:K,Mapstringstring:Y,ModelRepresentation:W,ObjectNode:$,OptionRepresentation:J,ProcessFilterRequestRepresentation:X,ProcessInstanceFilterRepresentation:Q,ProcessInstanceFilterRequestRepresentation:Z,ProcessInstanceRepresentation:ee,ProcessInstanceVariableRepresentation:te,ProcessScopeIdentifierRepresentation:ie,ProcessScopeRepresentation:ne,ProcessScopesRequestRepresentation:oe,PublishIdentityInfoRepresentation:re,RelatedContentRepresentation:se,ResetPasswordRepresentation:ae,RestVariable:pe,ResultListDataRepresentation:le,RuntimeAppDefinitionSaveRepresentation:ce,SaveFormRepresentation:ue,SyncLogEntryRepresentation:de,SystemPropertiesRepresentation:fe,TaskFilterRepresentation:ye,TaskFilterRequestRepresentation:me,TaskQueryRequestRepresentation:he,TaskRepresentation:ve,TaskUpdateRepresentation:Ae,TenantEvent:be,TenantRepresentation:ge,UserAccountCredentialsRepresentation:Ce,UserActionRepresentation:Re,UserFilterOrderRepresentation:Pe,UserProcessInstanceFilterRepresentation:we,UserRepresentation:Se,UserTaskFilterRepresentation:Te,ValidationErrorRepresentation:Ie,VariableScopeRepresentation:je,AboutApi:Oe,AdminEndpointsApi:Ee,AdminGroupsApi:Me,AdminTenantsApi:ke,AdminUsersApi:Fe,AlfrescoApi:xe,AppsApi:Ne,AppsDefinitionApi:_e,AppsRuntimeApi:De,CommentsApi:Be,ContentApi:qe,ContentRenditionApi:Le,EditorApi:Ue,GroupsApi:Ge,IDMSyncApi:Ve,IntegrationApi:ze,IntegrationAccountApi:He,IntegrationAlfrescoCloudApi:Ke,IntegrationAlfrescoOnPremiseApi:Ye,IntegrationBoxApi:We,IntegrationDriveApi:$e,ModelBpmnApi:Je,ModelJsonBpmnApi:Xe,ModelsApi:Qe,ModelsHistoryApi:Ze,ProcessApi:et,ProcessDefinitionsApi:tt,ProcessDefinitionsFormApi:it,ProcessInstancesApi:nt,ProcessInstancesInformationApi:ot,ProcessInstancesListingApi:rt,ProcessScopeApi:at,ProcessInstanceVariablesApi:st,ProfileApi:pt,ScriptFileApi:lt,SystemPropertiesApi:ct,TaskApi:ut,TaskActionsApi:dt,TaskCheckListApi:ft,TaskFormsApi:yt,TemporaryApi:mt,UserApi:ht,UserFiltersApi:vt,UsersWorkflowApi:At,ReportApi:bt};return gt})},{"../../alfrescoApiClient":302,"./api/AboutApi":32,"./api/AdminEndpointsApi":33,"./api/AdminGroupsApi":34,"./api/AdminTenantsApi":35,"./api/AdminUsersApi":36,"./api/AlfrescoApi":37,"./api/AppsApi":38,"./api/AppsDefinitionApi":39,"./api/AppsRuntimeApi":40,"./api/CommentsApi":41,"./api/ContentApi":42,"./api/ContentRenditionApi":43,"./api/EditorApi":44,"./api/GroupsApi":45,"./api/IDMSyncApi":46,"./api/IntegrationAccountApi":47,"./api/IntegrationAlfrescoCloudApi":48,"./api/IntegrationAlfrescoOnPremiseApi":49,"./api/IntegrationApi":50,"./api/IntegrationBoxApi":51,"./api/IntegrationDriveApi":52,"./api/ModelBpmnApi":53,"./api/ModelJsonBpmnApi":54,"./api/ModelsApi":55,"./api/ModelsHistoryApi":56,"./api/ProcessApi":57,"./api/ProcessDefinitionsApi":58,"./api/ProcessDefinitionsFormApi":59,"./api/ProcessInstanceVariablesApi":60,"./api/ProcessInstancesApi":61,"./api/ProcessInstancesInformationApi":62,"./api/ProcessInstancesListingApi":63,"./api/ProcessScopeApi":64,"./api/ProfileApi":65,"./api/ReportApi":66,"./api/ScriptFileApi":67,"./api/SystemPropertiesApi":68,"./api/TaskActionsApi":69,"./api/TaskApi":70,"./api/TaskCheckListApi":71,"./api/TaskFormsApi":72,"./api/TemporaryApi":73,"./api/UserApi":74,"./api/UserFiltersApi":75,"./api/UsersWorkflowApi":76,"./model/AbstractGroupRepresentation":78,"./model/AbstractRepresentation":79,"./model/AbstractUserRepresentation":80,"./model/AddGroupCapabilitiesRepresentation":81,"./model/AppDefinition":82,"./model/AppDefinitionPublishRepresentation":83,"./model/AppDefinitionRepresentation":84,"./model/AppDefinitionUpdateResultRepresentation":85,"./model/AppModelDefinition":86,"./model/ArrayNode":87,"./model/BoxUserAccountCredentialsRepresentation":88,"./model/BulkUserUpdateRepresentation":89,"./model/ChangePasswordRepresentation":90,"./model/ChecklistOrderRepresentation":92,"./model/CommentRepresentation":93,"./model/CompleteFormRepresentation":94,"./model/ConditionRepresentation":95,"./model/CreateEndpointBasicAuthRepresentation":96,"./model/CreateProcessInstanceRepresentation":97,"./model/CreateTenantRepresentation":98,"./model/EndpointBasicAuthRepresentation":99,"./model/EndpointConfigurationRepresentation":100,"./model/EndpointRequestHeaderRepresentation":101,"./model/EntityAttributeScopeRepresentation":102,"./model/EntityVariableScopeRepresentation":103,"./model/File":104,"./model/FormDefinitionRepresentation":105,"./model/FormFieldRepresentation":106,"./model/FormJavascriptEventRepresentation":107,"./model/FormOutcomeRepresentation":108,"./model/FormRepresentation":109,"./model/FormSaveRepresentation":110,"./model/FormScopeRepresentation":111,"./model/FormTabRepresentation":112,"./model/FormValueRepresentation":113,"./model/GroupCapabilityRepresentation":114,"./model/GroupRepresentation":115,"./model/ImageUploadRepresentation":116,"./model/LayoutRepresentation":117,"./model/LightAppRepresentation":118,"./model/LightGroupRepresentation":119,"./model/LightTenantRepresentation":120,"./model/LightUserRepresentation":121,"./model/MaplongListstring":122,"./model/MapstringListEntityVariableScopeRepresentation":123,"./model/MapstringListVariableScopeRepresentation":124,"./model/Mapstringstring":125,"./model/ModelRepresentation":126,"./model/ObjectNode":127,"./model/OptionRepresentation":128,"./model/ProcessFilterRequestRepresentation":130,"./model/ProcessInstanceFilterRepresentation":131,"./model/ProcessInstanceFilterRequestRepresentation":132,"./model/ProcessInstanceRepresentation":133,"./model/ProcessInstanceVariableRepresentation":134,"./model/ProcessScopeIdentifierRepresentation":135,"./model/ProcessScopeRepresentation":136,"./model/ProcessScopesRequestRepresentation":137,"./model/PublishIdentityInfoRepresentation":138,"./model/RelatedContentRepresentation":139,"./model/ResetPasswordRepresentation":142,"./model/RestVariable":143,"./model/ResultListDataRepresentation":144,"./model/RuntimeAppDefinitionSaveRepresentation":145,"./model/SaveFormRepresentation":146,"./model/SyncLogEntryRepresentation":147,"./model/SystemPropertiesRepresentation":148,"./model/TaskFilterRepresentation":149,"./model/TaskFilterRequestRepresentation":150,"./model/TaskQueryRequestRepresentation":151,"./model/TaskRepresentation":152,"./model/TaskUpdateRepresentation":153,"./model/TenantEvent":154,"./model/TenantRepresentation":155,"./model/UserAccountCredentialsRepresentation":156,"./model/UserActionRepresentation":157,"./model/UserFilterOrderRepresentation":158,"./model/UserProcessInstanceFilterRepresentation":159,"./model/UserRepresentation":160,"./model/UserTaskFilterRepresentation":161,"./model/ValidationErrorRepresentation":162,"./model/VariableScopeRepresentation":163}],78:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AbstractGroupRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("externalId")&&(n.externalId=e.convertToType(i.externalId,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("status")&&(n.status=e.convertToType(i.status,"String"))),n},t.prototype.externalId=void 0,t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.status=void 0,t})},{"../../../alfrescoApiClient":302}],79:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AbstractRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(e,i){return e&&(i=e||new t),i},t})},{"../../../alfrescoApiClient":302}],80:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AbstractUserRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("email")&&(n.email=e.convertToType(i.email,"String")),i.hasOwnProperty("externalId")&&(n.externalId=e.convertToType(i.externalId,"String")),i.hasOwnProperty("firstName")&&(n.firstName=e.convertToType(i.firstName,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastName")&&(n.lastName=e.convertToType(i.lastName,"String")),i.hasOwnProperty("pictureId")&&(n.pictureId=e.convertToType(i.pictureId,"Integer"))),n},t.prototype.email=void 0,t.prototype.externalId=void 0,t.prototype.firstName=void 0,t.prototype.id=void 0,t.prototype.lastName=void 0,t.prototype.pictureId=void 0,t})},{"../../../alfrescoApiClient":302}],81:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AddGroupCapabilitiesRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("capabilities")&&(n.capabilities=e.convertToType(i.capabilities,["String"]))),n},t.prototype.capabilities=void 0,t})},{"../../../alfrescoApiClient":302}],82:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AppModelDefinition","../model/PublishIdentityInfoRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./AppModelDefinition"),t("./PublishIdentityInfoRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppDefinition=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AppModelDefinition,n.ActivitiPublicRestApi.PublishIdentityInfoRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){ +return o&&(r=o||new n,o.hasOwnProperty("icon")&&(r.icon=e.convertToType(o.icon,"String")),o.hasOwnProperty("models")&&(r.models=e.convertToType(o.models,[t])),o.hasOwnProperty("publishIdentityInfo")&&(r.publishIdentityInfo=e.convertToType(o.publishIdentityInfo,[i])),o.hasOwnProperty("theme")&&(r.theme=e.convertToType(o.theme,"String"))),r},n.prototype.icon=void 0,n.prototype.models=void 0,n.prototype.publishIdentityInfo=void 0,n.prototype.theme=void 0,n})},{"../../../alfrescoApiClient":302,"./AppModelDefinition":86,"./PublishIdentityInfoRepresentation":138}],83:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppDefinitionPublishRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("comment")&&(n.comment=e.convertToType(i.comment,"String")),i.hasOwnProperty("force")&&(n.force=e.convertToType(i.force,"Boolean"))),n},t.prototype.comment=void 0,t.prototype.force=void 0,t})},{"../../../alfrescoApiClient":302}],84:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppDefinitionRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("defaultAppId")&&(n.defaultAppId=e.convertToType(i.defaultAppId,"String")),i.hasOwnProperty("deploymentId")&&(n.deploymentId=e.convertToType(i.deploymentId,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("icon")&&(n.icon=e.convertToType(i.icon,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("modelId")&&(n.modelId=e.convertToType(i.modelId,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("theme")&&(n.theme=e.convertToType(i.theme,"String"))),n},t.prototype.defaultAppId=void 0,t.prototype.deploymentId=void 0,t.prototype.description=void 0,t.prototype.icon=void 0,t.prototype.id=void 0,t.prototype.modelId=void 0,t.prototype.name=void 0,t.prototype.tenantId=void 0,t.prototype.theme=void 0,t})},{"../../../alfrescoApiClient":302}],85:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AppDefinitionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./AppDefinitionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppDefinitionUpdateResultRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AppDefinitionRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appDefinition")&&(o.appDefinition=t.constructFromObject(n.appDefinition)),n.hasOwnProperty("customData")&&(o.customData=e.convertToType(n.customData,Object)),n.hasOwnProperty("error")&&(o.error=e.convertToType(n.error,"Boolean")),n.hasOwnProperty("errorDescription")&&(o.errorDescription=e.convertToType(n.errorDescription,"String")),n.hasOwnProperty("errorType")&&(o.errorType=e.convertToType(n.errorType,"Integer")),n.hasOwnProperty("message")&&(o.message=e.convertToType(n.message,"String")),n.hasOwnProperty("messageKey")&&(o.messageKey=e.convertToType(n.messageKey,"String"))),o},i.prototype.appDefinition=void 0,i.prototype.customData=void 0,i.prototype.error=void 0,i.prototype.errorDescription=void 0,i.prototype.errorType=void 0,i.prototype.message=void 0,i.prototype.messageKey=void 0,i})},{"../../../alfrescoApiClient":302,"./AppDefinitionRepresentation":84}],86:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.AppModelDefinition=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("createdBy")&&(n.createdBy=e.convertToType(i.createdBy,"Integer")),i.hasOwnProperty("createdByFullName")&&(n.createdByFullName=e.convertToType(i.createdByFullName,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastUpdated")&&(n.lastUpdated=e.convertToType(i.lastUpdated,"Date")),i.hasOwnProperty("lastUpdatedBy")&&(n.lastUpdatedBy=e.convertToType(i.lastUpdatedBy,"Integer")),i.hasOwnProperty("lastUpdatedByFullName")&&(n.lastUpdatedByFullName=e.convertToType(i.lastUpdatedByFullName,"String")),i.hasOwnProperty("modelType")&&(n.modelType=e.convertToType(i.modelType,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("stencilSetId")&&(n.stencilSetId=e.convertToType(i.stencilSetId,"Integer")),i.hasOwnProperty("version")&&(n.version=e.convertToType(i.version,"Integer"))),n},t.prototype.createdBy=void 0,t.prototype.createdByFullName=void 0,t.prototype.description=void 0,t.prototype.id=void 0,t.prototype.lastUpdated=void 0,t.prototype.lastUpdatedBy=void 0,t.prototype.lastUpdatedByFullName=void 0,t.prototype.modelType=void 0,t.prototype.name=void 0,t.prototype.stencilSetId=void 0,t.prototype.version=void 0,t})},{"../../../alfrescoApiClient":302}],87:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ArrayNode=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("array")&&(n.array=e.convertToType(i.array,"Boolean")),i.hasOwnProperty("bigDecimal")&&(n.bigDecimal=e.convertToType(i.bigDecimal,"Boolean")),i.hasOwnProperty("bigInteger")&&(n.bigInteger=e.convertToType(i.bigInteger,"Boolean")),i.hasOwnProperty("binary")&&(n.binary=e.convertToType(i.binary,"Boolean")),i.hasOwnProperty("boolean")&&(n.boolean=e.convertToType(i.boolean,"Boolean")),i.hasOwnProperty("containerNode")&&(n.containerNode=e.convertToType(i.containerNode,"Boolean")),i.hasOwnProperty("double")&&(n.double=e.convertToType(i.double,"Boolean")),i.hasOwnProperty("float")&&(n.float=e.convertToType(i.float,"Boolean")),i.hasOwnProperty("floatingPointNumber")&&(n.floatingPointNumber=e.convertToType(i.floatingPointNumber,"Boolean")),i.hasOwnProperty("int")&&(n.int=e.convertToType(i.int,"Boolean")),i.hasOwnProperty("integralNumber")&&(n.integralNumber=e.convertToType(i.integralNumber,"Boolean")),i.hasOwnProperty("long")&&(n.long=e.convertToType(i.long,"Boolean")),i.hasOwnProperty("missingNode")&&(n.missingNode=e.convertToType(i.missingNode,"Boolean")),i.hasOwnProperty("nodeType")&&(n.nodeType=e.convertToType(i.nodeType,"String")),i.hasOwnProperty("null")&&(n.null=e.convertToType(i.null,"Boolean")),i.hasOwnProperty("number")&&(n.number=e.convertToType(i.number,"Boolean")),i.hasOwnProperty("object")&&(n.object=e.convertToType(i.object,"Boolean")),i.hasOwnProperty("pojo")&&(n.pojo=e.convertToType(i.pojo,"Boolean")),i.hasOwnProperty("short")&&(n.short=e.convertToType(i.short,"Boolean")),i.hasOwnProperty("textual")&&(n.textual=e.convertToType(i.textual,"Boolean")),i.hasOwnProperty("valueNode")&&(n.valueNode=e.convertToType(i.valueNode,"Boolean"))),n},t.prototype.array=void 0,t.prototype.bigDecimal=void 0,t.prototype.bigInteger=void 0,t.prototype.binary=void 0,t.prototype.boolean=void 0,t.prototype.containerNode=void 0,t.prototype.double=void 0,t.prototype.float=void 0,t.prototype.floatingPointNumber=void 0,t.prototype.int=void 0,t.prototype.integralNumber=void 0,t.prototype.long=void 0,t.prototype.missingNode=void 0,t.prototype.nodeType=void 0,t.prototype.null=void 0,t.prototype.number=void 0,t.prototype.object=void 0,t.prototype.pojo=void 0,t.prototype.short=void 0,t.prototype.textual=void 0,t.prototype.valueNode=void 0,t.NodeTypeEnum={ARRAY:"ARRAY",BINARY:"BINARY",BOOLEAN:"BOOLEAN",MISSING:"MISSING",NULL:"NULL",NUMBER:"NUMBER",OBJECT:"OBJECT",POJO:"POJO",STRING:"STRING"},t})},{"../../../alfrescoApiClient":302}],88:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.BoxUserAccountCredentialsRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("authenticationURL")&&(n.authenticationURL=e.convertToType(i.authenticationURL,"String")),i.hasOwnProperty("expireDate")&&(n.expireDate=e.convertToType(i.expireDate,"Date")),i.hasOwnProperty("ownerEmail")&&(n.ownerEmail=e.convertToType(i.ownerEmail,"String"))),n},t.prototype.authenticationURL=void 0,t.prototype.expireDate=void 0,t.prototype.ownerEmail=void 0,t})},{"../../../alfrescoApiClient":302}],89:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.BulkUserUpdateRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("accountType")&&(n.accountType=e.convertToType(i.accountType,"String")),i.hasOwnProperty("password")&&(n.password=e.convertToType(i.password,"String")),i.hasOwnProperty("sendNotifications")&&(n.sendNotifications=e.convertToType(i.sendNotifications,"Boolean")),i.hasOwnProperty("status")&&(n.status=e.convertToType(i.status,"String")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("users")&&(n.users=e.convertToType(i.users,["Integer"]))),n},t.prototype.accountType=void 0,t.prototype.password=void 0,t.prototype.sendNotifications=void 0,t.prototype.status=void 0,t.prototype.tenantId=void 0,t.prototype.users=void 0,t})},{"../../../alfrescoApiClient":302}],90:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ChangePasswordRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("newPassword")&&(n.newPassword=e.convertToType(i.newPassword,"String")),i.hasOwnProperty("oldPassword")&&(n.oldPassword=e.convertToType(i.oldPassword,"String"))),n},t.prototype.newPassword=void 0,t.prototype.oldPassword=void 0,t})},{"../../../alfrescoApiClient":302}],91:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.Chart=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String"))),n},t.prototype.id=void 0,t.prototype.type=void 0,t})},{"../../../alfrescoApiClient":302}],92:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ChecklistOrderRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("order")&&(n.order=e.convertToType(i.order,["String"]))),n},t.prototype.order=void 0,t})},{"../../../alfrescoApiClient":302}],93:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightUserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightUserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CommentRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightUserRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("created")&&(o.created=e.convertToType(n.created,"Date")),n.hasOwnProperty("createdBy")&&(o.createdBy=t.constructFromObject(n.createdBy)),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("message")&&(o.message=e.convertToType(n.message,"String"))),o},i.prototype.created=void 0,i.prototype.createdBy=void 0,i.prototype.id=void 0,i.prototype.message=void 0,i})},{"../../../alfrescoApiClient":302,"./LightUserRepresentation":121}],94:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CompleteFormRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("outcome")&&(n.outcome=e.convertToType(i.outcome,"String")),i.hasOwnProperty("values")&&(n.values=e.convertToType(i.values,Object))),n},t.prototype.outcome=void 0,t.prototype.values=void 0,t})},{"../../../alfrescoApiClient":302}],95:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ConditionRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("leftFormFieldId")&&(n.leftFormFieldId=e.convertToType(i.leftFormFieldId,"String")),i.hasOwnProperty("leftRestResponseId")&&(n.leftRestResponseId=e.convertToType(i.leftRestResponseId,"String")),i.hasOwnProperty("nextConditionOperator")&&(n.nextConditionOperator=e.convertToType(i.nextConditionOperator,"String")),i.hasOwnProperty("operator")&&(n.operator=e.convertToType(i.operator,"String")),i.hasOwnProperty("rightFormFieldId")&&(n.rightFormFieldId=e.convertToType(i.rightFormFieldId,"String")),i.hasOwnProperty("rightRestResponseId")&&(n.rightRestResponseId=e.convertToType(i.rightRestResponseId,"String")),i.hasOwnProperty("rightType")&&(n.rightType=e.convertToType(i.rightType,"String")),i.hasOwnProperty("rightValue")&&(n.rightValue=e.convertToType(i.rightValue,Object))),n},t.prototype.leftFormFieldId=void 0,t.prototype.leftRestResponseId=void 0,t.prototype.nextConditionOperator=void 0,t.prototype.operator=void 0,t.prototype.rightFormFieldId=void 0,t.prototype.rightRestResponseId=void 0,t.prototype.rightType=void 0,t.prototype.rightValue=void 0,t})},{"../../../alfrescoApiClient":302}],96:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CreateEndpointBasicAuthRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("password")&&(n.password=e.convertToType(i.password,"String")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("username")&&(n.username=e.convertToType(i.username,"String"))),n},t.prototype.name=void 0,t.prototype.password=void 0,t.prototype.tenantId=void 0,t.prototype.username=void 0,t})},{"../../../alfrescoApiClient":302}],97:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CreateProcessInstanceRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("outcome")&&(n.outcome=e.convertToType(i.outcome,"String")),i.hasOwnProperty("processDefinitionId")&&(n.processDefinitionId=e.convertToType(i.processDefinitionId,"String")),i.hasOwnProperty("values")&&(n.values=e.convertToType(i.values,Object))),n},t.prototype.name=void 0,t.prototype.outcome=void 0,t.prototype.processDefinitionId=void 0,t.prototype.values=void 0,t})},{"../../../alfrescoApiClient":302}],98:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.CreateTenantRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("active")&&(n.active=e.convertToType(i.active,"Boolean")),i.hasOwnProperty("domain")&&(n.domain=e.convertToType(i.domain,"String")),i.hasOwnProperty("maxUsers")&&(n.maxUsers=e.convertToType(i.maxUsers,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.active=void 0,t.prototype.domain=void 0,t.prototype.maxUsers=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":302}],99:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EndpointBasicAuthRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("created")&&(n.created=e.convertToType(i.created,"Date")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastUpdated")&&(n.lastUpdated=e.convertToType(i.lastUpdated,"Date")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("username")&&(n.username=e.convertToType(i.username,"String"))),n},t.prototype.created=void 0,t.prototype.id=void 0,t.prototype.lastUpdated=void 0,t.prototype.name=void 0,t.prototype.tenantId=void 0,t.prototype.username=void 0,t})},{"../../../alfrescoApiClient":302}],100:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/EndpointRequestHeaderRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./EndpointRequestHeaderRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EndpointConfigurationRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.EndpointRequestHeaderRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("basicAuthId")&&(o.basicAuthId=e.convertToType(n.basicAuthId,"Integer")),n.hasOwnProperty("basicAuthName")&&(o.basicAuthName=e.convertToType(n.basicAuthName,"String")),n.hasOwnProperty("host")&&(o.host=e.convertToType(n.host,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("path")&&(o.path=e.convertToType(n.path,"String")),n.hasOwnProperty("port")&&(o.port=e.convertToType(n.port,"String")),n.hasOwnProperty("protocol")&&(o.protocol=e.convertToType(n.protocol,"String")),n.hasOwnProperty("requestHeaders")&&(o.requestHeaders=e.convertToType(n.requestHeaders,[t])),n.hasOwnProperty("tenantId")&&(o.tenantId=e.convertToType(n.tenantId,"Integer"))),o},i.prototype.basicAuthId=void 0,i.prototype.basicAuthName=void 0,i.prototype.host=void 0,i.prototype.id=void 0,i.prototype.name=void 0,i.prototype.path=void 0,i.prototype.port=void 0,i.prototype.protocol=void 0,i.prototype.requestHeaders=void 0,i.prototype.tenantId=void 0,i})},{"../../../alfrescoApiClient":302,"./EndpointRequestHeaderRepresentation":101}],101:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EndpointRequestHeaderRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("value")&&(n.value=e.convertToType(i.value,"String"))),n},t.prototype.name=void 0,t.prototype.value=void 0,t})},{"../../../alfrescoApiClient":302}],102:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EntityAttributeScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String"))),n},t.prototype.name=void 0,t.prototype.type=void 0,t})},{"../../../alfrescoApiClient":302}],103:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/EntityAttributeScopeRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./EntityAttributeScopeRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.EntityVariableScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.EntityAttributeScopeRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("attributes")&&(o.attributes=e.convertToType(n.attributes,[t])),n.hasOwnProperty("entityName")&&(o.entityName=e.convertToType(n.entityName,"String")),n.hasOwnProperty("mappedDataModel")&&(o.mappedDataModel=e.convertToType(n.mappedDataModel,"Integer")),n.hasOwnProperty("mappedVariableName")&&(o.mappedVariableName=e.convertToType(n.mappedVariableName,"String"))),o},i.prototype.attributes=void 0,i.prototype.entityName=void 0,i.prototype.mappedDataModel=void 0,i.prototype.mappedVariableName=void 0,i})},{"../../../alfrescoApiClient":302,"./EntityAttributeScopeRepresentation":102}],104:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.File=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("absolute")&&(n.absolute=e.convertToType(i.absolute,"Boolean")),i.hasOwnProperty("absoluteFile")&&(n.absoluteFile=e.convertToType(i.absoluteFile,File)),i.hasOwnProperty("absolutePath")&&(n.absolutePath=e.convertToType(i.absolutePath,"String")),i.hasOwnProperty("canonicalFile")&&(n.canonicalFile=e.convertToType(i.canonicalFile,File)),i.hasOwnProperty("canonicalPath")&&(n.canonicalPath=e.convertToType(i.canonicalPath,"String")),i.hasOwnProperty("directory")&&(n.directory=e.convertToType(i.directory,"Boolean")),i.hasOwnProperty("file")&&(n.file=e.convertToType(i.file,"Boolean")),i.hasOwnProperty("freeSpace")&&(n.freeSpace=e.convertToType(i.freeSpace,"Integer")),i.hasOwnProperty("hidden")&&(n.hidden=e.convertToType(i.hidden,"Boolean")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("parent")&&(n.parent=e.convertToType(i.parent,"String")),i.hasOwnProperty("parentFile")&&(n.parentFile=e.convertToType(i.parentFile,File)),i.hasOwnProperty("path")&&(n.path=e.convertToType(i.path,"String")),i.hasOwnProperty("totalSpace")&&(n.totalSpace=e.convertToType(i.totalSpace,"Integer")),i.hasOwnProperty("usableSpace")&&(n.usableSpace=e.convertToType(i.usableSpace,"Integer"))),n},t.prototype.absolute=void 0,t.prototype.absoluteFile=void 0,t.prototype.absolutePath=void 0,t.prototype.canonicalFile=void 0,t.prototype.canonicalPath=void 0,t.prototype.directory=void 0,t.prototype.file=void 0,t.prototype.freeSpace=void 0,t.prototype.hidden=void 0,t.prototype.name=void 0,t.prototype.parent=void 0,t.prototype.parentFile=void 0,t.prototype.path=void 0,t.prototype.totalSpace=void 0,t.prototype.usableSpace=void 0,t})},{"../../../alfrescoApiClient":302}],105:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormFieldRepresentation","../model/FormJavascriptEventRepresentation","../model/FormOutcomeRepresentation","../model/FormTabRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormFieldRepresentation"),t("./FormJavascriptEventRepresentation"),t("./FormOutcomeRepresentation"),t("./FormTabRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}), +n.ActivitiPublicRestApi.FormDefinitionRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormFieldRepresentation,n.ActivitiPublicRestApi.FormJavascriptEventRepresentation,n.ActivitiPublicRestApi.FormOutcomeRepresentation,n.ActivitiPublicRestApi.FormTabRepresentation))}(void 0,function(e,t,i,n,o){var r=function(){};return r.constructFromObject=function(s,a){return s&&(a=s||new r,s.hasOwnProperty("className")&&(a.className=e.convertToType(s.className,"String")),s.hasOwnProperty("customFieldTemplates")&&(a.customFieldTemplates=e.convertToType(s.customFieldTemplates,{String:"String"})),s.hasOwnProperty("fields")&&(a.fields=e.convertToType(s.fields,[t])),s.hasOwnProperty("gridsterForm")&&(a.gridsterForm=e.convertToType(s.gridsterForm,"Boolean")),s.hasOwnProperty("id")&&(a.id=e.convertToType(s.id,"Integer")),s.hasOwnProperty("javascriptEvents")&&(a.javascriptEvents=e.convertToType(s.javascriptEvents,[i])),s.hasOwnProperty("metadata")&&(a.metadata=e.convertToType(s.metadata,{String:"String"})),s.hasOwnProperty("name")&&(a.name=e.convertToType(s.name,"String")),s.hasOwnProperty("outcomeTarget")&&(a.outcomeTarget=e.convertToType(s.outcomeTarget,"String")),s.hasOwnProperty("outcomes")&&(a.outcomes=e.convertToType(s.outcomes,[n])),s.hasOwnProperty("processDefinitionId")&&(a.processDefinitionId=e.convertToType(s.processDefinitionId,"String")),s.hasOwnProperty("processDefinitionKey")&&(a.processDefinitionKey=e.convertToType(s.processDefinitionKey,"String")),s.hasOwnProperty("processDefinitionName")&&(a.processDefinitionName=e.convertToType(s.processDefinitionName,"String")),s.hasOwnProperty("selectedOutcome")&&(a.selectedOutcome=e.convertToType(s.selectedOutcome,"String")),s.hasOwnProperty("style")&&(a.style=e.convertToType(s.style,"String")),s.hasOwnProperty("tabs")&&(a.tabs=e.convertToType(s.tabs,[o])),s.hasOwnProperty("taskDefinitionKey")&&(a.taskDefinitionKey=e.convertToType(s.taskDefinitionKey,"String")),s.hasOwnProperty("taskId")&&(a.taskId=e.convertToType(s.taskId,"String")),s.hasOwnProperty("taskName")&&(a.taskName=e.convertToType(s.taskName,"String"))),a},r.prototype.className=void 0,r.prototype.customFieldTemplates=void 0,r.prototype.fields=void 0,r.prototype.gridsterForm=void 0,r.prototype.id=void 0,r.prototype.javascriptEvents=void 0,r.prototype.metadata=void 0,r.prototype.name=void 0,r.prototype.outcomeTarget=void 0,r.prototype.outcomes=void 0,r.prototype.processDefinitionId=void 0,r.prototype.processDefinitionKey=void 0,r.prototype.processDefinitionName=void 0,r.prototype.selectedOutcome=void 0,r.prototype.style=void 0,r.prototype.tabs=void 0,r.prototype.taskDefinitionKey=void 0,r.prototype.taskId=void 0,r.prototype.taskName=void 0,r})},{"../../../alfrescoApiClient":302,"./FormFieldRepresentation":106,"./FormJavascriptEventRepresentation":107,"./FormOutcomeRepresentation":108,"./FormTabRepresentation":112}],106:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ConditionRepresentation","../model/LayoutRepresentation","../model/OptionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ConditionRepresentation"),t("./LayoutRepresentation"),t("./OptionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormFieldRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ConditionRepresentation,n.ActivitiPublicRestApi.LayoutRepresentation,n.ActivitiPublicRestApi.OptionRepresentation))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("className")&&(s.className=e.convertToType(r.className,"String")),r.hasOwnProperty("col")&&(s.col=e.convertToType(r.col,"Integer")),r.hasOwnProperty("colspan")&&(s.colspan=e.convertToType(r.colspan,"Integer")),r.hasOwnProperty("hasEmptyValue")&&(s.hasEmptyValue=e.convertToType(r.hasEmptyValue,"Boolean")),r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"String")),r.hasOwnProperty("layout")&&(s.layout=i.constructFromObject(r.layout)),r.hasOwnProperty("maxLength")&&(s.maxLength=e.convertToType(r.maxLength,"Integer")),r.hasOwnProperty("maxValue")&&(s.maxValue=e.convertToType(r.maxValue,"String")),r.hasOwnProperty("minLength")&&(s.minLength=e.convertToType(r.minLength,"Integer")),r.hasOwnProperty("minValue")&&(s.minValue=e.convertToType(r.minValue,"String")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("optionType")&&(s.optionType=e.convertToType(r.optionType,"String")),r.hasOwnProperty("options")&&(s.options=e.convertToType(r.options,[n])),r.hasOwnProperty("overrideId")&&(s.overrideId=e.convertToType(r.overrideId,"Boolean")),r.hasOwnProperty("params")&&(s.params=e.convertToType(r.params,Object)),r.hasOwnProperty("placeholder")&&(s.placeholder=e.convertToType(r.placeholder,"String")),r.hasOwnProperty("readOnly")&&(s.readOnly=e.convertToType(r.readOnly,"Boolean")),r.hasOwnProperty("regexPattern")&&(s.regexPattern=e.convertToType(r.regexPattern,"String")),r.hasOwnProperty("required")&&(s.required=e.convertToType(r.required,"Boolean")),r.hasOwnProperty("restIdProperty")&&(s.restIdProperty=e.convertToType(r.restIdProperty,"String")),r.hasOwnProperty("restLabelProperty")&&(s.restLabelProperty=e.convertToType(r.restLabelProperty,"String")),r.hasOwnProperty("restResponsePath")&&(s.restResponsePath=e.convertToType(r.restResponsePath,"String")),r.hasOwnProperty("restUrl")&&(s.restUrl=e.convertToType(r.restUrl,"String")),r.hasOwnProperty("row")&&(s.row=e.convertToType(r.row,"Integer")),r.hasOwnProperty("sizeX")&&(s.sizeX=e.convertToType(r.sizeX,"Integer")),r.hasOwnProperty("sizeY")&&(s.sizeY=e.convertToType(r.sizeY,"Integer")),r.hasOwnProperty("tab")&&(s.tab=e.convertToType(r.tab,"String")),r.hasOwnProperty("type")&&(s.type=e.convertToType(r.type,"String")),r.hasOwnProperty("value")&&(s.value=e.convertToType(r.value,Object)),r.hasOwnProperty("visibilityCondition")&&(s.visibilityCondition=t.constructFromObject(r.visibilityCondition))),s},o.prototype.className=void 0,o.prototype.col=void 0,o.prototype.colspan=void 0,o.prototype.hasEmptyValue=void 0,o.prototype.id=void 0,o.prototype.layout=void 0,o.prototype.maxLength=void 0,o.prototype.maxValue=void 0,o.prototype.minLength=void 0,o.prototype.minValue=void 0,o.prototype.name=void 0,o.prototype.optionType=void 0,o.prototype.options=void 0,o.prototype.overrideId=void 0,o.prototype.params=void 0,o.prototype.placeholder=void 0,o.prototype.readOnly=void 0,o.prototype.regexPattern=void 0,o.prototype.required=void 0,o.prototype.restIdProperty=void 0,o.prototype.restLabelProperty=void 0,o.prototype.restResponsePath=void 0,o.prototype.restUrl=void 0,o.prototype.row=void 0,o.prototype.sizeX=void 0,o.prototype.sizeY=void 0,o.prototype.tab=void 0,o.prototype.type=void 0,o.prototype.value=void 0,o.prototype.visibilityCondition=void 0,o})},{"../../../alfrescoApiClient":302,"./ConditionRepresentation":95,"./LayoutRepresentation":117,"./OptionRepresentation":128}],107:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormJavascriptEventRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("event")&&(n.event=e.convertToType(i.event,"String")),i.hasOwnProperty("javascriptLogic")&&(n.javascriptLogic=e.convertToType(i.javascriptLogic,"String"))),n},t.prototype.event=void 0,t.prototype.javascriptLogic=void 0,t})},{"../../../alfrescoApiClient":302}],108:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormOutcomeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":302}],109:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormDefinitionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormDefinitionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormDefinitionRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("description")&&(o.description=e.convertToType(n.description,"String")),n.hasOwnProperty("formDefinition")&&(o.formDefinition=t.constructFromObject(n.formDefinition)),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("lastUpdated")&&(o.lastUpdated=e.convertToType(n.lastUpdated,"Date")),n.hasOwnProperty("lastUpdatedBy")&&(o.lastUpdatedBy=e.convertToType(n.lastUpdatedBy,"Integer")),n.hasOwnProperty("lastUpdatedByFullName")&&(o.lastUpdatedByFullName=e.convertToType(n.lastUpdatedByFullName,"String")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("referenceId")&&(o.referenceId=e.convertToType(n.referenceId,"Integer")),n.hasOwnProperty("stencilSetId")&&(o.stencilSetId=e.convertToType(n.stencilSetId,"Integer")),n.hasOwnProperty("version")&&(o.version=e.convertToType(n.version,"Integer"))),o},i.prototype.description=void 0,i.prototype.formDefinition=void 0,i.prototype.id=void 0,i.prototype.lastUpdated=void 0,i.prototype.lastUpdatedBy=void 0,i.prototype.lastUpdatedByFullName=void 0,i.prototype.name=void 0,i.prototype.referenceId=void 0,i.prototype.stencilSetId=void 0,i.prototype.version=void 0,i})},{"../../../alfrescoApiClient":302,"./FormDefinitionRepresentation":105}],110:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormRepresentation","../model/ProcessScopeIdentifierRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormRepresentation"),t("./ProcessScopeIdentifierRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormSaveRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormRepresentation,n.ActivitiPublicRestApi.ProcessScopeIdentifierRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("comment")&&(r.comment=e.convertToType(o.comment,"String")),o.hasOwnProperty("formImageBase64")&&(r.formImageBase64=e.convertToType(o.formImageBase64,"String")),o.hasOwnProperty("formRepresentation")&&(r.formRepresentation=t.constructFromObject(o.formRepresentation)),o.hasOwnProperty("newVersion")&&(r.newVersion=e.convertToType(o.newVersion,"Boolean")),o.hasOwnProperty("processScopeIdentifiers")&&(r.processScopeIdentifiers=e.convertToType(o.processScopeIdentifiers,[i])),o.hasOwnProperty("reusable")&&(r.reusable=e.convertToType(o.reusable,"Boolean"))),r},n.prototype.comment=void 0,n.prototype.formImageBase64=void 0,n.prototype.formRepresentation=void 0,n.prototype.newVersion=void 0,n.prototype.processScopeIdentifiers=void 0,n.prototype.reusable=void 0,n})},{"../../../alfrescoApiClient":302,"./FormRepresentation":109,"./ProcessScopeIdentifierRepresentation":135}],111:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormFieldRepresentation","../model/FormOutcomeRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormFieldRepresentation"),t("./FormOutcomeRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormFieldRepresentation,n.ActivitiPublicRestApi.FormOutcomeRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("description")&&(r.description=e.convertToType(o.description,"String")),o.hasOwnProperty("fieldVariables")&&(r.fieldVariables=e.convertToType(o.fieldVariables,[t])),o.hasOwnProperty("fields")&&(r.fields=e.convertToType(o.fields,[t])),o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"Integer")),o.hasOwnProperty("name")&&(r.name=e.convertToType(o.name,"String")),o.hasOwnProperty("outcomes")&&(r.outcomes=e.convertToType(o.outcomes,[i]))),r},n.prototype.description=void 0,n.prototype.fieldVariables=void 0,n.prototype.fields=void 0,n.prototype.id=void 0,n.prototype.name=void 0,n.prototype.outcomes=void 0,n})},{"../../../alfrescoApiClient":302,"./FormFieldRepresentation":106,"./FormOutcomeRepresentation":108}],112:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ConditionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ConditionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormTabRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ConditionRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("title")&&(o.title=e.convertToType(n.title,"String")),n.hasOwnProperty("visibilityCondition")&&(o.visibilityCondition=t.constructFromObject(n.visibilityCondition))),o},i.prototype.id=void 0,i.prototype.title=void 0,i.prototype.visibilityCondition=void 0,i})},{"../../../alfrescoApiClient":302,"./ConditionRepresentation":95}],113:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.FormValueRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":302}],114:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.GroupCapabilityRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":302}],115:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/GroupCapabilityRepresentation","../model/GroupRepresentation","../model/UserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./GroupCapabilityRepresentation"),t("./GroupRepresentation"),t("./UserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.GroupRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.GroupCapabilityRepresentation,n.ActivitiPublicRestApi.GroupRepresentation,n.ActivitiPublicRestApi.UserRepresentation))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("capabilities")&&(s.capabilities=e.convertToType(r.capabilities,[t])),r.hasOwnProperty("externalId")&&(s.externalId=e.convertToType(r.externalId,"String")),r.hasOwnProperty("groups")&&(s.groups=e.convertToType(r.groups,[i])),r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"Integer")),r.hasOwnProperty("lastSyncTimeStamp")&&(s.lastSyncTimeStamp=e.convertToType(r.lastSyncTimeStamp,"Date")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("parentGroupId")&&(s.parentGroupId=e.convertToType(r.parentGroupId,"Integer")),r.hasOwnProperty("status")&&(s.status=e.convertToType(r.status,"String")),r.hasOwnProperty("tenantId")&&(s.tenantId=e.convertToType(r.tenantId,"Integer")),r.hasOwnProperty("type")&&(s.type=e.convertToType(r.type,"Integer")),r.hasOwnProperty("userCount")&&(s.userCount=e.convertToType(r.userCount,"Integer")),r.hasOwnProperty("users")&&(s.users=e.convertToType(r.users,[n]))),s},o.prototype.capabilities=void 0,o.prototype.externalId=void 0,o.prototype.groups=void 0,o.prototype.id=void 0,o.prototype.lastSyncTimeStamp=void 0,o.prototype.name=void 0,o.prototype.parentGroupId=void 0,o.prototype.status=void 0,o.prototype.tenantId=void 0,o.prototype.type=void 0,o.prototype.userCount=void 0,o.prototype.users=void 0,o})},{"../../../alfrescoApiClient":302,"./GroupCapabilityRepresentation":114,"./GroupRepresentation":115,"./UserRepresentation":160}],116:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ImageUploadRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("created")&&(n.created=e.convertToType(i.created,"Date")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("userId")&&(n.userId=e.convertToType(i.userId,"Integer"))),n},t.prototype.created=void 0,t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.userId=void 0,t})},{"../../../alfrescoApiClient":302}],117:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LayoutRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("colspan")&&(n.colspan=e.convertToType(i.colspan,"Integer")),i.hasOwnProperty("column")&&(n.column=e.convertToType(i.column,"Integer")),i.hasOwnProperty("row")&&(n.row=e.convertToType(i.row,"Integer"))),n},t.prototype.colspan=void 0,t.prototype.column=void 0,t.prototype.row=void 0,t})},{"../../../alfrescoApiClient":302}],118:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LightAppRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("icon")&&(n.icon=e.convertToType(i.icon,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("theme")&&(n.theme=e.convertToType(i.theme,"String"))),n},t.prototype.description=void 0,t.prototype.icon=void 0,t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.theme=void 0,t})},{"../../../alfrescoApiClient":302}],119:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightGroupRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightGroupRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LightGroupRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightGroupRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("externalId")&&(o.externalId=e.convertToType(n.externalId,"String")),n.hasOwnProperty("groups")&&(o.groups=e.convertToType(n.groups,[t])),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("status")&&(o.status=e.convertToType(n.status,"String"))),o},i.prototype.externalId=void 0,i.prototype.groups=void 0,i.prototype.id=void 0,i.prototype.name=void 0,i.prototype.status=void 0,i})},{"../../../alfrescoApiClient":302,"./LightGroupRepresentation":119}],120:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LightTenantRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":302}],121:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.LightUserRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("email")&&(n.email=e.convertToType(i.email,"String")),i.hasOwnProperty("externalId")&&(n.externalId=e.convertToType(i.externalId,"String")),i.hasOwnProperty("firstName")&&(n.firstName=e.convertToType(i.firstName,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastName")&&(n.lastName=e.convertToType(i.lastName,"String")),i.hasOwnProperty("pictureId")&&(n.pictureId=e.convertToType(i.pictureId,"Integer"))),n},t.prototype.email=void 0,t.prototype.externalId=void 0,t.prototype.firstName=void 0,t.prototype.id=void 0,t.prototype.lastName=void 0,t.prototype.pictureId=void 0,t})},{"../../../alfrescoApiClient":302}],122:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.MaplongListstring=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){var e=this;return e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,e.constructFromObject(i,n,Array)),n},t})},{"../../../alfrescoApiClient":302}],123:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.MapstringListEntityVariableScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){var e=this;return e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,e.constructFromObject(i,n,Array)),n},t})},{"../../../alfrescoApiClient":302}],124:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.MapstringListVariableScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){var e=this;return e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,e.constructFromObject(i,n,Array)),n},t})},{"../../../alfrescoApiClient":302}],125:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.Mapstringstring=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){var e=this;return e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,e.constructFromObject(i,n,String)),n},t})},{"../../../alfrescoApiClient":302}],126:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ModelRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("comment")&&(n.comment=e.convertToType(i.comment,"String")),i.hasOwnProperty("createdBy")&&(n.createdBy=e.convertToType(i.createdBy,"Integer")),i.hasOwnProperty("createdByFullName")&&(n.createdByFullName=e.convertToType(i.createdByFullName,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("favorite")&&(n.favorite=e.convertToType(i.favorite,"Boolean")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastUpdated")&&(n.lastUpdated=e.convertToType(i.lastUpdated,"Date")),i.hasOwnProperty("lastUpdatedBy")&&(n.lastUpdatedBy=e.convertToType(i.lastUpdatedBy,"Integer")),i.hasOwnProperty("lastUpdatedByFullName")&&(n.lastUpdatedByFullName=e.convertToType(i.lastUpdatedByFullName,"String")),i.hasOwnProperty("latestVersion")&&(n.latestVersion=e.convertToType(i.latestVersion,"Boolean")),i.hasOwnProperty("modelType")&&(n.modelType=e.convertToType(i.modelType,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("permission")&&(n.permission=e.convertToType(i.permission,"String")),i.hasOwnProperty("referenceId")&&(n.referenceId=e.convertToType(i.referenceId,"Integer")), +i.hasOwnProperty("stencilSet")&&(n.stencilSet=e.convertToType(i.stencilSet,"Integer")),i.hasOwnProperty("version")&&(n.version=e.convertToType(i.version,"Integer"))),n},t.prototype.comment=void 0,t.prototype.createdBy=void 0,t.prototype.createdByFullName=void 0,t.prototype.description=void 0,t.prototype.favorite=void 0,t.prototype.id=void 0,t.prototype.lastUpdated=void 0,t.prototype.lastUpdatedBy=void 0,t.prototype.lastUpdatedByFullName=void 0,t.prototype.latestVersion=void 0,t.prototype.modelType=void 0,t.prototype.name=void 0,t.prototype.permission=void 0,t.prototype.referenceId=void 0,t.prototype.stencilSet=void 0,t.prototype.version=void 0,t})},{"../../../alfrescoApiClient":302}],127:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ObjectNode=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(e,i){return e&&(i=e||new t),i},t})},{"../../../alfrescoApiClient":302}],128:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.OptionRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":302}],129:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ParameterValueRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("version")&&(n.version=e.convertToType(i.version,"String")),i.hasOwnProperty("value")&&(n.value=e.convertToType(i.value,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.version=void 0,t.prototype.value=void 0,t})},{"../../../alfrescoApiClient":302}],130:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessFilterRequestRepresentation.js=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("processDefinitionId")&&(n.processDefinitionId=e.convertToType(i.processDefinitionId,"Integer")),i.hasOwnProperty("appDefinitionId")&&(n.appDefinitionId=e.convertToType(i.appDefinitionId,"Integer")),i.hasOwnProperty("sort")&&(n.sort=e.convertToType(i.sort,"String")),i.hasOwnProperty("state")&&(n.state=e.convertToType(i.state,"String")),i.hasOwnProperty("page")&&(n.page=e.convertToType(i.page,"Integer")),i.hasOwnProperty("size")&&(n.size=e.convertToType(i.size,"Integer"))),n},t.prototype.processDefinitionId=void 0,t.prototype.appDefinitionId=void 0,t.prototype.state=void 0,t.prototype.sort=void 0,t.prototype.page=void 0,t.prototype.size=void 0,t})},{"../../../alfrescoApiClient":302}],131:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceFilterRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("asc")&&(n.asc=e.convertToType(i.asc,"Boolean")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("processDefinitionId")&&(n.processDefinitionId=e.convertToType(i.processDefinitionId,"String")),i.hasOwnProperty("processDefinitionKey")&&(n.processDefinitionKey=e.convertToType(i.processDefinitionKey,"String")),i.hasOwnProperty("sort")&&(n.sort=e.convertToType(i.sort,"String")),i.hasOwnProperty("state")&&(n.state=e.convertToType(i.state,"String"))),n},t.prototype.asc=void 0,t.prototype.name=void 0,t.prototype.processDefinitionId=void 0,t.prototype.processDefinitionKey=void 0,t.prototype.sort=void 0,t.prototype.state=void 0,t})},{"../../../alfrescoApiClient":302}],132:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessInstanceFilterRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ProcessInstanceFilterRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceFilterRequestRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessInstanceFilterRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appDefinitionId")&&(o.appDefinitionId=e.convertToType(n.appDefinitionId,"Integer")),n.hasOwnProperty("filter")&&(o.filter=t.constructFromObject(n.filter)),n.hasOwnProperty("filterId")&&(o.filterId=e.convertToType(n.filterId,"Integer")),n.hasOwnProperty("page")&&(o.page=e.convertToType(n.page,"Integer")),n.hasOwnProperty("size")&&(o.size=e.convertToType(n.size,"Integer"))),o},i.prototype.appDefinitionId=void 0,i.prototype.filter=void 0,i.prototype.filterId=void 0,i.prototype.page=void 0,i.prototype.size=void 0,i})},{"../../../alfrescoApiClient":302,"./ProcessInstanceFilterRepresentation":131}],133:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightUserRepresentation","../model/RestVariable"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightUserRepresentation"),t("./RestVariable")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightUserRepresentation,n.ActivitiPublicRestApi.RestVariable))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("businessKey")&&(r.businessKey=e.convertToType(o.businessKey,"String")),o.hasOwnProperty("ended")&&(r.ended=e.convertToType(o.ended,"Date")),o.hasOwnProperty("graphicalNotationDefined")&&(r.graphicalNotationDefined=e.convertToType(o.graphicalNotationDefined,"Boolean")),o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"String")),o.hasOwnProperty("name")&&(r.name=e.convertToType(o.name,"String")),o.hasOwnProperty("processDefinitionCategory")&&(r.processDefinitionCategory=e.convertToType(o.processDefinitionCategory,"String")),o.hasOwnProperty("processDefinitionDeploymentId")&&(r.processDefinitionDeploymentId=e.convertToType(o.processDefinitionDeploymentId,"String")),o.hasOwnProperty("processDefinitionDescription")&&(r.processDefinitionDescription=e.convertToType(o.processDefinitionDescription,"String")),o.hasOwnProperty("processDefinitionId")&&(r.processDefinitionId=e.convertToType(o.processDefinitionId,"String")),o.hasOwnProperty("processDefinitionKey")&&(r.processDefinitionKey=e.convertToType(o.processDefinitionKey,"String")),o.hasOwnProperty("processDefinitionName")&&(r.processDefinitionName=e.convertToType(o.processDefinitionName,"String")),o.hasOwnProperty("processDefinitionVersion")&&(r.processDefinitionVersion=e.convertToType(o.processDefinitionVersion,"Integer")),o.hasOwnProperty("startFormDefined")&&(r.startFormDefined=e.convertToType(o.startFormDefined,"Boolean")),o.hasOwnProperty("started")&&(r.started=e.convertToType(o.started,"Date")),o.hasOwnProperty("startedBy")&&(r.startedBy=t.constructFromObject(o.startedBy)),o.hasOwnProperty("tenantId")&&(r.tenantId=e.convertToType(o.tenantId,"String")),o.hasOwnProperty("variables")&&(r.variables=e.convertToType(o.variables,[i]))),r},n.prototype.businessKey=void 0,n.prototype.ended=void 0,n.prototype.graphicalNotationDefined=void 0,n.prototype.id=void 0,n.prototype.name=void 0,n.prototype.processDefinitionCategory=void 0,n.prototype.processDefinitionDeploymentId=void 0,n.prototype.processDefinitionDescription=void 0,n.prototype.processDefinitionId=void 0,n.prototype.processDefinitionKey=void 0,n.prototype.processDefinitionName=void 0,n.prototype.processDefinitionVersion=void 0,n.prototype.startFormDefined=void 0,n.prototype.started=void 0,n.prototype.startedBy=void 0,n.prototype.tenantId=void 0,n.prototype.variables=void 0,n})},{"../../../alfrescoApiClient":302,"./LightUserRepresentation":121,"./RestVariable":143}],134:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessInstanceVariableRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String")),i.hasOwnProperty("name")&&(n.value=e.convertToType(i.value,Object))),n},t.prototype.id=void 0,t.prototype.type=void 0,t.prototype.value=void 0,t})},{"../../../alfrescoApiClient":302}],135:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessScopeIdentifierRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("processActivityId")&&(n.processActivityId=e.convertToType(i.processActivityId,"String")),i.hasOwnProperty("processModelId")&&(n.processModelId=e.convertToType(i.processModelId,"Integer"))),n},t.prototype.processActivityId=void 0,t.prototype.processModelId=void 0,t})},{"../../../alfrescoApiClient":302}],136:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/FormScopeRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./FormScopeRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.FormScopeRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("activityIds")&&(o.activityIds=e.convertToType(n.activityIds,["String"])),n.hasOwnProperty("activityIdsByCollapsedSubProcessIdMap")&&(o.activityIdsByCollapsedSubProcessIdMap=e.convertToType(n.activityIdsByCollapsedSubProcessIdMap,{String:Array})),n.hasOwnProperty("activityIdsByDecisionTableIdMap")&&(o.activityIdsByDecisionTableIdMap=e.convertToType(n.activityIdsByDecisionTableIdMap,{String:Array})),n.hasOwnProperty("activityIdsByFormIdMap")&&(o.activityIdsByFormIdMap=e.convertToType(n.activityIdsByFormIdMap,{String:Array})),n.hasOwnProperty("activityIdsWithExcludedSubProcess")&&(o.activityIdsWithExcludedSubProcess=e.convertToType(n.activityIdsWithExcludedSubProcess,["String"])),n.hasOwnProperty("customStencilVariables")&&(o.customStencilVariables=e.convertToType(n.customStencilVariables,{String:Array})),n.hasOwnProperty("entityVariables")&&(o.entityVariables=e.convertToType(n.entityVariables,{String:Array})),n.hasOwnProperty("executionVariables")&&(o.executionVariables=e.convertToType(n.executionVariables,{String:Array})),n.hasOwnProperty("fieldToVariableMappings")&&(o.fieldToVariableMappings=e.convertToType(n.fieldToVariableMappings,{String:Array})),n.hasOwnProperty("forms")&&(o.forms=e.convertToType(n.forms,[t])),n.hasOwnProperty("metadataVariables")&&(o.metadataVariables=e.convertToType(n.metadataVariables,{String:Array})),n.hasOwnProperty("modelId")&&(o.modelId=e.convertToType(n.modelId,"Integer")),n.hasOwnProperty("processModelType")&&(o.processModelType=e.convertToType(n.processModelType,"Integer")),n.hasOwnProperty("responseVariables")&&(o.responseVariables=e.convertToType(n.responseVariables,{String:Array}))),o},i.prototype.activityIds=void 0,i.prototype.activityIdsByCollapsedSubProcessIdMap=void 0,i.prototype.activityIdsByDecisionTableIdMap=void 0,i.prototype.activityIdsByFormIdMap=void 0,i.prototype.activityIdsWithExcludedSubProcess=void 0,i.prototype.customStencilVariables=void 0,i.prototype.entityVariables=void 0,i.prototype.executionVariables=void 0,i.prototype.fieldToVariableMappings=void 0,i.prototype.forms=void 0,i.prototype.metadataVariables=void 0,i.prototype.modelId=void 0,i.prototype.processModelType=void 0,i.prototype.responseVariables=void 0,i})},{"../../../alfrescoApiClient":302,"./FormScopeRepresentation":111}],137:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessScopeIdentifierRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ProcessScopeIdentifierRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ProcessScopesRequestRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessScopeIdentifierRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("identifiers")&&(o.identifiers=e.convertToType(n.identifiers,[t])),n.hasOwnProperty("overriddenModel")&&(o.overriddenModel=e.convertToType(n.overriddenModel,"String"))),o},i.prototype.identifiers=void 0,i.prototype.overriddenModel=void 0,i})},{"../../../alfrescoApiClient":302,"./ProcessScopeIdentifierRepresentation":135}],138:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightGroupRepresentation","../model/LightUserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightGroupRepresentation"),t("./LightUserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.PublishIdentityInfoRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightGroupRepresentation,n.ActivitiPublicRestApi.LightUserRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("group")&&(r.group=t.constructFromObject(o.group)),o.hasOwnProperty("person")&&(r.person=i.constructFromObject(o.person)),o.hasOwnProperty("type")&&(r.type=e.convertToType(o.type,"String"))),r},n.prototype.group=void 0,n.prototype.person=void 0,n.prototype.type=void 0,n})},{"../../../alfrescoApiClient":302,"./LightGroupRepresentation":119,"./LightUserRepresentation":121}],139:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightUserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightUserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.RelatedContentRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightUserRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("contentAvailable")&&(o.contentAvailable=e.convertToType(n.contentAvailable,"Boolean")),n.hasOwnProperty("created")&&(o.created=e.convertToType(n.created,"Date")),n.hasOwnProperty("createdBy")&&(o.createdBy=t.constructFromObject(n.createdBy)),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("link")&&(o.link=e.convertToType(n.link,"Boolean")),n.hasOwnProperty("linkUrl")&&(o.linkUrl=e.convertToType(n.linkUrl,"String")),n.hasOwnProperty("mimeType")&&(o.mimeType=e.convertToType(n.mimeType,"String")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("previewStatus")&&(o.previewStatus=e.convertToType(n.previewStatus,"String")),n.hasOwnProperty("simpleType")&&(o.simpleType=e.convertToType(n.simpleType,"String")),n.hasOwnProperty("source")&&(o.source=e.convertToType(n.source,"String")),n.hasOwnProperty("sourceId")&&(o.sourceId=e.convertToType(n.sourceId,"String")),n.hasOwnProperty("thumbnailStatus")&&(o.thumbnailStatus=e.convertToType(n.thumbnailStatus,"String"))),o},i.prototype.contentAvailable=void 0,i.prototype.created=void 0,i.prototype.createdBy=void 0,i.prototype.id=void 0,i.prototype.link=void 0,i.prototype.linkUrl=void 0,i.prototype.mimeType=void 0,i.prototype.name=void 0,i.prototype.previewStatus=void 0,i.prototype.simpleType=void 0,i.prototype.source=void 0,i.prototype.sourceId=void 0,i.prototype.thumbnailStatus=void 0,i})},{"../../../alfrescoApiClient":302,"./LightUserRepresentation":121}],140:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","./Chart"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./Chart")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ReportCharts=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.Chart))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("elements")&&(o.elements=e.convertToType(n.elements,[t]))),o},i.prototype.elements=void 0,i})},{"../../../alfrescoApiClient":302,"./Chart":91}],141:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ReportParametersDefinition=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("definition")&&(n.definition=e.convertToType(i.definition,"String")),i.hasOwnProperty("created")&&(n.created=e.convertToType(i.created,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.definition=void 0,t.prototype.created=void 0,t})},{"../../../alfrescoApiClient":302}],142:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ResetPasswordRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("email")&&(n.email=e.convertToType(i.email,"String"))),n},t.prototype.email=void 0,t})},{"../../../alfrescoApiClient":302}],143:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.RestVariable=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("scope")&&(n.scope=e.convertToType(i.scope,"String")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String")),i.hasOwnProperty("value")&&(n.value=e.convertToType(i.value,Object)),i.hasOwnProperty("valueUrl")&&(n.valueUrl=e.convertToType(i.valueUrl,"String"))),n},t.prototype.name=void 0,t.prototype.scope=void 0,t.prototype.type=void 0,t.prototype.value=void 0,t.prototype.valueUrl=void 0,t})},{"../../../alfrescoApiClient":302}],144:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AbstractRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./AbstractRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ResultListDataRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AbstractRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(t,n){return t&&(n=t||new i,t.hasOwnProperty("data")&&(n.data=e.convertToType(t.data,"object")),t.hasOwnProperty("size")&&(n.size=e.convertToType(t.size,"Integer")),t.hasOwnProperty("start")&&(n.start=e.convertToType(t.start,"Integer")),t.hasOwnProperty("total")&&(n.total=e.convertToType(t.total,"Integer"))),n},i.prototype.data=void 0,i.prototype.size=void 0,i.prototype.start=void 0,i.prototype.total=void 0,i})},{"../../../alfrescoApiClient":302,"./AbstractRepresentation":79}],145:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/AppDefinitionRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./AppDefinitionRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.RuntimeAppDefinitionSaveRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.AppDefinitionRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appDefinitions")&&(o.appDefinitions=e.convertToType(n.appDefinitions,[t]))),o},i.prototype.appDefinitions=void 0,i})},{"../../../alfrescoApiClient":302,"./AppDefinitionRepresentation":84}],146:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.SaveFormRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("values")&&(n.values=e.convertToType(i.values,Object))),n},t.prototype.values=void 0,t})},{"../../../alfrescoApiClient":302}],147:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.SyncLogEntryRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("timeStamp")&&(n.timeStamp=e.convertToType(i.timeStamp,"Date")),i.hasOwnProperty("type")&&(n.type=e.convertToType(i.type,"String"))),n},t.prototype.id=void 0,t.prototype.timeStamp=void 0,t.prototype.type=void 0,t})},{"../../../alfrescoApiClient":302}],148:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.SystemPropertiesRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("allowInvolveByEmail")&&(n.allowInvolveByEmail=e.convertToType(i.allowInvolveByEmail,"Boolean"))),n},t.prototype.allowInvolveByEmail=void 0,t})},{"../../../alfrescoApiClient":302}],149:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskFilterRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("asc")&&(n.asc=e.convertToType(i.asc,"Boolean")),i.hasOwnProperty("assignment")&&(n.assignment=e.convertToType(i.assignment,"String")),i.hasOwnProperty("dueAfter")&&(n.dueAfter=e.convertToType(i.dueAfter,"Date")),i.hasOwnProperty("dueBefore")&&(n.dueBefore=e.convertToType(i.dueBefore,"Date")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("processDefinitionId")&&(n.processDefinitionId=e.convertToType(i.processDefinitionId,"String")),i.hasOwnProperty("processDefinitionKey")&&(n.processDefinitionKey=e.convertToType(i.processDefinitionKey,"String")),i.hasOwnProperty("sort")&&(n.sort=e.convertToType(i.sort,"String")),i.hasOwnProperty("state")&&(n.state=e.convertToType(i.state,"String"))),n},t.prototype.asc=void 0,t.prototype.assignment=void 0,t.prototype.dueAfter=void 0,t.prototype.dueBefore=void 0,t.prototype.name=void 0,t.prototype.processDefinitionId=void 0,t.prototype.processDefinitionKey=void 0,t.prototype.sort=void 0,t.prototype.state=void 0,t})},{"../../../alfrescoApiClient":302}],150:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/TaskFilterRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./TaskFilterRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}), +n.ActivitiPublicRestApi.TaskFilterRequestRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.TaskFilterRepresentation))}(void 0,function(e,t){var i=function(){this.hasOwnProperty("filter")||this.hasOwnProperty("filterId")||(this.filter=new t)};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appDefinitionId")&&(o.appDefinitionId=e.convertToType(n.appDefinitionId,"Integer")),n.hasOwnProperty("filter")&&(o.filter=t.constructFromObject(n.filter)),n.hasOwnProperty("filterId")&&(o.filterId=e.convertToType(n.filterId,"Integer")),n.hasOwnProperty("page")&&(o.page=e.convertToType(n.page,"Integer")),n.hasOwnProperty("size")&&(o.size=e.convertToType(n.size,"Integer"))),o},i.prototype.appDefinitionId=void 0,i.prototype.filter=void 0,i.prototype.filterId=void 0,i.prototype.page=void 0,i.prototype.size=void 0,i})},{"../../../alfrescoApiClient":302,"./TaskFilterRepresentation":149}],151:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskQueryRequestRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("processInstanceId")&&(n.processInstanceId=e.convertToType(i.processInstanceId,"Integer")),i.hasOwnProperty("text")&&(n.text=TaskFilterRepresentation.constructFromObject(i.text,"String")),i.hasOwnProperty("assignment")&&(n.assignment=e.convertToType(i.assignment)),i.hasOwnProperty("state")&&(n.state=e.convertToType(i.state,"String")),i.hasOwnProperty("sort")&&(n.sort=e.convertToType(i.sort,"String")),i.hasOwnProperty("page")&&(n.page=e.convertToType(i.page,"Integer")),i.hasOwnProperty("size")&&(n.size=e.convertToType(i.size,"Integer"))),n},t.prototype.processInstanceId=void 0,t.prototype.text=void 0,t.prototype.assignment=void 0,t.prototype.state=void 0,t.prototype.sort=void 0,t.prototype.page=void 0,t.prototype.size=void 0,t})},{"../../../alfrescoApiClient":302}],152:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/LightUserRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LightUserRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.LightUserRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("adhocTaskCanBeReassigned")&&(o.adhocTaskCanBeReassigned=e.convertToType(n.adhocTaskCanBeReassigned,"Boolean")),n.hasOwnProperty("assignee")&&(o.assignee=t.constructFromObject(n.assignee)),n.hasOwnProperty("category")&&(o.category=e.convertToType(n.category,"String")),n.hasOwnProperty("created")&&(o.created=e.convertToType(n.created,"Date")),n.hasOwnProperty("description")&&(o.description=e.convertToType(n.description,"String")),n.hasOwnProperty("dueDate")&&(o.dueDate=e.convertToType(n.dueDate,"Date")),n.hasOwnProperty("duration")&&(o.duration=e.convertToType(n.duration,"Integer")),n.hasOwnProperty("endDate")&&(o.endDate=e.convertToType(n.endDate,"Date")),n.hasOwnProperty("formKey")&&(o.formKey=e.convertToType(n.formKey,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("initiatorCanCompleteTask")&&(o.initiatorCanCompleteTask=e.convertToType(n.initiatorCanCompleteTask,"Boolean")),n.hasOwnProperty("involvedPeople")&&(o.involvedPeople=e.convertToType(n.involvedPeople,[t])),n.hasOwnProperty("memberOfCandidateGroup")&&(o.memberOfCandidateGroup=e.convertToType(n.memberOfCandidateGroup,"Boolean")),n.hasOwnProperty("memberOfCandidateUsers")&&(o.memberOfCandidateUsers=e.convertToType(n.memberOfCandidateUsers,"Boolean")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("parentTaskId")&&(o.parentTaskId=e.convertToType(n.parentTaskId,"String")),n.hasOwnProperty("parentTaskName")&&(o.parentTaskName=e.convertToType(n.parentTaskName,"String")),n.hasOwnProperty("priority")&&(o.priority=e.convertToType(n.priority,"Integer")),n.hasOwnProperty("processDefinitionCategory")&&(o.processDefinitionCategory=e.convertToType(n.processDefinitionCategory,"String")),n.hasOwnProperty("processDefinitionDeploymentId")&&(o.processDefinitionDeploymentId=e.convertToType(n.processDefinitionDeploymentId,"String")),n.hasOwnProperty("processDefinitionDescription")&&(o.processDefinitionDescription=e.convertToType(n.processDefinitionDescription,"String")),n.hasOwnProperty("processDefinitionId")&&(o.processDefinitionId=e.convertToType(n.processDefinitionId,"String")),n.hasOwnProperty("processDefinitionKey")&&(o.processDefinitionKey=e.convertToType(n.processDefinitionKey,"String")),n.hasOwnProperty("processDefinitionName")&&(o.processDefinitionName=e.convertToType(n.processDefinitionName,"String")),n.hasOwnProperty("processDefinitionVersion")&&(o.processDefinitionVersion=e.convertToType(n.processDefinitionVersion,"Integer")),n.hasOwnProperty("processInstanceId")&&(o.processInstanceId=e.convertToType(n.processInstanceId,"String")),n.hasOwnProperty("processInstanceName")&&(o.processInstanceName=e.convertToType(n.processInstanceName,"String")),n.hasOwnProperty("processInstanceStartUserId")&&(o.processInstanceStartUserId=e.convertToType(n.processInstanceStartUserId,"String"))),o},i.prototype.adhocTaskCanBeReassigned=void 0,i.prototype.assignee=void 0,i.prototype.category=void 0,i.prototype.created=void 0,i.prototype.description=void 0,i.prototype.dueDate=void 0,i.prototype.duration=void 0,i.prototype.endDate=void 0,i.prototype.formKey=void 0,i.prototype.id=void 0,i.prototype.initiatorCanCompleteTask=void 0,i.prototype.involvedPeople=void 0,i.prototype.memberOfCandidateGroup=void 0,i.prototype.memberOfCandidateUsers=void 0,i.prototype.name=void 0,i.prototype.parentTaskId=void 0,i.prototype.parentTaskName=void 0,i.prototype.priority=void 0,i.prototype.processDefinitionCategory=void 0,i.prototype.processDefinitionDeploymentId=void 0,i.prototype.processDefinitionDescription=void 0,i.prototype.processDefinitionId=void 0,i.prototype.processDefinitionKey=void 0,i.prototype.processDefinitionName=void 0,i.prototype.processDefinitionVersion=void 0,i.prototype.processInstanceId=void 0,i.prototype.processInstanceName=void 0,i.prototype.processInstanceStartUserId=void 0,i})},{"../../../alfrescoApiClient":302,"./LightUserRepresentation":121}],153:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TaskUpdateRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("descriptionSet")&&(n.descriptionSet=e.convertToType(i.descriptionSet,"Boolean")),i.hasOwnProperty("dueDate")&&(n.dueDate=e.convertToType(i.dueDate,"Date")),i.hasOwnProperty("dueDateSet")&&(n.dueDateSet=e.convertToType(i.dueDateSet,"Boolean")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("nameSet")&&(n.nameSet=e.convertToType(i.nameSet,"Boolean"))),n},t.prototype.description=void 0,t.prototype.descriptionSet=void 0,t.prototype.dueDate=void 0,t.prototype.dueDateSet=void 0,t.prototype.name=void 0,t.prototype.nameSet=void 0,t})},{"../../../alfrescoApiClient":302}],154:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TenantEvent=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("eventTime")&&(n.eventTime=e.convertToType(i.eventTime,"Date")),i.hasOwnProperty("eventType")&&(n.eventType=e.convertToType(i.eventType,"String")),i.hasOwnProperty("extraInfo")&&(n.extraInfo=e.convertToType(i.extraInfo,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("tenantId")&&(n.tenantId=e.convertToType(i.tenantId,"Integer")),i.hasOwnProperty("userId")&&(n.userId=e.convertToType(i.userId,"Integer")),i.hasOwnProperty("userName")&&(n.userName=e.convertToType(i.userName,"String"))),n},t.prototype.eventTime=void 0,t.prototype.eventType=void 0,t.prototype.extraInfo=void 0,t.prototype.id=void 0,t.prototype.tenantId=void 0,t.prototype.userId=void 0,t.prototype.userName=void 0,t})},{"../../../alfrescoApiClient":302}],155:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.TenantRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("active")&&(n.active=e.convertToType(i.active,"Boolean")),i.hasOwnProperty("created")&&(n.created=e.convertToType(i.created,"Date")),i.hasOwnProperty("domain")&&(n.domain=e.convertToType(i.domain,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"Integer")),i.hasOwnProperty("lastUpdate")&&(n.lastUpdate=e.convertToType(i.lastUpdate,"Date")),i.hasOwnProperty("logoId")&&(n.logoId=e.convertToType(i.logoId,"Integer")),i.hasOwnProperty("maxUsers")&&(n.maxUsers=e.convertToType(i.maxUsers,"Integer")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.active=void 0,t.prototype.created=void 0,t.prototype.domain=void 0,t.prototype.id=void 0,t.prototype.lastUpdate=void 0,t.prototype.logoId=void 0,t.prototype.maxUsers=void 0,t.prototype.name=void 0,t})},{"../../../alfrescoApiClient":302}],156:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserAccountCredentialsRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("password")&&(n.password=e.convertToType(i.password,"String")),i.hasOwnProperty("username")&&(n.username=e.convertToType(i.username,"String"))),n},t.prototype.password=void 0,t.prototype.username=void 0,t})},{"../../../alfrescoApiClient":302}],157:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserActionRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("action")&&(n.action=e.convertToType(i.action,"String")),i.hasOwnProperty("newPassword")&&(n.newPassword=e.convertToType(i.newPassword,"String")),i.hasOwnProperty("oldPassword")&&(n.oldPassword=e.convertToType(i.oldPassword,"String"))),n},t.prototype.action=void 0,t.prototype.newPassword=void 0,t.prototype.oldPassword=void 0,t})},{"../../../alfrescoApiClient":302}],158:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserFilterOrderRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("appId")&&(n.appId=e.convertToType(i.appId,"Integer")),i.hasOwnProperty("order")&&(n.order=e.convertToType(i.order,["Integer"]))),n},t.prototype.appId=void 0,t.prototype.order=void 0,t})},{"../../../alfrescoApiClient":302}],159:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/ProcessInstanceFilterRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ProcessInstanceFilterRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserProcessInstanceFilterRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.ProcessInstanceFilterRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appId")&&(o.appId=e.convertToType(n.appId,"Integer")),n.hasOwnProperty("filter")&&(o.filter=t.constructFromObject(n.filter)),n.hasOwnProperty("icon")&&(o.icon=e.convertToType(n.icon,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("index")&&(o.index=e.convertToType(n.index,"Integer")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("recent")&&(o.recent=e.convertToType(n.recent,"Boolean"))),o},i.prototype.appId=void 0,i.prototype.filter=void 0,i.prototype.icon=void 0,i.prototype.id=void 0,i.prototype.index=void 0,i.prototype.name=void 0,i.prototype.recent=void 0,i})},{"../../../alfrescoApiClient":302,"./ProcessInstanceFilterRepresentation":131}],160:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/GroupRepresentation","../model/LightAppRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./GroupRepresentation"),t("./LightAppRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.GroupRepresentation,n.ActivitiPublicRestApi.LightAppRepresentation))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("apps")&&(r.apps=e.convertToType(o.apps,[i])),o.hasOwnProperty("capabilities")&&(r.capabilities=e.convertToType(o.capabilities,["String"])),o.hasOwnProperty("company")&&(r.company=e.convertToType(o.company,"String")),o.hasOwnProperty("created")&&(r.created=e.convertToType(o.created,"Date")),o.hasOwnProperty("email")&&(r.email=e.convertToType(o.email,"String")),o.hasOwnProperty("externalId")&&(r.externalId=e.convertToType(o.externalId,"String")),o.hasOwnProperty("firstName")&&(r.firstName=e.convertToType(o.firstName,"String")),o.hasOwnProperty("fullname")&&(r.fullname=e.convertToType(o.fullname,"String")),o.hasOwnProperty("groups")&&(r.groups=e.convertToType(o.groups,[t])),o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"Integer")),o.hasOwnProperty("lastName")&&(r.lastName=e.convertToType(o.lastName,"String")),o.hasOwnProperty("lastUpdate")&&(r.lastUpdate=e.convertToType(o.lastUpdate,"Date")),o.hasOwnProperty("latestSyncTimeStamp")&&(r.latestSyncTimeStamp=e.convertToType(o.latestSyncTimeStamp,"Date")),o.hasOwnProperty("password")&&(r.password=e.convertToType(o.password,"String")),o.hasOwnProperty("pictureId")&&(r.pictureId=e.convertToType(o.pictureId,"Integer")),o.hasOwnProperty("status")&&(r.status=e.convertToType(o.status,"String")),o.hasOwnProperty("tenantId")&&(r.tenantId=e.convertToType(o.tenantId,"Integer")),o.hasOwnProperty("tenantName")&&(r.tenantName=e.convertToType(o.tenantName,"String")),o.hasOwnProperty("tenantPictureId")&&(r.tenantPictureId=e.convertToType(o.tenantPictureId,"Integer")),o.hasOwnProperty("type")&&(r.type=e.convertToType(o.type,"String"))),r},n.prototype.apps=void 0,n.prototype.capabilities=void 0,n.prototype.company=void 0,n.prototype.created=void 0,n.prototype.email=void 0,n.prototype.externalId=void 0,n.prototype.firstName=void 0,n.prototype.fullname=void 0,n.prototype.groups=void 0,n.prototype.id=void 0,n.prototype.lastName=void 0,n.prototype.lastUpdate=void 0,n.prototype.latestSyncTimeStamp=void 0,n.prototype.password=void 0,n.prototype.pictureId=void 0,n.prototype.status=void 0,n.prototype.tenantId=void 0,n.prototype.tenantName=void 0,n.prototype.tenantPictureId=void 0,n.prototype.type=void 0,n})},{"../../../alfrescoApiClient":302,"./GroupRepresentation":115,"./LightAppRepresentation":118}],161:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/TaskFilterRepresentation"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./TaskFilterRepresentation")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.UserTaskFilterRepresentation=r(n.ActivitiPublicRestApi.ApiClient,n.ActivitiPublicRestApi.TaskFilterRepresentation))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("appId")&&(o.appId=e.convertToType(n.appId,"Integer")),n.hasOwnProperty("filter")&&(o.filter=t.constructFromObject(n.filter)),n.hasOwnProperty("icon")&&(o.icon=e.convertToType(n.icon,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("index")&&(o.index=e.convertToType(n.index,"Integer")),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("recent")&&(o.recent=e.convertToType(n.recent,"Boolean"))),o},i.prototype.appId=void 0,i.prototype.filter=void 0,i.prototype.icon=void 0,i.prototype.id=void 0,i.prototype.index=void 0,i.prototype.name=void 0,i.prototype.recent=void 0,i})},{"../../../alfrescoApiClient":302,"./TaskFilterRepresentation":149}],162:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.ValidationErrorRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("defaultDescription")&&(n.defaultDescription=e.convertToType(i.defaultDescription,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("problem")&&(n.problem=e.convertToType(i.problem,"String")),i.hasOwnProperty("problemReference")&&(n.problemReference=e.convertToType(i.problemReference,"String")),i.hasOwnProperty("validatorSetName")&&(n.validatorSetName=e.convertToType(i.validatorSetName,"String")),i.hasOwnProperty("warning")&&(n.warning=e.convertToType(i.warning,"Boolean"))),n},t.prototype.defaultDescription=void 0,t.prototype.id=void 0,t.prototype.name=void 0,t.prototype.problem=void 0,t.prototype.problemReference=void 0,t.prototype.validatorSetName=void 0,t.prototype.warning=void 0,t})},{"../../../alfrescoApiClient":302}],163:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.ActivitiPublicRestApi||(n.ActivitiPublicRestApi={}),n.ActivitiPublicRestApi.VariableScopeRepresentation=r(n.ActivitiPublicRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("mapVariable")&&(n.mapVariable=e.convertToType(i.mapVariable,"String")),i.hasOwnProperty("mappedColumn")&&(n.mappedColumn=e.convertToType(i.mappedColumn,"String")),i.hasOwnProperty("mappedDataModel")&&(n.mappedDataModel=e.convertToType(i.mappedDataModel,"Integer")),i.hasOwnProperty("mappedEntity")&&(n.mappedEntity=e.convertToType(i.mappedEntity,"String")),i.hasOwnProperty("mappedVariableName")&&(n.mappedVariableName=e.convertToType(i.mappedVariableName,"String")),i.hasOwnProperty("processVariableName")&&(n.processVariableName=e.convertToType(i.processVariableName,"String")),i.hasOwnProperty("processVariableType")&&(n.processVariableType=e.convertToType(i.processVariableType,"String"))),n},t.prototype.mapVariable=void 0,t.prototype.mappedColumn=void 0,t.prototype.mappedDataModel=void 0,t.prototype.mappedEntity=void 0,t.prototype.mappedVariableName=void 0,t.prototype.processVariableName=void 0,t.prototype.processVariableType=void 0,t})},{"../../../alfrescoApiClient":302}],164:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","../model/Error","../model/LoginTicketEntry","../model/LoginRequest","../model/ValidateTicketEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("../model/Error"),t("../model/LoginTicketEntry"),t("../model/LoginRequest"),t("../model/ValidateTicketEntry")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.AuthenticationApi=r(n.AlfrescoAuthRestApi.ApiClient,n.AlfrescoAuthRestApi.Error,n.AlfrescoAuthRestApi.LoginTicketEntry,n.AlfrescoAuthRestApi.LoginRequest,n.AlfrescoAuthRestApi.ValidateTicketEntry))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.createTicket=function(e){var t=e;if(void 0==e||null==e)throw"Missing the required parameter 'loginRequest' when calling createTicket";var n={},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=i;return this.apiClient.callApi("/tickets","POST",n,o,r,s,t,a,p,l,c)},this.deleteTicket=function(){var e=null,t={},i={},n={},o={},r=["basicAuth"],s=["application/json"],a=["application/json"],p=null;return this.apiClient.callApi("/tickets/-me-","DELETE",t,i,n,o,e,r,s,a,p)},this.validateTicket=function(){var e=null,t={},i={},n={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=o;return this.apiClient.callApi("/tickets/-me-","GET",t,i,n,r,e,s,a,p,l)}};return r})},{"../../../alfrescoApiClient":302,"../model/Error":166,"../model/LoginRequest":168,"../model/LoginTicketEntry":169,"../model/ValidateTicketEntry":171}],165:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n){"function"==typeof e&&e.amd?e(["../../alfrescoApiClient","./model/Error","./model/ErrorError","./model/LoginRequest","./model/LoginTicketEntry","./model/LoginTicketEntryEntry","./model/ValidateTicketEntry","./model/ValidateTicketEntryEntry","./api/AuthenticationApi"],n):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports&&(i.exports=n(t("../../alfrescoApiClient"),t("./model/Error"),t("./model/ErrorError"),t("./model/LoginRequest"),t("./model/LoginTicketEntry"),t("./model/LoginTicketEntryEntry"),t("./model/ValidateTicketEntry"),t("./model/ValidateTicketEntryEntry"),t("./api/AuthenticationApi")))}(function(e,t,i,n,o,r,s,a,p){var l={ApiClient:e,Error:t,ErrorError:i,LoginRequest:n,LoginTicketEntry:o,LoginTicketEntryEntry:r,ValidateTicketEntry:s,ValidateTicketEntryEntry:a,AuthenticationApi:p};return l})},{"../../alfrescoApiClient":302,"./api/AuthenticationApi":164,"./model/Error":166,"./model/ErrorError":167,"./model/LoginRequest":168,"./model/LoginTicketEntry":169,"./model/LoginTicketEntryEntry":170,"./model/ValidateTicketEntry":171,"./model/ValidateTicketEntryEntry":172}],166:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","./ErrorError"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ErrorError")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.Error=r(n.AlfrescoAuthRestApi.ApiClient,n.AlfrescoAuthRestApi.ErrorError))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=n||new i,e.hasOwnProperty("error")&&(n.error=t.constructFromObject(e.error))),n},i.prototype.error=void 0,i})},{"../../../alfrescoApiClient":302,"./ErrorError":167}],167:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.ErrorError=r(n.AlfrescoAuthRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i,n){this.briefSummary=e,this.descriptionURL=t,this.stackTrace=i,this.statusCode=n};return t.constructFromObject=function(i,n){return i&&(n=n||new t,i.hasOwnProperty("errorKey")&&(n.errorKey=e.convertToType(i.errorKey,"String")),i.hasOwnProperty("briefSummary")&&(n.briefSummary=e.convertToType(i.briefSummary,"String")),i.hasOwnProperty("descriptionURL")&&(n.descriptionURL=e.convertToType(i.descriptionURL,"String")),i.hasOwnProperty("logId")&&(n.logId=e.convertToType(i.logId,"String")),i.hasOwnProperty("stackTrace")&&(n.stackTrace=e.convertToType(i.stackTrace,"String")),i.hasOwnProperty("statusCode")&&(n.statusCode=e.convertToType(i.statusCode,"Integer"))),n},t.prototype.errorKey=void 0,t.prototype.briefSummary=void 0,t.prototype.descriptionURL=void 0,t.prototype.logId=void 0,t.prototype.stackTrace=void 0,t.prototype.statusCode=void 0,t})},{"../../../alfrescoApiClient":302}],168:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.LoginRequest=r(n.AlfrescoAuthRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=n||new t,i.hasOwnProperty("userId")&&(n.userId=e.convertToType(i.userId,"String")),i.hasOwnProperty("password")&&(n.password=e.convertToType(i.password,"String"))),n},t.prototype.userId=void 0,t.prototype.password=void 0,t})},{"../../../alfrescoApiClient":302}],169:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","./LoginTicketEntryEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./LoginTicketEntryEntry")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.LoginTicketEntry=r(n.AlfrescoAuthRestApi.ApiClient,n.AlfrescoAuthRestApi.LoginTicketEntryEntry))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=n||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../../../alfrescoApiClient":302,"./LoginTicketEntryEntry":170}],170:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.LoginTicketEntryEntry=r(n.AlfrescoAuthRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=n||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")), +i.hasOwnProperty("userId")&&(n.userId=e.convertToType(i.userId,"String"))),n},t.prototype.id=void 0,t.prototype.userId=void 0,t})},{"../../../alfrescoApiClient":302}],171:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient","./ValidateTicketEntryEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient"),t("./ValidateTicketEntryEntry")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.ValidateTicketEntry=r(n.AlfrescoAuthRestApi.ApiClient,n.AlfrescoAuthRestApi.ValidateTicketEntryEntry))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=n||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../../../alfrescoApiClient":302,"./ValidateTicketEntryEntry":172}],172:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoAuthRestApi||(n.AlfrescoAuthRestApi={}),n.AlfrescoAuthRestApi.ValidateTicketEntryEntry=r(n.AlfrescoAuthRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=n||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.id=void 0,t})},{"../../../alfrescoApiClient":302}],173:[function(t,i,n){(function(n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["superagent"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("superagent")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ApiClient=r(n.superagent))}(void 0,function(e){var i=function(){this.basePath="https://localhost/alfresco/api/-default-/public/alfresco/versions/1".replace(/\/+$/,""),this.authentications={basicAuth:{type:"basic"}},this.defaultHeaders={},this.timeout=6e4};return i.prototype.paramToString=function(e){return void 0==e||null==e?"":e instanceof Date?e.toJSON():e.toString()},i.prototype.buildUrl=function(e,t){e.match(/^\//)||(e="/"+e);var i=this.basePath+e,n=this;return i=i.replace(/\{([\w-]+)\}/g,function(e,i){var o;return o=t.hasOwnProperty(i)?n.paramToString(t[i]):e,encodeURIComponent(o)})},i.prototype.isJsonMime=function(e){return Boolean(null!=e&&e.match(/^application\/json(;.*)?$/i))},i.prototype.jsonPreferredMime=function(e){for(var t=0;tt?e.substring(0,n):e,r=n>t?e.substring(n):"",s=i.parseDateTime(o),a=i.parseDateTimeZone(r);return s.setTime(s.getTime()+6e4*a),s},i.parseDateTime=function(e){var t=(e.split("+"),e.split(/[^0-9]/).map(function(e){return parseInt(e,10)}));return new Date(Date.UTC(t[0],t[1]-1||0,t[2]||1,t[3]||0,t[4]||0,t[5]||0,t[6]||0))},i.parseDateTimeZone=function(e){var t=/([\+\-])(\d{2}):?(\d{2})?/.exec(e);return null!==t?parseInt(t[1]+"1")*-1*(60*parseInt(t[2]))+parseInt(t[3]||0):0},i.convertToType=function(e,t){switch(t){case"Binary":return e;case"Boolean":return Boolean(e);case"Integer":return parseInt(e,10);case"Number":return parseFloat(e);case"String":return null!==e&&void 0!==e?String(e):e;case"Date":return e?this.parseDate(String(e)):null;default:if(t===Object)return e;if("function"==typeof t)return t.constructFromObject(e);if(Array.isArray(t)){var n=t[0];return e?e.map(function(e){return i.convertToType(e,n)}):null}if("object"===("undefined"==typeof t?"undefined":o(t))){var r,s;for(var a in t)if(t.hasOwnProperty(a)){r=a,s=t[a];break}var p={};for(var a in e)if(e.hasOwnProperty(a)){var l=i.convertToType(a,r),c=i.convertToType(e[a],s);p[l]=c}return p}return e}},i.instance=new i,i})}).call(this,t("buffer").Buffer)},{buffer:4,fs:3,superagent:25}],174:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/Error","../model/AssocTargetBody","../model/NodeAssocPaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/Error"),t("../model/AssocTargetBody"),t("../model/NodeAssocPaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.AssociationsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.AssocTargetBody,n.AlfrescoCoreRestApi.NodeAssocPaging))}(void 0,function(e,t,i,n){var o=function(t){this.apiClient=t||e.instance,this.addAssoc=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling addAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'assocTargetBody' when calling addAssoc";var n={sourceId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{sourceId}/targets","POST",n,o,r,s,i,a,p,l,c)},this.listSourceNodeAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'targetId' when calling listSourceNodeAssociations";var o={targetId:e},r={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{targetId}/sources","GET",o,r,s,a,i,p,l,c,u)},this.listTargetAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling listTargetAssociations";var o={sourceId:e},r={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{sourceId}/targets","GET",o,r,s,a,i,p,l,c,u)},this.removeAssoc=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling removeAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'targetId' when calling removeAssoc";var o={sourceId:e,targetId:t},r={assocType:i.assocType},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{sourceId}/targets/{targetId}","DELETE",o,r,s,a,n,p,l,c,u)}};return o})},{"../ApiClient":173,"../model/AssocTargetBody":197,"../model/Error":215,"../model/NodeAssocPaging":229}],175:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/Error","../model/AssocTargetBody","../model/NodeEntry","../model/NodeBody1","../model/AssocChildBody","../model/NodeSharedLinkEntry","../model/SharedLinkBody","../model/CopyBody","../model/RenditionBody","../model/SiteBody","../model/SiteEntry","../model/EmailSharedLinkBody","../model/NodeSharedLinkPaging","../model/DeletedNodeEntry","../model/DeletedNodesPaging","../model/NodePaging","../model/RenditionEntry","../model/RenditionPaging","../model/NodeAssocPaging","../model/NodeChildAssocPaging","../model/MoveBody","../model/NodeBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/Error"),t("../model/AssocTargetBody"),t("../model/NodeEntry"),t("../model/NodeBody1"),t("../model/AssocChildBody"),t("../model/NodeSharedLinkEntry"),t("../model/SharedLinkBody"),t("../model/CopyBody"),t("../model/RenditionBody"),t("../model/SiteBody"),t("../model/SiteEntry"),t("../model/EmailSharedLinkBody"),t("../model/NodeSharedLinkPaging"),t("../model/DeletedNodeEntry"),t("../model/DeletedNodesPaging"),t("../model/NodePaging"),t("../model/RenditionEntry"),t("../model/RenditionPaging"),t("../model/NodeAssocPaging"),t("../model/NodeChildAssocPaging"),t("../model/MoveBody"),t("../model/NodeBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ChangesApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.AssocTargetBody,n.AlfrescoCoreRestApi.NodeEntry,n.AlfrescoCoreRestApi.NodeBody1,n.AlfrescoCoreRestApi.AssocChildBody,n.AlfrescoCoreRestApi.NodeSharedLinkEntry,n.AlfrescoCoreRestApi.SharedLinkBody,n.AlfrescoCoreRestApi.CopyBody,n.AlfrescoCoreRestApi.RenditionBody,n.AlfrescoCoreRestApi.SiteBody,n.AlfrescoCoreRestApi.SiteEntry,n.AlfrescoCoreRestApi.EmailSharedLinkBody,n.AlfrescoCoreRestApi.NodeSharedLinkPaging,n.AlfrescoCoreRestApi.DeletedNodeEntry,n.AlfrescoCoreRestApi.DeletedNodesPaging,n.AlfrescoCoreRestApi.NodePaging,n.AlfrescoCoreRestApi.RenditionEntry,n.AlfrescoCoreRestApi.RenditionPaging,n.AlfrescoCoreRestApi.NodeAssocPaging,n.AlfrescoCoreRestApi.NodeChildAssocPaging,n.AlfrescoCoreRestApi.MoveBody,n.AlfrescoCoreRestApi.NodeBody))}(void 0,function(e,t,i,n,o,r,s,a,p,l,c,u,d,f,y,m,h,v,A,b,g,C,R){var P=function(t){this.apiClient=t||e.instance,this.addAssoc=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling addAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'assocTargetBody' when calling addAssoc";var n={sourceId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{sourceId}/targets","POST",n,o,r,s,i,a,p,l,c)},this.addNode=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addNode";if(void 0==t||null==t)throw"Missing the required parameter 'nodeBody' when calling addNode";var r={nodeId:e},s={autoRename:i.autoRename,include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json","multipart/form-data"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}/children","POST",r,s,a,p,o,l,c,u,d)},this.addSecondaryChildAssoc=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling addSecondaryChildAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'assocChildBody' when calling addSecondaryChildAssoc";var n={parentId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{parentId}/secondary-children","POST",n,o,r,s,i,a,p,l,c)},this.addSharedLink=function(e,t){t=t||{};var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'sharedLinkBody' when calling addSharedLink";var n={},o={include:this.apiClient.buildCollectionParam(t.include,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=s;return this.apiClient.callApi("/shared-links","POST",n,o,r,a,i,p,l,c,u)},this.copyNode=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling copyNode";if(void 0==t||null==t)throw"Missing the required parameter 'copyBody' when calling copyNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}/copy","POST",r,s,a,p,o,l,c,u,d)},this.createRendition=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling createRendition";if(void 0==t||null==t)throw"Missing the required parameter 'renditionBody' when calling createRendition";var n={nodeId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/renditions","POST",n,o,r,s,i,a,p,l,c)},this.createSite=function(e,t){t=t||{};var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'siteBody' when calling createSite";var n={},o={skipConfiguration:t.skipConfiguration,skipAddToFavorites:t.skipAddToFavorites},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=u;return this.apiClient.callApi("/sites","POST",n,o,r,s,i,a,p,l,c)},this.deleteNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling deleteNode";var n={nodeId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}","DELETE",n,o,r,s,i,a,p,l,c)},this.deleteSharedLink=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling deleteSharedLink";var i={sharedId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/shared-links/{sharedId}","DELETE",i,n,o,r,t,s,a,p,l)},this.deleteSite=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling deleteSite";var n={siteId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/sites/{siteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.emailSharedLink=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling emailSharedLink";if(void 0==t||null==t)throw"Missing the required parameter 'emailSharedLinkBody' when calling emailSharedLink";var n={sharedId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/shared-links/{sharedId}/email","POST",n,o,r,s,i,a,p,l,c)},this.findSharedLinks=function(e){e=e||{};var t=null,i={},n={where:e.where,include:this.apiClient.buildCollectionParam(e.include,"csv"),fields:this.apiClient.buildCollectionParam(e.fields,"csv")},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=f;return this.apiClient.callApi("/shared-links","GET",i,n,o,r,t,s,a,p,l)},this.getDeletedNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getDeletedNode";var n={nodeId:e},o={include:this.apiClient.buildCollectionParam(t.include,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=y;return this.apiClient.callApi("/deleted-nodes/{nodeId}","GET",n,o,r,s,i,a,p,l,c)},this.getDeletedNodes=function(e){e=e||{};var t=null,i={},n={skipCount:e.skipCount,maxItems:e.maxItems,include:this.apiClient.buildCollectionParam(e.include,"csv")},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=m;return this.apiClient.callApi("/deleted-nodes","GET",i,n,o,r,t,s,a,p,l)},this.getFileContent=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getFileContent";var n={nodeId:e},o={attachment:t.attachment},r={"If-Modified-Since":t.ifModifiedSince},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/content","GET",n,o,r,s,i,a,p,l,c)},this.getNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNode";var o={nodeId:e},r={include:this.apiClient.buildCollectionParam(t.include,"csv"),relativePath:t.relativePath,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{nodeId}","GET",o,r,s,a,i,p,l,c,u)},this.getNodeChildren=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNodeChildren";var n={nodeId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,orderBy:t.orderBy,where:t.where,include:this.apiClient.buildCollectionParam(t.include,"csv"),relativePath:t.relativePath,includeSource:t.includeSource,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=h;return this.apiClient.callApi("/nodes/{nodeId}/children","GET",n,o,r,s,i,a,p,l,c)},this.getRendition=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRendition";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getRendition";var n={nodeId:e,renditionId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=v;return this.apiClient.callApi("/nodes/{nodeId}/renditions/{renditionId}","GET",n,o,r,s,i,a,p,l,c)},this.getRenditionContent=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRenditionContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getRenditionContent";var o={nodeId:e,renditionId:t},r={attachment:i.attachment},s={"If-Modified-Since":i.ifModifiedSince},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{nodeId}/renditions/{renditionId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getRenditions=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRenditions";var i={nodeId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=A;return this.apiClient.callApi("/nodes/{nodeId}/renditions","GET",i,n,o,r,t,s,a,p,l)},this.getSharedLink=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLink";var n={sharedId:e},o={include:this.apiClient.buildCollectionParam(t.include,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=s;return this.apiClient.callApi("/shared-links/{sharedId}","GET",n,o,r,a,i,p,l,c,u)},this.getSharedLinkContent=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkContent";var n={sharedId:e},o={attachment:t.attachment},r={"If-Modified-Since":t.ifModifiedSince},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/shared-links/{sharedId}/content","GET",n,o,r,s,i,a,p,l,c)},this.getSharedLinkRenditionContent=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkRenditionContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getSharedLinkRenditionContent";var o={sharedId:e,renditionId:t},r={attachment:i.attachment},s={"If-Modified-Since":i.ifModifiedSince},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/shared-links/{sharedId}/renditions/{renditionId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getSharedLinkRenditions=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkRenditions";var i={sharedId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=A;return this.apiClient.callApi("/shared-links/{sharedId}/renditions","GET",i,n,o,r,t,s,a,p,l)},this.listParents=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'childId' when calling listParents";var n={childId:e},o={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=b;return this.apiClient.callApi("/nodes/{childId}/parents","GET",n,o,r,s,i,a,p,l,c)},this.listSecondaryChildAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling listSecondaryChildAssociations";var n={parentId:e},o={assocType:t.assocType,where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=g;return this.apiClient.callApi("/nodes/{parentId}/secondary-children","GET",n,o,r,s,i,a,p,l,c)},this.listSourceNodeAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'targetId' when calling listSourceNodeAssociations";var n={targetId:e},o={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=b;return this.apiClient.callApi("/nodes/{targetId}/sources","GET",n,o,r,s,i,a,p,l,c)},this.listTargetAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling listTargetAssociations";var n={sourceId:e},o={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=b;return this.apiClient.callApi("/nodes/{sourceId}/targets","GET",n,o,r,s,i,a,p,l,c)},this.liveSearchNodes=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'term' when calling liveSearchNodes";var n={},o={skipCount:t.skipCount,maxItems:t.maxItems,term:e,rootNodeId:t.rootNodeId,nodeType:t.nodeType,include:t.include,orderBy:t.orderBy,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=h;return this.apiClient.callApi("/queries/live-search-nodes","GET",n,o,r,s,i,a,p,l,c)},this.moveNode=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling moveNode";if(void 0==t||null==t)throw"Missing the required parameter 'moveBody' when calling moveNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}/move","POST",r,s,a,p,o,l,c,u,d)},this.purgeDeletedNode=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling purgeDeletedNode";var i={nodeId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/deleted-nodes/{nodeId}","DELETE",i,n,o,r,t,s,a,p,l)},this.removeAssoc=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sourceId' when calling removeAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'targetId' when calling removeAssoc";var o={sourceId:e,targetId:t},r={assocType:i.assocType},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{sourceId}/targets/{targetId}","DELETE",o,r,s,a,n,p,l,c,u)},this.removeSecondaryChildAssoc=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling removeSecondaryChildAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'childId' when calling removeSecondaryChildAssoc";var o={parentId:e,childId:t},r={assocType:i.assocType},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{parentId}/secondary-children/{childId}","DELETE",o,r,s,a,n,p,l,c,u)},this.restoreNode=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling restoreNode";var i={nodeId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=n;return this.apiClient.callApi("/deleted-nodes/{nodeId}/restore","POST",i,o,r,s,t,a,p,l,c)},this.updateFileContent=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateFileContent";if(void 0==t||null==t)throw"Missing the required parameter 'contentBody' when calling updateFileContent";var r={nodeId:e},s={majorVersion:i.majorVersion,comment:i.comment,include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/octet-stream"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}/content","PUT",r,s,a,p,o,l,c,u,d)},this.updateNode=function(e,t,i){i=i||{};var o=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateNode";if(void 0==t||null==t)throw"Missing the required parameter 'nodeBody' when calling updateNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(i.include,"csv"),fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=n;return this.apiClient.callApi("/nodes/{nodeId}","PUT",r,s,a,p,o,l,c,u,d)}};return P})},{"../ApiClient":173,"../model/AssocChildBody":195,"../model/AssocTargetBody":197,"../model/CopyBody":207,"../model/DeletedNodeEntry":209,"../model/DeletedNodesPaging":212,"../model/EmailSharedLinkBody":214,"../model/Error":215,"../model/MoveBody":225,"../model/NodeAssocPaging":229,"../model/NodeBody":231,"../model/NodeBody1":232,"../model/NodeChildAssocPaging":235,"../model/NodeEntry":237,"../model/NodePaging":241,"../model/NodeSharedLinkEntry":244,"../model/NodeSharedLinkPaging":245,"../model/RenditionBody":268,"../model/RenditionEntry":269,"../model/RenditionPaging":270,"../model/SharedLinkBody":272,"../model/SiteBody":274,"../model/SiteEntry":278}],176:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/NodeEntry","../model/NodeBody1","../model/Error","../model/AssocChildBody","../model/NodePaging","../model/NodeAssocPaging","../model/NodeChildAssocPaging","../model/MoveBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/NodeEntry"),t("../model/NodeBody1"),t("../model/Error"),t("../model/AssocChildBody"),t("../model/NodePaging"),t("../model/NodeAssocPaging"),t("../model/NodeChildAssocPaging"),t("../model/MoveBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ChildAssociationsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeEntry,n.AlfrescoCoreRestApi.NodeBody1,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.AssocChildBody,n.AlfrescoCoreRestApi.NodePaging,n.AlfrescoCoreRestApi.NodeAssocPaging,n.AlfrescoCoreRestApi.NodeChildAssocPaging,n.AlfrescoCoreRestApi.MoveBody))}(void 0,function(e,t,i,n,o,r,s,a,p){var l=function(i){this.apiClient=i||e.instance,this.addNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addNode";if(void 0==i||null==i)throw"Missing the required parameter 'nodeBody' when calling addNode";var r={nodeId:e},s={autoRename:n.autoRename,include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json","multipart/form-data"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/children","POST",r,s,a,p,o,l,c,u,d)},this.addSecondaryChildAssoc=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling addSecondaryChildAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'assocChildBody' when calling addSecondaryChildAssoc";var n={parentId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{parentId}/secondary-children","POST",n,o,r,s,i,a,p,l,c)},this.deleteNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling deleteNode";var n={nodeId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}","DELETE",n,o,r,s,i,a,p,l,c)},this.getNodeChildren=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNodeChildren";var n={nodeId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,orderBy:t.orderBy,where:t.where,include:this.apiClient.buildCollectionParam(t.include,"csv"), +relativePath:t.relativePath,includeSource:t.includeSource,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/nodes/{nodeId}/children","GET",n,o,s,a,i,p,l,c,u)},this.listParents=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'childId' when calling listParents";var n={childId:e},o={where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=s;return this.apiClient.callApi("/nodes/{childId}/parents","GET",n,o,r,a,i,p,l,c,u)},this.listSecondaryChildAssociations=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling listSecondaryChildAssociations";var n={parentId:e},o={assocType:t.assocType,where:t.where,include:t.include,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/nodes/{parentId}/secondary-children","GET",n,o,r,s,i,p,l,c,u)},this.moveNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling moveNode";if(void 0==i||null==i)throw"Missing the required parameter 'moveBody' when calling moveNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/move","POST",r,s,a,p,o,l,c,u,d)},this.removeSecondaryChildAssoc=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'parentId' when calling removeSecondaryChildAssoc";if(void 0==t||null==t)throw"Missing the required parameter 'childId' when calling removeSecondaryChildAssoc";var o={parentId:e,childId:t},r={assocType:i.assocType},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{parentId}/secondary-children/{childId}","DELETE",o,r,s,a,n,p,l,c,u)}};return l})},{"../ApiClient":173,"../model/AssocChildBody":195,"../model/Error":215,"../model/MoveBody":225,"../model/NodeAssocPaging":229,"../model/NodeBody1":232,"../model/NodeChildAssocPaging":235,"../model/NodeEntry":237,"../model/NodePaging":241}],177:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/CommentBody","../model/CommentEntry","../model/Error","../model/CommentPaging","../model/CommentBody1"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/CommentBody"),t("../model/CommentEntry"),t("../model/Error"),t("../model/CommentPaging"),t("../model/CommentBody1")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.CommentBody,n.AlfrescoCoreRestApi.CommentEntry,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.CommentPaging,n.AlfrescoCoreRestApi.CommentBody1))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.addComment=function(e,t){var n=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addComment";if(void 0==t||null==t)throw"Missing the required parameter 'commentBody' when calling addComment";var o={nodeId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/nodes/{nodeId}/comments","POST",o,r,s,a,n,p,l,c,u)},this.getComments=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getComments";var n={nodeId:e},r={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/nodes/{nodeId}/comments","GET",n,r,s,a,i,p,l,c,u)},this.removeComment=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling removeComment";if(void 0==t||null==t)throw"Missing the required parameter 'commentId' when calling removeComment";var n={nodeId:e,commentId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/comments/{commentId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateComment=function(e,t,n,o){o=o||{};var r=n;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateComment";if(void 0==t||null==t)throw"Missing the required parameter 'commentId' when calling updateComment";if(void 0==n||null==n)throw"Missing the required parameter 'commentBody' when calling updateComment";var s={nodeId:e,commentId:t},a={fields:this.apiClient.buildCollectionParam(o.fields,"csv")},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f=i;return this.apiClient.callApi("/nodes/{nodeId}/comments/{commentId}","PUT",s,a,p,l,r,c,u,d,f)}};return s})},{"../ApiClient":173,"../model/CommentBody":200,"../model/CommentBody1":201,"../model/CommentEntry":202,"../model/CommentPaging":203,"../model/Error":215}],178:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/FavoriteEntry","../model/FavoriteBody","../model/Error","../model/FavoritePaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/FavoriteEntry"),t("../model/FavoriteBody"),t("../model/Error"),t("../model/FavoritePaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoritesApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.FavoriteEntry,n.AlfrescoCoreRestApi.FavoriteBody,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.FavoritePaging))}(void 0,function(e,t,i,n,o){var r=function(i){this.apiClient=i||e.instance,this.addFavorite=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling addFavorite";if(void 0==i||null==i)throw"Missing the required parameter 'favoriteBody' when calling addFavorite";var o={personId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/people/{personId}/favorites","POST",o,r,s,a,n,p,l,c,u)},this.getFavorite=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavorite";if(void 0==i||null==i)throw"Missing the required parameter 'favoriteId' when calling getFavorite";var r={personId:e,favoriteId:i},s={fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/people/{personId}/favorites/{favoriteId}","GET",r,s,a,p,o,l,c,u,d)},this.getFavorites=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavorites";var n={personId:e},r={skipCount:t.skipCount,maxItems:t.maxItems,where:t.where,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/people/{personId}/favorites","GET",n,r,s,a,i,p,l,c,u)},this.removeFavoriteSite=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling removeFavoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'favoriteId' when calling removeFavoriteSite";var n={personId:e,favoriteId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/people/{personId}/favorites/{favoriteId}","DELETE",n,o,r,s,i,a,p,l,c)}};return r})},{"../ApiClient":173,"../model/Error":215,"../model/FavoriteBody":218,"../model/FavoriteEntry":219,"../model/FavoritePaging":220}],179:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/PersonNetworkEntry","../model/Error"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/PersonNetworkEntry"),t("../model/Error")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NetworksApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PersonNetworkEntry,n.AlfrescoCoreRestApi.Error))}(void 0,function(e,t,i){var n=function(i){this.apiClient=i||e.instance,this.getNetwork=function(e,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'networkId' when calling getNetwork";var o={networkId:e},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/networks/{networkId}","GET",o,r,s,a,n,p,l,c,u)}};return n})},{"../ApiClient":173,"../model/Error":215,"../model/PersonNetworkEntry":254}],180:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/NodeEntry","../model/NodeBody1","../model/Error","../model/CopyBody","../model/DeletedNodeEntry","../model/DeletedNodesPaging","../model/NodePaging","../model/MoveBody","../model/NodeBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/NodeEntry"),t("../model/NodeBody1"),t("../model/Error"),t("../model/CopyBody"),t("../model/DeletedNodeEntry"),t("../model/DeletedNodesPaging"),t("../model/NodePaging"),t("../model/MoveBody"),t("../model/NodeBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodesApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeEntry,n.AlfrescoCoreRestApi.NodeBody1,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.CopyBody,n.AlfrescoCoreRestApi.DeletedNodeEntry,n.AlfrescoCoreRestApi.DeletedNodesPaging,n.AlfrescoCoreRestApi.NodePaging,n.AlfrescoCoreRestApi.MoveBody,n.AlfrescoCoreRestApi.NodeBody))}(void 0,function(e,t,i,n,o,r,s,a,p,l){var c=function(i){this.apiClient=i||e.instance,this.addNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addNode";if(void 0==i||null==i)throw"Missing the required parameter 'nodeBody' when calling addNode";var r={nodeId:e},s={autoRename:n.autoRename,include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json","multipart/form-data"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/children","POST",r,s,a,p,o,l,c,u,d)},this.copyNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling copyNode";if(void 0==i||null==i)throw"Missing the required parameter 'copyBody' when calling copyNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/copy","POST",r,s,a,p,o,l,c,u,d)},this.deleteNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling deleteNode";var n={nodeId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}","DELETE",n,o,r,s,i,a,p,l,c)},this.getDeletedNode=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getDeletedNode";var n={nodeId:e},o={include:this.apiClient.buildCollectionParam(t.include,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/deleted-nodes/{nodeId}","GET",n,o,s,a,i,p,l,c,u)},this.getDeletedNodes=function(e){e=e||{};var t=null,i={},n={skipCount:e.skipCount,maxItems:e.maxItems,include:this.apiClient.buildCollectionParam(e.include,"csv")},o={},r={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=s;return this.apiClient.callApi("/deleted-nodes","GET",i,n,o,r,t,a,p,l,c)},this.getFileContent=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getFileContent";var n={nodeId:e},o={attachment:t.attachment},r={"If-Modified-Since":t.ifModifiedSince},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c="Binary";return this.apiClient.callApi("/nodes/{nodeId}/content","GET",n,o,r,s,i,a,p,l,c)},this.getNode=function(e,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNode";var o={nodeId:e},r={include:this.apiClient.buildCollectionParam(i.include,"csv"),relativePath:i.relativePath,fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/nodes/{nodeId}","GET",o,r,s,a,n,p,l,c,u)},this.getNodeChildren=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNodeChildren";var n={nodeId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,orderBy:t.orderBy,where:t.where,include:this.apiClient.buildCollectionParam(t.include,"csv"),relativePath:t.relativePath,includeSource:t.includeSource,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/nodes/{nodeId}/children","GET",n,o,r,s,i,p,l,c,u)},this.moveNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling moveNode";if(void 0==i||null==i)throw"Missing the required parameter 'moveBody' when calling moveNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/move","POST",r,s,a,p,o,l,c,u,d)},this.purgeDeletedNode=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling purgeDeletedNode";var i={nodeId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/deleted-nodes/{nodeId}","DELETE",i,n,o,r,t,s,a,p,l)},this.restoreNode=function(e){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling restoreNode";var n={nodeId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=t;return this.apiClient.callApi("/deleted-nodes/{nodeId}/restore","POST",n,o,r,s,i,a,p,l,c)},this.updateFileContent=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateFileContent";if(void 0==i||null==i)throw"Missing the required parameter 'contentBody' when calling updateFileContent";var r={nodeId:e},s={majorVersion:n.majorVersion,comment:n.comment,include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/octet-stream"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/content","PUT",r,s,a,p,o,l,c,u,d)},this.updateNode=function(e,i,n){n=n||{};var o=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling updateNode";if(void 0==i||null==i)throw"Missing the required parameter 'nodeBody' when calling updateNode";var r={nodeId:e},s={include:this.apiClient.buildCollectionParam(n.include,"csv"),fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}","PUT",r,s,a,p,o,l,c,u,d)}};return c})},{"../ApiClient":173,"../model/CopyBody":207,"../model/DeletedNodeEntry":209,"../model/DeletedNodesPaging":212,"../model/Error":215,"../model/MoveBody":225,"../model/NodeBody":231,"../model/NodeBody1":232,"../model/NodeEntry":237,"../model/NodePaging":241}],181:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/FavoriteEntry","../model/FavoriteBody","../model/Error","../model/SiteMembershipBody","../model/SiteMembershipRequestEntry","../model/FavoriteSiteBody","../model/InlineResponse201","../model/ActivityPaging","../model/SiteEntry","../model/SitePaging","../model/FavoritePaging","../model/PersonEntry","../model/PersonNetworkEntry","../model/PersonNetworkPaging","../model/PreferenceEntry","../model/PreferencePaging","../model/SiteMembershipRequestPaging","../model/SiteMembershipBody1"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/FavoriteEntry"),t("../model/FavoriteBody"),t("../model/Error"),t("../model/SiteMembershipBody"),t("../model/SiteMembershipRequestEntry"),t("../model/FavoriteSiteBody"),t("../model/InlineResponse201"),t("../model/ActivityPaging"),t("../model/SiteEntry"),t("../model/SitePaging"),t("../model/FavoritePaging"),t("../model/PersonEntry"),t("../model/PersonNetworkEntry"),t("../model/PersonNetworkPaging"),t("../model/PreferenceEntry"),t("../model/PreferencePaging"),t("../model/SiteMembershipRequestPaging"),t("../model/SiteMembershipBody1")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PeopleApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.FavoriteEntry,n.AlfrescoCoreRestApi.FavoriteBody,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.SiteMembershipBody,n.AlfrescoCoreRestApi.SiteMembershipRequestEntry,n.AlfrescoCoreRestApi.FavoriteSiteBody,n.AlfrescoCoreRestApi.InlineResponse201,n.AlfrescoCoreRestApi.ActivityPaging,n.AlfrescoCoreRestApi.SiteEntry,n.AlfrescoCoreRestApi.SitePaging,n.AlfrescoCoreRestApi.FavoritePaging,n.AlfrescoCoreRestApi.PersonEntry,n.AlfrescoCoreRestApi.PersonNetworkEntry,n.AlfrescoCoreRestApi.PersonNetworkPaging,n.AlfrescoCoreRestApi.PreferenceEntry,n.AlfrescoCoreRestApi.PreferencePaging,n.AlfrescoCoreRestApi.SiteMembershipRequestPaging,n.AlfrescoCoreRestApi.SiteMembershipBody1))}(void 0,function(e,t,i,n,o,r,s,a,p,l,c,u,d,f,y,m,h,v,A){var b=function(i){this.apiClient=i||e.instance,this.addFavorite=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling addFavorite";if(void 0==i||null==i)throw"Missing the required parameter 'favoriteBody' when calling addFavorite";var o={personId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/people/{personId}/favorites","POST",o,r,s,a,n,p,l,c,u)},this.addSiteMembershipRequest=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling addSiteMembershipRequest";if(void 0==t||null==t)throw"Missing the required parameter 'siteMembershipBody' when calling addSiteMembershipRequest";var n={personId:e},o={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/people/{personId}/site-membership-requests","POST",n,o,s,a,i,p,l,c,u)},this.deleteFavoriteSite=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling deleteFavoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling deleteFavoriteSite";var n={personId:e,siteId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/people/{personId}/favorite-sites/{siteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.favoriteSite=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling favoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'favoriteSiteBody' when calling favoriteSite";var n={personId:e},o={},r={},s={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/people/{personId}/favorite-sites","POST",n,o,r,s,i,p,l,c,u)},this.getActivities=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getActivities";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,who:t.who,siteId:t.siteId,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],l=["application/json"],c=["application/json"],u=p;return this.apiClient.callApi("/people/{personId}/activities","GET",n,o,r,s,i,a,l,c,u)},this.getFavorite=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavorite";if(void 0==i||null==i)throw"Missing the required parameter 'favoriteId' when calling getFavorite";var r={personId:e,favoriteId:i},s={fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/people/{personId}/favorites/{favoriteId}","GET",r,s,a,p,o,l,c,u,d)},this.getFavoriteSite=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling getFavoriteSite";var o={personId:e,siteId:t},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],c=["application/json"],u=["application/json"],d=l;return this.apiClient.callApi("/people/{personId}/favorite-sites/{siteId}","GET",o,r,s,a,n,p,c,u,d)},this.getFavoriteSites=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavoriteSites";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],u=c;return this.apiClient.callApi("/people/{personId}/favorite-sites","GET",n,o,r,s,i,a,p,l,u)},this.getFavorites=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getFavorites";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,where:t.where,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=u;return this.apiClient.callApi("/people/{personId}/favorites","GET",n,o,r,s,i,a,p,l,c)},this.getPerson=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPerson";var n={personId:e},o={fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=d;return this.apiClient.callApi("/people/{personId}","GET",n,o,r,s,i,a,p,l,c)},this.getPersonNetwork=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPersonNetwork";if(void 0==t||null==t)throw"Missing the required parameter 'networkId' when calling getPersonNetwork";var o={personId:e,networkId:t},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=f;return this.apiClient.callApi("/people/{personId}/networks/{networkId}","GET",o,r,s,a,n,p,l,c,u)},this.getPersonNetworks=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPersonNetworks";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=y;return this.apiClient.callApi("/people/{personId}/networks","GET",n,o,r,s,i,a,p,l,c)},this.getPreference=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPreference";if(void 0==t||null==t)throw"Missing the required parameter 'preferenceName' when calling getPreference";var o={personId:e,preferenceName:t},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=m;return this.apiClient.callApi("/people/{personId}/preferences/{preferenceName}","GET",o,r,s,a,n,p,l,c,u)},this.getPreferences=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getPreferences";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=h;return this.apiClient.callApi("/people/{personId}/preferences","GET",n,o,r,s,i,a,p,l,c)},this.getSiteMembership=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getSiteMembership";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,orderBy:t.orderBy,relations:this.apiClient.buildCollectionParam(t.relations,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],u=c;return this.apiClient.callApi("/people/{personId}/sites","GET",n,o,r,s,i,a,p,l,u)},this.getSiteMembershipRequest=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getSiteMembershipRequest";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling getSiteMembershipRequest";var o={personId:e,siteId:t},s={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=r;return this.apiClient.callApi("/people/{personId}/site-membership-requests/{siteId}","GET",o,s,a,p,n,l,c,u,d)},this.getSiteMembershipRequests=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling getSiteMembershipRequests";var n={personId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=v;return this.apiClient.callApi("/people/{personId}/site-membership-requests","GET",n,o,r,s,i,a,p,l,c)},this.removeFavoriteSite=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling removeFavoriteSite";if(void 0==t||null==t)throw"Missing the required parameter 'favoriteId' when calling removeFavoriteSite";var n={personId:e,favoriteId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/people/{personId}/favorites/{favoriteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.removeSiteMembershipRequest=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling removeSiteMembershipRequest";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling removeSiteMembershipRequest";var n={personId:e,siteId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/people/{personId}/site-membership-requests/{siteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateSiteMembershipRequest=function(e,t,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'personId' when calling updateSiteMembershipRequest";if(void 0==t||null==t)throw"Missing the required parameter 'siteId' when calling updateSiteMembershipRequest";if(void 0==i||null==i)throw"Missing the required parameter 'siteMembershipBody' when calling updateSiteMembershipRequest";var o={personId:e,siteId:t},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/people/{personId}/site-membership-requests/{siteId}","PUT",o,r,s,a,n,p,l,c,u)}};return b})},{"../ApiClient":173,"../model/ActivityPaging":193,"../model/Error":215,"../model/FavoriteBody":218,"../model/FavoriteEntry":219,"../model/FavoritePaging":220,"../model/FavoriteSiteBody":222,"../model/InlineResponse201":223,"../model/PersonEntry":252,"../model/PersonNetworkEntry":254,"../model/PersonNetworkPaging":255,"../model/PreferenceEntry":258,"../model/PreferencePaging":259,"../model/SiteEntry":278,"../model/SiteMembershipBody":284,"../model/SiteMembershipBody1":285,"../model/SiteMembershipRequestEntry":287,"../model/SiteMembershipRequestPaging":288,"../model/SitePaging":290}],182:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/Error","../model/NodePaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/Error"),t("../model/NodePaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SearchApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.NodePaging))}(void 0,function(e,t,i){var n=function(t){this.apiClient=t||e.instance,this.findNodes=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'term' when calling findNodes";var o={},r={skipCount:t.skipCount,maxItems:t.maxItems,term:e,rootNodeId:t.rootNodeId,nodeType:t.nodeType,include:t.include,orderBy:t.orderBy,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/queries/nodes","GET",o,r,s,a,n,p,l,c,u)}};return n})},{"../ApiClient":173,"../model/Error":215,"../model/NodePaging":241}],183:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/RatingEntry","../model/Error","../model/RatingPaging","../model/RatingBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/RatingEntry"),t("../model/Error"),t("../model/RatingPaging"),t("../model/RatingBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RatingEntry,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.RatingPaging,n.AlfrescoCoreRestApi.RatingBody)); +}(void 0,function(e,t,i,n,o){var r=function(i){this.apiClient=i||e.instance,this.getRating=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRating";if(void 0==i||null==i)throw"Missing the required parameter 'ratingId' when calling getRating";var r={nodeId:e,ratingId:i},s={fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/nodes/{nodeId}/ratings/{ratingId}","GET",r,s,a,p,o,l,c,u,d)},this.getRatings=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRatings";var o={nodeId:e},r={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{nodeId}/ratings","GET",o,r,s,a,i,p,l,c,u)},this.rate=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling rate";if(void 0==i||null==i)throw"Missing the required parameter 'ratingBody' when calling rate";var o={nodeId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/nodes/{nodeId}/ratings","POST",o,r,s,a,n,p,l,c,u)},this.removeRating=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling removeRating";if(void 0==t||null==t)throw"Missing the required parameter 'ratingId' when calling removeRating";var n={nodeId:e,ratingId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/ratings/{ratingId}","DELETE",n,o,r,s,i,a,p,l,c)}};return r})},{"../ApiClient":173,"../model/Error":215,"../model/RatingBody":263,"../model/RatingEntry":264,"../model/RatingPaging":265}],184:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/RenditionBody","../model/Error","../model/RenditionEntry","../model/RenditionPaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/RenditionBody"),t("../model/Error"),t("../model/RenditionEntry"),t("../model/RenditionPaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RenditionBody,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.RenditionEntry,n.AlfrescoCoreRestApi.RenditionPaging))}(void 0,function(e,t,i,n,o){var r=function(t){this.apiClient=t||e.instance,this.createRendition=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling createRendition";if(void 0==t||null==t)throw"Missing the required parameter 'renditionBody' when calling createRendition";var n={nodeId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/renditions","POST",n,o,r,s,i,a,p,l,c)},this.getRendition=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRendition";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getRendition";var o={nodeId:e,renditionId:t},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{nodeId}/renditions/{renditionId}","GET",o,r,s,a,i,p,l,c,u)},this.getRenditionContent=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRenditionContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getRenditionContent";var o={nodeId:e,renditionId:t},r={attachment:i.attachment},s={"If-Modified-Since":i.ifModifiedSince},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/nodes/{nodeId}/renditions/{renditionId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getRenditions=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getRenditions";var i={nodeId:e},n={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/nodes/{nodeId}/renditions","GET",i,n,r,s,t,a,p,l,c)},this.getSharedLinkRenditionContent=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkRenditionContent";if(void 0==t||null==t)throw"Missing the required parameter 'renditionId' when calling getSharedLinkRenditionContent";var o={sharedId:e,renditionId:t},r={attachment:i.attachment},s={"If-Modified-Since":i.ifModifiedSince},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=null;return this.apiClient.callApi("/shared-links/{sharedId}/renditions/{renditionId}/content","GET",o,r,s,a,n,p,l,c,u)},this.getSharedLinkRenditions=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkRenditions";var i={sharedId:e},n={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/shared-links/{sharedId}/renditions","GET",i,n,r,s,t,a,p,l,c)}};return r})},{"../ApiClient":173,"../model/Error":215,"../model/RenditionBody":268,"../model/RenditionEntry":269,"../model/RenditionPaging":270}],185:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/Error","../model/NodeSharedLinkEntry","../model/SharedLinkBody","../model/EmailSharedLinkBody","../model/NodeSharedLinkPaging"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/Error"),t("../model/NodeSharedLinkEntry"),t("../model/SharedLinkBody"),t("../model/EmailSharedLinkBody"),t("../model/NodeSharedLinkPaging")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SharedlinksApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.NodeSharedLinkEntry,n.AlfrescoCoreRestApi.SharedLinkBody,n.AlfrescoCoreRestApi.EmailSharedLinkBody,n.AlfrescoCoreRestApi.NodeSharedLinkPaging))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.addSharedLink=function(e,t){t=t||{};var n=e;if(void 0==e||null==e)throw"Missing the required parameter 'sharedLinkBody' when calling addSharedLink";var o={},r={include:this.apiClient.buildCollectionParam(t.include,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/shared-links","POST",o,r,s,a,n,p,l,c,u)},this.deleteSharedLink=function(e){var t=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling deleteSharedLink";var i={sharedId:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l=null;return this.apiClient.callApi("/shared-links/{sharedId}","DELETE",i,n,o,r,t,s,a,p,l)},this.emailSharedLink=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling emailSharedLink";if(void 0==t||null==t)throw"Missing the required parameter 'emailSharedLinkBody' when calling emailSharedLink";var n={sharedId:e},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/shared-links/{sharedId}/email","POST",n,o,r,s,i,a,p,l,c)},this.findSharedLinks=function(e){e=e||{};var t=null,i={},n={where:e.where,include:this.apiClient.buildCollectionParam(e.include,"csv"),fields:this.apiClient.buildCollectionParam(e.fields,"csv")},o={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=r;return this.apiClient.callApi("/shared-links","GET",i,n,o,s,t,a,p,l,c)},this.getSharedLink=function(e,t){t=t||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLink";var o={sharedId:e},r={include:this.apiClient.buildCollectionParam(t.include,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=i;return this.apiClient.callApi("/shared-links/{sharedId}","GET",o,r,s,a,n,p,l,c,u)},this.getSharedLinkContent=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'sharedId' when calling getSharedLinkContent";var n={sharedId:e},o={attachment:t.attachment},r={"If-Modified-Since":t.ifModifiedSince},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/shared-links/{sharedId}/content","GET",n,o,r,s,i,a,p,l,c)}};return s})},{"../ApiClient":173,"../model/EmailSharedLinkBody":214,"../model/Error":215,"../model/NodeSharedLinkEntry":244,"../model/NodeSharedLinkPaging":245,"../model/SharedLinkBody":272}],186:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/SiteMemberEntry","../model/Error","../model/SiteMemberBody","../model/SiteBody","../model/SiteEntry","../model/SiteContainerEntry","../model/SiteContainerPaging","../model/SiteMemberPaging","../model/SitePaging","../model/SiteMemberRoleBody"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/SiteMemberEntry"),t("../model/Error"),t("../model/SiteMemberBody"),t("../model/SiteBody"),t("../model/SiteEntry"),t("../model/SiteContainerEntry"),t("../model/SiteContainerPaging"),t("../model/SiteMemberPaging"),t("../model/SitePaging"),t("../model/SiteMemberRoleBody")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SitesApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteMemberEntry,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.SiteMemberBody,n.AlfrescoCoreRestApi.SiteBody,n.AlfrescoCoreRestApi.SiteEntry,n.AlfrescoCoreRestApi.SiteContainerEntry,n.AlfrescoCoreRestApi.SiteContainerPaging,n.AlfrescoCoreRestApi.SiteMemberPaging,n.AlfrescoCoreRestApi.SitePaging,n.AlfrescoCoreRestApi.SiteMemberRoleBody))}(void 0,function(e,t,i,n,o,r,s,a,p,l,c){var u=function(i){this.apiClient=i||e.instance,this.addSiteMember=function(e,i){var n=i;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling addSiteMember";if(void 0==i||null==i)throw"Missing the required parameter 'siteMemberBody' when calling addSiteMember";var o={siteId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=t;return this.apiClient.callApi("/sites/{siteId}/members","POST",o,r,s,a,n,p,l,c,u)},this.createSite=function(e,t){t=t||{};var i=e;if(void 0==e||null==e)throw"Missing the required parameter 'siteBody' when calling createSite";var n={},o={skipConfiguration:t.skipConfiguration,skipAddToFavorites:t.skipAddToFavorites},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/sites","POST",n,o,s,a,i,p,l,c,u)},this.deleteSite=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling deleteSite";var n={siteId:e},o={permanent:t.permanent},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/sites/{siteId}","DELETE",n,o,r,s,i,a,p,l,c)},this.getSite=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSite";var n={siteId:e},o={relations:this.apiClient.buildCollectionParam(t.relations,"csv"),fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=r;return this.apiClient.callApi("/sites/{siteId}","GET",n,o,s,a,i,p,l,c,u)},this.getSiteContainer=function(e,t,i){i=i||{};var n=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSiteContainer";if(void 0==t||null==t)throw"Missing the required parameter 'containerId' when calling getSiteContainer";var o={siteId:e,containerId:t},r={fields:this.apiClient.buildCollectionParam(i.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=s;return this.apiClient.callApi("/sites/{siteId}/containers/{containerId}","GET",o,r,a,p,n,l,c,u,d)},this.getSiteContainers=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSiteContainers";var n={siteId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=a;return this.apiClient.callApi("/sites/{siteId}/containers","GET",n,o,r,s,i,p,l,c,u)},this.getSiteMember=function(e,i,n){n=n||{};var o=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSiteMember";if(void 0==i||null==i)throw"Missing the required parameter 'personId' when calling getSiteMember";var r={siteId:e,personId:i},s={fields:this.apiClient.buildCollectionParam(n.fields,"csv")},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/sites/{siteId}/members/{personId}","GET",r,s,a,p,o,l,c,u,d)},this.getSiteMembers=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling getSiteMembers";var n={siteId:e},o={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},r={},s={},a=["basicAuth"],l=["application/json"],c=["application/json"],u=p;return this.apiClient.callApi("/sites/{siteId}/members","GET",n,o,r,s,i,a,l,c,u)},this.getSites=function(e){e=e||{};var t=null,i={},n={skipCount:e.skipCount,maxItems:e.maxItems,orderBy:e.orderBy,relations:this.apiClient.buildCollectionParam(e.relations,"csv"),fields:this.apiClient.buildCollectionParam(e.fields,"csv")},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],c=l;return this.apiClient.callApi("/sites","GET",i,n,o,r,t,s,a,p,c)},this.removeSiteMember=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling removeSiteMember";if(void 0==t||null==t)throw"Missing the required parameter 'personId' when calling removeSiteMember";var n={siteId:e,personId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/sites/{siteId}/members/{personId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateSiteMember=function(e,i,n){var o=n;if(void 0==e||null==e)throw"Missing the required parameter 'siteId' when calling updateSiteMember";if(void 0==i||null==i)throw"Missing the required parameter 'personId' when calling updateSiteMember";if(void 0==n||null==n)throw"Missing the required parameter 'siteMemberRoleBody' when calling updateSiteMember";var r={siteId:e,personId:i},s={},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d=t;return this.apiClient.callApi("/sites/{siteId}/members/{personId}","PUT",r,s,a,p,o,l,c,u,d)}};return u})},{"../ApiClient":173,"../model/Error":215,"../model/SiteBody":274,"../model/SiteContainerEntry":276,"../model/SiteContainerPaging":277,"../model/SiteEntry":278,"../model/SiteMemberBody":280,"../model/SiteMemberEntry":281,"../model/SiteMemberPaging":282,"../model/SiteMemberRoleBody":283,"../model/SitePaging":290}],187:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","../model/TagBody","../model/Error","../model/TagEntry","../model/TagPaging","../model/TagBody1"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("../model/TagBody"),t("../model/Error"),t("../model/TagEntry"),t("../model/TagPaging"),t("../model/TagBody1")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagsApi=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.TagBody,n.AlfrescoCoreRestApi.Error,n.AlfrescoCoreRestApi.TagEntry,n.AlfrescoCoreRestApi.TagPaging,n.AlfrescoCoreRestApi.TagBody1))}(void 0,function(e,t,i,n,o,r){var s=function(t){this.apiClient=t||e.instance,this.addTag=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling addTag";if(void 0==t||null==t)throw"Missing the required parameter 'tagBody' when calling addTag";var o={nodeId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/nodes/{nodeId}/tags","POST",o,r,s,a,i,p,l,c,u)},this.getNodeTags=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling getNodeTags";var n={nodeId:e},r={skipCount:t.skipCount,maxItems:t.maxItems,fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=o;return this.apiClient.callApi("/nodes/{nodeId}/tags","GET",n,r,s,a,i,p,l,c,u)},this.getTag=function(e,t){t=t||{};var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'tagId' when calling getTag";var o={tagId:e},r={fields:this.apiClient.buildCollectionParam(t.fields,"csv")},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/tags/{tagId}","GET",o,r,s,a,i,p,l,c,u)},this.getTags=function(e){e=e||{};var t=null,i={},n={skipCount:e.skipCount,maxItems:e.maxItems,fields:this.apiClient.buildCollectionParam(e.fields,"csv")},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=o;return this.apiClient.callApi("/tags","GET",i,n,r,s,t,a,p,l,c)},this.removeTag=function(e,t){var i=null;if(void 0==e||null==e)throw"Missing the required parameter 'nodeId' when calling removeTag";if(void 0==t||null==t)throw"Missing the required parameter 'tagId' when calling removeTag";var n={nodeId:e,tagId:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c=null;return this.apiClient.callApi("/nodes/{nodeId}/tags/{tagId}","DELETE",n,o,r,s,i,a,p,l,c)},this.updateTag=function(e,t){var i=t;if(void 0==e||null==e)throw"Missing the required parameter 'tagId' when calling updateTag";if(void 0==t||null==t)throw"Missing the required parameter 'tagBody' when calling updateTag";var o={tagId:e},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u=n;return this.apiClient.callApi("/tags/{tagId}","PUT",o,r,s,a,i,p,l,c,u)}};return s})},{"../ApiClient":173,"../model/Error":215,"../model/TagBody":293,"../model/TagBody1":294,"../model/TagEntry":295,"../model/TagPaging":296}],188:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.WebscriptApi=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.allowedMethod=["GET","POST","PUT","DELETE"],this.executeWebScript=function(e,t,i,n,o,r){if(n=n||"alfresco",o=o||"service",r=r||null,!e||this.allowedMethod.indexOf(e)===-1)throw"method allowed value GET, POST, PUT and DELETE";if(!t)throw"Missing the required parameter scriptPath when calling executeWebScript";var s={},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json","text/html"],d={};return this.apiClient.callApi("/"+o+"/"+t,e,s,i,a,p,r,l,c,u,d,n)}};return t})},{"../ApiClient":173}],189:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n){"function"==typeof e&&e.amd?e(["./ApiClient","./model/Activity","./model/ActivityActivitySummary","./model/ActivityEntry","./model/ActivityPaging","./model/ActivityPagingList","./model/AssocChildBody","./model/AssocInfo","./model/AssocTargetBody","./model/ChildAssocInfo","./model/Comment","./model/CommentBody","./model/CommentBody1","./model/CommentEntry","./model/CommentPaging","./model/CommentPagingList","./model/Company","./model/ContentInfo","./model/CopyBody","./model/DeletedNode","./model/DeletedNodeEntry","./model/DeletedNodeMinimal","./model/DeletedNodeMinimalEntry","./model/DeletedNodesPaging","./model/DeletedNodesPagingList","./model/EmailSharedLinkBody","./model/Error","./model/ErrorError","./model/Favorite","./model/FavoriteBody","./model/FavoriteEntry","./model/FavoritePaging","./model/FavoritePagingList","./model/FavoriteSiteBody","./model/InlineResponse201","./model/InlineResponse201Entry","./model/MoveBody","./model/NetworkQuota","./model/NodeAssocMinimal","./model/NodeAssocMinimalEntry","./model/NodeAssocPaging","./model/NodeAssocPagingList","./model/NodeBody","./model/NodeBody1","./model/NodeChildAssocMinimal","./model/NodeChildAssocMinimalEntry","./model/NodeChildAssocPaging","./model/NodeChildAssocPagingList","./model/NodeEntry","./model/NodeFull","./model/NodeMinimal","./model/NodeMinimalEntry","./model/NodePaging","./model/NodePagingList","./model/NodeSharedLink","./model/NodeSharedLinkEntry","./model/NodeSharedLinkPaging","./model/NodeSharedLinkPagingList","./model/NodesnodeIdchildrenContent","./model/Pagination","./model/PathElement","./model/PathInfo","./model/Person","./model/PersonEntry","./model/PersonNetwork","./model/PersonNetworkEntry","./model/PersonNetworkPaging","./model/PersonNetworkPagingList","./model/Preference","./model/PreferenceEntry","./model/PreferencePaging","./model/PreferencePagingList","./model/Rating","./model/RatingAggregate","./model/RatingBody","./model/RatingEntry","./model/RatingPaging","./model/RatingPagingList","./model/Rendition","./model/RenditionBody","./model/RenditionEntry","./model/RenditionPaging","./model/RenditionPagingList","./model/SharedLinkBody","./model/Site","./model/SiteBody","./model/SiteContainer","./model/SiteContainerEntry","./model/SiteContainerPaging","./model/SiteEntry","./model/SiteMember","./model/SiteMemberBody","./model/SiteMemberEntry","./model/SiteMemberPaging","./model/SiteMemberRoleBody","./model/SiteMembershipBody","./model/SiteMembershipBody1","./model/SiteMembershipRequest","./model/SiteMembershipRequestEntry","./model/SiteMembershipRequestPaging","./model/SiteMembershipRequestPagingList","./model/SitePaging","./model/SitePagingList","./model/Tag","./model/TagBody","./model/TagBody1","./model/TagEntry","./model/TagPaging","./model/TagPagingList","./model/UserInfo","./api/AssociationsApi","./api/ChangesApi","./api/ChildAssociationsApi","./api/CommentsApi","./api/FavoritesApi","./api/NetworksApi","./api/NodesApi","./api/PeopleApi","./api/RatingsApi","./api/RenditionsApi","./api/QueriesApi","./api/SharedlinksApi","./api/SitesApi","./api/TagsApi","./api/WebscriptApi"],n):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports&&(i.exports=n(t("./ApiClient"),t("./model/Activity"),t("./model/ActivityActivitySummary"),t("./model/ActivityEntry"),t("./model/ActivityPaging"),t("./model/ActivityPagingList"),t("./model/AssocChildBody"),t("./model/AssocInfo"),t("./model/AssocTargetBody"),t("./model/ChildAssocInfo"),t("./model/Comment"),t("./model/CommentBody"),t("./model/CommentBody1"),t("./model/CommentEntry"),t("./model/CommentPaging"),t("./model/CommentPagingList"),t("./model/Company"),t("./model/ContentInfo"),t("./model/CopyBody"),t("./model/DeletedNode"),t("./model/DeletedNodeEntry"),t("./model/DeletedNodeMinimal"),t("./model/DeletedNodeMinimalEntry"),t("./model/DeletedNodesPaging"),t("./model/DeletedNodesPagingList"),t("./model/EmailSharedLinkBody"),t("./model/Error"),t("./model/ErrorError"),t("./model/Favorite"),t("./model/FavoriteBody"),t("./model/FavoriteEntry"),t("./model/FavoritePaging"),t("./model/FavoritePagingList"),t("./model/FavoriteSiteBody"),t("./model/InlineResponse201"),t("./model/InlineResponse201Entry"),t("./model/MoveBody"),t("./model/NetworkQuota"),t("./model/NodeAssocMinimal"),t("./model/NodeAssocMinimalEntry"),t("./model/NodeAssocPaging"),t("./model/NodeAssocPagingList"),t("./model/NodeBody"),t("./model/NodeBody1"),t("./model/NodeChildAssocMinimal"),t("./model/NodeChildAssocMinimalEntry"),t("./model/NodeChildAssocPaging"),t("./model/NodeChildAssocPagingList"),t("./model/NodeEntry"),t("./model/NodeFull"),t("./model/NodeMinimal"),t("./model/NodeMinimalEntry"),t("./model/NodePaging"),t("./model/NodePagingList"),t("./model/NodeSharedLink"),t("./model/NodeSharedLinkEntry"),t("./model/NodeSharedLinkPaging"),t("./model/NodeSharedLinkPagingList"),t("./model/NodesnodeIdchildrenContent"),t("./model/Pagination"),t("./model/PathElement"),t("./model/PathInfo"),t("./model/Person"),t("./model/PersonEntry"),t("./model/PersonNetwork"),t("./model/PersonNetworkEntry"),t("./model/PersonNetworkPaging"),t("./model/PersonNetworkPagingList"),t("./model/Preference"),t("./model/PreferenceEntry"),t("./model/PreferencePaging"),t("./model/PreferencePagingList"),t("./model/Rating"),t("./model/RatingAggregate"),t("./model/RatingBody"),t("./model/RatingEntry"),t("./model/RatingPaging"),t("./model/RatingPagingList"),t("./model/Rendition"),t("./model/RenditionBody"),t("./model/RenditionEntry"),t("./model/RenditionPaging"),t("./model/RenditionPagingList"),t("./model/SharedLinkBody"),t("./model/Site"),t("./model/SiteBody"),t("./model/SiteContainer"),t("./model/SiteContainerEntry"),t("./model/SiteContainerPaging"),t("./model/SiteEntry"),t("./model/SiteMember"),t("./model/SiteMemberBody"),t("./model/SiteMemberEntry"),t("./model/SiteMemberPaging"),t("./model/SiteMemberRoleBody"),t("./model/SiteMembershipBody"),t("./model/SiteMembershipBody1"),t("./model/SiteMembershipRequest"),t("./model/SiteMembershipRequestEntry"),t("./model/SiteMembershipRequestPaging"),t("./model/SiteMembershipRequestPagingList"),t("./model/SitePaging"),t("./model/SitePagingList"),t("./model/Tag"),t("./model/TagBody"),t("./model/TagBody1"),t("./model/TagEntry"),t("./model/TagPaging"),t("./model/TagPagingList"),t("./model/UserInfo"),t("./api/AssociationsApi"),t("./api/ChangesApi"),t("./api/ChildAssociationsApi"),t("./api/CommentsApi"),t("./api/FavoritesApi"),t("./api/NetworksApi"),t("./api/NodesApi"),t("./api/PeopleApi"),t("./api/RatingsApi"),t("./api/RenditionsApi"),t("./api/QueriesApi"),t("./api/SharedlinksApi"),t("./api/SitesApi"),t("./api/TagsApi"),t("./api/WebscriptApi")))}(function(e,t,i,n,o,r,s,a,p,l,c,u,d,f,y,m,h,v,A,b,g,C,R,P,w,S,T,I,j,O,E,M,k,F,x,N,_,D,B,q,L,U,G,V,z,H,K,Y,W,$,J,X,Q,Z,ee,te,ie,ne,oe,re,se,ae,pe,le,ce,ue,de,fe,ye,me,he,ve,Ae,be,ge,Ce,Re,Pe,we,Se,Te,Ie,je,Oe,Ee,Me,ke,Fe,xe,Ne,_e,De,Be,qe,Le,Ue,Ge,Ve,ze,He,Ke,Ye,We,$e,Je,Xe,Qe,Ze,et,tt,it,nt,ot,rt,st,at,pt,lt,ct,ut,dt,ft,yt,mt,ht){var vt={ApiClient:e,Activity:t,ActivityActivitySummary:i,ActivityEntry:n,ActivityPaging:o,ActivityPagingList:r,AssocChildBody:s,AssocInfo:a,AssocTargetBody:p,ChildAssocInfo:l,Comment:c,CommentBody:u,CommentBody1:d,CommentEntry:f,CommentPaging:y,CommentPagingList:m,Company:h,ContentInfo:v,CopyBody:A,DeletedNode:b,DeletedNodeEntry:g,DeletedNodeMinimal:C,DeletedNodeMinimalEntry:R,DeletedNodesPaging:P,DeletedNodesPagingList:w,EmailSharedLinkBody:S,Error:T,ErrorError:I,Favorite:j,FavoriteBody:O,FavoriteEntry:E,FavoritePaging:M,FavoritePagingList:k,FavoriteSiteBody:F,InlineResponse201:x,InlineResponse201Entry:N,MoveBody:_,NetworkQuota:D,NodeAssocMinimal:B,NodeAssocMinimalEntry:q,NodeAssocPaging:L,NodeAssocPagingList:U,NodeBody:G,NodeBody1:V,NodeChildAssocMinimal:z,NodeChildAssocMinimalEntry:H,NodeChildAssocPaging:K,NodeChildAssocPagingList:Y,NodeEntry:W,NodeFull:$,NodeMinimal:J,NodeMinimalEntry:X,NodePaging:Q,NodePagingList:Z,NodeSharedLink:ee,NodeSharedLinkEntry:te,NodeSharedLinkPaging:ie,NodeSharedLinkPagingList:ne,NodesnodeIdchildrenContent:oe,Pagination:re,PathElement:se,PathInfo:ae,Person:pe,PersonEntry:le,PersonNetwork:ce,PersonNetworkEntry:ue,PersonNetworkPaging:de,PersonNetworkPagingList:fe,Preference:ye,PreferenceEntry:me,PreferencePaging:he,PreferencePagingList:ve,Rating:Ae,RatingAggregate:be,RatingBody:ge,RatingEntry:Ce,RatingPaging:Re,RatingPagingList:Pe,Rendition:we,RenditionBody:Se,RenditionEntry:Te,RenditionPaging:Ie,RenditionPagingList:je,SharedLinkBody:Oe,Site:Ee,SiteBody:Me,SiteContainer:ke,SiteContainerEntry:Fe,SiteContainerPaging:xe,SiteEntry:Ne,SiteMember:_e,SiteMemberBody:De,SiteMemberEntry:Be,SiteMemberPaging:qe,SiteMemberRoleBody:Le,SiteMembershipBody:Ue,SiteMembershipBody1:Ge,SiteMembershipRequest:Ve,SiteMembershipRequestEntry:ze,SiteMembershipRequestPaging:He,SiteMembershipRequestPagingList:Ke,SitePaging:Ye,SitePagingList:We,Tag:$e,TagBody:Je,TagBody1:Xe,TagEntry:Qe,TagPaging:Ze,TagPagingList:et,UserInfo:tt,AssociationsApi:it,ChangesApi:nt,ChildAssociationsApi:ot,CommentsApi:rt,FavoritesApi:st,NetworksApi:at,NodesApi:pt,PeopleApi:lt,QueriesApi:dt,RatingsApi:ct,RenditionsApi:ut,SharedlinksApi:ft,SitesApi:yt,TagsApi:mt,WebscriptApi:ht};return vt})},{"./ApiClient":173,"./api/AssociationsApi":174,"./api/ChangesApi":175,"./api/ChildAssociationsApi":176,"./api/CommentsApi":177,"./api/FavoritesApi":178,"./api/NetworksApi":179,"./api/NodesApi":180,"./api/PeopleApi":181,"./api/QueriesApi":182,"./api/RatingsApi":183,"./api/RenditionsApi":184,"./api/SharedlinksApi":185,"./api/SitesApi":186,"./api/TagsApi":187,"./api/WebscriptApi":188,"./model/Activity":190,"./model/ActivityActivitySummary":191,"./model/ActivityEntry":192,"./model/ActivityPaging":193,"./model/ActivityPagingList":194,"./model/AssocChildBody":195,"./model/AssocInfo":196,"./model/AssocTargetBody":197,"./model/ChildAssocInfo":198,"./model/Comment":199,"./model/CommentBody":200,"./model/CommentBody1":201,"./model/CommentEntry":202,"./model/CommentPaging":203,"./model/CommentPagingList":204,"./model/Company":205,"./model/ContentInfo":206,"./model/CopyBody":207,"./model/DeletedNode":208,"./model/DeletedNodeEntry":209,"./model/DeletedNodeMinimal":210,"./model/DeletedNodeMinimalEntry":211,"./model/DeletedNodesPaging":212,"./model/DeletedNodesPagingList":213,"./model/EmailSharedLinkBody":214,"./model/Error":215,"./model/ErrorError":216,"./model/Favorite":217,"./model/FavoriteBody":218,"./model/FavoriteEntry":219,"./model/FavoritePaging":220,"./model/FavoritePagingList":221,"./model/FavoriteSiteBody":222,"./model/InlineResponse201":223,"./model/InlineResponse201Entry":224,"./model/MoveBody":225,"./model/NetworkQuota":226,"./model/NodeAssocMinimal":227,"./model/NodeAssocMinimalEntry":228,"./model/NodeAssocPaging":229,"./model/NodeAssocPagingList":230,"./model/NodeBody":231,"./model/NodeBody1":232,"./model/NodeChildAssocMinimal":233,"./model/NodeChildAssocMinimalEntry":234,"./model/NodeChildAssocPaging":235,"./model/NodeChildAssocPagingList":236,"./model/NodeEntry":237,"./model/NodeFull":238,"./model/NodeMinimal":239,"./model/NodeMinimalEntry":240,"./model/NodePaging":241,"./model/NodePagingList":242, +"./model/NodeSharedLink":243,"./model/NodeSharedLinkEntry":244,"./model/NodeSharedLinkPaging":245,"./model/NodeSharedLinkPagingList":246,"./model/NodesnodeIdchildrenContent":247,"./model/Pagination":248,"./model/PathElement":249,"./model/PathInfo":250,"./model/Person":251,"./model/PersonEntry":252,"./model/PersonNetwork":253,"./model/PersonNetworkEntry":254,"./model/PersonNetworkPaging":255,"./model/PersonNetworkPagingList":256,"./model/Preference":257,"./model/PreferenceEntry":258,"./model/PreferencePaging":259,"./model/PreferencePagingList":260,"./model/Rating":261,"./model/RatingAggregate":262,"./model/RatingBody":263,"./model/RatingEntry":264,"./model/RatingPaging":265,"./model/RatingPagingList":266,"./model/Rendition":267,"./model/RenditionBody":268,"./model/RenditionEntry":269,"./model/RenditionPaging":270,"./model/RenditionPagingList":271,"./model/SharedLinkBody":272,"./model/Site":273,"./model/SiteBody":274,"./model/SiteContainer":275,"./model/SiteContainerEntry":276,"./model/SiteContainerPaging":277,"./model/SiteEntry":278,"./model/SiteMember":279,"./model/SiteMemberBody":280,"./model/SiteMemberEntry":281,"./model/SiteMemberPaging":282,"./model/SiteMemberRoleBody":283,"./model/SiteMembershipBody":284,"./model/SiteMembershipBody1":285,"./model/SiteMembershipRequest":286,"./model/SiteMembershipRequestEntry":287,"./model/SiteMembershipRequestPaging":288,"./model/SiteMembershipRequestPagingList":289,"./model/SitePaging":290,"./model/SitePagingList":291,"./model/Tag":292,"./model/TagBody":293,"./model/TagBody1":294,"./model/TagEntry":295,"./model/TagPaging":296,"./model/TagPagingList":297,"./model/UserInfo":298}],190:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ActivityActivitySummary"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ActivityActivitySummary")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Activity=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ActivityActivitySummary))}(void 0,function(e,t){var i=function(e,t,i,n){this.postPersonId=e,this.id=t,this.feedPersonId=i,this.activityType=n};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("postPersonId")&&(o.postPersonId=e.convertToType(n.postPersonId,"String")),n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"Integer")),n.hasOwnProperty("siteId")&&(o.siteId=e.convertToType(n.siteId,"String")),n.hasOwnProperty("postedAt")&&(o.postedAt=e.convertToType(n.postedAt,"Date")),n.hasOwnProperty("feedPersonId")&&(o.feedPersonId=e.convertToType(n.feedPersonId,"String")),n.hasOwnProperty("activitySummary")&&(o.activitySummary=t.constructFromObject(n.activitySummary)),n.hasOwnProperty("activityType")&&(o.activityType=e.convertToType(n.activityType,"String"))),o},i.prototype.postPersonId=void 0,i.prototype.id=void 0,i.prototype.siteId=void 0,i.prototype.postedAt=void 0,i.prototype.feedPersonId=void 0,i.prototype.activitySummary=void 0,i.prototype.activityType=void 0,i.ActivityTypeEnum={COMMENTS_COMMENT_CREATED:"org.alfresco.comments.comment-created",COMMENTS_COMMENT_UPDATED:"org.alfresco.comments.comment-updated",COMMENTS_COMMENT_DELETED:"org.alfresco.comments.comment-deleted",DOCUMENTLIBRARY_FILES_ADDED:"org.alfresco.documentlibrary.files-added",DOCUMENTLIBRARY_FILES_UPDATED:"org.alfresco.documentlibrary.files-updated",DOCUMENTLIBRARY_FILES_DELETED:"org.alfresco.documentlibrary.files-deleted",DOCUMENTLIBRARY_FILE_ADDED:"org.alfresco.documentlibrary.file-added",DOCUMENTLIBRARY_FILE_CREATED:"org.alfresco.documentlibrary.file-created",DOCUMENTLIBRARY_FILE_DELETED:"org.alfresco.documentlibrary.file-deleted",DOCUMENTLIBRARY_FILE_DOWNLOADED:"org.alfresco.documentlibrary.file-downloaded",DOCUMENTLIBRARY_FILE_LIKED:"org.alfresco.documentlibrary.file-liked",DOCUMENTLIBRARY_FILE_PREVIEWED:"org.alfresco.documentlibrary.file-previewed",DOCUMENTLIBRARY_INLINE_EDIT:"org.alfresco.documentlibrary.inline-edit",DOCUMENTLIBRARY_FOLDER_LIKED:"org.alfresco.documentlibrary.folder-liked",SITE_USER_JOINED:"org.alfresco.site.user-joined",SITE_USER_LEFT:"org.alfresco.site.user-left",SITE_USER_ROLE_CHANGED:"org.alfresco.site.user-role-changed",SITE_GROUP_ADDED:"org.alfresco.site.group-added",SITE_GROUP_REMOVED:"org.alfresco.site.group-removed",SITE_GROUP_ROLE_CHANGED:"org.alfresco.site.group-role-changed",DISCUSSIONS_REPLY_CREATED:"org.alfresco.discussions.reply-created",SUBSCRIPTIONS_FOLLOWED:"org.alfresco.subscriptions.followed",SUBSCRIPTIONS_SUBSCRIBED:"org.alfresco.subscriptions.subscribed"},i})},{"../ApiClient":173,"./ActivityActivitySummary":191}],191:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ActivityActivitySummary=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("firstName")&&(n.firstName=e.convertToType(i.firstName,"String")),i.hasOwnProperty("lastName")&&(n.lastName=e.convertToType(i.lastName,"String")),i.hasOwnProperty("parentObjectId")&&(n.parentObjectId=e.convertToType(i.parentObjectId,"String")),i.hasOwnProperty("title")&&(n.title=e.convertToType(i.title,"String")),i.hasOwnProperty("objectId")&&(n.objectId=e.convertToType(i.objectId,"String"))),n},t.prototype.firstName=void 0,t.prototype.lastName=void 0,t.prototype.parentObjectId=void 0,t.prototype.title=void 0,t.prototype.objectId=void 0,t})},{"../ApiClient":173}],192:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Activity"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Activity")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ActivityEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Activity))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Activity":190}],193:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ActivityPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ActivityPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ActivityPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ActivityPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./ActivityPagingList":194}],194:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ActivityEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ActivityEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ActivityPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ActivityEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./ActivityEntry":192,"./Pagination":248}],195:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.AssocChildBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("childId")&&(n.childId=e.convertToType(i.childId,"String")),i.hasOwnProperty("assocType")&&(n.assocType=e.convertToType(i.assocType,"String"))),n},t.prototype.childId=void 0,t.prototype.assocType=void 0,t})},{"../ApiClient":173}],196:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.AssocInfo=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("assocType")&&(n.assocType=e.convertToType(i.assocType,"String"))),n},t.prototype.assocType=void 0,t})},{"../ApiClient":173}],197:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.AssocTargetBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("targetId")&&(n.targetId=e.convertToType(i.targetId,"String")),i.hasOwnProperty("assocType")&&(n.assocType=e.convertToType(i.assocType,"String"))),n},t.prototype.targetId=void 0,t.prototype.assocType=void 0,t})},{"../ApiClient":173}],198:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ChildAssocInfo=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("assocType")&&(n.assocType=e.convertToType(i.assocType,"String")),i.hasOwnProperty("isPrimary")&&(n.isPrimary=e.convertToType(i.isPrimary,"Boolean"))),n},t.prototype.assocType=void 0,t.prototype.isPrimary=void 0,t})},{"../ApiClient":173}],199:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Person"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Person")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Comment=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Person))}(void 0,function(e,t){var i=function(e,t,i,n,o,r,s,a,p){this.id=e,this.content=t,this.createdBy=i,this.createdAt=n,this.edited=o,this.modifiedBy=r,this.modifiedAt=s,this.canEdit=a,this.canDelete=p};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("content")&&(o.content=e.convertToType(n.content,"String")),n.hasOwnProperty("createdBy")&&(o.createdBy=t.constructFromObject(n.createdBy)),n.hasOwnProperty("createdAt")&&(o.createdAt=e.convertToType(n.createdAt,"Date")),n.hasOwnProperty("edited")&&(o.edited=e.convertToType(n.edited,"Boolean")),n.hasOwnProperty("modifiedBy")&&(o.modifiedBy=t.constructFromObject(n.modifiedBy)),n.hasOwnProperty("modifiedAt")&&(o.modifiedAt=e.convertToType(n.modifiedAt,"Date")),n.hasOwnProperty("canEdit")&&(o.canEdit=e.convertToType(n.canEdit,"Boolean")),n.hasOwnProperty("canDelete")&&(o.canDelete=e.convertToType(n.canDelete,"Boolean"))),o},i.prototype.id=void 0,i.prototype.content=void 0,i.prototype.createdBy=void 0,i.prototype.createdAt=void 0,i.prototype.edited=void 0,i.prototype.modifiedBy=void 0,i.prototype.modifiedAt=void 0,i.prototype.canEdit=void 0,i.prototype.canDelete=void 0,i})},{"../ApiClient":173,"./Person":251}],200:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.content=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("content")&&(n.content=e.convertToType(i.content,"String"))),n},t.prototype.content=void 0,t})},{"../ApiClient":173}],201:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentBody1=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.content=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("content")&&(n.content=e.convertToType(i.content,"String"))),n},t.prototype.content=void 0,t})},{"../ApiClient":173}],202:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Comment"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Comment")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Comment))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Comment":199}],203:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./CommentPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./CommentPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.CommentPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./CommentPagingList":204}],204:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./CommentEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./CommentEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CommentPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.CommentEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./CommentEntry":202,"./Pagination":248}],205:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Company=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("organization")&&(n.organization=e.convertToType(i.organization,"String")),i.hasOwnProperty("address1")&&(n.address1=e.convertToType(i.address1,"String")),i.hasOwnProperty("address2")&&(n.address2=e.convertToType(i.address2,"String")),i.hasOwnProperty("address3")&&(n.address3=e.convertToType(i.address3,"String")),i.hasOwnProperty("postcode")&&(n.postcode=e.convertToType(i.postcode,"String")),i.hasOwnProperty("telephone")&&(n.telephone=e.convertToType(i.telephone,"String")),i.hasOwnProperty("fax")&&(n.fax=e.convertToType(i.fax,"String")),i.hasOwnProperty("email")&&(n.email=e.convertToType(i.email,"String"))),n},t.prototype.organization=void 0,t.prototype.address1=void 0,t.prototype.address2=void 0,t.prototype.address3=void 0,t.prototype.postcode=void 0,t.prototype.telephone=void 0,t.prototype.fax=void 0,t.prototype.email=void 0,t})},{"../ApiClient":173}],206:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ContentInfo=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("mimeType")&&(n.mimeType=e.convertToType(i.mimeType,"String")),i.hasOwnProperty("mimeTypeName")&&(n.mimeTypeName=e.convertToType(i.mimeTypeName,"String")),i.hasOwnProperty("sizeInBytes")&&(n.sizeInBytes=e.convertToType(i.sizeInBytes,"Integer")),i.hasOwnProperty("encoding")&&(n.encoding=e.convertToType(i.encoding,"String"))),n},t.prototype.mimeType=void 0,t.prototype.mimeTypeName=void 0,t.prototype.sizeInBytes=void 0,t.prototype.encoding=void 0,t})},{"../ApiClient":173}],207:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CopyBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("targetParentId")&&(n.targetParentId=e.convertToType(i.targetParentId,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.targetParentId=void 0,t.prototype.name=void 0,t})},{"../ApiClient":173}],208:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./NodeFull","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./NodeFull"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNode=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.NodeFull,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n){var o=function(e,t){i.call(this),this.archivedByUser=e,this.archivedAt=t};return o.constructFromObject=function(t,r){return t&&(r=t||new o,i.constructFromObject(t,r),t.hasOwnProperty("archivedByUser")&&(r.archivedByUser=n.constructFromObject(t.archivedByUser)),t.hasOwnProperty("archivedAt")&&(r.archivedAt=e.convertToType(t.archivedAt,"Date"))),r},o.prototype=Object.create(i.prototype),o.prototype.constructor=o,o.prototype.archivedByUser=void 0,o.prototype.archivedAt=void 0,o})},{"../ApiClient":173,"./ContentInfo":206,"./NodeFull":238,"./UserInfo":298}],209:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./DeletedNode"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./DeletedNode")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodeEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.DeletedNode))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./DeletedNode":208}],210:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./NodeMinimal","./PathElement","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./NodeMinimal"),t("./PathElement"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodeMinimal=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.NodeMinimal,n.AlfrescoCoreRestApi.PathElement,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n,o){var r=function(e,t){i.call(this),this.archivedByUser=e,this.archivedAt=t};return r.constructFromObject=function(t,n){return t&&(n=t||new r,i.constructFromObject(t,n),t.hasOwnProperty("archivedByUser")&&(n.archivedByUser=o.constructFromObject(t.archivedByUser)),t.hasOwnProperty("archivedAt")&&(n.archivedAt=e.convertToType(t.archivedAt,"Date"))),n},r.prototype=Object.create(i.prototype),r.prototype.constructor=r,r.prototype.archivedByUser=void 0,r.prototype.archivedAt=void 0,r})},{"../ApiClient":173,"./ContentInfo":206,"./NodeMinimal":239,"./PathElement":249,"./UserInfo":298}],211:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./DeletedNodeMinimal"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./DeletedNodeMinimal")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodeMinimalEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.DeletedNodeMinimal))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./DeletedNodeMinimal":210}],212:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./DeletedNodesPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./DeletedNodesPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodesPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.DeletedNodesPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./DeletedNodesPagingList":213}],213:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./DeletedNodeMinimalEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./DeletedNodeMinimalEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.DeletedNodesPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.DeletedNodeMinimalEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./DeletedNodeMinimalEntry":211,"./Pagination":248}],214:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.EmailSharedLinkBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("client")&&(n.client=e.convertToType(i.client,"String")),i.hasOwnProperty("message")&&(n.message=e.convertToType(i.message,"String")),i.hasOwnProperty("locale")&&(n.locale=e.convertToType(i.locale,"String")),i.hasOwnProperty("recipientEmails")&&(n.recipientEmails=e.convertToType(i.recipientEmails,["String"]))),n},t.prototype.client=void 0,t.prototype.message=void 0,t.prototype.locale=void 0,t.prototype.recipientEmails=void 0,t})},{"../ApiClient":173}],215:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ErrorError"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ErrorError")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Error=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ErrorError))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("error")&&(n.error=t.constructFromObject(e.error))),n},i.prototype.error=void 0,i})},{"../ApiClient":173,"./ErrorError":216}],216:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.ErrorError=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i,n){this.briefSummary=e,this.descriptionURL=t,this.stackTrace=i,this.statusCode=n};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("errorKey")&&(n.errorKey=e.convertToType(i.errorKey,"String")),i.hasOwnProperty("briefSummary")&&(n.briefSummary=e.convertToType(i.briefSummary,"String")),i.hasOwnProperty("descriptionURL")&&(n.descriptionURL=e.convertToType(i.descriptionURL,"String")),i.hasOwnProperty("logId")&&(n.logId=e.convertToType(i.logId,"String")),i.hasOwnProperty("stackTrace")&&(n.stackTrace=e.convertToType(i.stackTrace,"String")),i.hasOwnProperty("statusCode")&&(n.statusCode=e.convertToType(i.statusCode,"Integer"))),n},t.prototype.errorKey=void 0,t.prototype.briefSummary=void 0,t.prototype.descriptionURL=void 0,t.prototype.logId=void 0,t.prototype.stackTrace=void 0,t.prototype.statusCode=void 0,t})},{"../ApiClient":173}],217:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e; +};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Favorite=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.targetGuid=e,this.target=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("targetGuid")&&(n.targetGuid=e.convertToType(i.targetGuid,"String")),i.hasOwnProperty("createdAt")&&(n.createdAt=e.convertToType(i.createdAt,"Date")),i.hasOwnProperty("target")&&(n.target=e.convertToType(i.target,Object))),n},t.prototype.targetGuid=void 0,t.prototype.createdAt=void 0,t.prototype.target=void 0,t})},{"../ApiClient":173}],218:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoriteBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.target=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("target")&&(n.target=e.convertToType(i.target,Object))),n},t.prototype.target=void 0,t})},{"../ApiClient":173}],219:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Favorite"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Favorite")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoriteEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Favorite))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Favorite":217}],220:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./FavoritePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./FavoritePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoritePaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.FavoritePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./FavoritePagingList":221}],221:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./FavoriteEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./FavoriteEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoritePagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.FavoriteEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./FavoriteEntry":219,"./Pagination":248}],222:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.FavoriteSiteBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.id=void 0,t})},{"../ApiClient":173}],223:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./InlineResponse201Entry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./InlineResponse201Entry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.InlineResponse201=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.InlineResponse201Entry))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./InlineResponse201Entry":224}],224:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.InlineResponse201Entry=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.id=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.id=void 0,t})},{"../ApiClient":173}],225:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.MoveBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("targetParentId")&&(n.targetParentId=e.convertToType(i.targetParentId,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.targetParentId=void 0,t.prototype.name=void 0,t})},{"../ApiClient":173}],226:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NetworkQuota=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i){this.id=e,this.limit=t,this.usage=i};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("limit")&&(n.limit=e.convertToType(i.limit,"Integer")),i.hasOwnProperty("usage")&&(n.usage=e.convertToType(i.usage,"Integer"))),n},t.prototype.id=void 0,t.prototype.limit=void 0,t.prototype.usage=void 0,t})},{"../ApiClient":173}],227:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./AssocInfo","./ContentInfo","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./AssocInfo"),t("./ContentInfo"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeAssocMinimal=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.AssocInfo,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"String")),r.hasOwnProperty("parentId")&&(s.parentId=e.convertToType(r.parentId,"String")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("nodeType")&&(s.nodeType=e.convertToType(r.nodeType,"String")),r.hasOwnProperty("isFolder")&&(s.isFolder=e.convertToType(r.isFolder,"Boolean")),r.hasOwnProperty("isFile")&&(s.isFile=e.convertToType(r.isFile,"Boolean")),r.hasOwnProperty("modifiedAt")&&(s.modifiedAt=e.convertToType(r.modifiedAt,"Date")),r.hasOwnProperty("modifiedByUser")&&(s.modifiedByUser=n.constructFromObject(r.modifiedByUser)),r.hasOwnProperty("createdAt")&&(s.createdAt=e.convertToType(r.createdAt,"Date")),r.hasOwnProperty("createdByUser")&&(s.createdByUser=n.constructFromObject(r.createdByUser)),r.hasOwnProperty("content")&&(s.content=i.constructFromObject(r.content)),r.hasOwnProperty("association")&&(s.association=t.constructFromObject(r.association))),s},o.prototype.id=void 0,o.prototype.parentId=void 0,o.prototype.name=void 0,o.prototype.nodeType=void 0,o.prototype.isFolder=void 0,o.prototype.isFile=void 0,o.prototype.modifiedAt=void 0,o.prototype.modifiedByUser=void 0,o.prototype.createdAt=void 0,o.prototype.createdByUser=void 0,o.prototype.content=void 0,o.prototype.association=void 0,o})},{"../ApiClient":173,"./AssocInfo":196,"./ContentInfo":206,"./UserInfo":298}],228:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeAssocMinimal"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeAssocMinimal")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeAssocMinimalEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeAssocMinimal))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./NodeAssocMinimal":227}],229:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeAssocPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeAssocPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeAssocPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeAssocPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./NodeAssocPagingList":230}],230:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeAssocMinimalEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeAssocMinimalEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeAssocPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeAssocMinimalEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./NodeAssocMinimalEntry":228,"./Pagination":248}],231:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String")),i.hasOwnProperty("nodeType")&&(n.nodeType=e.convertToType(i.nodeType,"String")),i.hasOwnProperty("aspectNames")&&(n.aspectNames=e.convertToType(i.aspectNames,["String"])),i.hasOwnProperty("properties")&&(n.properties=e.convertToType(i.properties,{String:"String"}))),n},t.prototype.name=void 0,t.prototype.nodeType=void 0,t.prototype.aspectNames=void 0,t.prototype.properties=void 0,t})},{"../ApiClient":173}],232:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodesnodeIdchildrenContent"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodesnodeIdchildrenContent")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeBody1=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodesnodeIdchildrenContent))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("nodeType")&&(o.nodeType=e.convertToType(n.nodeType,"String")),n.hasOwnProperty("relativePath")&&(o.relativePath=e.convertToType(n.relativePath,"String")),n.hasOwnProperty("content")&&(o.content=t.constructFromObject(n.content)),n.hasOwnProperty("aspectNames")&&(o.aspectNames=e.convertToType(n.aspectNames,["String"])),n.hasOwnProperty("properties")&&(o.properties=e.convertToType(n.properties,{String:"String"}))),o},i.prototype.name=void 0,i.prototype.nodeType=void 0,i.prototype.relativePath=void 0,i.prototype.content=void 0,i.prototype.aspectNames=void 0,i.prototype.properties=void 0,i})},{"../ApiClient":173,"./NodesnodeIdchildrenContent":247}],233:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ChildAssocInfo","./ContentInfo","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ChildAssocInfo"),t("./ContentInfo"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeChildAssocMinimal=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ChildAssocInfo,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"String")),r.hasOwnProperty("parentId")&&(s.parentId=e.convertToType(r.parentId,"String")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("nodeType")&&(s.nodeType=e.convertToType(r.nodeType,"String")),r.hasOwnProperty("isFolder")&&(s.isFolder=e.convertToType(r.isFolder,"Boolean")),r.hasOwnProperty("isFile")&&(s.isFile=e.convertToType(r.isFile,"Boolean")),r.hasOwnProperty("modifiedAt")&&(s.modifiedAt=e.convertToType(r.modifiedAt,"Date")),r.hasOwnProperty("modifiedByUser")&&(s.modifiedByUser=n.constructFromObject(r.modifiedByUser)),r.hasOwnProperty("createdAt")&&(s.createdAt=e.convertToType(r.createdAt,"Date")),r.hasOwnProperty("createdByUser")&&(s.createdByUser=n.constructFromObject(r.createdByUser)),r.hasOwnProperty("content")&&(s.content=i.constructFromObject(r.content)),r.hasOwnProperty("association")&&(s.association=t.constructFromObject(r.association))),s},o.prototype.id=void 0,o.prototype.parentId=void 0,o.prototype.name=void 0,o.prototype.nodeType=void 0,o.prototype.isFolder=void 0,o.prototype.isFile=void 0,o.prototype.modifiedAt=void 0,o.prototype.modifiedByUser=void 0,o.prototype.createdAt=void 0,o.prototype.createdByUser=void 0,o.prototype.content=void 0,o.prototype.association=void 0,o})},{"../ApiClient":173,"./ChildAssocInfo":198,"./ContentInfo":206,"./UserInfo":298}],234:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeChildAssocMinimal"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeChildAssocMinimal")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeChildAssocMinimalEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeChildAssocMinimal))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./NodeChildAssocMinimal":233}],235:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeChildAssocPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeChildAssocPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeChildAssocPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeChildAssocPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./NodeChildAssocPagingList":236}],236:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeChildAssocMinimalEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeChildAssocMinimalEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeChildAssocPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeChildAssocMinimalEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./NodeChildAssocMinimalEntry":234,"./Pagination":248}],237:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeFull"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeFull")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeFull))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./NodeFull":238}],238:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeFull=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"String")),o.hasOwnProperty("parentId")&&(r.parentId=e.convertToType(o.parentId,"String")),o.hasOwnProperty("name")&&(r.name=e.convertToType(o.name,"String")),o.hasOwnProperty("nodeType")&&(r.nodeType=e.convertToType(o.nodeType,"String")),o.hasOwnProperty("isFolder")&&(r.isFolder=e.convertToType(o.isFolder,"Boolean")),o.hasOwnProperty("isFile")&&(r.isFile=e.convertToType(o.isFile,"Boolean")),o.hasOwnProperty("modifiedAt")&&(r.modifiedAt=e.convertToType(o.modifiedAt,"Date")),o.hasOwnProperty("modifiedByUser")&&(r.modifiedByUser=i.constructFromObject(o.modifiedByUser)),o.hasOwnProperty("createdAt")&&(r.createdAt=e.convertToType(o.createdAt,"Date")),o.hasOwnProperty("createdByUser")&&(r.createdByUser=i.constructFromObject(o.createdByUser)),o.hasOwnProperty("content")&&(r.content=t.constructFromObject(o.content)),o.hasOwnProperty("aspectNames")&&(r.aspectNames=e.convertToType(o.aspectNames,["String"])),o.hasOwnProperty("properties")&&(r.properties=e.convertToType(o.properties,{String:"String"})),o.hasOwnProperty("allowableOperations")&&(r.allowableOperations=e.convertToType(o.allowableOperations,["String"]))),r},n.prototype.id=void 0,n.prototype.parentId=void 0,n.prototype.name=void 0,n.prototype.nodeType=void 0,n.prototype.isFolder=void 0,n.prototype.isFile=void 0,n.prototype.modifiedAt=void 0,n.prototype.modifiedByUser=void 0,n.prototype.createdAt=void 0,n.prototype.createdByUser=void 0,n.prototype.content=void 0,n.prototype.aspectNames=void 0,n.prototype.properties=void 0,n.prototype.allowableOperations=void 0,n})},{"../ApiClient":173,"./ContentInfo":206,"./UserInfo":298}],239:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./PathElement","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./PathElement"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeMinimal=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.PathElement,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i,n){var o=function(){};return o.constructFromObject=function(r,s){return r&&(s=r||new o,r.hasOwnProperty("id")&&(s.id=e.convertToType(r.id,"String")),r.hasOwnProperty("parentId")&&(s.parentId=e.convertToType(r.parentId,"String")),r.hasOwnProperty("name")&&(s.name=e.convertToType(r.name,"String")),r.hasOwnProperty("nodeType")&&(s.nodeType=e.convertToType(r.nodeType,"String")),r.hasOwnProperty("isFolder")&&(s.isFolder=e.convertToType(r.isFolder,"Boolean")),r.hasOwnProperty("isFile")&&(s.isFile=e.convertToType(r.isFile,"Boolean")),r.hasOwnProperty("modifiedAt")&&(s.modifiedAt=e.convertToType(r.modifiedAt,"Date")),r.hasOwnProperty("modifiedByUser")&&(s.modifiedByUser=n.constructFromObject(r.modifiedByUser)),r.hasOwnProperty("createdAt")&&(s.createdAt=e.convertToType(r.createdAt,"Date")),r.hasOwnProperty("createdByUser")&&(s.createdByUser=n.constructFromObject(r.createdByUser)),r.hasOwnProperty("content")&&(s.content=t.constructFromObject(r.content)),r.hasOwnProperty("path")&&(s.path=i.constructFromObject(r.path)),r.hasOwnProperty("properties")&&(s.properties=r.properties)),s},o.prototype.id=void 0,o.prototype.parentId=void 0,o.prototype.name=void 0,o.prototype.nodeType=void 0,o.prototype.isFolder=void 0,o.prototype.isFile=void 0,o.prototype.modifiedAt=void 0,o.prototype.modifiedByUser=void 0,o.prototype.createdAt=void 0,o.prototype.createdByUser=void 0,o.prototype.content=void 0,o.prototype.path=void 0,o})},{"../ApiClient":173,"./ContentInfo":206,"./PathElement":249,"./UserInfo":298}],240:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeMinimal"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeMinimal")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeMinimalEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeMinimal))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./NodeMinimal":239}],241:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodePaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./NodePagingList":242}],242:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeMinimalEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeMinimalEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodePagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeMinimalEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./NodeMinimalEntry":240,"./Pagination":248}],243:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo","./UserInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo"),t("./UserInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeSharedLink=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo,n.AlfrescoCoreRestApi.UserInfo))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("id")&&(r.id=e.convertToType(o.id,"String")),o.hasOwnProperty("nodeId")&&(r.nodeId=e.convertToType(o.nodeId,"String")),o.hasOwnProperty("name")&&(r.name=e.convertToType(o.name,"String")),o.hasOwnProperty("modifiedAt")&&(r.modifiedAt=e.convertToType(o.modifiedAt,"Date")),o.hasOwnProperty("modifiedByUser")&&(r.modifiedByUser=i.constructFromObject(o.modifiedByUser)),o.hasOwnProperty("sharedByUser")&&(r.sharedByUser=i.constructFromObject(o.sharedByUser)),o.hasOwnProperty("content")&&(r.content=t.constructFromObject(o.content)),o.hasOwnProperty("allowableOperations")&&(r.allowableOperations=e.convertToType(o.allowableOperations,["String"]))),r},n.prototype.id=void 0,n.prototype.nodeId=void 0,n.prototype.name=void 0,n.prototype.modifiedAt=void 0,n.prototype.modifiedByUser=void 0,n.prototype.sharedByUser=void 0,n.prototype.content=void 0,n.prototype.allowableOperations=void 0,n})},{"../ApiClient":173,"./ContentInfo":206,"./UserInfo":298}],244:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeSharedLink"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeSharedLink")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeSharedLinkEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeSharedLink)); +}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./NodeSharedLink":243}],245:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeSharedLinkPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeSharedLinkPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeSharedLinkPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeSharedLinkPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./NodeSharedLinkPagingList":246}],246:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NodeSharedLinkEntry","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NodeSharedLinkEntry"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodeSharedLinkPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NodeSharedLinkEntry,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[t])),o.hasOwnProperty("pagination")&&(r.pagination=i.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./NodeSharedLinkEntry":244,"./Pagination":248}],247:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.NodesnodeIdchildrenContent=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("mimeType")&&(n.mimeType=e.convertToType(i.mimeType,"String")),i.hasOwnProperty("encoding")&&(n.encoding=e.convertToType(i.encoding,"String"))),n},t.prototype.mimeType=void 0,t.prototype.encoding=void 0,t})},{"../ApiClient":173}],248:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Pagination=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i,n){this.count=e,this.hasMoreItems=t,this.skipCount=i,this.maxItems=n};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("count")&&(n.count=e.convertToType(i.count,"Integer")),i.hasOwnProperty("hasMoreItems")&&(n.hasMoreItems=e.convertToType(i.hasMoreItems,"Boolean")),i.hasOwnProperty("totalItems")&&(n.totalItems=e.convertToType(i.totalItems,"Integer")),i.hasOwnProperty("skipCount")&&(n.skipCount=e.convertToType(i.skipCount,"Integer")),i.hasOwnProperty("maxItems")&&(n.maxItems=e.convertToType(i.maxItems,"Integer"))),n},t.prototype.count=void 0,t.prototype.hasMoreItems=void 0,t.prototype.totalItems=void 0,t.prototype.skipCount=void 0,t.prototype.maxItems=void 0,t})},{"../ApiClient":173}],249:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PathElement=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("name")&&(n.name=e.convertToType(i.name,"String"))),n},t.prototype.id=void 0,t.prototype.name=void 0,t})},{"../ApiClient":173}],250:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./PathElement"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./PathElement")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PathInfo=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PathElement))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("elements")&&(o.elements=e.convertToType(n.elements,[t])),n.hasOwnProperty("name")&&(o.name=e.convertToType(n.name,"String")),n.hasOwnProperty("isComplete")&&(o.isComplete=e.convertToType(n.isComplete,"Boolean"))),o},i.prototype.elements=void 0,i.prototype.name=void 0,i.prototype.isComplete=void 0,i})},{"../ApiClient":173,"./PathElement":249}],251:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Company"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Company")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Person=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Company))}(void 0,function(e,t){var i=function(e,t,i,n,o){this.id=e,this.firstName=t,this.lastName=i,this.email=n,this.enabled=o};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("firstName")&&(o.firstName=e.convertToType(n.firstName,"String")),n.hasOwnProperty("lastName")&&(o.lastName=e.convertToType(n.lastName,"String")),n.hasOwnProperty("description")&&(o.description=e.convertToType(n.description,"String")),n.hasOwnProperty("avatarId")&&(o.avatarId=e.convertToType(n.avatarId,"String")),n.hasOwnProperty("email")&&(o.email=e.convertToType(n.email,"String")),n.hasOwnProperty("skypeId")&&(o.skypeId=e.convertToType(n.skypeId,"String")),n.hasOwnProperty("googleId")&&(o.googleId=e.convertToType(n.googleId,"String")),n.hasOwnProperty("instantMessageId")&&(o.instantMessageId=e.convertToType(n.instantMessageId,"String")),n.hasOwnProperty("jobTitle")&&(o.jobTitle=e.convertToType(n.jobTitle,"String")),n.hasOwnProperty("location")&&(o.location=e.convertToType(n.location,"String")),n.hasOwnProperty("company")&&(o.company=t.constructFromObject(n.company)),n.hasOwnProperty("mobile")&&(o.mobile=e.convertToType(n.mobile,"String")),n.hasOwnProperty("telephone")&&(o.telephone=e.convertToType(n.telephone,"String")),n.hasOwnProperty("statusUpdatedAt")&&(o.statusUpdatedAt=e.convertToType(n.statusUpdatedAt,"Date")),n.hasOwnProperty("userStatus")&&(o.userStatus=e.convertToType(n.userStatus,"String")),n.hasOwnProperty("enabled")&&(o.enabled=e.convertToType(n.enabled,"Boolean")),n.hasOwnProperty("emailNotificationsEnabled")&&(o.emailNotificationsEnabled=e.convertToType(n.emailNotificationsEnabled,"Boolean"))),o},i.prototype.id=void 0,i.prototype.firstName=void 0,i.prototype.lastName=void 0,i.prototype.description=void 0,i.prototype.avatarId=void 0,i.prototype.email=void 0,i.prototype.skypeId=void 0,i.prototype.googleId=void 0,i.prototype.instantMessageId=void 0,i.prototype.jobTitle=void 0,i.prototype.location=void 0,i.prototype.company=void 0,i.prototype.mobile=void 0,i.prototype.telephone=void 0,i.prototype.statusUpdatedAt=void 0,i.prototype.userStatus=void 0,i.prototype.enabled=!0,i.prototype.emailNotificationsEnabled=void 0,i})},{"../ApiClient":173,"./Company":205}],252:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Person"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Person")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Person))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Person":251}],253:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./NetworkQuota"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./NetworkQuota")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonNetwork=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.NetworkQuota))}(void 0,function(e,t){var i=function(e,t){this.id=e,this.isEnabled=t};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("homeNetwork")&&(o.homeNetwork=e.convertToType(n.homeNetwork,"Boolean")),n.hasOwnProperty("isEnabled")&&(o.isEnabled=e.convertToType(n.isEnabled,"Boolean")),n.hasOwnProperty("createdAt")&&(o.createdAt=e.convertToType(n.createdAt,"Date")),n.hasOwnProperty("paidNetwork")&&(o.paidNetwork=e.convertToType(n.paidNetwork,"Boolean")),n.hasOwnProperty("subscriptionLevel")&&(o.subscriptionLevel=e.convertToType(n.subscriptionLevel,"String")),n.hasOwnProperty("quotas")&&(o.quotas=e.convertToType(n.quotas,[t]))),o},i.prototype.id=void 0,i.prototype.homeNetwork=void 0,i.prototype.isEnabled=void 0,i.prototype.createdAt=void 0,i.prototype.paidNetwork=void 0,i.prototype.subscriptionLevel=void 0,i.prototype.quotas=void 0,i.SubscriptionLevelEnum={FREE:"Free",STANDARD:"Standard",ENTERPRISE:"Enterprise"},i})},{"../ApiClient":173,"./NetworkQuota":226}],254:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./PersonNetwork"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./PersonNetwork")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonNetworkEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PersonNetwork))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./PersonNetwork":253}],255:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./PersonNetworkPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./PersonNetworkPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonNetworkPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PersonNetworkPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./PersonNetworkPagingList":256}],256:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./PersonNetworkEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./PersonNetworkEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PersonNetworkPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.PersonNetworkEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./Pagination":248,"./PersonNetworkEntry":254}],257:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Preference=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.id=e,this.value=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("value")&&(n.value=e.convertToType(i.value,"String"))),n},t.prototype.id=void 0,t.prototype.value=void 0,t})},{"../ApiClient":173}],258:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Preference"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Preference")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PreferenceEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Preference))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Preference":257}],259:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./PreferencePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./PreferencePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PreferencePaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.PreferencePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./PreferencePagingList":260}],260:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./PreferenceEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./PreferenceEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.PreferencePagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.PreferenceEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./Pagination":248,"./PreferenceEntry":258}],261:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./RatingAggregate"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./RatingAggregate")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Rating=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RatingAggregate))}(void 0,function(e,t){var i=function(e){this.id=e};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("aggregate")&&(o.aggregate=t.constructFromObject(n.aggregate)),n.hasOwnProperty("ratedAt")&&(o.ratedAt=e.convertToType(n.ratedAt,"Date")),n.hasOwnProperty("myRating")&&(o.myRating=e.convertToType(n.myRating,"String"))),o},i.prototype.id=void 0,i.prototype.aggregate=void 0,i.prototype.ratedAt=void 0,i.prototype.myRating=void 0,i})},{"../ApiClient":173,"./RatingAggregate":262}],262:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingAggregate=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.numberOfRatings=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("average")&&(n.average=e.convertToType(i.average,"Integer")),i.hasOwnProperty("numberOfRatings")&&(n.numberOfRatings=e.convertToType(i.numberOfRatings,"Integer"))),n},t.prototype.average=void 0,t.prototype.numberOfRatings=void 0,t})},{"../ApiClient":173}],263:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.id=e,this.myRating=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("myRating")&&(n.myRating=e.convertToType(i.myRating,"String"))),n},t.prototype.id="likes",t.prototype.myRating=void 0,t.IdEnum={LIKES:"likes",FIVESTAR:"fiveStar"},t})},{"../ApiClient":173}],264:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Rating"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Rating")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Rating))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Rating":261}],265:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./RatingPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./RatingPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RatingPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./RatingPagingList":266}],266:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./RatingEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./RatingEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RatingPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.RatingEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./Pagination":248,"./RatingEntry":264}],267:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./ContentInfo"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./ContentInfo")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Rendition=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.ContentInfo))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("content")&&(o.content=t.constructFromObject(n.content)),n.hasOwnProperty("status")&&(o.status=e.convertToType(n.status,"String"))),o},i.prototype.id=void 0,i.prototype.content=void 0,i.prototype.status=void 0,i})},{"../ApiClient":173,"./ContentInfo":206}],268:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.id=void 0,t})},{"../ApiClient":173}],269:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Rendition"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Rendition")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Rendition))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Rendition":267}],270:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./RenditionPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./RenditionPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.RenditionPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./RenditionPagingList":271}],271:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./RenditionEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./RenditionEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.RenditionPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.RenditionEntry))}(void 0,function(e,t,i){var n=function(){};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./Pagination":248,"./RenditionEntry":269}],272:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SharedLinkBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("nodeId")&&(n.nodeId=e.convertToType(i.nodeId,"String"))),n},t.prototype.nodeId=void 0,t})},{"../ApiClient":173}],273:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Site=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t,i,n){this.id=e,this.guid=t,this.title=i,this.visibility=n};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("guid")&&(n.guid=e.convertToType(i.guid,"String")),i.hasOwnProperty("title")&&(n.title=e.convertToType(i.title,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("visibility")&&(n.visibility=e.convertToType(i.visibility,"String")),i.hasOwnProperty("role")&&(n.role=e.convertToType(i.role,"String"))),n},t.prototype.id=void 0,t.prototype.guid=void 0,t.prototype.title=void 0,t.prototype.description=void 0,t.prototype.visibility=void 0,t.prototype.role=void 0,t.VisibilityEnum={PRIVATE:"PRIVATE",MODERATED:"MODERATED",PUBLIC:"PUBLIC"},t})},{"../ApiClient":173}],274:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.title=e,this.visibility=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("title")&&(n.title=e.convertToType(i.title,"String")),i.hasOwnProperty("description")&&(n.description=e.convertToType(i.description,"String")),i.hasOwnProperty("visibility")&&(n.visibility=e.convertToType(i.visibility,"String"))),n},t.prototype.id=void 0,t.prototype.title=void 0,t.prototype.description=void 0,t.prototype.visibility="PUBLIC",t.VisibilityEnum={PUBLIC:"PUBLIC",PRIVATE:"PRIVATE",MODERATED:"MODERATED"},t})},{"../ApiClient":173}],275:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){ +return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteContainer=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.id=e,this.folderId=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("folderId")&&(n.folderId=e.convertToType(i.folderId,"String"))),n},t.prototype.id=void 0,t.prototype.folderId=void 0,t})},{"../ApiClient":173}],276:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SiteContainer"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SiteContainer")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteContainerEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteContainer))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./SiteContainer":275}],277:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SitePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SitePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteContainerPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SitePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./SitePagingList":291}],278:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Site"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Site")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Site))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Site":273}],279:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Person"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Person")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMember=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Person))}(void 0,function(e,t){var i=function(e,t,i){this.id=e,this.person=t,this.role=i};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("person")&&(o.person=t.constructFromObject(n.person)),n.hasOwnProperty("role")&&(o.role=e.convertToType(n.role,"String"))),o},i.prototype.id=void 0,i.prototype.person=void 0,i.prototype.role=void 0,i.RoleEnum={SITECONSUMER:"SiteConsumer",SITECOLLABORATOR:"SiteCollaborator",SITECONTRIBUTOR:"SiteContributor",SITEMANAGER:"SiteManager"},i})},{"../ApiClient":173,"./Person":251}],280:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMemberBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("role")&&(n.role=e.convertToType(i.role,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.role=void 0,t.prototype.id=void 0,t.RoleEnum={SITECONSUMER:"SiteConsumer",SITECOLLABORATOR:"SiteCollaborator",SITECONTRIBUTOR:"SiteContributor",SITEMANAGER:"SiteManager"},t})},{"../ApiClient":173}],281:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SiteMember"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SiteMember")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMemberEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteMember))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./SiteMember":279}],282:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SitePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SitePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMemberPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SitePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./SitePagingList":291}],283:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMemberRoleBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("role")&&(n.role=e.convertToType(i.role,"String"))),n},t.prototype.role=void 0,t.RoleEnum={SITECONSUMER:"SiteConsumer",SITECOLLABORATOR:"SiteCollaborator",SITECONTRIBUTOR:"SiteContributor",SITEMANAGER:"SiteManager"},t})},{"../ApiClient":173}],284:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("message")&&(n.message=e.convertToType(i.message,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("title")&&(n.title=e.convertToType(i.title,"String"))),n},t.prototype.message=void 0,t.prototype.id=void 0,t.prototype.title=void 0,t})},{"../ApiClient":173}],285:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipBody1=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("message")&&(n.message=e.convertToType(i.message,"String"))),n},t.prototype.message=void 0,t})},{"../ApiClient":173}],286:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Site"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Site")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipRequest=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Site))}(void 0,function(e,t){var i=function(e,t,i){this.id=e,this.createdAt=t,this.entry=i};return i.constructFromObject=function(n,o){return n&&(o=n||new i,n.hasOwnProperty("id")&&(o.id=e.convertToType(n.id,"String")),n.hasOwnProperty("createdAt")&&(o.createdAt=e.convertToType(n.createdAt,"Date")),n.hasOwnProperty("entry")&&(o.entry=t.constructFromObject(n.entry))),o},i.prototype.id=void 0,i.prototype.createdAt=void 0,i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Site":273}],287:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SiteMembershipRequest"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SiteMembershipRequest")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipRequestEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteMembershipRequest))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./SiteMembershipRequest":286}],288:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SiteMembershipRequestPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SiteMembershipRequestPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipRequestPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SiteMembershipRequestPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./SiteMembershipRequestPagingList":289}],289:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./SiteMembershipRequestEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./SiteMembershipRequestEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SiteMembershipRequestPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.SiteMembershipRequestEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./Pagination":248,"./SiteMembershipRequestEntry":287}],290:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./SitePagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./SitePagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SitePaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.SitePagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./SitePagingList":291}],291:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.SitePagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination))}(void 0,function(e,t){var i=function(e){this.pagination=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("pagination")&&(n.pagination=t.constructFromObject(e.pagination))),n},i.prototype.pagination=void 0,i})},{"../ApiClient":173,"./Pagination":248}],292:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.Tag=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e,t){this.id=e,this.tag=t};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String")),i.hasOwnProperty("tag")&&(n.tag=e.convertToType(i.tag,"String"))),n},t.prototype.id=void 0,t.prototype.tag=void 0,t})},{"../ApiClient":173}],293:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagBody=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(e){this.tag=e};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("tag")&&(n.tag=e.convertToType(i.tag,"String"))),n},t.prototype.tag=void 0,t})},{"../ApiClient":173}],294:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagBody1=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("tag")&&(n.tag=e.convertToType(i.tag,"String"))),n},t.prototype.tag=void 0,t})},{"../ApiClient":173}],295:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Tag"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Tag")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagEntry=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Tag))}(void 0,function(e,t){var i=function(e){this.entry=e};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("entry")&&(n.entry=t.constructFromObject(e.entry))),n},i.prototype.entry=void 0,i})},{"../ApiClient":173,"./Tag":292}],296:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./TagPagingList"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./TagPagingList")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagPaging=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.TagPagingList))}(void 0,function(e,t){var i=function(){};return i.constructFromObject=function(e,n){return e&&(n=e||new i,e.hasOwnProperty("list")&&(n.list=t.constructFromObject(e.list))),n},i.prototype.list=void 0,i})},{"../ApiClient":173,"./TagPagingList":297}],297:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient","./Pagination","./TagEntry"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient"),t("./Pagination"),t("./TagEntry")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.TagPagingList=r(n.AlfrescoCoreRestApi.ApiClient,n.AlfrescoCoreRestApi.Pagination,n.AlfrescoCoreRestApi.TagEntry))}(void 0,function(e,t,i){var n=function(e,t){this.entries=e,this.pagination=t};return n.constructFromObject=function(o,r){return o&&(r=o||new n,o.hasOwnProperty("entries")&&(r.entries=e.convertToType(o.entries,[i])),o.hasOwnProperty("pagination")&&(r.pagination=t.constructFromObject(o.pagination))),r},n.prototype.entries=void 0,n.prototype.pagination=void 0,n})},{"../ApiClient":173,"./Pagination":248,"./TagEntry":295}],298:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../ApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../ApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.UserInfo=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(){};return t.constructFromObject=function(i,n){return i&&(n=i||new t,i.hasOwnProperty("displayName")&&(n.displayName=e.convertToType(i.displayName,"String")),i.hasOwnProperty("id")&&(n.id=e.convertToType(i.id,"String"))),n},t.prototype.displayName=void 0,t.prototype.id=void 0,t})},{"../ApiClient":173}],299:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n,r){"function"==typeof e&&e.amd?e(["../../../alfrescoApiClient"],r):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports?i.exports=r(t("../../../alfrescoApiClient")):(n.AlfrescoCoreRestApi||(n.AlfrescoCoreRestApi={}),n.AlfrescoCoreRestApi.CustomModelApi=r(n.AlfrescoCoreRestApi.ApiClient))}(void 0,function(e){var t=function(t){this.apiClient=t||e.instance,this.private=!0,this.createCustomModel=function(e,t,i,n,o){if(void 0==n||null==n)throw"Missing the required parameter 'namespaceUri' when calling createCustomModel";if(void 0==o||null==o)throw"Missing the required parameter 'namespacePrefix' when calling createCustomModel";var r={status:e,description:t,name:i,namespaceUri:n,namespacePrefix:o},s={},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm","POST",s,a,p,l,r,c,u,d,f)},this.createCustomType=function(e,t,i,n,o){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling createCustomType";if(void 0==t||null==t)throw"Missing the required parameter 'name' when calling createCustomType";var r={name:t,parentName:i,title:n,description:o},s={modelName:e},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm/{modelName}/types","POST",s,a,p,l,r,c,u,d,f)},this.createCustomAspect=function(e,t,i,n,o){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling createCustomAspect";if(void 0==t||null==t)throw"Missing the required parameter 'name' when calling createCustomAspect";var r={name:t,parentName:i,title:n,description:o},s={modelName:e},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm/{modelName}/aspects","POST",s,a,p,l,r,c,u,d,f)},this.createCustomConstraint=function(e,t,i,n){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling createCustomConstraint";if(void 0==i||null==i)throw"Missing the required parameter 'type' when calling createCustomConstraint";if(void 0==t||null==t)throw"Missing the required parameter 'name' when calling createCustomConstraint";var o={name:t,type:i,parameters:n},r={modelName:e},s={},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d={};return this.apiClient.callApi("cmm/{modelName}/constraints","POST",r,s,a,p,o,l,c,u,d)},this.activateCustomModel=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling activateCustomModel";var t={status:"ACTIVE"},i={modelName:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}?select=status","PUT",i,n,o,r,t,s,a,p,l)},this.deactivateCustomModel=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling deactivateCustomModel";var t={status:"DRAFT"},i={modelName:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}?select=status","PUT",i,n,o,r,t,s,a,p,l)},this.addPropertyToAspect=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling addPropertyToAspect";if(void 0==t||null==t)throw"Missing the required parameter 'aspectName' when calling addPropertyToAspect";var n={name:t,properties:i},o={modelName:e,aspectName:t},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u={};return this.apiClient.callApi("cmm/{modelName}/aspects/{aspectName}?select=props","PUT",o,r,s,a,n,p,l,c,u)},this.addPropertyToType=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling addPropertyToType";if(void 0==t||null==t)throw"Missing the required parameter 'typeName' when calling addPropertyToType";var n={name:t,properties:i},o={modelName:e,typeName:t},r={},s={},a={},p=["basicAuth"],l=["application/json"],c=["application/json"],u={};return this.apiClient.callApi("cmm/{modelName}/types/{typeName}?select=props","PUT",o,r,s,a,n,p,l,c,u)},this.updateCustomModel=function(e,t,i,n){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling updateCustomModel";var o={name:e,description:t,namespaceUri:i,namespacePrefix:n},r={modelName:e},s={},a={},p={},l=["basicAuth"],c=["application/json"],u=["application/json"],d={};return this.apiClient.callApi("cmm/{modelName}","PUT",r,s,a,p,o,l,c,u,d)},this.updateCustomType=function(e,t,i,n,o){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling UpdateCustomType";if(void 0==t||null==t)throw"Missing the required parameter 'typeName' when calling UpdateCustomType";var r={name:e,parentName:n,title:o,description:i},s={modelName:e,typeName:t},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm/{modelName}/types/{typeName}","PUT",s,a,p,l,r,c,u,d,f)},this.updateCustomAspect=function(e,t,i,n,o){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling updateCustomAspect";if(void 0==t||null==t)throw"Missing the required parameter 'aspectName' when calling updateCustomAspect";var r={name:e,parentName:n,title:o,description:i},s={modelName:e,aspectName:t},a={},p={},l={},c=["basicAuth"],u=["application/json"],d=["application/json"],f={};return this.apiClient.callApi("cmm/{modelName}/aspects/{aspectName}","PUT",s,a,p,l,r,c,u,d,f)},this.getAllCustomModel=function(){var e={},t={},i={},n={},o={},r=["basicAuth"],s=["application/json"],a=["application/json"],p={};return this.apiClient.callApi("cmm","GET",t,i,n,o,e,r,s,a,p)},this.getCustomModel=function(e,t){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomModel";var i={},n={modelName:e},t=t||{},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}","GET",n,t,o,r,i,s,a,p,l)},this.getAllCustomType=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getAllCustomType";var t={},i={modelName:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}/types","GET",i,n,o,r,t,s,a,p,l)},this.getCustomType=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomType";if(void 0==t||null==t)throw"Missing the required parameter 'typeName' when calling getCustomType";var n={},o={modelName:e,typeName:t},i=i||{},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c={};return this.apiClient.callApi("cmm/{modelName}/types/{typeName}","GET",o,i,r,s,n,a,p,l,c)},this.getAllCustomAspect=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getAllCustomAspect";var t={},i={modelName:e},n=n||{},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}/aspects","GET",i,n,o,r,t,s,a,p,l)},this.getCustomAspect=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomAspect";if(void 0==t||null==t)throw"Missing the required parameter 'aspectName' when calling getCustomAspect";var n={},o={modelName:e,aspectName:t},i=i||{},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c={};return this.apiClient.callApi("cmm/{modelName}/aspects/{aspectName}","GET",o,i,r,s,n,a,p,l,c)},this.getAllCustomConstraints=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getAllCustomConstraints";var t={},i={modelName:e},n=n||{},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}/constraints","GET",i,n,o,r,t,s,a,p,l)},this.getCustomConstraints=function(e,t,i){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomConstraints";if(void 0==t||null==t)throw"Missing the required parameter 'constraintName' when calling getCustomConstraints";var n={},o={modelName:e,constraintName:t},i=i||{},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c={};return this.apiClient.callApi("cmm/{modelName}/constraints{constraintName}","GET",o,i,r,s,n,a,p,l,c)},this.deleteCustomModel=function(e){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling deleteCustomModel";var t={},i={modelName:e},n={},o={},r={},s=["basicAuth"],a=["application/json"],p=["application/json"],l={};return this.apiClient.callApi("cmm/{modelName}","DELETE",i,n,o,r,t,s,a,p,l)},this.deleteCustomType=function(e,t){if(void 0==e||null==e)throw"Missing the required parameter 'modelName' when calling getCustomConstraints";if(void 0==t||null==t)throw"Missing the required parameter 'modelName' when calling deleteCustomType";var i={},n={modelName:e,typeName:t},o={},r={},s={},a=["basicAuth"],p=["application/json"],l=["application/json"],c={};return this.apiClient.callApi("cmm/{modelName}/types/{typeName}","DELETE",n,o,r,s,i,a,p,l,c)}};return t})},{"../../../alfrescoApiClient":302}],300:[function(t,i,n){"use strict";var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};!function(n){"function"==typeof e&&e.amd?e(["../../alfrescoApiClient","./api/CustomModelApi"],n):"object"===("undefined"==typeof i?"undefined":o(i))&&i.exports&&(i.exports=n(t("../../alfrescoApiClient"),t("./api/CustomModelApi")))}(function(e,t){var i={ApiClient:e,CustomModelApi:t};return i})},{"../../alfrescoApiClient":302,"./api/CustomModelApi":299}],301:[function(e,t,i){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=e("./alfresco-core-rest-api/src/index.js"),r=e("./alfresco-private-rest-api/src/index.js"),s=e("./alfresco-auth-rest-api/src/index"),a=e("./alfresco-activiti-rest-api/src/index"),p=e("./alfrescoContent"),l=e("./alfrescoNode"),c=e("./alfrescoUpload"),u=e("event-emitter"),d=e("./ecmAuth"),f=e("./bpmAuth"),y=e("./ecmClient"),m=e("./bpmClient"),h=e("./ecmPrivateClient"),v=e("lodash"),A=function(){ +function e(t){n(this,e),t||(t={}),this.config={hostEcm:t.hostEcm||"http://127.0.0.1:8080",hostBpm:t.hostBpm||"http://127.0.0.1:9999",contextRoot:t.contextRoot||"alfresco",contextRootBpm:t.contextRootBpm||"activiti-app",provider:t.provider||"ECM",ticketEcm:t.ticketEcm,ticketBpm:t.ticketBpm,accessToken:t.accessToken,disableCsrf:t.disableCsrf||!1},this.bpmAuth=new f(this.config),this.ecmAuth=new d(this.config),this.ecmPrivateClient=new h(this.config),this.ecmClient=new y(this.config),this.bpmClient=new m(this.config),this.setAuthenticationClientECMBPM(this.ecmAuth.getAuthentication(),this.bpmAuth.getAuthentication()),this.initObjects(),u.call(this)}return e.prototype.changeCsrfConfig=function(e){this.config.disableCsrf=e,this.bpmAuth.changeCsrfConfig(e)},e.prototype.changeEcmHost=function(e){this.config.hostEcm=e,this.ecmAuth.changeHost(),this.ecmClient.changeHost()},e.prototype.changeBpmHost=function(e){this.config.hostBpm=e,this.bpmAuth.changeHost(),this.bpmClient.changeHost()},e.prototype.initObjects=function(){a.ApiClient.instance=this.bpmClient,this.activiti={},this.activitiStore=a,this._instantiateObjects(this.activitiStore,this.activiti),o.ApiClient.instance=this.ecmClient,this.core={},this.coreStore=o,this._instantiateObjects(this.coreStore,this.core),r.ApiClient.instance=this.ecmPrivateClient,this.corePrivateStore=r,this._instantiateObjects(this.corePrivateStore,this.core),this.nodes=this.node=new l,this.content=new p(this.ecmAuth,this.ecmClient),this.upload=new c,this.webScript=this.core.webscriptApi},e.prototype._instantiateObjects=function(e,t){var i=this,n=Object.keys(e);n.forEach(function(n){t[n]=e[n];var o=i._stringToObject(n,e),r=v.lowerFirst(n);t[r]=o})},e.prototype._stringToObject=function(e,t){try{if("function"==typeof t[e])return new t[e]}catch(t){console.log(e+" "+t)}},e.prototype.login=function(e,t){var i=this;if(e&&(e=e.trim()),this._isBpmConfiguration()){var n=this.bpmAuth.login(e,t);return n.then(function(e){i.config.ticketBpm=e},function(){}),n}if(this._isEcmConfiguration()){var o=this.ecmAuth.login(e,t);return o.then(function(e){i.setAuthenticationClientECMBPM(i.ecmAuth.getAuthentication(),null),i.config.ticketEcm=e},function(){}),o}if(this._isEcmBpmConfiguration()){var r=this._loginBPMECM(e,t);return r.then(function(e){i.config.ticketEcm=e[0],i.config.ticketBpm=e[1]},function(){}),r}},e.prototype.setAuthenticationClientECMBPM=function(e,t){this.ecmClient.setAuthentications(e),this.ecmPrivateClient.setAuthentications(e),this.bpmClient.setAuthentications(t)},e.prototype.loginTicket=function(e,t){return this.config.ticketEcm=e,this.config.ticketBpm=t,this.ecmAuth.validateTicket()},e.prototype._loginBPMECM=function(e,t){var i=this,n=this.ecmAuth.login(e,t),o=this.bpmAuth.login(e,t);return this.promise=new Promise(function(e,t){Promise.all([n,o]).then(function(t){i.promise.emit("success"),e(t)},function(e){401===e.status&&i.promise.emit("unauthorized"),i.promise.emit("error"),t(e)})}),u(this.promise),this.promise},e.prototype.logout=function(){var e=this;if(this.config.provider&&"BPM"===this.config.provider.toUpperCase())return this.bpmAuth.logout();if(this.config.provider&&"ECM"===this.config.provider.toUpperCase()){var t=this.ecmAuth.logout();return t.then(function(){e.config.ticket=void 0},function(){}),t}return this.config.provider&&"ALL"===this.config.provider.toUpperCase()?this._logoutBPMECM():void 0},e.prototype._logoutBPMECM=function(){var e=this,t=this.ecmAuth.logout(),i=this.bpmAuth.logout();return this.promise=new Promise(function(n,o){Promise.all([t,i]).then(function(t){e.config.ticket=void 0,e.promise.emit("logout"),n("logout")},function(t){401===t.status&&e.promise.emit("unauthorized"),e.promise.emit("error"),o(t)})}),u(this.promise),this.promise},e.prototype.isLoggedIn=function(){return this.config.provider&&"BPM"===this.config.provider.toUpperCase()?this.bpmAuth.isLoggedIn():this.config.provider&&"ECM"===this.config.provider.toUpperCase()?this.ecmAuth.isLoggedIn():this.config.provider&&"ALL"===this.config.provider.toUpperCase()?this.ecmAuth.isLoggedIn()&&this.bpmAuth.isLoggedIn():void 0},e.prototype.setTicket=function(e,t){this.ecmAuth.setTicket(e),this.bpmAuth.setTicket(t)},e.prototype.getTicketBpm=function(){return this.bpmAuth.getTicket()},e.prototype.getTicketEcm=function(){return this.ecmAuth.getTicket()},e.prototype.getTicket=function(){return[this.ecmAuth.getTicket(),this.bpmAuth.getTicket()]},e.prototype._isBpmConfiguration=function(){return this.config.provider&&"BPM"===this.config.provider.toUpperCase()},e.prototype._isEcmConfiguration=function(){return this.config.provider&&"ECM"===this.config.provider.toUpperCase()},e.prototype._isOauthConfiguration=function(){return this.config.provider&&"OAUTH"===this.config.provider.toUpperCase()},e.prototype._isEcmBpmConfiguration=function(){return this.config.provider&&"ALL"===this.config.provider.toUpperCase()},e}();u(A.prototype),t.exports=A,t.exports.Activiti=a,t.exports.Core=o,t.exports.Auth=s},{"./alfresco-activiti-rest-api/src/index":77,"./alfresco-auth-rest-api/src/index":165,"./alfresco-core-rest-api/src/index.js":189,"./alfresco-private-rest-api/src/index.js":300,"./alfrescoContent":303,"./alfrescoNode":304,"./alfrescoUpload":305,"./bpmAuth":306,"./bpmClient":307,"./ecmAuth":308,"./ecmClient":309,"./ecmPrivateClient":310,"event-emitter":21,lodash:23}],302:[function(e,t,i){(function(i){"use strict";function n(e,t){for(var i=Object.getOwnPropertyNames(t),n=0;n>e/4).toString(16):([1e16]+1e16).replace(/[01]/g,this.token)},t.prototype.progress=function(e,t){if(e.lengthComputable&&this.promise){var i=Math.round(e.loaded/e.total*100);t.emit("progress",{total:e.total,loaded:e.loaded,percent:i})}},t.prototype.buildUrlCustomBasePath=function(e,t,i){t.match(/^\//)||(t="/"+t);var n=e+t,o=this;return n=n.replace(/\{([\w-]+)\}/g,function(e,t){var n;return n=i.hasOwnProperty(t)?o.paramToString(i[t]):e,encodeURIComponent(n)})},t.prototype.buildRequest=function(e,t,i,n,o,r,s,a,p,c){var u=this,d=l(e,t);this.applyAuthToRequest(d,["basicAuth"]),d.query(this.normalizeParams(i)),d.set(this.defaultHeaders).set(this.normalizeParams(n)),this.isBpmRequest()&&this.isCsrfEnabled()&&this.setCsrfToken(d),this.isBpmRequest()&&(d._withCredentials=!0,this.authentications.cookie&&this.isNodeEnv()&&d.set("Cookie",this.authentications.cookie)),d.timeout(this.timeout),p&&(d._responseType=p);var f=this.jsonPreferredMime(s);if(f&&"multipart/form-data"!==f?d.type(f):d.header["Content-Type"]||"multipart/form-data"===f||d.type("application/json"),"application/x-www-form-urlencoded"===f)d.send(this.normalizeParams(o)).on("progress",function(e){u.progress(e,c)});else if("multipart/form-data"===f){var y=this.normalizeParams(o);for(var m in y)y.hasOwnProperty(m)&&(this.isFileParam(y[m])?d.attach(m,y[m]).on("progress",function(e){u.progress(e,c)}):d.field(m,y[m]).on("progress",function(e){u.progress(e,c)}))}else r&&d.send(r).on("progress",function(e){u.progress(e,c)});var h=this.jsonPreferredMime(a);return h&&d.accept(h),d},t}(p);a(u.prototype),t.exports=u}).call(this,e("_process"))},{"./alfresco-core-rest-api/src/ApiClient":173,_process:24,"event-emitter":21,lodash:23,superagent:25}],303:[function(e,t,i){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var o=function(){function e(t,i){n(this,e),this.ecmAuth=t,this.ecmClient=i}return e.prototype.getDocumentThumbnailUrl=function(e){return this.ecmClient.basePath+"/nodes/"+e+"/renditions/doclib/content?attachment=false&alf_ticket="+this.ecmAuth.getTicket()},e.prototype.getDocumentPreviewUrl=function(e){return this.ecmClient.basePath+"/nodes/"+e+"/renditions/imgpreview/content?attachment=false&alf_ticket="+this.ecmAuth.getTicket()},e.prototype.getContentUrl=function(e){return this.ecmClient.basePath+"/nodes/"+e+"/content?attachment=false&alf_ticket="+this.ecmAuth.getTicket()},e}();t.exports=o},{}],304:[function(e,t,i){"use strict";function n(e,t){for(var i=Object.getOwnPropertyNames(t),n=0;n} accepts An array of acceptable response MIME types. * @param {(String|Array|ObjectFunction)} returnType The required type to return; can be a string for simple types or the * @param {(String)} contextRoot alternative contextRoot + * @param {(String)} responseType is an enumerated value that returns the type of the response. + * It also lets the author change the response type to one "arraybuffer", "blob", "document", + * "json", or "text". + * If an empty string is set as the value of responseType, it is assumed as type "text". * constructor for a complex type. * @returns {Promise} A Promise object. */ callApi(path, httpMethod, pathParams, queryParams, headerParams, formParams, bodyParam, authNames, - contentTypes, accepts, returnType, contextRoot) { + contentTypes, accepts, returnType, contextRoot, responseType) { var eventEmitter = {}; Emitter(eventEmitter); // jshint ignore:line @@ -47,72 +51,8 @@ class AlfrescoApiClient extends ApiClient { url = this.buildUrl(path, pathParams); } - var request = superagent(httpMethod, url); - - // apply authentications - this.applyAuthToRequest(request, ['basicAuth']); - - // set query parameters - request.query(this.normalizeParams(queryParams)); - - // set header parameters - request.set(this.defaultHeaders).set(this.normalizeParams(headerParams)); - - if (this.isBpmRequest() && this.isCsrfEnabled()) { - this.setCsrfToken(request); - } - - // add cookie for activiti - if (this.isBpmRequest()) { - request._withCredentials = true; - if (this.authentications.cookie) { - if (this.isNodeEnv()) { - request.set('Cookie', this.authentications.cookie); - } - } - } - - // set request timeout - request.timeout(this.timeout); - - var contentType = this.jsonPreferredMime(contentTypes); - - if (contentType && contentType !== 'multipart/form-data') { - request.type(contentType); - } else if (!request.header['Content-Type'] && contentType !== 'multipart/form-data') { - request.type('application/json'); - } - - if (contentType === 'application/x-www-form-urlencoded') { - request.send(this.normalizeParams(formParams)).on('progress', (event)=> { - this.progress(event, eventEmitter); - }); - } else if (contentType === 'multipart/form-data') { - var _formParams = this.normalizeParams(formParams); - for (var key in _formParams) { - if (_formParams.hasOwnProperty(key)) { - if (this.isFileParam(_formParams[key])) { - // file field - request.attach(key, _formParams[key]).on('progress', (event)=> {// jshint ignore:line - this.progress(event, eventEmitter); - }); - } else { - request.field(key, _formParams[key]).on('progress', (event)=> {// jshint ignore:line - this.progress(event, eventEmitter); - }); - } - } - } - } else if (bodyParam) { - request.send(bodyParam).on('progress', (event)=> { - this.progress(event, eventEmitter); - }); - } - - var accept = this.jsonPreferredMime(accepts); - if (accept) { - request.accept(accept); - } + var request = this.buildRequest(httpMethod, url, queryParams, headerParams, formParams, bodyParam, + contentTypes, accepts, responseType, eventEmitter); this.promise = new Promise((resolve, reject) => { request.end((error, response) => { @@ -250,6 +190,82 @@ class AlfrescoApiClient extends ApiClient { }); return url; } + + buildRequest(httpMethod, url, queryParams, headerParams, formParams, bodyParam, + contentTypes, accepts, responseType, eventEmitter) { + var request = superagent(httpMethod, url); + + // apply authentications + this.applyAuthToRequest(request, ['basicAuth']); + + // set query parameters + request.query(this.normalizeParams(queryParams)); + + // set header parameters + request.set(this.defaultHeaders).set(this.normalizeParams(headerParams)); + + if (this.isBpmRequest() && this.isCsrfEnabled()) { + this.setCsrfToken(request); + } + + // add cookie for activiti + if (this.isBpmRequest()) { + request._withCredentials = true; + if (this.authentications.cookie) { + if (this.isNodeEnv()) { + request.set('Cookie', this.authentications.cookie); + } + } + } + + // set request timeout + request.timeout(this.timeout); + + if (responseType) { + request._responseType = responseType; + } + + var contentType = this.jsonPreferredMime(contentTypes); + + if (contentType && contentType !== 'multipart/form-data') { + request.type(contentType); + } else if (!request.header['Content-Type'] && contentType !== 'multipart/form-data') { + request.type('application/json'); + } + + if (contentType === 'application/x-www-form-urlencoded') { + request.send(this.normalizeParams(formParams)).on('progress', (event)=> { + this.progress(event, eventEmitter); + }); + } else if (contentType === 'multipart/form-data') { + var _formParams = this.normalizeParams(formParams); + for (var key in _formParams) { + if (_formParams.hasOwnProperty(key)) { + if (this.isFileParam(_formParams[key])) { + // file field + request.attach(key, _formParams[key]).on('progress', (event)=> {// jshint ignore:line + this.progress(event, eventEmitter); + }); + } else { + request.field(key, _formParams[key]).on('progress', (event)=> {// jshint ignore:line + this.progress(event, eventEmitter); + }); + } + } + } + } else if (bodyParam) { + request.send(bodyParam).on('progress', (event)=> { + this.progress(event, eventEmitter); + }); + } + + var accept = this.jsonPreferredMime(accepts); + if (accept) { + request.accept(accept); + } + + return request; + } } Emitter(AlfrescoApiClient.prototype); // jshint ignore:line diff --git a/src/bpmAuth.js b/src/bpmAuth.js index 9270b0433b..974bcc6fd6 100644 --- a/src/bpmAuth.js +++ b/src/bpmAuth.js @@ -136,6 +136,7 @@ class BpmAuth extends AlfrescoApiClient { * */ setTicket(ticket) { this.authentications.basicAuth.ticket = ticket; + this.authentications.basicAuth.password = null; this.ticket = ticket; } diff --git a/test/alfrescoApiClient.spec.js b/test/alfrescoApiClient.spec.js index 19095f2c97..a16fc61687 100644 --- a/test/alfrescoApiClient.spec.js +++ b/test/alfrescoApiClient.spec.js @@ -1,6 +1,6 @@ /*global describe, it */ -var ApiClient = require('../src/alfresco-core-rest-api/src/ApiClient'); +var ApiClient = require('../src/alfrescoApiClient'); var chai = require('chai'); var expect = chai.expect; @@ -10,6 +10,34 @@ describe('Alfresco Core API Client', function () { describe('type conversion', function() { + var client = new ApiClient(); + + it('should create a request with response type blob', function() { + + var bodyParam = null; + + var queryParams = { + }; + var headerParams = { + }; + var formParams = { + }; + + var contentTypes = ['application/json']; + var accepts = ['application/json']; + var responseType = 'blob'; + var url = '/fake-api/enterprise/process-instances/'; + var httpMethod = 'GET'; + + var response = client.buildRequest(httpMethod, url, queryParams, headerParams, formParams, bodyParam, + contentTypes, accepts, responseType, null); + + expect(response.url).equal('/fake-api/enterprise/process-instances/'); + expect(response.header.Accept).equal('application/json'); + expect(response.header['Content-Type']).equal('application/json'); + expect(response._responseType).equal('blob'); + }); + it('should return strings as a string', function() { var testData = 'Example String'; expect(ApiClient.convertToType(testData, 'String')).equal(testData); diff --git a/test/bpmAuth.spec.js b/test/bpmAuth.spec.js index f692087bfe..b6a8c1948e 100644 --- a/test/bpmAuth.spec.js +++ b/test/bpmAuth.spec.js @@ -31,6 +31,24 @@ describe('Bpm Auth test', function () { }); + it('login password should be removed after login', function (done) { + + this.authBpmMock.get200Response(); + + this.bpmAuth = new BpmAuth({ + hostBpm: this.hostBpm, + contextRootBpm: 'activiti-app' + }); + + this.bpmAuth.login('admin', 'admin').then((data) => { + expect(data).to.be.equal('Basic YWRtaW46YWRtaW4='); + expect(this.bpmAuth.authentications.basicAuth.password).to.be.not.equal('admin'); + done(); + }, function () { + }); + + }); + it('isLoggedIn should return true if the api is logged in', function (done) { this.authBpmMock.get200Response(); diff --git a/test/ecmAuth.spec.js b/test/ecmAuth.spec.js index d94b6a03cf..95ba67a8cd 100644 --- a/test/ecmAuth.spec.js +++ b/test/ecmAuth.spec.js @@ -30,6 +30,23 @@ describe('Ecm Auth test', function () { }); + it('login password should be removed after login', function (done) { + + this.authEcmMock.get201Response(); + + this.ecmAuth = new EcmAuth({ + contextRoot: 'alfresco', + hostEcm: this.hostEcm + }); + + this.ecmAuth.login('admin', 'admin').then((data) => { + expect(this.ecmAuth.authentications.basicAuth.password).to.be.not.equal('admin'); + done(); + }, ()=> { + }); + + }); + it('isLoggedIn should return true if the api is logged in', function (done) { this.authEcmMock.get201Response();